@charset "utf-8";

/* カラー */
/* アクセント：#c8d0d1 */
/* メイン：#6E6360 */
/* ポイント：#FFECA1 */

html {
  scroll-behavior: smooth;
}

/* スクロールデザイン */
 ::-webkit-scrollbar {
  width: 0;
  height: 0;
}
::-webkit-scrollbar-track {
  background-color: #6E6360;
}
::-webkit-scrollbar-thumb {
  background-color: #FFECA1;
}

body {
  width: 100%;
  height: 100%;
  font-family: 'Kaisei Opti', serif;
  font-size: 18px;
  color: #6E6360;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/appBackground.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 各コンテンツ */
.setHeight {
  height: calc(var(--dvh, 1vh) * 100);
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 120px;
  padding: 0 20px;
  background-color: rgb(200, 208, 209, 0.6);
  color: #6E6360;
  transition: height 0.3s, padding-top 0.3s, background-color 0.3s, color 0.3s;
}
header h1 {
  width: 100%;
  position: relative;
}
header h1 a {
  display: block;
  max-width: 320px;
}
header h1 img {
  width: 100%;
}
/* フッター到達時のヘッダー */
header.footerReach {
  height: calc((var(--dvh, 1vh) * 100 - 780px));
  min-height: 120px;
  background-color: rgb(255, 236, 161, 1);
}
header.default h1 {
  max-width: 100%;
  left: 0;
  transform: translateX(0);
  transition: left 0.5s, transform 0.5s, max-width 0.1s 0.5s;
}
header.footerReach h1 {
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  transition: left 0.5s 0.1s, transform 0.5s 0.1s, max-width 0.1s;
}

/* フッター */
footer {
  min-height: calc(var(--dvh, 1vh) * 100);
  padding: 0 20px;
  background-color: #c8d0d1;
  position: relative;
}
footer .footerContents {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding-top: 150px;
}
.footerContents .companyName {
  font-size: 22px;
}
.footerContents .location {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}
.footerContents .followUs {
  width: 320px;
  padding: 30px 0 0;
}
.footerContents .followUs h4 {
  font-size: 16px;
  text-transform: capitalize;
}
.footerContents .followUs ul {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 0;
}
.footerContents .followUs li {
  width: 50px;
  height: 50px;
  padding: 10px;
  margin-right: 25px;
  background-color: rgb(255, 236, 161, 0);
  border: 2px solid rgb(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: background-color 0.3s, border 0.3s;
}
.footerContents .followUs li:hover {
  background-color: #FFECA1;
  border: 2px solid #FFECA1;
}
.footerContents .followUs li a {
  display: block;
  width: 100%;
  height: 100%;
}
.footerContents .followUs li img {
  width: 100%;
  height: 100%;
}
/* 内部リンク */
.footerContents .innerLinks li {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 25px;
  padding-left: 30px;
  position: relative;
}
.footerContents .innerLinks li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background-color: #FFECA1;
  border-radius: 100px;
}
/* 外部リンク */
.footerContents .officialPages {
  padding-top: 15px;
}
.footerContents .officialPages li {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 25px;
  padding-left: 30px;
  position: relative;
}
.footerContents .officialPages li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background-color: #6E6360;
  border-radius: 100px;
}
/* ホバー */
.footerContents .officialPages a,
.footerContents .innerLinks button {
  display: inline-block;
  position: relative;
}
.footerContents .officialPages a::before,
.footerContents .innerLinks button::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: #fff;
  border-radius: 100px;
  transition: width 0.3s;
}
.footerContents .officialPages a:hover::before,
.footerContents .innerLinks button:hover::before {
  width: 100%;
}
/* コピーライト */
footer p#copyright {
  display: flex;
  justify-content: start;
  align-items: end;
  width: calc(100% - 40px);
  height: 60px;
  padding-bottom: 5px;
  font-size: 16px;
}

