/*
Theme Name: UNVEIL
Theme URI: https://example.com/unveil
Author: UNVEIL
Author URI: https://example.com/
Description: UNVEIL 公式サイト用のフルスクラッチテーマ。上質なシルク地・明朝体・金の細罫で構成した静謐なデザイン。（テーマフォルダ名 liberty は内部識別子のため変更しないこと）
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty
*/

/* =========================================================
   Design Tokens
   ========================================================= */
:root {
  /* color */
  --c-bg:        #f4efe6;
  --c-bg-light:  #faf7f1;
  --c-bg-panel:  #fdfbf7;
  --c-bg-footer: #ebe1d0;
  --c-text:      #4a4238;
  --c-text-sub:  #8b8177;
  --c-gold:      #a8895a;
  --c-gold-deep: #96784c;
  --c-gold-bg:   #ad8f5e;
  --c-border:    #ddd3c2;
  --c-star:      #b89a67;
  --c-white:     #fffdf9;

  /* type: 和文=游明朝体、英字=Canela（サイト全体をこの2書体に統一） */
  --font-serif-jp: "YuMincho", "Yu Mincho", "游明朝", "游明朝体", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-serif-en: "Canela", "Cormorant Garamond", "Times New Roman", serif;
  /* 料金・分数等の数字専用書体。Cormorant/Canelaは字面が細く金額が読みにくいため、
     数字の可読性が高いGeorgiaを充てる（円等の和文グリフは--font-serif-jp側へ自動フォールバック）。 */
  --font-price: Georgia, "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", var(--font-serif-jp);
  --ls-wide: .35em;
  --ls-mid:  .18em;
  --ls-body: .06em;

  /* layout */
  --w-content: 1080px;
  --sp-section: clamp(64px, 10vw, 120px);
  --header-h: 72px;
}

/* =========================================================
   Reset / Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
.no-scroll { overflow: hidden; }

:focus-visible {
  outline: 1px solid var(--c-gold);
  outline-offset: 2px;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.l-container {
  width: 100%;
  max-width: calc(var(--w-content) + 80px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.section { padding-block: var(--sp-section); }
.section--light  { background: var(--c-bg-light); }
.section--panel  { background: var(--c-bg-panel); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-label {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: var(--ls-mid);
  text-transform: uppercase;
  color: var(--c-gold);
}
.section-label__jp {
  font-family: var(--font-serif-jp);
  font-size: 12px;
  letter-spacing: var(--ls-mid);
  color: var(--c-text-sub);
}

/* =========================================================
   Ornament (center rule + diamond)
   ========================================================= */
.ornament {
  border: 0;
  height: 12px;
  width: min(240px, 64%);
  margin: 26px auto;
  position: relative;
  background:
    linear-gradient(90deg, transparent, var(--c-border)) left center / 42% 1px no-repeat,
    linear-gradient(90deg, var(--c-border), transparent) right center / 42% 1px no-repeat;
}
.ornament::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid var(--c-gold);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: var(--ls-mid);
  line-height: 1;
  padding: 14px 28px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--c-text);
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn--outline { border-color: var(--c-gold); color: var(--c-text); }
.btn--outline:hover { background: var(--c-gold-bg); border-color: var(--c-gold-bg); color: var(--c-white); }
.btn--fill {
  background: var(--c-gold-bg);
  border-color: var(--c-gold-bg);
  color: var(--c-white);
  letter-spacing: var(--ls-wide);
}
.btn--fill:hover { background: var(--c-gold-deep); border-color: var(--c-gold-deep); }
.btn--arrow::after {
  content: "→";
  font-family: var(--font-serif-en);
  font-size: 1.05em;
  transition: transform .3s ease;
}
.btn--arrow:hover::after { transform: translateX(4px); }
.btn__icon { display: inline-flex; width: 16px; height: 16px; }
.btn__icon svg { width: 100%; height: 100%; }

