/* ============================================================
   タイ古式マッサージ イムノ・ヴィラ（imunovilla）— 共通スタイル

   デザイン方針：ナチュラル・自然
   生成りの白 × 明朝体 × 苔・若葉のグリーン × 土のベージュ。
   ロゴの霞んだミント（--mist）を差し色に、余白を大きくとる。
   （レイアウトの型・余白感・明朝体の扱いは ygarden.jp を参照）

   基調色はこの :root の CSS 変数で一括変更できる
   ============================================================ */

:root {
  --paper:       #fdfcf9;   /* 生成りの白（自然光の紙） */
  --paper-tint:  #f7f5ee;   /* セクション交互背景（麻・土のベージュ） */
  --paper-warm:  #f8f6ee;
  --ink:         #333a30;   /* 深い緑がかった墨 */
  --ink-soft:    #6a7263;
  --ink-faint:   #9aa192;
  --green:       #6d8a5f;   /* 苔・主色 */
  --green-deep:  #47603c;   /* 深い葉かげ */
  --green-pale:  #eaf0e3;
  --mist:        #b9d2d1;   /* ロゴの霞んだミント（差し色） */
  --mist-pale:   #e9f1ee;
  --earth:       #b9a37c;   /* 土・木のベージュ */
  --gold:        #a89159;   /* 罫線・装飾の落ち着いた金 */
  --line-green:  #06c755;   /* LINE ブランド色 */
  --rule:        rgba(71, 96, 60, .17);

  --serif: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --display: "Cormorant", "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --header-h: 84px;
  --gut: clamp(20px, 5vw, 40px);
  --measure: 1080px;

  /* 旧ティール系の別名（過去の記述が残っていても崩れないように） */
  --teal: var(--green);
  --teal-deep: var(--green-deep);
  --teal-pale: var(--green-pale);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 15.5px;
  line-height: 2.05;
  letter-spacing: .06em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- 紙の質感（ごく微細なノイズを全面に重ねる） ---- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .26;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.45 0 0 0 0 0.36 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
#site_header, main, #site_footer, #float_cta { position: relative; z-index: 1; }

/* height:auto は必須。width/height 属性を持つ画像を CSS で幅指定すると、
   これが無いと縦横比が崩れる（属性の height が残ってしまう） */
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--teal); text-decoration: none; transition: color .3s, opacity .3s, background-color .3s; }
a:hover { color: var(--teal-deep); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ============================================================
   ヘッダー
   ============================================================ */
#site_header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gut);
  background: rgba(252, 251, 246, .94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s;
}
#site_header.scrolled { box-shadow: 0 4px 28px rgba(71, 96, 60, .08); }

.site_logo { display: flex; align-items: center; gap: 12px; }
.site_logo img { width: 42px; height: 42px; border-radius: 50%; }
.site_logo .txt { display: flex; flex-direction: column; line-height: 1.3; }
.site_logo .ja {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  letter-spacing: .16em; color: var(--teal-deep);
}
.site_logo .en {
  font-family: var(--display); font-size: 10.5px; font-weight: 500;
  letter-spacing: .3em; color: var(--ink-faint); text-transform: uppercase;
}

#global_nav > ul { display: flex; align-items: center; gap: clamp(12px, 1.9vw, 26px); }
#global_nav a {
  font-size: 13px; letter-spacing: .1em; color: var(--ink);
  position: relative; padding: 6px 0; white-space: nowrap;
}
#global_nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--teal);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
#global_nav a:hover::after,
#global_nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
#global_nav a[aria-current="page"] { color: var(--teal-deep); }

.nav_cta {
  background: var(--line-green); color: #fff !important;
  padding: 10px 20px !important; border-radius: 999px;
  font-weight: 500; letter-spacing: .08em;
}
.nav_cta::after { display: none !important; }
.nav_cta:hover { opacity: .85; }

