@charset "UTF-8";

html {
  font-size: 62.5%;
}

:root {
  /* 色管理用の変数 */
  --black-color:#424141;
  --white-color:#FFFFFF;
  --main-color:#E67E7E;
  --main-color-shadow:#C67575;
  --dark-color: #635954;
  --pink-color: #E1A0A0;
  --light-pink: #F8E1E1;
  --accent-color: #5BAEB2;
  --gray-color01: #CCCCCC;
  --gray-color02: #F3F0EA;
  --gray-color03: #F5F6F8;
  --gold-color: #A4974F;
  --button-color: #444444;

  /* z-index管理*/
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;

  --font-familly-ja: "Noto Sans JP", sans-serif;
  --font-familly-mincho: "Zen Old Mincho", serif;

  --content-max-width: 500px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: var(--black-color);
  background-color: var(--white-color);
}

.js_body.no-scroll {
  overflow: hidden;
  height: 100vh;
}


/* ---------- top ---------- */
.main {
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
}

/* ----- kv ----- */
.kv {
  background-color: var(--gray-color03);
  position: relative;
  height: 100svh;
}

.kv_title {
  font-family: var(--font-familly-mincho);
  font-size: min(7.7vw, 30px);
  padding-top: min(7vw, 28px);
  padding-left: min(4.9vw, 20px);
  line-height: 40px;
  position: relative;
  width: fit-content;
}

.kv_title-main {
  display: inline-block;
  background-color: color-mix(in srgb, var(--white-color) 90%, transparent);
  padding-inline: min(2.6vw, 15px);
}

.kv_title-sub {
  display: inline-block;
  background-color: color-mix(in srgb, var(--white-color) 90%, transparent);
  padding-inline: min(2.6vw, 15px);
  margin-top: min(2.6vw, 15px);
}

.kv_minus_nine_age {
  position: absolute;
  top: 32px;
  left: min(49vw, 210px);
  width: min(34vw, 150px);
}

.kv_minus_nine_age img {
  width: 100%;
  height: auto;
}

.kv_copy {
  position: absolute;
  color: var(--accent-color);
  font-size: min(4.3vw, 2.2rem);
  font-weight: 500;
  writing-mode: vertical-rl;
  top: min(7vw, 28px);
  right: min(9.5vw, 24px);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.kv_main-image {
  width: 100%;
}

.kv_main-image img {
  width: 100%;
  height: auto;
}

.kv_laurels {
  position: absolute;
  top: min(100vw, 470px);
  right: min(5vw, 20px);
  width: min(32vw, 150px);
}

.kv_number {
  margin-top: 10px;
}

.reservation {
  position: fixed;
  z-index: var(--z-index-menu);
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: min(100%, var(--content-max-width));
  height: 155px;
}

.reservation_btns {
  width: min(100%, 330px);
  padding: 0 16px;
  position: absolute;
  bottom: 29px;
  left: 50%;
  translate: -50% 0;
  z-index: calc(var(--z-index-menu) + 2);
}

.reservation_copy {
  margin-bottom: 6px;
  font-size: 1.3rem;
  text-align: right;
  color: var(--pink-color);
  display: flex;
  justify-content: end;
  align-items: center;
}

.reservation_copy::before, .reservation_copy:after {
  content:"";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: var(--pink-color);
}

.reservation_copy::before {
  margin-right: 8px;
  rotate: -28deg;
}

.reservation_copy::after {
  margin-left: 8px;
  rotate: 28deg;
}

.reservation_btn {
  width: min(100%, 330px);
  margin-inline: auto;
}

.reservation_btn_link {
  width: min(100%, 330px);
  display: inline-block;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: var(--pink-color);
  font-family: var(--font-familly-mincho);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white-color);
  border-radius: 100vmax;
  box-shadow: 0 3px 0 var(--main-color-shadow);
  transition: .5s;
}

.reservation_btn_link:hover {
  opacity: .8;
}

.reservation_bg_beige {
  position: absolute;
  width: min(100%, var(--content-max-width));
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-menu);
}

.reservation_bg_beige svg {
  fill: var(--gray-color02);
  width: 100%;
}

.reservation_bg_white {
  position: absolute;
  width: min(100%, var(--content-max-width));
  height: calc(100% - 7px);
  bottom: 0;
  left: 0;
  z-index: calc(var(--z-index-menu) + 1);
}