/* text link with arrow (section "一覧を見る →") */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: var(--ls-mid);
  color: var(--c-text-sub);
  text-decoration: none;
  transition: color .3s ease;
}
.link-more::after {
  content: "→";
  font-family: var(--font-serif-en);
  color: var(--c-gold);
  transition: transform .3s ease;
}
.link-more:hover { color: var(--c-gold); }
.link-more:hover::after { transform: translateX(4px); }

/* =========================================================
   Badges / Chips
   ========================================================= */
.badge-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  font-family: var(--font-serif-en);
  font-size: 12px;
  line-height: 1;
  color: var(--c-white);
  background: var(--c-gold-bg);
}
.badge-type--s { background: var(--c-gold-bg); }
.badge-type--m { background: var(--c-gold); }

.badge-new {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  font-family: var(--font-serif-en);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--c-white);
  background: var(--c-gold-bg);
  border-radius: 1px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 13px;
  font-size: 11px;
  letter-spacing: var(--ls-mid);
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  background: transparent;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--c-text-sub);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: transparent;
}

/* =========================================================
   Card / Table / Stars
   ========================================================= */
.card {
  background: var(--c-bg-panel);
  border: 1px solid var(--c-border);
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}
.profile-table th,
.profile-table td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid var(--c-border);
  font-weight: 400;
  font-size: 14px;
  vertical-align: top;
}
.profile-table th {
  width: 96px;
  font-family: var(--font-serif-jp);
  color: var(--c-text-sub);
  white-space: nowrap;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-star);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

/* =========================================================
   Form field
   ========================================================= */
.form-field { margin-bottom: 24px; }
.form-field > label {
  display: block;
  font-size: 13px;
  letter-spacing: var(--ls-mid);
  color: var(--c-text-sub);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-panel);
  font-family: var(--font-serif-jp);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.6;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 1px solid var(--c-gold); outline-offset: 1px; }

/* =========================================================
   Therapist card (shared: TOP carousel + archive grid)
   ========================================================= */
.therapist-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-panel);
  border: 1px solid var(--c-border);
}
.therapist-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #efe6d6, #e3d6c0);
}
.therapist-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.therapist-card:hover .therapist-card__media img { transform: scale(1.04); }
.therapist-card__ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold);
  opacity: .5;
}
.therapist-card__ph svg,
.therapist-card__ph img { width: 40px; height: 40px; object-fit: contain; }
.therapist-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 16px 22px;
  text-align: center;
}
.therapist-card__name {
  font-family: var(--font-serif-jp);
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--c-text);
  text-decoration: none;
}
.therapist-card__roma {
  font-family: var(--font-serif-en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.therapist-card__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--c-text-sub);
}
.therapist-card__stats .sep { color: var(--c-border); }
.therapist-card__more { margin-top: 12px; padding: 11px 26px; }

/* =========================================================
   News list
   ========================================================= */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  color: var(--c-text);
  transition: color .3s ease;
}
.news-item:first-child { border-top: 1px solid var(--c-border); }
.news-item:hover { color: var(--c-gold); }
.news-item__date {
  flex-shrink: 0;
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--c-gold);
}
.news-item__badge { flex-shrink: 0; }
.news-item__title { font-size: 14px; letter-spacing: .04em; }

/* =========================================================
   Page hero (sub pages)
   全下層ページ共通。マークアップは template-parts/page-hero.php に一本化。
   ※ ページ固有CSS(assets/css/pages/*.css)に複製しないこと。
      複製すると、そのCSSを読まないページ（一覧・詳細等）だけ崩れる。
   ========================================================= */