/* ---- モバイルメニュー ---- */
#menu_toggle {
  display: none; width: 46px; height: 46px; border: none; cursor: pointer;
  background: var(--teal); border-radius: 8px; position: relative; z-index: 110;
}
#menu_toggle span {
  position: absolute; left: 13px; right: 13px; height: 2px; background: #fff;
  transition: transform .3s, opacity .3s;
}
#menu_toggle span:nth-child(1) { top: 16px; }
#menu_toggle span:nth-child(2) { top: 22px; }
#menu_toggle span:nth-child(3) { top: 28px; }
body.menu_open #menu_toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu_open #menu_toggle span:nth-child(2) { opacity: 0; }
body.menu_open #menu_toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  #menu_toggle { display: block; }
  /* backdrop-filter があると fixed の基準がヘッダーになりオーバーレイが壊れる */
  body.menu_open #site_header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  #global_nav {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(252, 251, 246, .985);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
    overflow-y: auto;
  }
  body.menu_open #global_nav { opacity: 1; visibility: visible; }
  #global_nav > ul {
    flex-direction: column; gap: 4px;
    padding: calc(var(--header-h) + 32px) var(--gut) 48px; width: 100%; max-width: 460px;
  }
  #global_nav > ul > li { width: 100%; text-align: center; }
  #global_nav a {
    display: block; padding: 15px 0; font-size: 15px;
    font-family: var(--serif); border-bottom: 1px solid var(--rule);
  }
  #global_nav a::after { display: none; }
  .nav_cta { margin-top: 22px; border-bottom: none !important; }
}

/* ============================================================
   共通レイアウト
   ============================================================ */
main { padding-top: var(--header-h); }

.section { padding: clamp(72px, 11vw, 132px) var(--gut); }
.section.tint { background: var(--paper-tint); }
.section.mist { background: linear-gradient(180deg, var(--green-pale), #f2f6ee 55%, var(--mist-pale)); }
.inner { max-width: var(--measure); margin: 0 auto; }
.inner.narrow { max-width: 780px; }

/* ---- 見出し（EN ラベル ＋ 和文） ---- */
.sec_head { text-align: center; margin-bottom: clamp(40px, 6vw, 68px); }
.sec_head .label {
  display: block; font-family: var(--display);
  font-size: clamp(11px, 1.4vw, 13px); font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.sec_head h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(22px, 3.4vw, 33px); line-height: 1.55; letter-spacing: .1em;
  color: var(--ink);
}
.sec_head .lead {
  margin-top: 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 2.15;
}
/* 見出し下の飾り：小枝のオーナメント */
.sec_head::after {
  content: ""; display: block; width: 130px; height: 28px;
  margin: 24px auto 0;
  background: url("../images/sprig.svg") center/contain no-repeat;
  opacity: .85;
}

h3 { font-family: var(--serif); font-weight: 600; letter-spacing: .09em; line-height: 1.6; }

.prose p + p { margin-top: 1.5em; }
.prose h3 { font-size: clamp(18px, 2.3vw, 22px); margin: 2.4em 0 .9em; color: var(--teal-deep); }
.prose h3:first-child { margin-top: 0; }
.prose h4 { font-family: var(--serif); font-size: 16.5px; margin: 1.9em 0 .5em; letter-spacing: .08em; }
.prose ul { margin: 1em 0; }
.prose ul li { padding-left: 1.2em; position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .95em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--mist);
}
.prose ol { margin: 1em 0 1em 1.4em; list-style: decimal; }
.prose ol li { padding-left: .3em; }
.prose strong { font-weight: 600; color: var(--teal-deep); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.note { font-size: 13px; color: var(--ink-soft); line-height: 1.95; }

/* ---- ボタン ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 15px 40px; border-radius: 999px;
  font-size: 14.5px; letter-spacing: .12em; font-weight: 500;
  transition: transform .3s, box-shadow .3s, opacity .3s, background-color .3s, color .3s;
}
.btn_line {
  background: var(--line-green); color: #fff !important;
  box-shadow: 0 8px 26px rgba(6, 199, 85, .26);
}
.btn_line:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6, 199, 85, .34); }
.btn_solid { background: var(--teal); color: #fff !important; }
.btn_solid:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn_ghost { border: 1px solid var(--teal); color: var(--teal) !important; background: transparent; }
.btn_ghost:hover { background: var(--teal); color: #fff !important; }
.btn_row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---- 装飾：フラワー・オブ・ライフ（images/flower-of-life.svg を <img> で配置） ---- */
.fol {
  opacity: .5;
  width: clamp(180px, 34vw, 340px); height: auto; aspect-ratio: 1;
  position: absolute; pointer-events: none; z-index: 0;
  user-select: none;
}

/* ============================================================
   ヒーロー
   ============================================================ */
/* 明るい生成りの地に、写真を右端まで抜いて置く非対称レイアウト。
   写真に暗いスクリムはかけず、文字は写真の外（左）に置いて読ませる。 */
#hero {
  position: relative; overflow: hidden;
  background: var(--paper);
}
.hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: center;
  min-height: min(70vh, 560px);
  position: relative; z-index: 1;
}
.hero_copywrap {
  /* 左は中央寄せコンテナの内側に合わせ、右は写真との間に余白をとる */
  padding: clamp(52px, 7vw, 92px) clamp(24px, 3.4vw, 52px)
           clamp(52px, 7vw, 92px) max(var(--gut), calc((100vw - var(--measure)) / 2));
}
.hero_photo {
  position: relative; align-self: stretch;
  min-height: clamp(280px, 46vw, 640px);
}
.hero_photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
}
/* 左下に敷く淡い色面（ygarden 風の重なり）。
   .hero_photo::before だと z-index:-1 が #hero の背景より奥に回って見えないため、
   #hero 側の ::before として置き、.hero_grid を上に重ねる。 */
#hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 0; bottom: 0;
  width: min(30%, 360px); height: 36%;
  /* ごく淡く。はっきり出すと文字を横切る境界線が「ずれ」に見えるため */
  background: #f5f8f0;
}
@media (max-width: 900px) { #hero::before { display: none; } }

.hero_eyebrow {
  font-family: var(--display); font-size: clamp(10.5px, 1.2vw, 12px); font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: var(--green);
  margin-bottom: clamp(18px, 2.4vw, 26px);
}
.hero_copy {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(24px, 3.05vw, 35px); line-height: 1.75; letter-spacing: .08em;
  color: var(--ink);
}
.hero_copy .em { color: var(--green-deep); }
.hero_copy .sm {
  display: block; font-size: .53em; letter-spacing: .13em; margin-top: .9em;
  color: var(--ink-soft); font-weight: 500; line-height: 1.95;
}
.hero_sub {
  margin-top: clamp(20px, 2.8vw, 30px);
  font-size: 14.5px; line-height: 2.15; color: var(--ink-soft);
}
.hero_actions {
  margin-top: clamp(26px, 3.6vw, 38px);
  display: flex; flex-wrap: wrap; gap: 14px;
}

@media (max-width: 900px) {
  .hero_grid { grid-template-columns: 1fr; min-height: 0; }
  .hero_photo { order: -1; min-height: clamp(240px, 62vw, 420px); }
  .hero_photo::before { display: none; }
  .hero_copywrap {
    padding: clamp(34px, 7vw, 52px) var(--gut) clamp(40px, 8vw, 60px);
    text-align: center;
  }
  .hero_actions { justify-content: center; }
}

/* ============================================================
   写真ブロック
   ============================================================ */
/* 単体の写真（本文中に置く）。縦位置写真が縦に伸びすぎないよう幅を抑えて中央寄せ */
.photo {
  margin: clamp(30px, 4.5vw, 48px) auto;
  max-width: 560px;
}
.photo.wide { max-width: 100%; }
.photo img {
  width: 100%; height: auto; border-radius: 4px;
  box-shadow: 0 14px 38px rgba(51, 58, 48, .13);
}
.photo figcaption {
  margin-top: 12px; font-size: 12.5px; color: var(--ink-faint);
  letter-spacing: .08em; line-height: 1.85;
}

/* 写真＋文章の2カラム */
.media {
  display: grid; gap: clamp(28px, 4.5vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.media_img img {
  width: 100%; height: auto; border-radius: 4px;
  box-shadow: 0 16px 42px rgba(51, 58, 48, .15);
}
.media_img figcaption {
  margin-top: 12px; font-size: 12.5px; color: var(--ink-faint); letter-spacing: .08em;
}
/* .media の下に続く本文は読みやすい幅に収める */
.concept_tail { max-width: 780px; margin: clamp(32px, 4.5vw, 50px) auto 0; text-align: left; }

/* 写真を右に置く */
.media.rev .media_img { order: 2; }
@media (max-width: 860px) {
  .media { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 36px); }
  .media.rev .media_img { order: 0; }
}

/* ============================================================
   悩み訴求（problem）
   ============================================================ */
.problem_list {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  max-width: 900px; margin: 0 auto;
}
.problem_list li {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: 22px 24px; font-size: 14.5px; line-height: 1.95;
  display: flex; gap: 12px; align-items: flex-start;
}
.problem_list li::before {
  content: "✓"; color: var(--green); font-size: 15px; line-height: 1.9; flex: none;
}
.problem_after {
  text-align: center; margin-top: clamp(36px, 5vw, 54px);
  font-family: var(--serif); font-size: clamp(16px, 2.3vw, 21px);
  line-height: 2.1; letter-spacing: .1em; color: var(--teal-deep);
}

/* ============================================================
   4つの理由（reason）
   ============================================================ */
.reason_grid {
  display: grid; gap: clamp(28px, 4vw, 46px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ---- 写真と文章を左右交互に並べる形（ygarden の「4つのこと」の型）---- */
.reason_rows { display: grid; gap: clamp(48px, 8vw, 104px); }
.reason_row {
  display: grid; align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4.5vw, 64px);
}
/* 縦位置・横位置が混ざっているので、比率を揃えて行の高さを均す。
   切り取り位置は写真ごとに object-position で調整（.r_img img[data-pos]）。 */
.reason_row .r_img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(51, 58, 48, .13);
}
.reason_row .r_img img.pos_upper { object-position: 50% 30%; }
.reason_row .r_img img.pos_lower { object-position: 50% 62%; }
/* 偶数番は写真を右に */
.reason_row:nth-child(even) .r_img { order: 2; }

.reason_row .r_num {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display); font-size: 22px; font-weight: 600;
  letter-spacing: .1em; color: var(--green); margin-bottom: 14px;
}
.reason_row .r_num::after {
  content: ""; flex: 1 1 auto; height: 1px; background: var(--rule); max-width: 90px;
}
.reason_row h3 {
  font-size: clamp(18px, 2.3vw, 23px); color: var(--green-deep);
  margin-bottom: 16px; line-height: 1.65;
}
.reason_row p { font-size: 14.5px; color: var(--ink-soft); line-height: 2.15; }

@media (max-width: 880px) {
  .reason_row { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 30px); }
  .reason_row:nth-child(even) .r_img { order: 0; }
}
.reason_item { position: relative; padding-top: 6px; }
.reason_item .num {
  font-family: var(--display); font-size: 44px; font-weight: 500;
  line-height: 1; color: var(--earth); letter-spacing: .04em; display: block;
  margin-bottom: 14px;
}
.reason_item h3 { font-size: clamp(17px, 2.1vw, 20px); color: var(--teal-deep); margin-bottom: 14px; }
.reason_item p { font-size: 14.5px; color: var(--ink-soft); line-height: 2.1; }

