/* 整体院 ひとひら ── 信頼・LP型（あたたかいリラックス系）
   ────────────────────────────────────────────────────────────────
   【アーキタイプ】体の不調に寄り添う整体院の「安心して通える縦読みLP」。
   暗幕の没入ヒーローをやめ、明るい2分割ヒーロー＋数字バッジ、信頼の数字帯、
   番号付き縦タイムラインで縦に読ませる。他業種サンプル（歯科の淡ミント／
   接骨の濃紺）と並べたとき、別物に見えることを狙っている。

   【配色】暖色ナチュラル4役。差し色は面で使う（小面積の一点差しにしない）。
     地：生成り（--bg）／白カード（--white）／濃いめの生成り（--sand）
     差し色A：テラコッタ（--terra）… ボタン・数字・CTA帯の面
     差し色B：オリーブ（--olive）… 数字帯・メッセージ帯の面
     文字：あたたかい墨（--ink）
   医療系にありがちな寒色（水色・濃紺）を避け、手技・木・生成りの空気に合わせた
   暖色で、清潔さより「安心してくつろげる」印象を骨格でつくる。

   【書体】やさしい角ゴ中心。重い明朝は使わない。
     Zen Maru Gothic     … 見出し・大きな数字。丸ゴでリラックス感を出す主役
     Zen Kaku Gothic New … 本文。可読性
     Outfit              … 欧文ラベル・料金の数字

   【角丸】14〜18pxで大きめ。ピル型ボタン。やわらかい印象を骨格でつくる。

   【面の作り方】区切りは地の色の切り替わりで作る。白カードは情報の器として使い、
   セクションの地は 生成り／サンド を交互に敷く。 */

:root {
  --bg:      #f7f2ea;   /* 地A。生成り */
  --white:   #ffffff;   /* カード・器 */
  --cream:   #fbf7f0;
  --sand:    #f0e6d6;   /* 地B。濃いめの生成り */
  --sand-2:  #e8dcc6;
  --terra:      #a9542e;   /* 主差し色。ボタン・数字・帯（白文字 5.4:1） */
  --terra-d:    #8c4324;   /* ホバー */
  --terra-ink:  #90451f;   /* 明るい地の上の差し色文字（--white上 5.6:1） */
  --terra-tint: #f3e1d4;   /* ピル・淡い面 */
  --terra-tint2:#ecd0bd;   /* 罫 */
  --olive:      #5f6543;   /* 差し色B。帯の面（白文字 6.4:1） */
  --olive-2:    #4e5438;
  --ink:     #2e2822;   /* 本文。あたたかい墨 */
  --ink-sub: #64594c;   /* 副文字。--white上 5.6:1 */
  --line:    #e6dccb;   /* 罫 */
  --line-2:  #efe7d8;
  --on-dark:      rgba(255,255,255,.94);
  --on-dark-sub:  rgba(255,255,255,.80);
  --on-dark-fine: rgba(255,255,255,.64);
  --on-dark-line: rgba(255,255,255,.24);

  --maru:  "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --kaku:  "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --latin: "Outfit", "Zen Kaku Gothic New", sans-serif;

  --pad: clamp(20px, 5vw, 44px);
  --r:    18px;
  --r-sm: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--kaku);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.stat-row strong, .hero-badge strong, .price, .hero-hours,
.bar-tel, .label span, .info dd, .tl-marker {
  font-variant-numeric: tabular-nums;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 740px; }

.pc-br { display: none; }
@media (min-width: 700px) { .pc-br { display: inline; } }

/* ---------- ヘッダー ---------- */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 13px var(--pad);
  background: rgba(247,242,234,.86); backdrop-filter: blur(10px);
  transition: background .4s, box-shadow .4s;
}
.bar.on { background: rgba(255,255,255,.95); box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(46,40,34,.05); }
.bar .logo { font-family: var(--maru); font-weight: 700; font-size: 16px;
             letter-spacing: .08em; text-decoration: none; line-height: 1.5; }
.bar .logo small { display: block; font-family: var(--latin); font-weight: 400;
                   font-size: 9px; letter-spacing: .3em; color: var(--terra-ink); }
