/* まつなが接骨院・はり灸院 ── 信頼・LP型

   明るい白基調の縦読みLP。濃紺／インディゴを骨格に、活力ある青緑（シアン）を
   スポーティな差し色として面で使う。スポーツ障害・ケガに強い国家資格院という
   性格を、数字（有資格者・保険・実績）を前面に出して伝える。
   兄弟サンプル（dentalミント／seitaiテラコッタ）とは配色・骨格ともに別もの。

   ・暗幕ヒーローは使わない。明るい2分割＋数字バッジで始める
   ・強みは3カラム理由カードではなく横並び数字スタットで見せる
   ・受診の流れは番号付きの縦タイムライン
   ・やさしい角ゴ＋ゆるやかな角丸。書類的な硬さを避ける */

:root {
  --base:    #FFFFFF;
  --base-2:  #EEF3F9;   /* 冷たみのある薄い地 */
  --base-3:  #F6F9FC;
  --white:   #FFFFFF;

  --ink:     #17233D;   /* 濃紺みの文字 */
  --ink-sub: #586277;

  --navy:    #16294F;   /* 濃紺／インディゴ。大面積のベタ・CTA */
  --navy-2:  #0E1C39;   /* さらに濃い。フッター等 */
  --on-navy: #EAF0F8;
  --on-navy-sub: #9DAAC4;
  --on-navy-line: #2E4370;

  --teal:    #0FB6B6;   /* 活力ある青緑／シアン。差し色 */
  --teal-2:  #0A8F91;   /* ホバー・濃い側 */
  --teal-soft: #E1F5F5; /* 淡いシアン地 */

  --ng:      #C8402F;   /* 「使えない」側の識別色（警告ではない） */

  --line:    #D6DEEA;
  --line-2:  #E6ECF4;

  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --head: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --num:  "Oswald", "Zen Kaku Gothic New", sans-serif;

  --pad: clamp(18px, 4.6vw, 44px);
  --bar-h: 64px;
  --r: 14px;
  --r-s: 9px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--base);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
}

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

.tbl, .info { font-variant-numeric: tabular-nums; }

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

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

/* ---------- ヘッダー ---------- */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--bar-h);
  padding: 10px var(--pad);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.bar.on { border-bottom-color: var(--line-2); box-shadow: 0 6px 24px rgba(22,41,79,.06); }
.bar .logo {
  font-family: var(--head); font-weight: 700; font-size: 16px;
  letter-spacing: .03em; line-height: 1.35; text-decoration: none; color: var(--navy);
}
.bar .logo small {
  display: block; font-family: var(--sans); font-weight: 500;
  font-size: 10.5px; letter-spacing: .08em; color: var(--teal-2); margin-top: 2px;
}
.bar nav { display: none; gap: 22px; font-size: 12.5px; letter-spacing: .03em; }
.bar nav a { text-decoration: none; color: var(--ink-sub); padding-bottom: 3px;
             border-bottom: 2px solid transparent; transition: color .25s, border-color .25s; }
.bar nav a:hover { color: var(--navy); border-bottom-color: var(--teal); }
.bar-tel {
  display: none; align-items: center; gap: 7px;
  font-family: var(--num); font-weight: 500; font-size: 16px; letter-spacing: .02em;
  text-decoration: none; padding: 9px 18px; border-radius: 999px;
  background: var(--navy); color: #fff; transition: background .25s, transform .1s;
}
.bar-tel::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.bar-tel:hover { background: var(--navy-2); }
@media (min-width: 1000px) { .bar nav, .bar-tel { display: flex; } }

/* ---------- ヒーロー ── 明るい2分割 ---------- */
.hero {
  padding-top: calc(var(--bar-h) + clamp(28px, 5vw, 60px));
  background:
    radial-gradient(120% 90% at 88% 0%, var(--teal-soft) 0%, rgba(225,245,245,0) 46%),
    var(--base-3);
}
.hero-grid { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad) clamp(40px, 6vw, 76px);
             display: grid; gap: clamp(30px, 4vw, 52px); align-items: center; }