.page-hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 20px;
  text-align: center;
  background:
    radial-gradient(120% 120% at 80% 20%, rgba(255,255,255,.7), rgba(255,255,255,0) 55%),
    linear-gradient(122deg, #efe4d0 0%, #f6efe2 50%, #e7d9c1 100%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero__inner { text-align: center; }
/* 葉のオーナメント。svg に width/height 属性があっても、
   ここで実寸を確定させる（inline のままだと潰れる/伸びるため display 必須）。 */
.page-hero__ornament {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  color: var(--c-gold);
  line-height: 0;
}
.page-hero__ornament svg,
.page-hero__ornament img { width: 100%; height: 100%; object-fit: contain; }
.page-hero__title {
  font-family: var(--font-serif-en);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: var(--ls-wide);
  text-indent: var(--ls-wide);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--c-text);
}
/* 英字名を持たない汎用固定ページ（FAQ/プライバシー等）の和文大見出し */
.page-hero__title--jp {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 3.6vw, 32px);
  letter-spacing: var(--ls-mid);
  text-indent: 0;
}
.page-hero__sub {
  margin-top: 10px;
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: var(--ls-mid);
  color: var(--c-text-sub);
}
.page-hero__lead {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 14px;
  color: var(--c-text-sub);
}

/* =========================================================
   入稿コンテンツ（the_content 出力）の共通タイポグラフィ
   page.php（FAQ/ご利用の流れ/プライバシー等）と page-recruit.php が共有する。
   base reset で h1-h4/p の margin を 0 にしているため、ここで明示的に与える。
   ========================================================= */
.page-generic__inner,
.recruit-content__inner {
  padding-block: var(--sp-section);
}
.recruit-content__inner { padding-block: 0; }

.page-generic__inner > *:first-child,
.recruit-content__inner > *:first-child { margin-top: 0; }
.page-generic__inner > *:last-child,
.recruit-content__inner > *:last-child { margin-bottom: 0; }

.page-generic__inner h2,
.recruit-content__inner h2 {
  margin: 44px 0 14px;
  font-family: var(--font-serif-jp);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-body);
  color: var(--c-text);
}
.page-generic__inner h3,
.recruit-content__inner h3 {
  margin: 32px 0 12px;
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
}
.page-generic__inner p,
.recruit-content__inner p {
  margin: 0 0 16px;
  line-height: 2;
}
.page-generic__inner ul,
.page-generic__inner ol,
.recruit-content__inner ul,
.recruit-content__inner ol {
  margin: 0 0 16px;
  padding-left: 1.4em;
  list-style: disc;
}
.page-generic__inner li,
.recruit-content__inner li {
  margin-bottom: 6px;
  line-height: 1.9;
}
.page-generic__inner hr,
.recruit-content__inner hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid var(--c-border);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, .92);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-text);
}
.site-brand__leaf { width: 26px; height: 26px; color: var(--c-gold); }
.site-brand__leaf svg { width: 100%; height: 100%; }
.site-brand__mark { display: inline-flex; width: 28px; height: 28px; line-height: 0; }
.site-brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.site-brand__name {
  font-family: var(--font-serif-en);
  font-size: 22px;
  letter-spacing: var(--ls-wide);
  line-height: 1;
  white-space: nowrap;
}
.site-brand__sub {
  font-family: var(--font-serif-jp);
  font-size: 11px;
  letter-spacing: var(--ls-body);
  color: var(--c-text-sub);
  white-space: nowrap;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
}
.primary-nav__list a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: var(--ls-mid);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-text);
}
.primary-nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.primary-nav__list a:hover::after,
.primary-nav__list .current-menu-item > a::after,
.primary-nav__list a[aria-current]::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; }
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--c-gold-bg);
  color: var(--c-white);
  font-family: var(--font-serif-jp);
  font-size: 13px;
  letter-spacing: var(--ls-mid);
  text-decoration: none;
  transition: background .3s ease;
}
.line-btn:hover { background: var(--c-gold-deep); }
.line-btn__icon { display: inline-flex; width: 16px; height: 16px; }
.line-btn__icon svg { width: 100%; height: 100%; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  margin: 6px auto;
  background: var(--c-text);
  transition: transform .3s ease, opacity .3s ease;
}