.bar nav { display: none; gap: 22px; font-size: 12.5px; letter-spacing: .06em; }
.bar nav a { text-decoration: none; color: var(--ink-sub); transition: color .3s; }
.bar nav a:hover { color: var(--terra-ink); }
.bar-tel {
  display: none; font-family: var(--latin); font-size: 15px; font-weight: 500;
  letter-spacing: .05em; text-decoration: none; padding: 8px 20px;
  color: var(--terra-ink); border: 1px solid var(--terra-tint2);
  border-radius: 999px; transition: background .3s, color .3s, border-color .3s;
}
.bar-tel:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
@media (min-width: 1000px) { .bar nav, .bar-tel { display: flex; } }

/* ---------- ヒーロー（明るい2分割）----------
   左：見出し＋サブ＋2CTA。右：施術写真の角丸フレーム＋数字バッジ2つ。 */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 100% 0%, var(--terra-tint) 0%, rgba(243,225,212,0) 55%),
    var(--bg);
  padding: clamp(96px, 15vw, 132px) 0 clamp(56px, 9vw, 96px);
}
.hero-grid { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad);
             display: grid; gap: clamp(36px, 5vw, 56px); align-items: center; }

.hero-tag {
  display: inline-block; font-size: 12px; letter-spacing: .06em;
  color: var(--terra-ink); background: var(--terra-tint);
  border: 1px solid var(--terra-tint2); border-radius: 999px;
  padding: 6px 16px; line-height: 1.7; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--maru); font-weight: 700; color: var(--ink);
  font-size: clamp(29px, 6.2vw, 48px); line-height: 1.55;
  letter-spacing: .03em; text-wrap: balance;
}
.hero-lede { margin-top: 22px; font-size: 15px; line-height: 2.1; color: var(--ink-sub);
             max-width: 33em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-hours {
  list-style: none; margin-top: 30px; display: grid; gap: 2px;
  border-top: 1px solid var(--line); padding-top: 20px;
  font-size: 13px; color: var(--ink-sub); max-width: 440px;
}
.hero-hours li { display: grid; grid-template-columns: 52px 1fr; gap: 12px;
                 align-items: baseline; line-height: 1.9; }
.hero-hours span { font-size: 11px; letter-spacing: .08em; color: var(--terra-ink);
                   font-weight: 700; font-family: var(--kaku); }
.hero-sample { margin-top: 22px; font-size: 11.5px; line-height: 1.9; color: var(--ink-sub); }

.hero-media { position: relative; }
.hero-photo { border-radius: var(--r); overflow: hidden;
              box-shadow: 0 24px 50px -22px rgba(74,44,26,.42); }
.hero-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 40% 22%; }

/* 数字バッジ。白カードに丸ゴの大きな数字。写真の角に重ねる */
.hero-badge {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--r-sm);
  padding: 13px 18px; box-shadow: 0 16px 34px -14px rgba(74,44,26,.34);
  border: 1px solid var(--line-2);
}
.hero-badge strong { font-family: var(--maru); font-weight: 700; color: var(--terra);
                     font-size: 30px; line-height: 1; letter-spacing: 0; }
.hero-badge strong em { font-style: normal; font-size: 14px; margin-left: 2px; }
.hero-badge span { font-size: 11px; line-height: 1.55; color: var(--ink-sub); letter-spacing: .02em; }
.hero-badge.badge-a { top: 18px; left: -12px; }
.hero-badge.badge-b { bottom: 20px; right: -12px; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: clamp(44px, 5vw, 72px); }
  .hero-photo img { aspect-ratio: 4 / 5; }
  .hero-badge.badge-a { left: -26px; }
  .hero-badge.badge-b { right: -26px; }
}
@media (max-width: 380px) {
  .hero-badge.badge-a { left: 0; }
  .hero-badge.badge-b { right: 0; }
}