.hero-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--teal-2);
  background: var(--white); border: 1px solid var(--line-2);
  padding: 7px 15px 7px 12px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(22,41,79,.05);
}
.hero-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%;
                      background: var(--teal); box-shadow: 0 0 0 4px rgba(15,182,182,.18); }
.hero-title {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(28px, 6.2vw, 50px); line-height: 1.42;
  letter-spacing: .005em; color: var(--navy); margin-top: 22px; text-wrap: balance;
}
.hero-title mark { background: none; color: var(--teal-2);
                   box-shadow: inset 0 -.42em 0 var(--teal-soft); padding: 0 .04em; }
.hero-text { margin-top: 22px; font-size: 14.5px; line-height: 2.05; color: var(--ink-sub);
             max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px;
  font-size: 12.5px; font-weight: 500; color: var(--navy);
}
.hero-badges li { display: flex; align-items: center; gap: 7px;
                  background: var(--white); border: 1px solid var(--line);
                  padding: 8px 14px; border-radius: 999px; }
.hero-badges li::before { content: ""; width: 14px; height: 8px; flex: none;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg) translateY(-2px); }

.hero-photo { position: relative; border-radius: var(--r); overflow: visible; }
.hero-photo img { width: 100%; height: clamp(300px, 62vw, 560px); object-fit: cover;
                  object-position: 50% 32%; border-radius: var(--r);
                  box-shadow: 0 30px 60px -28px rgba(14,28,57,.5); }
.hero-chip {
  position: absolute; left: -14px; bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: var(--on-navy);
  padding: 15px 22px 15px 18px; border-radius: var(--r-s);
  box-shadow: 0 18px 40px -14px rgba(14,28,57,.6);
}
.hero-chip .n { font-family: var(--num); font-weight: 600; font-size: 42px; line-height: .9;
                color: #fff; }
.hero-chip .n small { font-size: 16px; font-weight: 500; margin-left: 2px; }
.hero-chip .t { font-size: 12px; line-height: 1.5; letter-spacing: .02em; }
.hero-chip .t b { display: block; font-size: 13.5px; color: var(--teal); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.02fr 1fr; }
  .hero-photo img { height: clamp(420px, 46vw, 580px); }
}

/* ---------- 数字スタット帯（濃紺） ---------- */
.stats { background: var(--navy); color: var(--on-navy); }
.stat-row {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 1080px; margin: 0 auto;
}
.stat-row li {
  padding: clamp(26px, 4vw, 40px) var(--pad);
  border-top: 1px solid var(--on-navy-line);
  border-left: 1px solid var(--on-navy-line);
}
.stat-row li:nth-child(-n+2) { border-top: 0; }
.stat-row li:nth-child(odd) { border-left: 0; }
.stat-num { display: inline-flex; align-items: baseline; gap: 4px;
            font-family: var(--num); font-weight: 600; line-height: .9; color: #fff; }
.stat-num .v { font-size: clamp(46px, 8vw, 68px); color: var(--teal); }
.stat-num .u { font-size: clamp(16px, 3vw, 22px); font-weight: 500; }
.stat-row p { margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--on-navy); }
.stat-row small { display: block; font-size: 11.5px; font-weight: 400;
                  color: var(--on-navy-sub); letter-spacing: .02em; margin-top: 3px; line-height: 1.7; }
@media (min-width: 720px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .stat-row li:nth-child(-n+4) { border-top: 0; }
  .stat-row li:nth-child(odd) { border-left: 1px solid var(--on-navy-line); }
  .stat-row li:first-child { border-left: 0; }
}

/* ---------- セクション共通 ---------- */
[id] { scroll-margin-top: calc(var(--bar-h) + 8px); }
.sec { padding: clamp(58px, 9vw, 104px) 0; }
.sec-tint { background: var(--base-2); }