/* トップコンテンツ */
.topContents {
  position: relative;
}
.topContents::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc((var(--dvh, 1vh) * 100));
  background-image: url(../img/topImage.jpg);
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
}
.topContents .contents {
  width: 45%;
  height: calc(((var(--dvh, 1vh) * 100) - 100px));
  min-height: 660px;
  padding-top: 120px;
  margin-left: auto;
  position: relative;
  transition: width 0.3s;
}
.topContents .topText {
  width: 100%;
  height: 100%;
}
.topContents .topText h2 {
  width: 100%;
  margin-top: 30px;
  padding: 0 10%;
  line-height: 1.5;
  font-size: 46px;
}
.topContents .topText .text {
  display: block;
  text-shadow: 7px 7px 0 rgb(255, 255, 255, 0.6);
}
.topContents .topText .text.textLeft {
  text-align: start;
}
.topContents .topText .text.textRight {
  text-align: end;
}
/* メリットポイント */
.topContents .meritPoint {
  height: calc(100% - 45px);
  padding: 0 10% 100px;
}
.topContents .meritPoint li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 45px;
  padding: 20px 10px;
  border-radius: 10px;
  font-size: 32px;
}
.topContents .meritPoint li:nth-child(1) {
  background: linear-gradient(165deg, #ffeca100 0%, #FFECA1 40%, #ffeca100 100%);
}
.topContents .meritPoint li:nth-child(2) {
  background: linear-gradient(165deg, #c8d0d100 0%, #c8d0d1 40%, #c8d0d100 100%);
}
.topContents .meritPoint li:nth-child(3) {
  background: linear-gradient(165deg, #ffffff00 0%, #fff 40%, #ffffff00 100%);
}
/* サロンメッセージ */
.topContents .salonTopMessage {
  width: 75%;
  padding: 30px 20px;
  background: linear-gradient(90deg, #fff 40%, #ffffff99 85%, #ffffff00 100%);
  border-radius: 0 10px 10px 0;
  transition: width 0.3s;
}
.topContents .salonTopMessage h3 {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 70px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(110, 99, 96, 0.2);
  font-size: 28px;
  font-weight: 700;
  position: relative;
}
.topContents .salonTopMessage p {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 20px;
}

/* メインコンテンツ */
.innerContents {
  position: relative;
}
.innerContents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/appBackground.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section {
  min-height: 100vh;
  padding: 240px 20px 0;
  position: relative;
}
section::before {
  content: '';
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 100px);
  max-width: 1200px;
  height: 1px;
  background-color: rgb(110, 99, 96, 0.2);
}
section h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  font-size: 28px;
  font-weight: 700;
}

/* サロンの紹介 */
.salonInformation dl {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 10px;
  background-image: url(../img/appBackground.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 10px;
}
.salonInformation dt {
  display: flex;
  justify-content: start;
  align-items: end;
  height: 50px;
}
.salonInformation dd {
  padding-top: 10px;
  line-height: 1.5;
}
/* アクセス */
.salonInformation .location {
  display: block;
}
.salonInformation iframe {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}
/* 交通 */
.salonInformation .traffic li {
  margin-top: 10px;
  font-size: 16px;
}
/* コンタクト */
.salonInformation .contact li {
  margin-top: 30px;
  padding: 0 10px;
}
.salonInformation .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  height: 50px;
  margin: 0 auto;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  font-weight: 700;
}
.salonInformation .contact a.telNumber {
  background-color: #c8d0d1;
  color: #fff;
}
.salonInformation .contact a.lineAccount {
  background-color: #00B900;
  color: #fff;
}
/* サービス */
.salonInformation .service li {
  margin-top: 10px;
}

/* セルフホワイトニングとは？ */
.serviceDetail .subText {
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}
.serviceDetail .point {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px;
  background-color: rgb(255, 255, 255, 0.8);
  border-radius: 10px;
}
.serviceDetail .point h3 {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 25px;
  padding-left: 30px;
  font-weight: 700;
  position: relative;
}
.serviceDetail .point h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #c8d0d1;
  border-radius: 100px;
}
.serviceDetail .point p {
  margin-top: 10px;
  line-height: 1.5;
}
/* 比較 */
.serviceDetail .features {
  width: 100%;
}
.serviceDetail .tableContents {
  max-width: calc(260px * 2 + 200px);
  margin: 90px auto;
  border-radius: 10px;
  overflow: scroll;
}
.serviceDetail .features table {
  table-layout: fixed;
  background-color: #fff;
}
.serviceDetail .features thead th {
  background-color: #c8d0d1;
  color: #fff;
}
.serviceDetail .features thead span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 80px;
}
.serviceDetail .features th:nth-child(1),
.serviceDetail .features td:nth-child(1) {
  border-right: 1px solid rgb(110, 99, 96, 0.2);
}
.serviceDetail .features thead th:nth-child(1) span {
  width: 200px;
}
.serviceDetail .features tbody tr {
  border-bottom: 1px solid rgb(110, 99, 96, 0.2);
}
.serviceDetail .features tbody tr:nth-child(6) {
  border-bottom: none;
}
.serviceDetail .features td:nth-child(3) {
  text-shadow: 3px 3px 0px #FFECA1;
  font-weight: 700;
}
.serviceDetail .features tbody span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  line-height: 1.5;
  text-align: center;
}
/* 7つの効果 */
.serviceDetail .effect {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.serviceDetail .effect h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 26px;
}
.serviceDetail .effect h3 span {
  display: inline-block;
  position: relative;
}
.serviceDetail .effect h3 span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(110, 99, 96, 1);
  border-radius: 100px;
}
.serviceDetail .effect ul {
  padding-bottom: 30px;
}
.serviceDetail .effect li {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 80px;
  margin-top: 30px;
  padding: 0 20px;
  background-color: #fff;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  font-size: 24px;
  font-weight: 700;
}
.serviceDetail .effect li:nth-child(odd) {
  background-color: #FFECA1;
}
.serviceDetail .effect .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  background-color: #fff;
  box-shadow: 0 0 5px 1px rgb(110, 99, 96, 0.6) inset;
  border-radius: 100px;
}
.serviceDetail .effect .text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 70px);
  height: 100%;
}
.serviceDetail .effect .note {
  margin-top: 10px;
  font-size: 14px;
  color: rgb(110, 99, 96, 0.6);
}