/* =========================================================
   Drawer (mobile)
   ========================================================= */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 38, 30, .35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 190;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px);
  background: var(--c-bg-light);
  border-left: 1px solid var(--c-border);
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.drawer__close {
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  font-family: var(--font-serif-en);
  font-size: 24px;
  color: var(--c-text);
  cursor: pointer;
  line-height: 1;
}
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: var(--ls-mid);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-text);
}
.drawer__cta { margin-top: 28px; }
.drawer__cta .line-btn { width: 100%; justify-content: center; padding: 14px 20px; }

/* =========================================================
   Hero (front page)
   ========================================================= */
.hero { padding: clamp(14px, 2.4vw, 22px); background: var(--c-bg); }
.hero__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-gold);
  padding: clamp(56px, 12vw, 118px) clamp(20px, 6vw, 60px);
  text-align: center;
  background:
    radial-gradient(120% 90% at 82% 18%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 42%),
    radial-gradient(90% 120% at 16% 6%, rgba(251,246,238,.9) 0%, rgba(251,246,238,0) 50%),
    radial-gradient(120% 140% at 74% 98%, rgba(226,212,188,.65) 0%, rgba(226,212,188,0) 48%),
    linear-gradient(122deg, #ece0cc 0%, #f6efe2 38%, #efe4d0 62%, #e5d6bd 100%);
}
.hero__frame::after {
  content: "";
  position: absolute;
  top: -30%; left: -12%;
  width: 68%; height: 160%;
  background: radial-gradient(closest-side, rgba(255,255,255,.5), rgba(255,255,255,0));
  transform: rotate(18deg);
  opacity: .7;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__leaf { display: inline-flex; width: clamp(56px, 8vw, 78px); color: var(--c-gold); margin-bottom: 6px; }
.hero__leaf svg { width: 100%; height: auto; }
.hero__title {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 72px);
  letter-spacing: .4em;
  text-indent: .4em;
  line-height: 1.1;
  color: var(--c-text);
}
.hero__lead {
  font-family: var(--font-serif-jp);
  font-size: clamp(13px, 2.4vw, 16px);
  letter-spacing: var(--ls-mid);
  color: var(--c-text);
}

/* =========================================================
   Concept (front)
   ========================================================= */
.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.concept__title {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.5;
  letter-spacing: .08em;
  margin: 20px 0 24px;
}
.concept__body {
  font-size: 14px;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 34px;
}
.concept__media {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--c-border);
  background:
    radial-gradient(60% 60% at 72% 78%, rgba(255,246,222,.95) 0%, rgba(255,246,222,0) 55%),
    radial-gradient(40% 40% at 70% 74%, rgba(255,214,150,.7) 0%, rgba(255,214,150,0) 60%),
    linear-gradient(135deg, #efe6d5 0%, #e6d7bf 100%);
}

/* =========================================================
   Feature (LIBERTYのこだわり)
   ========================================================= */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
/* 原本は「線画アイコン(左) + タイトル/説明2行(右)」の横並び */
.feature__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 8px clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--c-border);
}
.feature__item:first-child { border-left: 0; }
/* display 指定は必須。span の初期値 inline のままだと width/height が効かず、
   子の svg の width:100% が .feature__item 基準で解決されて巨大化する。 */
.feature__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-top: 6px;
  color: var(--c-gold);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature__body { min-width: 0; }