.head { margin-bottom: clamp(28px, 4.5vw, 46px); }
.lbl {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--teal-2);
  margin-bottom: 16px;
}
.lbl .no {
  font-family: var(--num); font-weight: 600; font-size: 13px; letter-spacing: .06em;
  color: #fff; background: var(--navy); padding: 3px 10px 2px; border-radius: 5px;
}
h2 {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(21px, 3.6vw, 32px); line-height: 1.55; letter-spacing: .01em;
  color: var(--navy); text-wrap: balance;
}
.head-lede { margin-top: 20px; font-size: 14.5px; color: var(--ink-sub); max-width: 740px; }
h3 { font-family: var(--head); font-weight: 700; font-size: 17px; line-height: 1.6; color: var(--ink); }
p + p { margin-top: 1.2em; }
.mute { color: var(--ink-sub); font-size: 13px; }
.fine { font-size: 12.5px; color: var(--ink-sub); line-height: 1.9; }
b { font-weight: 700; }

/* ---------- 01 保険の◯×ボード ---------- */
.board { display: grid; gap: 16px; }
@media (min-width: 820px) { .board { grid-template-columns: 1fr 1fr; gap: 20px; } }

.board-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
             padding: 30px 26px 28px; box-shadow: 0 14px 34px -22px rgba(22,41,79,.35); }
.board-col.ok { border-top: 4px solid var(--teal); }
.board-col.ng { border-top: 4px solid var(--ng); }

.board-h {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--head); font-weight: 700; font-size: 18px; color: var(--navy);
}
.board-h .mark { display: grid; place-items: center; width: 30px; height: 30px; flex: none;
                 border-radius: 50%; font-size: 17px; color: #fff; }
.board-col.ok .mark { background: var(--teal); }
.board-col.ng .mark { background: var(--ng); }
.board-sub { margin-top: 8px; font-size: 12.5px; color: var(--ink-sub); }

.board-list { list-style: none; margin-top: 20px; border-top: 1px solid var(--line-2); }
.board-list li { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.board-list b { display: block; font-size: 15px; color: var(--ink); }
.board-list span { display: block; margin-top: 3px; font-size: 12.5px; color: var(--ink-sub); line-height: 1.8; }
.board-note { margin-top: 18px; font-size: 12.5px; color: var(--ink-sub); line-height: 1.9;
              background: var(--base-3); border-radius: var(--r-s); padding: 14px 16px; }

.fine-box { margin-top: 26px; border: 1px solid var(--line); border-radius: var(--r);
            padding: 26px clamp(20px, 4vw, 34px); background: var(--white); }
.fine-h { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--navy);
          margin-bottom: 14px; padding-left: 14px; border-left: 3px solid var(--teal); }
.fine-list { list-style: none; }
.fine-list li { position: relative; padding-left: 20px; font-size: 13px; color: var(--ink-sub);
                line-height: 1.9; margin-top: 9px; }
.fine-list li::before { content: ""; position: absolute; left: 3px; top: 11px;
                        width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.fine-list b { color: var(--ink); }

/* ---------- 02 施術内容カード ---------- */
.cards { display: grid; gap: 18px; }
@media (min-width: 860px) { .cards { grid-template-columns: 1fr 1fr; gap: 22px; } }
.card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
        overflow: hidden; box-shadow: 0 16px 40px -26px rgba(22,41,79,.4); }
.card-media img { width: 100%; height: clamp(190px, 26vw, 250px); object-fit: cover; object-position: 50% 42%; }
.card-body { padding: 26px 24px 28px; }
.card-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  background: var(--teal-soft); color: var(--teal-2); padding: 5px 12px;
  border-radius: 999px; margin-bottom: 14px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 13.5px; color: var(--ink-sub); }

.ticks { list-style: none; margin-top: 18px; }
.ticks li { position: relative; padding-left: 24px; font-size: 13px; color: var(--ink-sub);
            line-height: 1.9; margin-top: 10px; }
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 10px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.ticks li b { color: var(--ink); }

.notice { margin-top: 26px; background: var(--navy); color: var(--on-navy);
          border-radius: var(--r); overflow: hidden; display: grid; gap: 0; }