/* セルフホワイトニングの工程 */
.process ol {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 30px;
}
.process ol li {
  min-height: 160px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.process ol li.step02,
.process ol li.step03,
.process ol li.step04,
.process ol li.step05 {
  min-height: 320px;
}
.process ol li::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: -1;
  width: 180px;
  height: 180px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100px;
}
.process ol li.step02::before {
  background-image: url(../img/process-item/processItem02.png);
  background-size: 80%;
  background-color: #c8d0d1;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
}
.process ol li.step03::before {
  background-image: url(../img/process-item/processItem01.png);
  background-size: 95%;
  background-color: #c8d0d1;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
}
.process ol li.step04::before {
  background-image: url(../img/process-item/processItem04.png);
  background-size: 80%;
  background-color: #c8d0d1;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
}
.process ol li.step05::before {
  background-image: url(../img/process-item/processItem03.png);
  background-size: 95%;
  background-color: #c8d0d1;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
}
.process ol h3 {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 50px;
  padding-left: 140px;
  font-size: 20px;
  position: relative;
}
.process h3 .stepNumber {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 35px;
  background-color: #FFECA1;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
}
.process ol p {
  padding: 20px 0;
  line-height: 1.5;
}
.process .processSummary {
  margin-top: 60px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.process .processSummary span {
  font-size: 24px;
  position: relative;
}
.process .processSummary span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #6E6360;
}

/* 利用方法 */
.howToUse dl {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 30px;
}
.howToUse dl dt {
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  z-index: 1;
}
.howToUse dl dt::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 25px;
  z-index: -1;
  width: calc(100% - 25px);
  height: 1px;
  background-color: rgb(110, 99, 96, 0.2);
}
.howToUse dl .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background-color: #FFECA1;
  border-radius: 100px;
}
.howToUse dl dd {
  padding: 20px 0 50px 20px;
}
.howToUse dd p {
  line-height: 1.5;
}
/* 新規登録ボタン */
.howToUse .joinBtn {
  padding: 20px 0;
}
.howToUse .joinBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 460px;
  height: 50px;
  margin: 0 auto;
  background-color: #c8d0d1;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  text-shadow: 2px 2px 2px rgb(110, 99, 96, 0.6);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* ご利用料金 */
.usePlace dl {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 120px;
}
.usePlace dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.usePlace dd {
  position: relative;
}
.usePlace .ticketImage {
  display: block;
  width: 220px;
  margin: 0 auto;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100%;
}
.usePlace .price span {
  position: absolute;
  top: -10px;
  left: 60%;
  transform: translate(-50%, 0) rotate(10deg);
  text-shadow: 2px 2px 0 #fff;
  font-size: 32px;
  font-weight: 700;
}

/* よくある質問 */
.faq {
  margin-top: calc(((var(--dvh, 1vh) * 100) - 100px));
  background-image: url(../img/appBackground.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.faq dl {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 120px;
}
.faq dt {
  padding: 20px 0 10px 25px;
  border-bottom: 1px solid rgb(110, 99, 96, 0.2);
  line-height: 1.5;
  position: relative;
}
.faq dt::before {
  content: 'Q.';
  position: absolute;
  top: 20px;
  left: 0;
}
.faq dd {
  padding: 10px 0 20px 25px;
  border-bottom: 1px solid #6E6360;
  line-height: 1.5;
  position: relative;
}
.faq dd::before {
  content: 'A.';
  position: absolute;
  top: 10px;
  left: 0;
}