/* ============================================================
   メニュー／料金表
   ============================================================ */
.menu_group + .menu_group { margin-top: clamp(44px, 6vw, 68px); }
.menu_group_head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--gold);
}
.menu_group_head h3 { font-size: clamp(18px, 2.4vw, 22px); color: var(--teal-deep); }
.menu_group_head .en {
  font-family: var(--display); font-size: 11.5px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint);
}

.price_list li {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 20px 2px; border-bottom: 1px dashed var(--rule);
}
.price_list .name {
  font-family: var(--serif); font-size: clamp(15.5px, 1.9vw, 17.5px);
  letter-spacing: .07em; flex: 1 1 auto; min-width: 200px;
}
.price_list .time {
  font-family: var(--display); font-size: 14px; font-weight: 600;
  letter-spacing: .1em; color: var(--ink-soft); flex: none;
}
.price_list .yen {
  font-family: var(--display); font-size: clamp(19px, 2.6vw, 24px); font-weight: 600;
  letter-spacing: .04em; color: var(--teal-deep); flex: none; min-width: 116px; text-align: right;
}
.price_list .yen small { font-size: .58em; font-family: var(--sans); font-weight: 400; margin-left: 3px; }
.price_list .desc {
  flex: 1 1 100%; font-size: 13.5px; color: var(--ink-soft);
  line-height: 1.95; margin-top: 6px;
}
.price_list .tag {
  display: inline-block; font-size: 11px; letter-spacing: .1em;
  background: var(--mist-pale); color: var(--teal-deep);
  padding: 3px 11px; border-radius: 999px; flex: none;
}

.menu_visual { margin-top: clamp(44px, 6vw, 66px); text-align: center; }
.menu_visual img {
  margin: 0 auto; max-width: 420px; width: 100%;
  border: 1px solid var(--rule); border-radius: 4px;
  box-shadow: 0 10px 34px rgba(71, 96, 60, .08);
}
.menu_visual figcaption { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); letter-spacing: .1em; }

/* ============================================================
   施術の流れ（flow）
   ============================================================ */