.reservation_bg_white svg {
  fill: #FFFDFD;
  width: 100%;
}

/* ---------- reservation_menu ---------- */
.reservation_menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  z-index: var(--z-index-menu);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: scroll;
}

.reservation_list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.reservation_item {
  text-align: center;
}

.reservation_item:not(:first-child) {
  margin-top: 30px;
}

.reservation_address {
  display: block;
  font-size: 16px;
  text-align: left;
  color: #333;
  position: relative;
}

.reservation_address::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--black-color);
  margin-right: 10px;
  vertical-align: middle;
}

.reservation_close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #d99696;
  cursor: pointer;
}

/* ---------- issues ---------- */
.top_issues_worries {
  padding: 57px 16px 84px;
  clip-path: polygon(0 0, 100% 0,100% calc(100% - 44px), 50% 100%, 0 calc(100% - 44px));
  background-color: #E5E1E0;
  position: relative;
  z-index: var(--z-index-default);
}

.top_sections_title {
  font-size: 2.5rem;
  font-family: var(--font-familly-mincho);
  text-align: left;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.top_sections_title::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.top_sections_title__issues::before {
  top: -54px;
  left: -27px;
  width: 112px;
  height: 59px;
  background-image: url(../img/section-title_issues.svg);
}

.top_sections_title__issues::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -42px;
  right: -45px;
  width: 112px;
  height: 112px;
  background-image: url(../img/bubble_issue.webp);
  background-size: contain;
}

.top_sections_title__row {
  display: inline-block;
  position: relative;
}

.top_sections_title__row::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #D9CCC5, #D9CCC5);
}

.top_issues_image {
  margin-top: 42px;
  width: min(100%, 420px);
  margin-inline: auto;
}

.top_issues_treatment {
  padding: 55px 16px 40px;
}

.top_issues_treatment_head {
  text-align: center;
}

.top_issues_treatment_head__upper {
  font-size: 1.6rem;
  color: var(--dark-color);
  line-height: 1;
  font-weight: 500;
}

.top_issues_treatment_head__upper::before, .top_issues_treatment_head__upper:after {
  content:"";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: var(--dark-color);
}

.top_issues_treatment_head__upper::before {
  margin-right: 8px;
  rotate: -30deg;
}

.top_issues_treatment_head__upper::after {
  margin-left: 8px;
  rotate: 30deg;
}

.top_issues_treatment_head__lower {
  text-align: center;
  margin-top: 11px;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--font-familly-mincho);
}

.top_issues_treatment_head__lower_inner {
  text-align-last: left;
}

.top_issues_treatment_head__emphasis {
  color: var(--accent-color);
  line-height: 20px;
}

.top_issues_treatment_head__sm {
  font-size: 1.6rem;
  font-family: var(--font-familly-ja);
  display: inline-block;
  margin-left: -10px;
  font-weight: 500;
}

.top_issues_treatment_head__md {
  display: inline-block;
  font-size: 2rem;
  width: fit-content;
  line-height: 20px;
}

