@charset "UTF-8";
/**
 * SCSS Mixins
 *
 * 利用例:
 * @use 'mixin' as m;
 *
 * .example {
 *   font-size: 14px;
 *   @include m.mq('pc') {
 *     font-size: 18px;
 *   }
 * }
 */
/**
 * フォント
 *
 * 各ファイルで font-family 文字列を直書きせず、これらの mixin を使う。
 * 利用例:
 * .example { @include m.serif; }
 *
 * - serif    … 英字セリフ（EB Garamond）
 * - serif-jp … 和文明朝（Noto Serif JP）
 * - sans-jp  … 和文ゴシック（Noto Sans JP）
 */
/**
 * 店舗一覧（salon）ページ
 */
.l-salon-detail .l-inner {
  padding-inline: 0;
  padding: 0 15px;
}

.l-salon__body {
  padding: 32px 0 60px;
}
@media screen and (min-width: 768px) {
  .l-salon__body {
    padding: 0 0 130px;
  }
}

.c-section-ttl {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .c-section-ttl {
    margin-bottom: 60px;
  }
}

.p-salon-filter-group {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-salon-filter-group {
    padding: 0;
  }
}

/* Filter（スタッフと同じピル型） */
.p-salon-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-salon-filter {
    margin-bottom: 30px;
    justify-content: center;
    gap: 16px;
    padding: 0;
  }
}

.p-salon-filter__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #4c4948;
  border-radius: 999px;
  background-color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  width: 48.5%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #4c4948;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-salon-filter__btn {
    min-height: 48px;
    padding-inline: 36px;
    font-size: 18px;
    width: auto;
  }
}
.p-salon-filter__btn.is-active {
  background-color: #4c4948;
  border-color: #4c4948;
  color: #fff;
}

/* ブランド＋メニューのフィルタをまとめるラッパー
   PC はタブ行の幅に合わせて縮める（--menu の区切り線がタブ行と同じ長さになる） */
@media screen and (min-width: 768px) {
  .p-salon-filter-group {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

/* メニュー（salonmenu）フィルタ：ブランドタブの下に区切り線を挟んで表示 */
.p-salon-filter--menu {
  border-top: 1px solid #4c4948;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-salon-filter--menu {
    padding-top: 30px;
  }
}

/* Grid（SP1列 / pc2列 / md3列） */
.p-salon-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
  /* トップ(top.css)の .p-salon-list 背景画像をアーカイブでは打ち消す */
  position: static;
  padding: 0 36px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-salon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin-top: 60px;
  }
}
.p-salon-list::before {
  display: none;
}
@media screen and (min-width: 960px) {
  .p-salon-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px 32px;
  }
}

.p-salon-list__item {
  min-width: 0;
}

/* Card */
.p-salon-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #4c4948;
}
.p-salon-card__photo {
  margin: 0 0 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #f5f5f5;
}
.p-salon-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-salon-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-salon-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.p-salon-card__logo {
  display: inline-flex;
  flex-shrink: 0;
  /* ブランド別ロゴサイズ（shu は基底のまま） */
}
.p-salon-card__logo img {
  display: block;
  width: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-salon-card__logo--kuranch img {
  width: 72px;
}
@media screen and (min-width: 768px) {
  .p-salon-card__logo--kuranch img {
    width: 83px;
  }
}
.p-salon-card__logo--ita img {
  width: 38px;
}
@media screen and (min-width: 768px) {
  .p-salon-card__logo--ita img {
    width: 42px;
  }
}
.p-salon-card__name {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.p-salon-card__address {
  margin: 0 0 2px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.p-salon-card__tel {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.p-salon-card__tel a {
  color: inherit;
  text-decoration: none;
}
.p-salon-card__detail {
  margin-top: auto;
  text-align: center;
}
.p-salon-card__detail-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #898989;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #4c4948;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-salon-card__detail-link {
    font-size: 17px;
  }
}
@media (any-hover: hover) {
  .p-salon-card__detail-link:hover {
    opacity: 0.7;
  }
}
.p-salon-card__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-salon-card__reserve {
    font-size: 17px;
  }
}
@media (any-hover: hover) {
  .p-salon-card__reserve:hover {
    opacity: 0.85;
  }
}
.p-salon-card__reserve--green {
  background-color: #288c4d;
}
.p-salon-card__reserve--orange {
  background-color: #e47e2a;
}
.p-salon-card__reserve--purple {
  background-color: #3a2186;
}

.p-salon-empty {
  margin: 0;
  padding: 48px 0;
  font-size: 14px;
  text-align: center;
  color: #8d8d8e;
}

/* =========================================================
   店舗詳細（single-salon）
   ========================================================= */
.l-salon-detail__inner {
  padding-block: 8px 60px;
}
@media screen and (min-width: 768px) {
  .l-salon-detail__inner {
    padding-block: 16px 80px;
  }
}

/* 画像プレースホルダ（静的時の仮表示。ACF接続後は <img> が入る） */
.p-salon-ph {
  position: relative;
  margin: 0;
  background-color: #e6e3df;
  overflow: hidden;
}
.p-salon-ph__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #fff;
}
.p-salon-ph img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 店名 */
.p-salon-detail__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-salon-detail__head {
    margin-bottom: 60px;
  }
}