.notice-body { padding: clamp(24px, 4vw, 36px); }
.notice-media img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; object-position: 50% 45%; }
.notice-h { font-family: var(--head); font-weight: 700; font-size: 15.5px;
            color: #fff; margin-bottom: 12px; padding-left: 14px; border-left: 3px solid var(--teal); }
.notice p { font-size: 13.5px; color: var(--on-navy); }
.notice b { color: var(--teal); }
.notice .mute { color: var(--on-navy-sub); }
@media (min-width: 860px) { .notice { grid-template-columns: 1.55fr 1fr; align-items: stretch; } }

/* ---------- 03 医療機関との関係（濃紺の2分割） ---------- */
.sec-split { padding: 0; display: grid; background: var(--navy); color: var(--on-navy); }
.split-media img { width: 100%; height: clamp(260px, 52vw, 400px); object-fit: cover; object-position: 50% 42%; }
.split-body { padding: clamp(48px, 7vw, 92px) var(--pad); }
.split-inner { max-width: 560px; margin: 0 auto; }
.split-body .lbl, .cta-last .lbl { color: var(--teal); }
.split-body .lbl .no, .cta-last .lbl .no { background: var(--teal); color: var(--navy-2); }
.split-body h2 { color: #fff; margin-bottom: 20px; }
.split-body p { font-size: 14px; color: var(--on-navy); }
.split-body b { color: var(--teal); }
.split-body .fine { color: var(--on-navy-sub); margin-top: 22px;
                    border-top: 1px solid var(--on-navy-line); padding-top: 18px; }
.ticks.dark-ok li { color: var(--on-navy); }
.ticks.dark-ok li::before { border-color: var(--teal); }
@media (min-width: 900px) {
  .sec-split { grid-template-columns: 1fr 1.08fr; }
  .split-media { position: relative; }
  .split-media img { position: absolute; inset: 0; height: 100%; }
  .split-body { display: flex; align-items: center;
                padding: clamp(70px, 7vw, 110px) clamp(36px, 4vw, 68px); }
  .split-inner { margin: 0 auto 0 0; }
}

/* ---------- 04 受診の流れ ── 縦タイムライン ---------- */
.steps { list-style: none; counter-reset: st; position: relative; max-width: 760px; }
.steps::before { content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px;
                 width: 2px; background: linear-gradient(var(--teal), var(--line)); }
.steps li { counter-increment: st; position: relative; padding: 0 0 30px 66px; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(st); position: absolute; left: 0; top: -2px; z-index: 1;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--num); font-weight: 600; font-size: 19px;
  box-shadow: 0 0 0 5px var(--base), 0 0 0 7px rgba(15,182,182,.2);
}
.sec-tint .steps li::before { box-shadow: 0 0 0 5px var(--base-2), 0 0 0 7px rgba(15,182,182,.22); }
.steps h3 { margin-bottom: 6px; padding-top: 6px; }
.steps p { font-size: 13.5px; color: var(--ink-sub); }

/* ---------- 院内写真の帯 ---------- */
.strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.strip img { width: 100%; height: clamp(150px, 21vw, 300px); object-fit: cover; }
.strip figure:nth-child(1) img { object-position: 50% 55%; }
@media (min-width: 760px) { .strip { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 05 施術者 ---------- */
.staff { display: grid; gap: 18px; }
@media (min-width: 860px) { .staff { grid-template-columns: 1fr 1fr; gap: 22px; } }
.person { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
          padding: 30px 26px; box-shadow: 0 14px 36px -26px rgba(22,41,79,.4); }
.person-role { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
               background: var(--navy); color: #fff; padding: 4px 12px; border-radius: 999px; }
.person-name { font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--navy); margin-top: 14px; }
.person-name span { display: block; font-family: var(--sans); font-weight: 500;
                    font-size: 11.5px; letter-spacing: .1em; color: var(--ink-sub); margin-top: 4px; }
.person-spec { margin-top: 20px; border-top: 1px solid var(--line-2); }
.person-spec div { display: grid; grid-template-columns: 62px 1fr; gap: 14px;
                   padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.person-spec dt { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; color: var(--teal-2); padding-top: 3px; }
.person-spec dd { font-size: 13.5px; line-height: 1.85; }
.person-word { margin-top: 18px; font-size: 13px; color: var(--ink-sub); line-height: 1.95;
               background: var(--base-3); border-radius: var(--r-s); padding: 16px 18px; }

.license { display: grid; gap: 0; margin-top: 22px; border: 1px solid var(--line-2);
           border-radius: var(--r); overflow: hidden; background: var(--white); }
.license-media img { width: 100%; height: clamp(180px, 26vw, 260px); object-fit: cover; }
.license-body { padding: 28px 26px 30px; }
.license-h { font-family: var(--head); font-weight: 700; font-size: 15.5px; color: var(--navy);
             margin-bottom: 10px; padding-left: 14px; border-left: 3px solid var(--teal); }
.license-body p { font-size: 13.5px; color: var(--ink-sub); }
@media (min-width: 860px) {
  .license { grid-template-columns: 1fr 1.4fr; align-items: stretch; }
  .license-media { position: relative; }
  .license-media img { position: absolute; inset: 0; height: 100%; }
  .license-body { padding: 36px 36px 38px; }
}

/* ---------- 06 料金 ---------- */
.price-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
               padding: 28px 24px 30px; margin-bottom: 18px; }
.price-h { display: flex; align-items: center; gap: 11px;
           font-family: var(--head); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 14px; }
.price-h .mark { display: grid; place-items: center; width: 28px; height: 28px; flex: none;
                 border-radius: 50%; font-size: 16px; color: #fff; }
.price-h .mark.ok { background: var(--teal); }
.price-h .mark.ng { background: var(--ng); }
.price-block > p { font-size: 13.5px; color: var(--ink-sub); }

.table-scroll { overflow-x: auto; margin-top: 18px; border-radius: var(--r-s); }
.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 420px; }
.tbl th { background: var(--navy); color: #fff; font-weight: 500; text-align: left;
          padding: 12px 14px; font-size: 12.5px; letter-spacing: .05em; }
.tbl td { padding: 13px 14px; border-bottom: 1px solid var(--line-2); }
.tbl tbody tr:nth-child(even) td { background: var(--base-3); }
.tbl td:last-child, .tbl th:last-child { text-align: right; white-space: nowrap; }

.notes { list-style: none; margin-top: 16px; }
.notes li { position: relative; padding-left: 16px; font-size: 12.5px; color: var(--ink-sub);
            line-height: 1.9; margin-top: 6px; }
.notes li::before { content: "※"; position: absolute; left: 0; top: 0; font-size: 11px; color: var(--teal-2); }

.inline-cta { margin-top: 30px; padding: 30px var(--pad); background: var(--navy);
              border-radius: var(--r); text-align: center; }
.inline-cta p { font-size: 14px; color: var(--on-navy); }
.inline-cta .btn { margin-top: 18px; }

/* ---------- 07 交通事故・労災 ---------- */
.duo { display: grid; gap: 18px; }
@media (min-width: 860px) { .duo { grid-template-columns: 1fr 1fr; gap: 22px; } }
.duo-col { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r);
           padding: 30px 26px; box-shadow: 0 14px 36px -26px rgba(22,41,79,.4); }
.duo-col h3 { color: var(--navy); margin-bottom: 12px; padding-bottom: 12px;
              border-bottom: 1px solid var(--line-2); }
.duo-col p { font-size: 13.5px; color: var(--ink-sub); }
.mini { list-style: none; counter-reset: m; margin: 16px 0; }
.mini li { counter-increment: m; position: relative; padding-left: 32px;
           font-size: 13px; color: var(--ink-sub); line-height: 1.9; margin-top: 11px; }
.mini li::before {
  content: counter(m); position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%;
  font-family: var(--num); font-weight: 600; font-size: 12px; color: #fff; background: var(--teal);
}
.duo-col .fine { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-2); }

/* ---------- 08 FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-s);
               overflow: hidden; transition: border-color .25s; }
.faq details[open] { border-color: var(--teal); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 44px 18px 46px;
               font-size: 14.5px; font-weight: 500; position: relative; line-height: 1.7; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 20px; top: 18px;
                       font-family: var(--num); font-weight: 600; font-size: 15px; color: var(--teal-2); }
.faq summary::after { content: ""; position: absolute; right: 20px; top: 26px;
                      width: 10px; height: 10px; border-right: 2px solid var(--navy);
                      border-bottom: 2px solid var(--navy); transform: rotate(45deg);
                      transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq .a { padding: 0 24px 22px 46px; font-size: 13.5px; color: var(--ink-sub); line-height: 1.95; }

/* ---------- 09 アクセス ---------- */
.access { display: grid; gap: 20px; }
@media (min-width: 880px) { .access { grid-template-columns: 1.25fr 1fr; gap: 28px; align-items: start; } }
.info { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.info div { display: grid; grid-template-columns: 94px 1fr; gap: 14px;
            padding: 15px 22px; border-bottom: 1px solid var(--line-2); }
.info div:last-child { border-bottom: 0; }
.info dt { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--teal-2); padding-top: 2px; }
.info dd { font-size: 14px; line-height: 1.8; }
.info a { text-decoration: none; border-bottom: 1px solid var(--teal); }

.map-card { background: var(--navy); color: var(--on-navy); padding: 32px 28px; border-radius: var(--r); }
.map-name { font-family: var(--head); font-weight: 700; font-size: 17px; color: #fff; }
.map-addr { margin-top: 8px; font-size: 13px; color: var(--on-navy); }
.map-card .btn { margin-top: 22px; }
.map-note { margin-top: 20px; font-size: 12.5px; color: var(--on-navy-sub); line-height: 1.9; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; text-decoration: none; border-radius: 999px;
  background: var(--teal); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; border: 2px solid var(--teal);
  transition: background .25s, color .25s, border-color .25s, transform .1s;
}
.btn:hover { background: var(--teal-2); border-color: var(--teal-2); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn.ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* 濃紺の地の上のボタン */
.stats .btn, .inline-cta .btn, .map-card .btn, .cta-last .btn, .hero-photo .btn { }
.inline-cta .btn.ghost, .map-card .btn.ghost, .cta-last .btn.ghost {
  background: transparent; color: var(--on-navy); border-color: var(--on-navy-line);
}
.inline-cta .btn.ghost:hover, .map-card .btn.ghost:hover, .cta-last .btn.ghost:hover {
  background: var(--on-navy); color: var(--navy); border-color: var(--on-navy);
}

/* ---------- 最終CTA ---------- */
.cta-last { background: var(--navy-2); color: var(--on-navy);
            padding: clamp(58px, 8vw, 92px) 0; }
.cta-last .lbl { color: var(--teal); }
.cta-last h2 { color: #fff; margin-bottom: 16px; }
.cta-last > .wrap > p { font-size: 14.5px; color: var(--on-navy); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-fine { margin-top: 22px; font-size: 12px; color: var(--on-navy-sub); line-height: 1.9; }

/* ---------- フッター ---------- */
footer { background: var(--navy-2); color: var(--on-navy-sub);
         padding: 48px var(--pad) 96px; border-top: 1px solid var(--on-navy-line); }
footer .f-logo { font-family: var(--head); font-weight: 700; font-size: 16px;
                 color: var(--on-navy); margin-bottom: 12px; }
footer p { font-size: 12px; line-height: 1.95; max-width: 1080px; margin-left: auto; margin-right: auto; }
footer .f-note { margin-top: 20px; font-size: 11.5px; padding-top: 18px;
                 border-top: 1px solid var(--on-navy-line); }
footer .credit { margin-top: 20px; font-size: 11.5px; color: #8494B3; }
footer a { color: var(--teal); }
@media (min-width: 1000px) { footer { padding-bottom: 48px; } }

/* ---------- スマホ追従CTA ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 8px; padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  background: rgba(14,28,57,.95); backdrop-filter: blur(6px);
  border-top: 1px solid var(--on-navy-line);
  transform: translateY(115%); transition: transform .35s;
}
.sticky.on { transform: none; }
.sticky a { flex: 1; text-align: center; padding: 13px 6px; text-decoration: none;
            font-size: 13.5px; font-weight: 700; letter-spacing: .03em; border-radius: 999px; }
.sticky .s1 { background: var(--teal); color: #fff; }
.sticky .s2 { background: transparent; color: var(--on-navy); border: 1px solid var(--on-navy-line); }
@media (min-width: 1000px) { .sticky { display: none; } }

/* ---------- スクロール表示 ---------- */
.rise { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