.top_issues_treatment_head__md::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 100%;
  height: 8px;
  margin-inline: auto;
  background-image: url(../img/waveline_pink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top_issues_treatment_desc {
  margin-top: 44px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

.top_issues_images {
  margin-top: 40px;
  width: calc(100% + 32px);
  margin-left: -16px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.top_issues_images img {
  animation: scrollLeft 10s linear infinite;
  width: 620px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------- improvement ---------- */

.top_hair_improvement {
  position: relative;
  padding: 115px 16px 190px;
  background-color: var(--gray-color02);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  overflow: hidden;
}

.top_sections_title_improvement::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 180px;
  height: 95px;
  background-image: url(../img/section-title_haircare.svg);
  background-size: contain;
  bottom: 6px;
  left: -53px;
}

.top_hair_improvement_desc {
  margin-top: 30px;
  max-width: 330px;
  margin-inline: auto;
  font-size: 1.5rem;
  line-height: 20px;
}

.top_hair_improvement_desc__emphasis {
  color: var(--pink-color);
}

.top_hair_improvement_list {
  margin-top: 72px;
}

.top_hair_improvement_item {
  position: relative;
  margin-bottom: 20px;
}

.top_hair_improvement_item:not(:first-child) {
  margin-top: 42px;
}

.top_hair__improvement_menu {
  display: flex;
  flex-direction: column;
}

.top_hair__improvement_details:not(:first-child) {
  margin-top: 16px;
}

.top_hair__improvement_summary {
  display: block;
  cursor: pointer;
  position: relative;
}

.top_hair__improvement_summary::-webkit-details-marker {
  display: none;
}

.top_hair__improvement_summary-text {
  padding: 16px 24px;
  background-color: var(--white-color);
}

.top_hair__improvement_summary-icon {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
}

.top_hair__improvement_summary-icon::before, .top_hair__improvement_summary-icon::after {
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--black-color);
}

.top_hair__improvement_summary-icon::before {
  width: 2px;
  height: 24px;
  transition: opacity 0.2s ease-in, translate 0.2s ease-in;
}


.top_hair__improvement_details.is-opened .top_hair__improvement_summary-icon::before {
  opacity: 0;
  translate: 0 10%;
}

.top_hair__improvement_summary-icon::after {
  width: 24px;
  height: 2px;
}

.top_hair__improvement_content {
  display: block;
  overflow: hidden;
  background-color: var(--white-color);
  translate: 0 -32px;
  border-radius: 20px;
}


.top_hair_improvement_badge {
  position: relative;
  z-index: var(--z-index-default);
  width: calc(100% - 30px);
  margin-inline: auto;
  border-radius: 100vmax;
  padding: 15px 14px;
  background-image: linear-gradient(to right,var(--pink-color), #FFCFCF);
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.top_hair_improvement_badge:hover {
  opacity: .8;
}

.top_hair_improvement_number {
  width: 28px;
}

.top_hair_improvement_image {
  width: 100%;
  margin-top: 20px;
}

.top_hair_improvement_image img {
  width: 100%;
  height: auto;
}

.top_hair_improvement_title {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-familly-mincho);
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 31px;
}

.top_hair_improvement_title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  background-color: var(--white-color);
}

.top_hair_improvement_contents {
  overflow: hidden;
  padding-top: 96px;
  position: relative;
  translate: 0 -36px;
  z-index: calc(var(--z-index-default) - 1);
  border-radius: 20px;
}

.top_hair_improvement_text {
  margin-top: 30px;
  padding: 0 20px;
  font-size: 1.3rem;
  line-height: 18px;
}

.top_hair_improvement_section_separater {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 100vw;
  max-width: var(--content-max-width);
}

.top_hair_improvement_section_separater svg {
  width: 100%;
}

/* ---------- voice ---------- */
.top_voice {
  background-color: var(--gray-color02);
}

.top_sections_title_voice::before {
  top: -64px;
  left: -103px;
  width: 143px;
  height: 63px;
  background-image: url(../img/section-title_reviews.svg);
}

.top_voice_inner {
  padding-top: 80px;
  padding-bottom: 90px;
  border-bottom-left-radius: 110px;
  background-color: var(--white-color);
}

.top_voice_images {
  margin-top: 27px;
  padding: 0 32px;
}

.top_voice_compare {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.top_voice_compare:not(:first-child) {
  margin-top: 30px;
}

.top_voice_compare_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 297;
  overflow: hidden;
  border-radius: 5px;
}

.top_voice_compare_inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.top_voice_compare_inner img.after {
  clip-path: inset(0 0 0 50%);
}

/* スライダーと矢印全体をグループ化 */
.slider-group {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  z-index: 10;
}

/* 真ん中のスライダー */
.slider {
  width: 3px;
  height: 100vh;
  background: var(--pink-color);
}

/* 左右の矢印 */
.arrow {
  width: 14px;
  height: 26px;
  background: none;
  position: relative;
}

.arrow.left::before,
.arrow.right::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

/* 左矢印 */
.arrow.left::before {
  border-width: 20px 12px 20px 0;
  border-color: transparent var(--pink-color) transparent transparent;
}

/* 右矢印 */
.arrow.right::before {
  border-width: 20px 0 20px 12px;
  border-color: transparent transparent transparent var(--pink-color);
}

/* 矢印とスライダーの間に5pxの間隔 */
.arrow.left {
  margin-right: 4px;
}

.arrow.right {
  margin-left: 5px;
}

.top_voice_compare_info {
  margin-top: 10px;
}

.top_voice_compare_row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top_voice_compare_row:not(:first-child) {
  margin-top: 4px;
} 

.top_voice_compare_row_head {
  line-height: 2;
  padding: 0 17px;
  background-color: var(--pink-color);
  color: var(--white-color);
  font-size: 1.3rem;
}

.top_voice_compare_row_item {
  font-size: 1.3rem;
}

.top_voice_compare_voice {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-familly-mincho);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 20px;
  padding-bottom: 2px;
}

.top_voice_line {
  position: relative;
  z-index: 1;
}

.top_voice_line::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 5px;
  background: linear-gradient(to bottom, transparent calc(100% - 5px), #F3F0EA calc(100% - 5px));
  z-index: -1;
}

/* ---------- features ---------- */
.top_features {
  padding: 126px 0 36px;
  background-color: var(--gray-color02);
}

.top_sections_title__features::before {
  top: -75px;
  left: -47px;
  width: 149px;
  height: 96px;
  background-image: url(../img/section-title_features.svg);
}

.top_sections_title__features::after {
  content: "";
  display: block;
  margin-top: -4px;
  width: 100%;
  height: 7px;
  margin-inline: auto;
  background-image: url(../img/waveline_beige.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top_features_list {
  margin-top: 30px;
  padding: 0 30px;
}

.top_features_item:not(:first-child) {
  margin-top: 40px;
}

.top_features_title {
  display: flex;
  align-items: end;
  gap: 10px;
}

.top_features_title_number {
  width: min(100%, 65px);
}

.top_features_title_number img {
  width: 100%;
}

.top_features_title_text {
  margin-bottom: 8px;
  display: inline-block;
  font-size: 2rem;
  font-family: var(--font-familly-mincho);
  color: var(--accent-color);
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  width: 230px;
  height: 40px;
  background-color: var(--white-color);
  display: grid;
  place-content: center;
}

.top_features_desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 20px;
  margin-top: 10px;
}

.top_features_image {
  margin-top: 10px;
  border-top-right-radius: 80px;
  overflow: hidden;
}


/* ---------- campeign ---------- */
.top_campeign {
  padding: 0 20px 26px;
  position: relative;
  overflow: hidden;
  z-index: var(--z-index-default);
}

.top_campeign::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100px;
  background-color: var(--gray-color02);
  z-index: var(--z-index-back);
}

.top_features_campeign_banner {
  box-shadow: 0 4px 4px color-mix(in srgb, #000 25%, transparent);
  transition: box-shadow 0.3s ease;
}

.top_features_campeign_banner:hover {
  box-shadow: 0 8px 16px color-mix(in srgb, #000 35%, transparent);
  opacity: .8;
}

.top_features_campeign_banner:nth-child(2) {
  margin-top: 20px;
}

/* ---------- faq ---------- */
.top_faq {
  background-color: var(--gray-color02);
  padding: 120px 11px 99px;
}

.top_sections_title__faq::before {
  top: -60px;
  left: -96px;
  width: 149px;
  height: 96px;
  background-image: url(../img/section-title_faq.svg);
}

.top_faq_button.is_active .js_faq-a {
  overflow: visible;
}

.top_faq_list {
  margin-top: 22px;
}

.top_faq_menu {
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 0 #DDD;
  border-radius: 10px;
}

.top_faq_menu:not(:first-child) {
  margin-top: 20px;
}

.top_faq_summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
  position: relative;
}

.top_faq_summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.top_faq_summary-text {
  padding: 16px 24px;
  background-color: var(--white-color);
}

.top_faq_summary-icon {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
}

.top_faq_summary-icon::before, .top_faq_summary-icon::after {
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--black-color);
}

.top_faq_summary-icon::before {
  width: 2px;
  height: 24px;
  transition: opacity 0.2s ease-in, translate 0.2s ease-in;
}

/* is-openedクラスが付与されたときのスタイル */
.top_faq_details.is-opened .top_faq_summary-icon::before {
  opacity: 0;
  translate: 0 10%;
}

.top_faq_summary-icon::after {
  width: 24px;
  height: 2px;
}

.top_faq_content_text {
  padding: 16px;
}

.top_faq_content {
  width: 100%;
}

.top_faq_button {
  width: 100%;
}

.top_faq_button:not(:first-child) {
  margin-top: 20px;
}

.top_faq_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_faq_content__q {
  padding: 10px 10px 10px 20px;
  background-color: var(--white-color);
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--pink-color);
  transition: .5s
}

