/* ============================================================
   HAKU — Design Tokens & Styles (v4 準拠)
   ============================================================ */

/* --- 4.1 Color Tokens --- */
:root {
  --bg: #F2F9FE;
  --surface-soft: #E4F2FC;
  --sky-soft: #CDE8F9;
  --sky-light: #8FCDEE;
  --ink: #173A52;
  --muted: #5E7C90;
  --brand: #45A5DE;
  --brand-deep: #2C82BE;
  --line: #D2E6F4;
  --white: #ffffff;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.95;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Utilities --- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 26px; }
.sp-only { display: none; }
@media (max-width: 600px) { .sp-only { display: inline; } }
.center { text-align: center; }
.maru { font-family: "Zen Maru Gothic", sans-serif; }
.fr { font-family: "Fraunces", serif; font-weight: 600; letter-spacing: .005em; }
.fr-i { font-family: "Fraunces", serif; font-style: italic; font-weight: 600; }

/* --- Placeholder (写真未提供時) --- */
.ph {
  background: repeating-linear-gradient(45deg, #DCEAF7, #DCEAF7 12px, #D0E2F3 12px, #D0E2F3 24px);
  display: flex; align-items: center; justify-content: center;
  color: #6C90AE; font-size: .82rem; letter-spacing: .08em;
  text-align: center; padding: 1rem; font-family: "Zen Maru Gothic";
}
.ph small { display: block; opacity: .8; font-size: .68rem; margin-top: .35rem; }

/* --- Logo Mark --- */
.plogo { display: flex; align-items: center; gap: .5em; }
.plogo svg { display: block; }
.plogo .wm {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: 1.7rem; letter-spacing: .14em;
  color: var(--brand-deep); line-height: 1;
}

/* --- Button (.btn) --- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--brand); color: #fff;
  padding: .85em 1.7em; border-radius: 999px;
  font-family: "Zen Maru Gothic"; font-weight: 700; font-size: .9rem;
  box-shadow: 0 10px 0 -2px var(--brand-deep);
  transition: .15s; border: none; cursor: pointer;
}
.btn:hover { transform: translateY(2px); box-shadow: 0 8px 0 -2px var(--brand-deep); }
.btn.lg { padding: 1.05em 2.2em; font-size: 1.02rem; }

/* --- Stamp --- */
.stamp {
  display: inline-block; background: var(--brand-deep); color: #fff;
  font-family: "Zen Maru Gothic"; font-weight: 900; border-radius: 16px;
  padding: .5em .9em; transform: rotate(-6deg); line-height: 1.25;
  text-align: center; box-shadow: 3px 4px 0 rgba(23,58,82,.18);
}

/* ============================================================
   Header & Nav (§5)
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60; padding: 14px 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(242,249,254,.92); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 8px 10px 8px 18px;
  box-shadow: 4px 5px 0 rgba(23,58,82,.12);
}
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  font-family: "Zen Maru Gothic"; font-weight: 700; font-size: .85rem;
  color: var(--ink); transition: .15s;
}
.nav-links a:hover { color: var(--brand-deep); }
.nav .btn { box-shadow: 0 6px 0 -2px var(--brand-deep); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 70;
}
.hamburger span {
  display: block; width: 22px; height: 2.5px; background: var(--ink);
  border-radius: 2px; position: absolute; left: 7px; transition: .25s;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(242,249,254,.97); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; opacity: 0; visibility: hidden; transition: .3s;
  padding: 80px 26px 100px; overflow-y: auto;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: "Zen Maru Gothic"; font-weight: 900; font-size: 1.1rem;
  color: var(--ink);
}
.drawer .btn { font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   Sections — common
   ============================================================ */
section { padding: 84px 0; }
section[id] { scroll-margin-top: 80px; }
.paper { background: var(--surface-soft); }
.label {
  display: inline-block; font-family: "Fraunces", serif; font-style: italic;
  color: var(--brand-deep); font-size: 1.1rem; margin-bottom: .5rem;
}
.sec-title { font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
.sec-lead { color: var(--muted); max-width: 33em; margin: 16px auto 0; }

/* ============================================================
   ① Hero (#top)
   ============================================================ */
.hero { position: relative; padding: 150px 0 60px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: .5em;
  background: #fff; border: 2px solid var(--ink); border-radius: 999px;
  padding: .35em 1em; font-family: "Zen Maru Gothic"; font-weight: 700;
  font-size: .8rem; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); line-height: 1.35; }
.hero h1 .hl {
  color: var(--brand-deep); position: relative; white-space: nowrap;
  background: linear-gradient(transparent 66%, var(--sky-light) 66%);
}
.hero .lead { margin: 26px 0 30px; font-size: 1.05rem; max-width: 26em; color: #3f5c70; }
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-blob {
  position: absolute; inset: -6% -4% -6% 6%;
  background: var(--sky-soft);
  border-radius: 46% 54% 55% 45% / 50% 45% 55% 50%;
  z-index: 0;
}
.hero-photo {
  position: relative; z-index: 1;
  border: 3px solid var(--ink); border-radius: 28px;
  overflow: hidden; box-shadow: 8px 10px 0 rgba(23,58,82,.15);
}
.hero-photo .ph { min-height: 400px; }
.hero-stamp {
  position: absolute; z-index: 2;
  right: -14px; bottom: -18px; font-size: .95rem;
}
.hero-stamp b { font-size: 1.7rem; display: block; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--bg);
  padding: 14px 0; overflow: hidden;
  transform: rotate(-1.2deg) scale(1.04); margin: 40px 0;
}
.mtrack {
  display: inline-flex; white-space: nowrap;
  animation: marquee-scroll 26s linear infinite;
  font-family: "Fraunces", serif; font-style: italic; font-size: 1.15rem;
}
.mtrack span {
  padding: 0 26px; display: inline-flex; align-items: center; gap: 26px;
}
.mtrack span::after { content: "\2723"; color: var(--sky-light); font-style: normal; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .mtrack { animation: none; }
}

/* ============================================================
   ② Worries (#worry)
   ============================================================ */
.worries {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 44px;
}
.worry {
  background: #fff; border: 2px solid var(--ink); border-radius: 18px;
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  font-size: .95rem; box-shadow: 3px 4px 0 rgba(23,58,82,.1); text-align: left;
}
.worry .ck {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Zen Maru Gothic"; font-weight: 900; font-size: .85rem;
}
.worry-note {
  margin-top: 38px; font-size: 1.3rem;
  font-family: "Zen Maru Gothic"; font-weight: 900;
}
.worry-note em {
  font-style: normal; color: var(--brand-deep);
  background: linear-gradient(transparent 62%, var(--sky-light) 62%);
}

/* ============================================================
   ③ Proposal
   ============================================================ */
.propose {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.propose .ph {
  min-height: 360px; border: 3px solid var(--ink);
  border-radius: 26px; box-shadow: 6px 8px 0 rgba(23,58,82,.13);
}
.vs { display: flex; align-items: center; gap: 14px; margin: 22px 0; flex-wrap: wrap; }
.vs .chip {
  background: var(--brand); color: #fff; border-radius: 14px;
  padding: .5em 1.1em; font-family: "Zen Maru Gothic"; font-weight: 900;
  font-size: 1.05rem;
}
.vs .chip.alt { background: var(--brand-deep); }
.vs .x { font-family: "Fraunces"; font-size: 2rem; color: var(--ink); }

/* ============================================================
   ④ Reasons (#reasons)
   ============================================================ */
.reasons {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 50px; text-align: left;
}
.reason {
  background: #fff; border: 2px solid var(--ink); border-radius: 22px;
  padding: 28px 26px; box-shadow: 4px 6px 0 rgba(23,58,82,.12);
  transition: .15s;
}
.reason:hover { transform: translateY(-4px); }
.reason:nth-child(3n-1) { background: var(--surface-soft); }
.reason .num {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: 2.6rem; color: var(--brand); line-height: 1;
}
.reason h3 { font-size: 1.12rem; margin: .5rem 0 .6rem; }
.reason p { font-size: .87rem; color: #3f5c70; line-height: 1.85; }

/* ============================================================
   ⑤ Lifetime Support Band
   ============================================================ */
.lifetime-band {
  background: var(--brand); color: #fff; padding: 44px 0; text-align: center;
}
.lifetime-band h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem); color: #fff;
}
.lifetime-band p {
  color: rgba(255,255,255,.9); max-width: 36em; margin: 12px auto 0;
  font-size: 1rem;
}

/* ============================================================
   ⑥ Trainers (#trainer)
   ============================================================ */
.trainers {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px; margin-top: 48px;
}
.trainers .trainer {
  flex: 0 1 480px;
}
.trainer {
  background: #fff; border: 3px solid var(--ink); border-radius: 26px;
  overflow: hidden; box-shadow: 6px 8px 0 rgba(23,58,82,.14);
}
.trainer .ph { min-height: 290px; border-bottom: 2px solid var(--ink); }
.trainer .body { padding: 26px 30px; text-align: left; }
.trainer .role {
  display: inline-block; background: var(--ink); color: var(--bg);
  font-family: "Zen Maru Gothic"; font-weight: 700; font-size: .72rem;
  padding: .25em .9em; border-radius: 999px; letter-spacing: .08em;
}
.trainer h3 { font-size: 1.5rem; margin: .5rem 0 .5rem; }
.trainer h3 span {
  font-size: .85rem; color: var(--muted);
  font-family: "Zen Kaku Gothic New"; font-weight: 500;
}
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: .4rem 0 .9rem; }
.tag {
  background: var(--sky-soft); border-radius: 999px;
  padding: .2em .8em; font-size: .78rem;
  font-family: "Zen Maru Gothic"; font-weight: 700;
}
.trainer p { font-size: .9rem; color: #3f5c70; }

/* Trainer supplement band */
.trainer-note {
  max-width: 860px; margin: 48px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; align-items: center;
}
.trainer-note .ph {
  min-height: 220px; border: 3px solid var(--ink);
  border-radius: 22px; box-shadow: 4px 6px 0 rgba(23,58,82,.10);
}
.trainer-note p { font-size: .95rem; color: #3f5c70; }

/* ============================================================
   ⑦ Kids / Mama Section
   ============================================================ */
.mama-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.mama-section .ph {
  min-height: 280px; border: 3px solid var(--ink);
  border-radius: 24px; box-shadow: 6px 8px 0 rgba(23,58,82,.13);
}

/* ============================================================
   ⑧ Voice (#voice)
   ============================================================ */
.voice-card {
  max-width: 760px; margin: 46px auto 0;
  background: var(--brand); color: #fff;
  border: 3px solid var(--ink); border-radius: 28px;
  padding: 44px 50px; box-shadow: 7px 9px 0 rgba(23,58,82,.18);
  position: relative;
}
.voice-card .q {
  font-family: "Fraunces"; font-weight: 700;
  font-size: 5rem; line-height: .6; color: rgba(255,255,255,.55);
}
.voice-card p { font-size: 1.02rem; margin-top: 10px; }
.voice-card .who { margin-top: 20px; font-family: "Zen Maru Gothic"; font-weight: 900; }
.voice-card .who .stamp {
  font-size: .75rem; margin-left: 8px;
  background: #fff; color: var(--brand-deep);
}

/* ============================================================
   ⑨ Price (#price)
   ============================================================ */
.ptable {
  max-width: 780px; margin: 44px auto 0;
  background: #fff; border: 3px solid var(--ink); border-radius: 26px;
  overflow: hidden; box-shadow: 6px 8px 0 rgba(23,58,82,.14);
}
.prow {
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; padding: 22px 32px;
  border-bottom: 2px solid var(--line); align-items: center;
  position: relative;
}
.prow:last-child { border-bottom: none; }
.prow.hot { background: var(--surface-soft); }
.prow .pname {
  font-family: "Zen Maru Gothic"; font-weight: 900; font-size: 1.08rem;
}
.prow .pname small {
  display: block; font-weight: 500; font-family: "Zen Kaku Gothic New";
  color: var(--muted); font-size: .78rem; margin-top: 2px;
}
.prow .pprice {
  font-family: "Fraunces"; font-weight: 700;
  font-size: 1.5rem; color: var(--brand-deep);
}
.prow .hot-badge {
  position: absolute; top: -2px; right: 150px;
  background: var(--brand); color: #fff;
  font-family: "Zen Maru Gothic"; font-weight: 900; font-size: .68rem;
  padding: .15em .7em; border-radius: 0 0 8px 8px;
}
.amt-todo {
  color: var(--brand-deep); font-size: .9rem;
  border: 2px dashed var(--brand); border-radius: 10px;
  padding: .15em .8em; font-family: "Zen Maru Gothic"; font-weight: 700;
}
.price-note {
  text-align: center; color: var(--muted);
  font-size: .82rem; margin-top: 18px;
}

/* ============================================================
   ⑩ Access (#access)
   ============================================================ */
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.access-grid .ph,
.access-grid .map-wrap {
  min-height: 330px; border: 3px solid var(--ink); border-radius: 24px;
  overflow: hidden; position: relative;
}
.map-wrap { aspect-ratio: 4/3; width: 100%; }
.map-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.access-grid .map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.info-row {
  display: flex; gap: 16px; padding: 15px 0;
  border-bottom: 2px dotted var(--line);
}
.info-row .lbl {
  width: 92px; flex-shrink: 0;
  font-family: "Zen Maru Gothic"; font-weight: 900;
  color: var(--brand-deep); font-size: .9rem;
}
.info-row .val { font-size: .94rem; }

/* ============================================================
   ⑪ Contact (#contact)
   ============================================================ */
.contact { background: var(--brand); }
.contact .label { color: #eaf6fc; }
.contact .sec-title { color: #fff; }
.contact .sec-lead { color: rgba(255,255,255,.9); }
.cta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.cta-card {
  background: #fff; color: var(--ink);
  border: 3px solid var(--ink); border-radius: 22px;
  padding: 32px 24px; text-align: center;
  box-shadow: 5px 7px 0 rgba(23,58,82,.28); transition: .15s;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card .ic { font-size: 1.9rem; margin-bottom: .5rem; }
.cta-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.cta-card p { font-size: .82rem; color: var(--muted); }

/* ============================================================
   ⑫ Footer
   ============================================================ */
footer {
  background: var(--ink); color: rgba(242,249,254,.72);
  padding: 56px 0 40px; text-align: center; font-size: .84rem;
}
footer .plogo { justify-content: center; margin-bottom: 14px; }
footer .plogo .wm { color: #fff; }
footer .fnav {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin: 16px 0;
}
footer .fnav a {
  color: rgba(242,249,254,.72);
  font-family: "Zen Maru Gothic"; font-weight: 700;
}
footer .fnav a:hover { color: #fff; }

/* ============================================================
   Mobile Fixed CTA Bar
   ============================================================ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50; background: var(--white);
  border-top: 2px solid var(--ink);
  padding: 10px 16px; gap: 10px;
  box-shadow: 0 -4px 12px rgba(23,58,82,.12);
}
.mobile-cta .btn { flex: 1; justify-content: center; font-size: .85rem; padding: .7em 1em; }
.mobile-cta .btn-line {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  background: #06C755; color: #fff; border-radius: 999px;
  font-family: "Zen Maru Gothic"; font-weight: 700; font-size: .85rem;
  padding: .7em 1em; border: none; cursor: pointer;
  box-shadow: 0 6px 0 -2px #04a648;
}

/* ============================================================
   Responsive (§4.5)
   ============================================================ */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .btn.nav-cta { display: none; }
  .hamburger { display: block; }

  .hero-grid,
  .worries,
  .propose,
  .reasons,
  .access-grid,
  .cta-grid,
  .mama-section,
  .trainer-note { grid-template-columns: 1fr; }

  .hero { padding-top: 120px; }
  section { padding: 64px 0; }
  .prow .hot-badge { right: 110px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ============================================================
   Subpage — common
   ============================================================ */

/* Page hero (subpages) */
.page-hero {
  padding: 140px 0 56px; text-align: center;
  background: var(--surface-soft);
}
.page-hero .label { margin-bottom: .3rem; }
.page-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.page-hero .sec-lead { margin-top: 14px; }
.breadcrumb {
  font-size: .78rem; color: var(--muted); margin-bottom: 18px;
  font-family: "Zen Maru Gothic"; font-weight: 500;
}
.breadcrumb a { color: var(--brand-deep); }
.breadcrumb a:hover { text-decoration: underline; }

/* Article prose */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 56px 0 18px; padding-bottom: 12px;
  border-bottom: 3px solid var(--sky-soft);
}
.prose h3 { font-size: 1.15rem; margin: 36px 0 12px; }
.prose p { margin-bottom: 18px; color: #3f5c70; }
.prose ul, .prose ol { margin: 0 0 18px 1.2em; color: #3f5c70; }
.prose li { margin-bottom: 8px; }

/* Feature card (reusable for subpages) */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin: 40px 0;
}
.feature-card {
  background: #fff; border: 2px solid var(--ink); border-radius: 22px;
  padding: 30px 26px; box-shadow: 4px 6px 0 rgba(23,58,82,.12);
  transition: .15s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .num {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: 2.2rem; color: var(--brand); line-height: 1;
}
.feature-card h3 { font-size: 1.08rem; margin: .4rem 0 .5rem; }
.feature-card p { font-size: .87rem; color: #3f5c70; line-height: 1.85; margin: 0; }

/* Steps / Flow */
.flow-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin: 40px 0;
}
.flow-step {
  background: #fff; border: 2px solid var(--ink); border-radius: 22px;
  padding: 30px 24px; text-align: center;
  box-shadow: 4px 6px 0 rgba(23,58,82,.12);
}
.flow-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-family: "Fraunces"; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 12px;
}
.flow-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.flow-step p { font-size: .85rem; color: #3f5c70; margin: 0; }

/* Timeline (trainer profile) */
.timeline { margin: 36px 0; padding: 0; list-style: none; }
.timeline li {
  position: relative; padding: 0 0 28px 36px;
  border-left: 3px solid var(--sky-soft);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ''; position: absolute; left: -9px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand); border: 3px solid var(--bg);
}
.timeline .year {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: 1.1rem; color: var(--brand-deep); display: block;
  margin-bottom: 2px;
}
.timeline .desc { font-size: .92rem; color: #3f5c70; }

/* Before/After table */
.ba-wrap {
  max-width: 700px; margin: 40px auto;
  background: #fff; border: 3px solid var(--ink); border-radius: 22px;
  overflow: hidden; box-shadow: 6px 8px 0 rgba(23,58,82,.14);
}
.ba-wrap table { width: 100%; border-collapse: collapse; }
.ba-wrap th, .ba-wrap td {
  padding: 14px 20px; text-align: left; font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.ba-wrap thead th {
  background: var(--surface-soft); font-family: "Zen Maru Gothic";
  font-weight: 900; font-size: .85rem; color: var(--ink);
}
.ba-wrap .change {
  color: var(--brand-deep); font-family: "Fraunces"; font-weight: 700;
}
.ba-wrap tbody tr:last-child td, .ba-wrap tbody tr:last-child th { border-bottom: none; }

/* Highlight box */
.highlight-box {
  background: var(--surface-soft); border: 2px solid var(--sky-soft);
  border-radius: 18px; padding: 28px 30px; margin: 30px 0;
}
.highlight-box h3 { margin-top: 0; }

/* Profile detail (trainer page) */
.profile-hero {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 44px; align-items: center; margin-top: 48px;
}
.profile-hero .ph {
  min-height: 400px; border: 3px solid var(--ink);
  border-radius: 26px; box-shadow: 6px 8px 0 rgba(23,58,82,.14);
}
.profile-hero h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: .3rem; }
.profile-hero h2 span {
  font-size: .9rem; color: var(--muted);
  font-family: "Zen Kaku Gothic New"; font-weight: 500; display: block;
}
.profile-info { margin-top: 18px; }
.profile-info dt {
  font-family: "Zen Maru Gothic"; font-weight: 900;
  color: var(--brand-deep); font-size: .85rem; margin-top: 14px;
}
.profile-info dd { font-size: .92rem; color: #3f5c70; margin-left: 0; }

/* Training area cards */
.area-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin: 40px 0;
}
.area-card {
  background: #fff; border: 2px solid var(--ink); border-radius: 22px;
  overflow: hidden; box-shadow: 4px 6px 0 rgba(23,58,82,.12);
  transition: .15s;
}
.area-card:hover { transform: translateY(-4px); }
.area-card .ph { min-height: 180px; border-bottom: 2px solid var(--ink); }
.area-card .body { padding: 22px 24px; }
.area-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.area-card p { font-size: .85rem; color: #3f5c70; margin: 0; }

/* Pilates exercise list */
.exercise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin: 36px 0;
}
.exercise-item {
  background: #fff; border: 2px solid var(--ink); border-radius: 18px;
  padding: 22px 20px; text-align: center;
  box-shadow: 3px 4px 0 rgba(23,58,82,.10);
}
.exercise-item .ph { min-height: 140px; border-radius: 12px; margin-bottom: 12px; }
.exercise-item h3 { font-size: .95rem; margin-bottom: .3rem; }
.exercise-item p { font-size: .8rem; color: #3f5c70; margin: 0; }

/* Inline CTA band */
.cta-band {
  background: var(--brand); color: #fff; text-align: center;
  padding: 48px 0; margin-top: 60px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 18px; }
.cta-band .btn { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 0 -2px rgba(23,58,82,.2); }
.cta-band .btn:hover { box-shadow: 0 8px 0 -2px rgba(23,58,82,.2); }

/* Link card (trainer list etc.) */
.link-card {
  display: block; text-decoration: none; color: inherit;
}
.link-card .body::after {
  content: '詳しく見る →'; display: block; margin-top: 12px;
  font-family: "Zen Maru Gothic"; font-weight: 700; font-size: .85rem;
  color: var(--brand-deep);
}

/* Price section label */
.price-section-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 50px 0 8px; padding-bottom: 10px;
  border-bottom: 3px solid var(--sky-soft);
}
.price-section-title:first-of-type { margin-top: 0; }

/* Price features list */
.price-features {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 30px;
}
.price-feature {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--surface-soft); border-radius: 999px;
  padding: .35em 1em; font-family: "Zen Maru Gothic"; font-weight: 700;
  font-size: .82rem;
}
.price-feature .ck {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem;
}

/* ============================================================
   Responsive — subpages
   ============================================================ */
@media (max-width: 880px) {
  .page-hero { padding: 120px 0 44px; }
  .feature-grid,
  .flow-steps,
  .area-grid,
  .profile-hero { grid-template-columns: 1fr; }
  .exercise-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Voice Slider
   ============================================================ */
.voice-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
  overflow: hidden;
}
.voice-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 16px;
}
.voice-slider::-webkit-scrollbar { display: none; }
.voice-slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 4px 6px 0 rgba(23,58,82,.12);
  background: #fff;
}
.voice-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.voice-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.voice-slider-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 0 rgba(23,58,82,.1);
  transition: .15s;
}
.voice-slider-nav button:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

@media (max-width: 600px) {
  .voice-slide { flex: 0 0 220px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .voice-card { padding: 30px 24px; }
  .prow { padding: 18px 20px; }
  .reason { padding: 22px 20px; }
  .reasons { grid-template-columns: 1fr; }
  .worries { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .cta-grid { grid-template-columns: 1fr; }
  .exercise-grid { grid-template-columns: 1fr; }
}