.p-salon-detail__logo img {
  display: block;
  width: auto;
  height: 84px;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-salon-detail__name {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ページ内ナビは archive と同じ .p-salon-filter / .p-salon-filter__btn を流用 */
/* セクション見出し */
.p-salon-sec-ttl {
  margin: 0 0 28px;
  text-align: center;
}
.p-salon-sec-ttl__en {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 36px;
  letter-spacing: 0.32em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-salon-sec-ttl__en {
    font-size: 36px;
  }
}
.p-salon-sec-ttl__en.narrow {
  letter-spacing: 0.2em;
}
.p-salon-sec-ttl__ja {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
}

.p-salon-concept,
.p-salon-menu,
.p-salon-info,
.p-salon-staff {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-salon-concept,
.p-salon-menu,
.p-salon-info,
.p-salon-staff {
    margin-bottom: 60px;
  }
}

/* CONCEPT */
.p-salon-concept__image {
  aspect-ratio: 16/9;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-salon-concept__image {
    max-width: 800px;
    margin: 0 auto 40px;
    aspect-ratio: 800/480;
  }
}

.p-salon-concept__text {
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-salon-concept__text p {
  margin: 0 0 1.4em;
  color: #727171;
}
.p-salon-concept__text p:last-child {
  margin-bottom: 0;
}

/* ポイント（繰り返し） */
.p-salon-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-salon-points {
    gap: 56px;
    margin: 40px calc(50% - 50vw) 80px;
  }
}

.p-salon-point {
  position: relative;
  padding: 0 15px 35px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .p-salon-point {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 0 35px;
  }
}
.p-salon-point::before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background: rgba(247, 248, 248, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-salon-point::before {
    width: 60%;
    left: inherit;
    right: 0;
  }
}
.p-salon-point:last-child {
  margin-bottom: 0;
}

.p-salon-point__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #C2C2C2;
}
@media screen and (min-width: 768px) {
  .p-salon-point__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.p-salon-point__image {
  aspect-ratio: 16/10;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-salon-point__image {
    width: 480px;
    flex-shrink: 0;
  }
}

.p-salon-point__num {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "EB Garamond", serif;
  font-size: 70px;
  line-height: 1;
  /* 90deg テキストグラデーション（0% #47AC9E → 100% #A1DFA2） */
  background: linear-gradient(90deg, #47AC9E 0%, #A1DFA2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-salon-point__num {
    font-size: 90px;
  }
}

.p-salon-point__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.36em;
}
@media screen and (min-width: 768px) {
  .p-salon-point__title {
    font-size: 25px;
  }
}

.p-salon-point__txt {
  margin: 0;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.14em;
}

@media screen and (min-width: 768px) {
  .p-salon-point {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .p-salon-point:nth-child(even) {
    padding-left: 30px;
  }
  .p-salon-point:nth-child(even)::before {
    right: inherit;
    left: 0;
    width: 60%;
  }
  .p-salon-point:nth-child(even) .p-salon-point__image {
    order: 2;
  }
  .p-salon-point__image {
    margin-bottom: 0;
  }
}
.p-salon-menu {
  padding: 60px 15px;
  background: url("../../img/salon/bg-menu-sp.webp") no-repeat center top/cover;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-salon-menu {
    padding: 80px 0;
    background: url("../../img/salon/bg-menu.webp") no-repeat center top/cover;
    margin: 0 calc(50% - 50vw) 80px;
  }
}

/* MENU */
.p-salon-menu__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-salon-menu__list {
    max-width: 1000px;
    margin: 0 auto 40px;
  }
}

.p-salon-menu__item {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-direction: column;
  padding: 16px 4px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-salon-menu__item {
    flex-direction: row;
    border-bottom: 1px solid #d8d8d8;
    justify-content: space-between;
    padding: 0 0 1rem;
    margin-bottom: 1rem;
  }
}

.p-salon-menu__name {
  border-bottom: 1px solid #d8d8d8;
  font-size: 16px;
  letter-spacing: 0.04em;
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-salon-menu__name {
    font-size: 18px;
    border: none;
    width: auto;
    padding-bottom: 0;
    margin: 0;
  }
}

.p-salon-menu__price {
  font-size: 20px;
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 768px) {
  .p-salon-menu__price {
    font-size: 22px;
  }
}

.p-salon-menu__more,
.p-salon-staff__more {
  text-align: center;
  width: 300px;
  margin: 48px auto 0;
}
@media screen and (min-width: 768px) {
  .p-salon-menu__more,
.p-salon-staff__more {
    width: 360px;
    margin: 60px auto 0;
  }
}

/* 共通アウトラインボタン */
.p-salon-detail__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  min-height: 56px;
  padding-inline: 24px;
  border: 1px solid #4c4948;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #4c4948;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-salon-detail__btn-outline:hover {
    opacity: 0.7;
  }
}