/* ---------- 信頼の数字（横並びスタット・オリーブの面）---------- */
.stats { background: linear-gradient(180deg, #63694a 0%, #545a3c 100%); }
.stat-row {
  list-style: none; max-width: 1080px; margin: 0 auto; padding: clamp(30px, 5vw, 42px) var(--pad);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 20px;
}
.stat-row li { display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
               padding-left: 16px; border-left: 2px solid var(--on-dark-line); }
.stat-row strong { font-family: var(--maru); font-weight: 700; color: #fff;
                   font-size: clamp(34px, 6vw, 44px); line-height: 1; letter-spacing: 0; }
.stat-row strong em { font-style: normal; font-size: .42em; margin-left: 3px;
                      color: var(--on-dark); }
.stat-row span { font-size: 12px; line-height: 1.7; color: var(--on-dark-sub); letter-spacing: .02em; }
@media (min-width: 760px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- セクション共通 ---------- */
section { padding: clamp(64px, 10vw, 118px) 0; }
.sec-head { padding-bottom: clamp(28px, 5vw, 48px); }
.head-lede { font-size: 14.5px; color: var(--ink-sub); max-width: 660px; margin-top: 6px; }

.label {
  font-family: var(--latin); font-weight: 500; font-size: 11px;
  letter-spacing: .26em; color: var(--ink-sub);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.label span { color: var(--terra-ink); font-size: 13px; letter-spacing: .08em; }
.label::after { content: ""; flex: 1; height: 1px; background: var(--line); max-width: 88px; }

h2 {
  font-family: var(--maru); font-weight: 700; color: var(--ink);
  font-size: clamp(23px, 4.4vw, 33px); line-height: 1.6;
  letter-spacing: .03em; margin-bottom: 24px; text-wrap: balance;
}
h3 { font-family: var(--maru); font-weight: 700; letter-spacing: .03em; color: var(--ink); }
p + p { margin-top: 1.35em; }
.mute { color: var(--ink-sub); font-size: 13.5px; line-height: 2.1; }
strong { font-weight: 700; }
.fine-l { color: var(--ink-sub); font-size: 12.5px; line-height: 2; margin-top: 1.2em; }
.fine-l a { color: var(--terra-ink); text-underline-offset: 3px; }

/* 写真と色面の2分割。写真は面いっぱいに敷く */
.split { display: grid; padding: 0; }
.split-txt { display: flex; align-items: center; overflow: hidden;
             padding: clamp(52px, 9vw, 100px) 0; }
.split-inner { width: 100%; max-width: 580px; margin: 0 auto;
               padding: 0 var(--pad); position: relative; }
.split-media { position: relative; overflow: hidden; min-height: 64vw; }
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .split-media { min-height: 100%; }
  .split .split-inner { margin: 0 0 0 auto; padding-right: clamp(28px, 5vw, 64px); }
  .split.rev .split-txt { order: 2; }
  .split.rev .split-inner { margin: 0 auto 0 0; padding-right: var(--pad);
                            padding-left: clamp(28px, 5vw, 64px); }
}

/* ---------- 01 お悩み（サンド × 白カードのやわらかいリスト）---------- */
.sec-worry { background: var(--sand); }
.h-lead { text-align: center; }
.sec-worry .label { justify-content: center; }
.sec-worry .label::after { display: none; }
.checks { list-style: none; display: grid; gap: 12px; max-width: 660px; margin: 36px auto 0; }
.checks li {
  background: var(--white); border-radius: var(--r-sm); padding: 18px 22px 18px 58px;
  position: relative; font-size: 14.5px; line-height: 1.9;
  box-shadow: 0 6px 18px -12px rgba(74,44,26,.22);
}
.checks li::before {
  content: ""; position: absolute; left: 22px; top: 50%;
  width: 22px; height: 22px; margin-top: -11px; border-radius: 50%;
  background: var(--terra-tint);
}
.checks li::after {
  content: ""; position: absolute; left: 28px; top: 50%;
  width: 10px; height: 5px; margin-top: -3px;
  border-left: 2px solid var(--terra); border-bottom: 2px solid var(--terra);
  transform: rotate(-45deg);
}
.worry-note { max-width: 660px; margin: 34px auto 0; text-align: center; }
.worry-lead { font-family: var(--maru); font-weight: 700;
              font-size: clamp(16px, 2.6vw, 20px); letter-spacing: .03em; color: var(--terra-ink); }
.worry-note .mute { margin-top: 16px; text-align: left;
                    background: var(--white); border-radius: var(--r-sm);
                    padding: 24px 26px; box-shadow: 0 6px 18px -12px rgba(74,44,26,.2); }

/* ---------- 02 方針（サンドの2分割）---------- */
.sec-policy { background: var(--cream); }
.sec-policy p { color: var(--ink-sub); font-size: 14.5px; }
.sec-policy strong { color: var(--ink); }
.sec-policy .split-media img { object-position: center 15%; }

/* ---------- 03 選ばれる理由（3カラムカードにせず、縦2分割で読ませる）---------- */
.sec-reason { background: var(--bg); padding-bottom: 0; }
.reasons { display: grid; gap: 0; }
.reason.split { align-items: stretch; }
.reason.split:nth-of-type(odd) .split-txt { background: var(--white); }
.reason.split:nth-of-type(even) .split-txt { background: var(--cream); }
.pill {
  display: inline-block; font-family: var(--kaku); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; color: var(--terra-ink); background: var(--terra-tint);
  border: 1px solid var(--terra-tint2); border-radius: 999px;
  padding: 5px 16px; margin-bottom: 16px; line-height: 1.8;
}
.reason h3 { font-size: clamp(19px, 3.1vw, 25px); line-height: 1.55; margin-bottom: 14px; }
.reason p { font-size: 14px; line-height: 2.05; color: var(--ink-sub); }
.ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ticks li { font-size: 12px; letter-spacing: .02em; color: var(--terra-ink);
            background: var(--terra-tint); border: 1px solid var(--terra-tint2);
            border-radius: 999px; padding: 6px 15px; line-height: 1.8; }
/* 写真のない項目はオリーブの淡い帯で埋める */
.band-tint { background: var(--sand); padding: clamp(56px, 9vw, 100px) 0; }
.band-tint .ticks li { background: var(--white); }

/* ---------- メッセージの2分割（差し色オリーブの面）---------- */
.sec-message { background: linear-gradient(160deg, #656b48 0%, #4b5136 100%); }
.sec-message .split-txt { padding: clamp(56px, 10vw, 104px) 0; }
.sec-message .split-media { min-height: 66vw; }
.sec-message .split-media img { object-position: center 25%; }
.msg-lead { font-family: var(--maru); font-weight: 700; color: #fff;
            font-size: clamp(24px, 5.4vw, 39px); line-height: 1.5; letter-spacing: .03em;
            text-wrap: balance; }
.msg-sub { margin-top: 18px; color: var(--on-dark-sub); font-size: 14px; line-height: 2.1; }
@media (min-width: 900px) { .sec-message .split-media { min-height: 100%; } }

/* ---------- 04 施術の流れ（番号付き縦タイムライン）---------- */
.sec-flow { background: var(--sand); }
.timeline { list-style: none; position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 22px; top: 23px; bottom: 23px;
  width: 2px; background: var(--sand-2);
}
.tl-item { position: relative; padding: 0 0 clamp(30px, 4vw, 42px) 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  position: absolute; left: 0; top: 0; z-index: 1;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--terra); color: #fff; display: grid; place-items: center;
  font-family: var(--maru); font-weight: 700; font-size: 19px; line-height: 1;
  box-shadow: 0 0 0 6px var(--sand);
}
.tl-body {
  background: var(--white); border-radius: var(--r); border: 1px solid var(--line-2);
  padding: 24px 26px; box-shadow: 0 10px 26px -18px rgba(74,44,26,.3);
}
.tl-body h3 { font-size: clamp(17px, 3vw, 21px); line-height: 1.55; margin-bottom: 10px; }
.tl-body p { font-size: 13.5px; line-height: 2.05; color: var(--ink-sub); }
.tl-img { margin-top: 18px; border-radius: var(--r-sm); overflow: hidden; }
.tl-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 18%; }
@media (min-width: 700px) {
  .tl-img { max-width: 340px; }
}

/* ---------- 05 料金（白地のすっきりした表）---------- */
.sec-price { background: var(--bg); }
.reassure {
  background: var(--terra-tint); border: 1px solid var(--terra-tint2); border-radius: var(--r-sm);
  border-left: 3px solid var(--terra); padding: 18px 22px;
  font-size: 14px; line-height: 2; color: var(--ink); margin-bottom: 24px;
}
.table-scroll { overflow-x: auto; margin-top: 4px; -webkit-overflow-scrolling: touch; }
.price { width: 100%; min-width: 460px; border-collapse: collapse;
         background: var(--white); border-radius: var(--r-sm); overflow: hidden;
         box-shadow: 0 8px 24px -18px rgba(74,44,26,.3); }
.price th, .price td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line-2); }
.price thead th { font-size: 11.5px; letter-spacing: .12em; font-weight: 500;
                  color: var(--ink-sub); background: var(--terra-tint); border-bottom: 0; }
.price tbody tr:last-child td { border-bottom: 0; }
.price th:last-child, .price td:last-child { text-align: right; }
.price th:nth-child(2), .price td:nth-child(2) { width: 88px; white-space: nowrap;
                                                 font-family: var(--latin); font-size: 14px; }
.price .nm { display: block; font-size: 14.5px; color: var(--ink); }
.price .ds { display: block; font-size: 11.5px; color: var(--ink-sub); line-height: 1.8; }
.price td { color: var(--ink); }
.price td:last-child { font-family: var(--latin); font-size: 17px; font-weight: 500;
                       letter-spacing: .02em; white-space: nowrap; color: var(--terra-ink); }
.price-note { list-style: none; margin-top: 22px; font-size: 12.5px; color: var(--ink-sub); line-height: 2; }
.price-note li { padding-left: 16px; position: relative; }
.price-note li::before { content: "※"; position: absolute; left: 0; color: var(--terra-ink); }

.inline-cta {
  margin-top: 44px; padding: 32px var(--pad); text-align: center;
  background: var(--terra-tint); border: 1px solid var(--terra-tint2); border-radius: var(--r);
}
.inline-cta p { font-size: 13.5px; color: var(--ink); }
.inline-cta .btn { margin-top: 20px; }

/* ---------- 06 お客様の声（サンド地。白カード）---------- */
.sec-voice { background: var(--sand); }
.voices { display: grid; gap: 16px; margin-top: 38px; }
@media (min-width: 800px) { .voices { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.voice { background: var(--white); border-radius: var(--r); padding: 30px 26px 26px;
         position: relative; border: 1px solid var(--line-2);
         box-shadow: 0 8px 24px -18px rgba(74,44,26,.28); }
.voice blockquote { font-size: 13.5px; line-height: 2.15; color: var(--ink); }
.voice blockquote::before { content: "\201C"; font-family: var(--maru); font-size: 40px;
                            color: var(--terra); opacity: .45; display: block;
                            line-height: .8; margin-bottom: 6px; }
.voice figcaption { margin-top: 18px; font-size: 11.5px; letter-spacing: .08em;
                    color: var(--ink-sub); }
.voice figcaption::before { content: ""; display: block; width: 24px; height: 1px;
                            background: var(--terra); margin-bottom: 12px; }

/* ---------- 07 FAQ（生成り地。白カードのアコーディオン）---------- */
.sec-faq { background: var(--cream); }
.faq { margin-top: 32px; display: grid; gap: 10px; }
.faq details { background: var(--white); border-radius: var(--r-sm);
               border: 1px solid var(--line-2);
               box-shadow: 0 6px 18px -14px rgba(74,44,26,.22); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; position: relative;
               padding: 19px 50px 19px 50px; font-size: 14.5px; line-height: 1.9;
               font-family: var(--maru); font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 22px; top: 18px;
                       font-family: var(--latin); font-weight: 600; font-size: 14px; color: var(--terra); }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%;
                      width: 9px; height: 9px; margin-top: -7px;
                      border-right: 1.8px solid var(--terra-ink);
                      border-bottom: 1.8px solid var(--terra-ink);
                      transform: rotate(45deg); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq .a { padding: 0 24px 22px 50px; font-size: 13.5px; line-height: 2.1;
          color: var(--ink-sub); position: relative; }
.faq .a::before { content: "A"; position: absolute; left: 22px; top: 0;
                  font-family: var(--latin); font-weight: 600; font-size: 14px; color: var(--ink-sub); }

/* ---------- 08 アクセス ---------- */
.sec-access { background: var(--bg); }
.access { display: grid; gap: 32px; margin-top: 36px; }
@media (min-width: 860px) { .access { grid-template-columns: 1.05fr .95fr; gap: 50px; } }
.info div { display: grid; grid-template-columns: 92px 1fr; gap: 16px;
            padding: 14px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.info div:first-child { border-top: 1px solid var(--line); }
.info dt { font-size: 11.5px; letter-spacing: .1em; color: var(--ink-sub); }
.info dd { font-size: 14px; line-height: 1.95; color: var(--ink); }
.info dd a { color: var(--terra-ink); text-decoration: none; }
.map-card { background: var(--terra-tint); border: 1px solid var(--terra-tint2); border-radius: var(--r);
            padding: 36px 32px; height: 100%; display: flex; flex-direction: column;
            justify-content: center; }
.map-name { font-family: var(--maru); font-weight: 700; color: var(--ink);
            font-size: 18px; letter-spacing: .04em; }
.map-addr { margin-top: 8px; font-size: 13px; color: var(--ink-sub); }
.map-card .btn { margin-top: 24px; align-self: flex-start; }
.map-note { margin-top: 22px; font-size: 12px; color: var(--ink-sub); line-height: 2; }

/* ---------- ボタン ----------
   ピル型・大きめの角丸。主：テラコッタベタ／副：白抜きゴースト。 */
.btn {
  display: inline-block; padding: 15px 30px;
  background: var(--terra); color: #fff; text-decoration: none;
  font-family: var(--kaku); font-weight: 700;
  font-size: 14px; letter-spacing: .05em; border-radius: 999px;
  border: 1px solid var(--terra);
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 10px 22px -12px rgba(169,84,46,.6);
}
.btn:hover { background: var(--terra-d); border-color: var(--terra-d);
             transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgba(169,84,46,.6); }
.btn.ghost { background: var(--white); color: var(--terra-ink);
             border-color: var(--terra-tint2); box-shadow: none; }
.btn.ghost:hover { background: var(--terra-tint); border-color: var(--terra);
                   box-shadow: 0 10px 22px -14px rgba(74,44,26,.4); }

/* CTA帯は差し色テラコッタの面 */
.cta-band { background: linear-gradient(160deg, #a9542e 0%, #833f22 100%);
            color: var(--on-dark); text-align: center;
            padding: clamp(56px, 9vw, 96px) 0; }
.cta-band .label { justify-content: center; color: var(--on-dark-sub); }
.cta-band .label span { color: #fff; }
.cta-band .label::after { display: none; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: var(--on-dark-sub); font-size: 14px; line-height: 2.1; }
.cta-band .btn { background: #fff; color: var(--terra-d); border-color: #fff;
                 box-shadow: 0 12px 26px -14px rgba(0,0,0,.4); }
.cta-band .btn:hover { background: var(--terra-tint); border-color: var(--terra-tint); color: var(--terra-d); }
.cta-band .btn.ghost { background: transparent; color: #fff; border-color: var(--on-dark-line); }
.cta-band .btn.ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.cta-fine { margin-top: 24px; font-size: 11.5px; color: var(--on-dark-fine); line-height: 2; }

/* スマホ追従バー */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  box-shadow: 0 -2px 20px rgba(74,44,26,.12);
  transform: translateY(115%); transition: transform .4s;
}
.sticky.on { transform: none; }
.sticky a { flex: 1; text-align: center; padding: 14px 6px; text-decoration: none;
            font-family: var(--kaku); font-weight: 700;
            font-size: 13.5px; letter-spacing: .04em; border-radius: 999px; }
.sticky .s1 { background: var(--terra); color: #fff; }
.sticky .s2 { background: var(--white); color: var(--terra-ink); border: 1px solid var(--terra-tint2); }
@media (min-width: 1000px) { .sticky { display: none; } }

/* ---------- フッター ---------- */
footer { background: #35281d; color: #c3b3a2; text-align: center;
         padding: 54px var(--pad) 104px; }
.f-logo { font-family: var(--maru); font-weight: 700; color: #fff;
          font-size: 15px; letter-spacing: .08em; margin-bottom: 16px; }
footer p { font-size: 11.5px; line-height: 2.1; }
.f-note { max-width: 660px; margin: 18px auto 0; color: #a4917e; }
.credit { margin-top: 24px; font-size: 10.5px; color: #948071; }
footer a { color: #d0c1b1; }
@media (min-width: 1000px) { footer { padding-bottom: 54px; } }

/* スクロールで浮かび上がる */
.rise { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  html { scroll-behavior: auto; }
}