.top_faq_content__q:hover {
  opacity: .5;
}

.top_faq_details.is-opened .top_faq_content__q {
  border-top: 1px solid var(--pink-color);
  border-bottom: 0px solid var(--pink-color);
  border-left: 1px solid var(--pink-color);
  border-radius: 10px 10px 0 0;
}

.top_faq_content__a {
  padding: 9px 10px 10px 20px;
  background-color: var(--white-color);
  position: relative;
  border-color: var(--pink-color);
  transition: border 0.3s ease-in, border-radius 0.3s ease-in;
}

.top_faq_icon {
  width: 24px;
  flex-shrink: 0;
}

.top_faq_txts {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
}

.top_faq_txt {
  font-size: 1.4rem;
}

.top_faq_txt__q {
  font-weight: bold;
  color: var(--pink-color);
}

.top_faq_txt__a {
  color: var(--white-color);
}

.top_faq_details.is-opened .top_faq_txt__a{
  color: var(--black-color);
}

.top_faq_mark {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.top_faq_mark::before, .top_faq_mark::after {
  content:"";
  position: absolute;
  border: 100vmax;
  background-color: var(--pink-color);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: opacity 0.3s ease-in, translate 0.3s ease-in;
}

.top_faq_mark::before{
  width: 0.1rem;
  height: 1.5rem;
}

.top_faq_mark::after {
  width: 1.5rem;
  height: 0.1rem;
}

.top_faq_details.is-opened .top_faq_mark::before{
  opacity: 0;
} 

.top_faq_content__a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 1px solid var(--pink-color);
  border-bottom: 1px solid var(--pink-color);
  border-left: 1px solid var(--pink-color);
}