.flow_list { max-width: 780px; margin: 0 auto; }
.flow_list > li {
  position: relative; padding: 0 0 clamp(34px, 5vw, 48px) clamp(56px, 8vw, 74px);
}
.flow_list > li:last-child { padding-bottom: 0; }
.flow_list > li::before {   /* 縦線 */
  content: ""; position: absolute; left: 17px; top: 40px; bottom: 0;
  width: 1px; background: var(--rule);
}
.flow_list > li:last-child::before { display: none; }
.flow_list .step {
  position: absolute; left: 0; top: 2px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: var(--display); font-size: 15px; font-weight: 600;
  display: grid; place-items: center; letter-spacing: 0;
}
.flow_list h3 { font-size: clamp(16.5px, 2.1vw, 19px); margin-bottom: 10px; color: var(--teal-deep); }
.flow_list p { font-size: 14.5px; color: var(--ink-soft); line-height: 2.1; }

/* ============================================================
   FAQ（アコーディオン）
   ============================================================ */
.faq_list { max-width: 820px; margin: 0 auto; }
.faq_item { border-bottom: 1px solid var(--rule); }
.faq_item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 24px 52px 24px 42px;
  font-family: var(--serif); font-size: clamp(15px, 1.9vw, 17px);
  letter-spacing: .07em; line-height: 1.8;
  transition: color .3s;
}
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary:hover { color: var(--teal); }
.faq_item summary::before {
  content: "Q"; position: absolute; left: 4px; top: 22px;
  font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--earth);
}
.faq_item summary::after {   /* ＋ → − */
  content: ""; position: absolute; right: 12px; top: 50%;
  width: 13px; height: 13px; margin-top: -6px;
  background:
    linear-gradient(var(--teal), var(--teal)) center/13px 1.5px no-repeat,
    linear-gradient(var(--teal), var(--teal)) center/1.5px 13px no-repeat;
  transition: background-size .3s;
}
.faq_item[open] summary::after { background-size: 13px 1.5px, 1.5px 0; }
.faq_answer {
  padding: 0 20px 26px 42px; position: relative;
  font-size: 14.5px; color: var(--ink-soft); line-height: 2.15;
}
.faq_answer::before {
  content: "A"; position: absolute; left: 4px; top: 0;
  font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--teal);
}
.faq_answer p + p { margin-top: 1em; }

/* ============================================================
   情報テーブル（アクセス・店舗概要）
   ============================================================ */
.info_table { width: 100%; border-collapse: collapse; }
.info_table th, .info_table td {
  text-align: left; vertical-align: top;
  padding: 18px 4px; border-bottom: 1px solid var(--rule);
  font-size: 14.5px; line-height: 2;
}
.info_table th {
  width: 8.5em; font-family: var(--serif); font-weight: 600;
  letter-spacing: .1em; color: var(--teal-deep); white-space: nowrap;
}
@media (max-width: 600px) {
  .info_table th, .info_table td { display: block; width: auto; border-bottom: none; padding: 0; }
  .info_table th { padding-top: 18px; }
  .info_table td { padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
}

.map_frame {
  margin-top: clamp(32px, 5vw, 48px);
  border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; line-height: 0;
}
.map_frame iframe { width: 100%; height: clamp(280px, 44vw, 420px); border: 0; display: block; }

/* ============================================================
   カード群（下層ページへの誘導）
   ============================================================ */
.card_grid {
  display: grid; gap: clamp(18px, 2.6vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}
.card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  padding: clamp(26px, 3.4vw, 34px);
  color: var(--ink) !important;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.card:hover {
  transform: translateY(-4px); border-color: var(--mist);
  box-shadow: 0 14px 36px rgba(71, 96, 60, .09);
}
.card .en {
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--teal);
}
.card h3 { font-size: clamp(16.5px, 2vw, 19px); color: var(--teal-deep); }
.card p { font-size: 13.5px; color: var(--ink-soft); line-height: 2; }
.card .more {
  margin-top: auto; padding-top: 12px;
  font-size: 12.5px; letter-spacing: .14em; color: var(--teal);
}
.card .more::after { content: " →"; }

/* ============================================================
   セラピスト紹介
   ============================================================ */
.profile {
  display: grid; gap: clamp(28px, 4.5vw, 54px);
  grid-template-columns: minmax(200px, 300px) 1fr;
  align-items: start;
}
@media (max-width: 760px) { .profile { grid-template-columns: 1fr; } }
.profile_visual {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 16px 42px rgba(51, 58, 48, .15);
}
.profile_visual img { width: 100%; height: auto; display: block; }
.profile_name { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.profile_name .ja { font-family: var(--serif); font-size: clamp(21px, 2.8vw, 26px); letter-spacing: .12em; }
.profile_name .role { font-size: 12.5px; letter-spacing: .16em; color: var(--teal); }

.timeline { margin-top: 1.6em; }
.timeline li {
  display: flex; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--rule);
  font-size: 14px; line-height: 1.95;
}
.timeline .yr {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  color: var(--teal); flex: none; min-width: 4.2em; letter-spacing: .06em;
}

/* ============================================================
   下部 CTA
   ============================================================ */
#cta {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(72px, 10vw, 118px) var(--gut);
  background: linear-gradient(158deg, var(--green-pale) 0%, #edf2e7 45%, var(--mist-pale) 100%);
}
#cta .fol { top: -14%; right: -8%; opacity: .38; }
#cta .inner { position: relative; z-index: 1; }
#cta h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(20px, 3.1vw, 30px); line-height: 1.7; letter-spacing: .1em;
  color: var(--ink);
}
#cta .label {
  display: block; font-family: var(--display); font-size: 11.5px; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