/* INFORMATION */
.p-salon-info__map {
  aspect-ratio: 16/9;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .p-salon-info__map {
    aspect-ratio: 1000/400;
  }
}
.p-salon-info__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-salon-info__list {
  margin: 0 0 32px;
}
@media screen and (min-width: 768px) {
  .p-salon-info__list {
    margin: 0 0 60px;
  }
}

.p-salon-info__row {
  margin-bottom: 1.5rem;
}
.p-salon-info__row:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-salon-info__row {
    display: flex;
    gap: 16px;
  }
}

.p-salon-info__dt {
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 16px;
  width: 100%;
  position: relative;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.p-salon-info__dt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgb(144, 195, 160) 0%, rgb(137, 122, 182) 50%, rgb(239, 178, 127) 100%);
}
@media screen and (min-width: 768px) {
  .p-salon-info__dt {
    margin-bottom: 0;
    letter-spacing: 0.3em;
    padding-left: 1rem;
    padding-bottom: 20px;
    width: 160px;
  }
}

.p-salon-info__dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-salon-info__dd {
    padding-bottom: 20px;
    padding-left: 1rem;
    border-bottom: 2px solid #d8d8d8;
    letter-spacing: 0.05em;
    width: 100%;
  }
}
.p-salon-info__dd a {
  color: inherit;
  text-decoration: none;
}

.p-salon-info__reserve {
  text-align: center;
}

/* 予約ボタン（ブランド色） */
.p-salon-detail__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  min-height: 56px;
  padding-inline: 24px;
  border: 1px solid #4c4948;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #4c4948;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-salon-detail__reserve {
    max-width: 360px;
  }
}
@media (any-hover: hover) {
  .p-salon-detail__reserve:hover {
    opacity: 0.85;
  }
}

.p-salon-staff {
  padding: 60px 15px;
  background: url("../../img/salon/bg-staff-sp.webp") no-repeat center top/cover;
  margin: 0 calc(50% - 50vw);
  /* スタッフカードは staff.css の .p-staff-card を共通利用（個別に上書きしない） */
}
@media screen and (min-width: 768px) {
  .p-salon-staff {
    padding: 80px 0;
    background: url("../../img/salon/bg-staff.webp") no-repeat center top/cover;
  }
}
@media screen and (min-width: 768px) {
  .p-salon-staff .p-staff-list {
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* STAFF はアーカイブ(archive-staff)と同じ .p-staff-list / .p-staff-card を流用（staff.css を読み込み） */
/*# sourceMappingURL=salon.css.map */