.top_faq_open {
  background-color: var(--white-color);
}

/* ---------- salon ---------- */
.top_salon {
  background-color: var(--gray-color02);
}

.top_salon_inner {
  padding-top: 106px;
  padding-bottom: 70px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  background-color: var(--white-color);
}

.top_sections_title__salon::before {
  top: -68px;
  left: -86px;
  width: 138px;
  height: 65px;
  background-image: url(../img/section-title_salon.svg);
}

.top_salon_list {
  margin-top: 31px;
  padding: 0 30px;
}

.top_salon_item:not(:first-child) {
  margin-top: 40px;
}

.top_salon_read {
  font-size: 1rem;
  line-height: 10px;
  margin-left: 1.8rem;
}

.top_salon_name {
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: var(--pink-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top_salon_name::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--pink-color);
}

.top_salon_infos {
  margin-top: 1.5rem;
}

.top_salon_info {
  display: flex;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
}

.top_salon_info:not(:first-child) {
  margin-top: 1rem;
}

.top_salon_info span {
  display: inline-block;
  text-align: center;
  width: 70px;
  border: 1px solid var(--black-color);
  border-radius: 3px;
  height: fit-content;
}

.top_salon_button {
  display: inline-block;
  width: min(100%, 300px);
  margin-top: 10px;
  padding: 12px 0;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--pink-color);
  text-align: center;
  color: var(--white-color);
  border-radius: 100vmax;
  box-shadow: 0 3px 0 var(--main-color-shadow);
  transition: .5s;
}

.coupon_menu .top_salon_button {
  background: var(--accent-color);
  box-shadow: 0 3px 0 #2c6e71;;
}

.top_salon_button:hover {
  opacity: .8;
}

.top_salon_button_underline {
  text-decoration: underline;
}

/* ---------- footer ---------- */
.footer {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-top: 36px;
  padding-bottom: 162px;
  text-align: center;
  border-top: 5px solid var(--pink-color);
}

.footer_copyright {
  font-size: 0.9rem;
}

/* ---------- js ---------- */

.js_faq.is_active .top_faq_mark::before {
  opacity: 0;
  translate: 0 30%;
}

.js_faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in;
}




/* ---------- coupon_menu ---------- */
.coupon_menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  z-index: var(--z-index-menu);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: scroll;
}

.coupon_desc {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.coupon_list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  width: 100%;
  max-width: 300px;
}

.coupon_item {
  text-align: center;
}

.coupon_item:not(:first-child) {
  margin-top: 30px;
}

.coupon_address {
  display: block;
  font-size: 16px;
  text-align: left;
  color: #333;
  position: relative;
}

.coupon_address::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--black-color);
  margin-right: 10px;
  vertical-align: middle;
}

.coupon_close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--accent-color);
  cursor: pointer;
}