#cta p { margin-top: 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 2.15; }
#cta .btn_row { margin-top: clamp(32px, 4.5vw, 44px); }
#cta .tel { margin-top: 26px; font-size: 13.5px; color: var(--ink-soft); letter-spacing: .08em; }
#cta .tel a { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: .06em; }

/* ============================================================
   フッター
   ============================================================ */
#site_footer {
  background: var(--ink); color: rgba(255, 255, 255, .72);
  padding: clamp(56px, 8vw, 82px) var(--gut) 34px;
  font-size: 13.5px;
}
#site_footer a { color: rgba(255, 255, 255, .78); }
#site_footer a:hover { color: #fff; }
.footer_top {
  max-width: var(--measure); margin: 0 auto;
  display: grid; gap: clamp(34px, 5vw, 60px);
  grid-template-columns: minmax(240px, 1fr) auto;
}
@media (max-width: 800px) { .footer_top { grid-template-columns: 1fr; } }

.footer_brand .ja {
  font-family: var(--serif); font-size: 18px; letter-spacing: .16em; color: #fff;
  display: block; margin-bottom: 6px;
}
.footer_brand .en {
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--mist);
}
.footer_brand address { font-style: normal; margin-top: 20px; line-height: 2.1; }
.footer_brand .sns { display: flex; gap: 18px; margin-top: 20px; font-size: 12.5px; letter-spacing: .1em; }

.footer_nav { display: flex; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.footer_nav h3 {
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--mist); margin-bottom: 14px;
}
.footer_nav li { line-height: 2.35; font-size: 13px; }

.footer_bottom {
  max-width: var(--measure); margin: clamp(40px, 6vw, 60px) auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11.5px; letter-spacing: .1em; color: rgba(255, 255, 255, .5);
}
.footer_bottom .copy { font-family: var(--display); letter-spacing: .16em; }

/* ---- 追従 CTA（モバイル） ---- */
#float_cta { display: none; }
@media (max-width: 760px) {
  #float_cta {
    display: block; position: fixed; z-index: 90;
    left: 16px; right: 16px; bottom: 16px;
  }
  #float_cta .btn { width: 100%; min-height: 54px; }
  #site_footer { padding-bottom: 96px; }
}

/* ============================================================
   下層ページのページヘッダー
   ============================================================ */
#page_head {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(52px, 8vw, 86px) var(--gut) clamp(46px, 7vw, 74px);
  background: linear-gradient(160deg, #f7f8f0, var(--green-pale) 65%, var(--mist-pale));
}
#page_head .fol { bottom: -46%; left: -6%; opacity: .34; }
#page_head .inner { position: relative; z-index: 1; }
#page_head .label {
  display: block; font-family: var(--display); font-size: clamp(11px, 1.4vw, 12.5px);
  font-weight: 600; letter-spacing: .42em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
#page_head h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(23px, 3.6vw, 34px); line-height: 1.6; letter-spacing: .12em;
  color: var(--ink);
}
#page_head p { margin-top: 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 2.15; }

/* ---- パンくず ---- */
.breadcrumb {
  max-width: var(--measure); margin: 0 auto;
  padding: 16px var(--gut) 0;
  font-size: 11.5px; letter-spacing: .08em; color: var(--ink-faint);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: "／"; margin-right: 8px; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-soft); }

/* ============================================================
   スクロール演出
   ============================================================ */
/* JS が有効なときだけ隠す。JS が読めなかった場合も本文は必ず表示される。
   （<head> の1行スクリプトが html.has-js を付与する） */
.has-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.has-js .reveal.shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