.feature__title {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.feature__text { font-size: 13px; line-height: 1.9; color: var(--c-text-sub); }

/* =========================================================
   Therapist carousel (front)
   ========================================================= */
.therapist-carousel { position: relative; }
.therapist-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 20px;
}
.therapist-carousel__arrow {
  display: none;
  position: absolute;
  top: 42%;
  right: -18px;
  width: 44px; height: 44px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: var(--c-bg-panel);
  color: var(--c-gold);
  font-family: var(--font-serif-en);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.therapist-carousel__arrow:hover { background: var(--c-gold-bg); color: var(--c-white); }

/* =========================================================
   全ページ共通のご予約CTA（template-parts/cta-reserve.php）
   フッター直前に出す。公式LINEの友だち追加を主導線にするための帯。
   ========================================================= */
.reserve-cta {
  padding-block: clamp(48px, 6vw, 76px);
  background: var(--c-bg-panel);
  border-top: 1px solid var(--c-border);
}
.reserve-cta__inner { text-align: center; }
.reserve-cta__mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  line-height: 0;
}
.reserve-cta__mark img { width: 100%; height: 100%; object-fit: contain; }
.reserve-cta__label {
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: var(--ls-mid);
  color: var(--c-gold);
  margin: 0 0 8px;
}
.reserve-cta__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 500;
  letter-spacing: var(--ls-mid);
  color: var(--c-text);
  margin: 0 0 12px;
}
.reserve-cta__lead {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-sub);
  margin: 0 0 28px;
}
.reserve-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.reserve-cta__line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 268px;
  justify-content: center;
}
.reserve-cta__line-icon { display: inline-flex; width: 18px; height: 18px; }
.reserve-cta__line-icon svg { width: 100%; height: 100%; }
.reserve-cta__mail { min-width: 268px; justify-content: center; }

@media (max-width: 600px) {
  .reserve-cta__buttons { flex-direction: column; align-items: stretch; }
  .reserve-cta__line,
  .reserve-cta__mail { min-width: 0; width: 100%; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-bg-footer);
  border-top: 1px solid var(--c-border);
  padding-top: clamp(48px, 6vw, 72px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.4fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: 48px;
}
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-text);
  margin-bottom: 18px;
}
.footer-brand__leaf { width: 24px; height: 24px; color: var(--c-gold); }
.footer-brand__leaf svg { width: 100%; height: 100%; }
.footer-brand__mark { display: inline-flex; width: 26px; height: 26px; line-height: 0; }
.footer-brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand__name {
  font-family: var(--font-serif-en);
  font-size: 24px;
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}
.footer-brand__sub {
  font-family: var(--font-serif-jp);
  font-size: 12px;
  letter-spacing: var(--ls-body);
  color: var(--c-text-sub);
  white-space: nowrap;
}
.footer-brand__catch {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-sub);
}
.footer-col__title {
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: var(--ls-mid);
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col__list li { margin-bottom: 12px; }
.footer-col__list a {
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--c-text);
  transition: color .3s ease;
}
.footer-col__list a:hover { color: var(--c-gold); }

.footer-contact__buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.footer-contact__buttons .line-btn,
.footer-contact__buttons .btn { width: 100%; justify-content: center; }
.footer-sns { display: flex; gap: 14px; }
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text-sub);
  transition: color .3s ease, border-color .3s ease;
}
.footer-sns a:hover { color: var(--c-gold); border-color: var(--c-gold); }
.footer-sns svg { width: 16px; height: 16px; }

.site-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: 22px 0;
  text-align: center;
}
.site-footer__copy {
  font-family: var(--font-serif-en);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--c-text-sub);
}

/* =========================================================
   Utility
   ========================================================= */
.u-note { font-size: 11px; color: var(--c-text-sub); letter-spacing: .04em; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* =========================================================
   Responsive (<= 768px)
   ========================================================= */
@media (max-width: 768px) {
  .primary-nav,
  .header-cta { display: none; }
  .nav-toggle { display: block; }

  .concept__grid { grid-template-columns: 1fr; }
  .concept__media { order: -1; }

  .feature__grid { grid-template-columns: 1fr; }
  .feature__item { border-left: 0; border-top: 1px solid var(--c-border); padding: 28px 4px; }
  .feature__item:first-child { border-top: 0; padding-top: 0; }

  .therapist-track {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .therapist-track > * { scroll-snap-align: start; }

  .section-head { flex-direction: row; align-items: center; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (min-width: 769px) {
  .therapist-carousel__arrow { display: inline-flex; align-items: center; justify-content: center; }
}
