/* ==========================================================
   ROT GYMNASTICS — Editorial Restructure
   綺麗目 × 信頼 × 子どもの元気さ
   雑誌的レイアウト / 静→賑→静→賑のリズム
========================================================== */

:root {
  /* Brand Colors */
  --navy: #073B3A;
  --navy-deep: #032724;
  --navy-soft: #11645C;
  --coral: #2EC4A6;
  --coral-deep: #0B6F61;
  --yellow: #BEEA64;
  --yellow-soft: #E7F8B8;
  --cream: #F2FBF7;
  --cream-deep: #DFF4EC;
  --white: #FFFFFF;
  --text: #0F1830;
  --text-sub: #4A5470;
  --text-mute: #7B859E;
  --border: #D8E9E2;
  --rule: #174A48;

  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 37, 69, 0.12);

  --container: 1240px;
  --container-narrow: 880px;

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --font-en: "DM Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.34, 1.16, 0.64, 1);

  --grain: url("./assets/grain.svg");
  --bg-schedule-soft: url("./assets/bg-schedule-soft.png");
  --bg-faq-talk: url("./assets/bg-faq-talk.png");
  --bg-final-celebrate: url("./assets/bg-final-celebrate.png");
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .85; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }

/* paper grain — 全体に薄く */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  background-image: var(--grain);
  background-size: 240px 240px;
  background-repeat: repeat;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: var(--container-narrow); }
.pc { display: inline; }
.sp { display: none; }
@media (max-width: 768px) {
  .pc { display: none; }
  .sp { display: inline; }
  .container { padding: 0 22px; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-jp);
  font-weight: 700;
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: transform .35s var(--ease-soft), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.btn i { font-size: 0.95em; transition: transform .3s var(--ease-soft); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }
.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-lg { padding: 19px 36px; font-size: 16px; }
.btn-xl { padding: 22px 42px; font-size: 17px; }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(46, 196, 166, 0.55), 0 2px 6px rgba(11, 37, 69, 0.08);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(46, 196, 166, 0.65), 0 4px 10px rgba(11, 37, 69, 0.1);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px -4px rgba(46, 196, 166, 0.5);
}

.btn-line {
  background: #06C755;
  color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(6, 199, 85, 0.5), 0 2px 6px rgba(11, 37, 69, 0.08);
}
.btn-line:hover {
  background: #05a847;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(6, 199, 85, 0.6), 0 4px 10px rgba(11, 37, 69, 0.1);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid rgba(11, 37, 69, 0.18);
  box-shadow: 0 2px 6px rgba(11, 37, 69, 0.04);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(11, 37, 69, 0.4), 0 2px 6px rgba(11, 37, 69, 0.08);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  border-color: var(--white);
}

/* ==========================================================
   HEADER (維持・移植)
========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  line-height: 0;
}
.logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.logo-light {
  width: 68px;
  height: 68px;
  padding: 6px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.global-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.global-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  position: relative;
}
.global-nav a:hover { color: var(--coral); opacity: 1; }
.global-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .25s var(--ease);
}
.global-nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .global-nav { display: none; }
  .hamburger { display: flex; }
  .global-nav.is-open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 32px 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
}

/* ==========================================================
   IMAGE MOCK (維持)
========================================================== */
.img-mock {
  position: relative;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 700;
  overflow: hidden;
}
.img-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.03) 12px, rgba(255,255,255,0.03) 13px);
}
.img-mock-label {
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ==========================================================
   1. HERO  —  Editorial typo driven (.eh__)
   装飾なし、超大胆タイポ、インラインstats
========================================================== */
.eh {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}
.eh__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.eh__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.eh__kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--coral);
}
.eh__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 11.5vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  color: var(--navy);
}
.eh__title em {
  font-style: normal;
  color: var(--coral);
  display: inline-block;
}
.eh__title-row { display: block; }
.eh__title-row + .eh__title-row { margin-top: 0.06em; }
.eh__title-row--shift { padding-left: 1.4em; }
.eh__title-row--right { text-align: right; padding-right: 0.2em; }

.eh__lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.85;
  color: var(--text);
  font-weight: 500;
  max-width: 720px;
  margin: 0 0 44px;
}
.eh__lede em {
  font-style: normal;
  background: linear-gradient(transparent 64%, var(--yellow-soft) 64%);
  padding: 0 0.1em;
}

.eh__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .eh { padding: 130px 0 64px; min-height: auto; }
  .eh__title-row--shift { padding-left: 0.6em; }
}

/* ==========================================================
   2. PHILOSOPHY  —  番号エディトリアル (.belief__)
   余白で読ませる。装飾なし
========================================================== */
.belief {
  padding: 160px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.belief::before,
.talk::before,
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: none;
  background-repeat: no-repeat;
  background-size: min(1480px, 118vw) auto;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.belief::before {
  background:
    linear-gradient(180deg, rgba(255, 247, 236, 0.72) 0, rgba(255, 255, 255, 0.96) 118px, rgba(255, 255, 255, 0) 220px);
  background-position: center top;
  background-size: 100% 100%;
  opacity: 1;
  mix-blend-mode: normal;
}
.belief > .container,
.talk > .container,
.final__inner {
  position: relative;
  z-index: 2;
}
.belief__head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 96px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.belief__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
}
.belief__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.02em;
}
.belief__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.belief__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.belief__item:last-child { border-bottom: none; }
.belief__item:nth-child(even) {
  grid-template-columns: 1fr 220px;
}
.belief__item:nth-child(even) .belief__numwrap { order: 2; }
.belief__item:nth-child(even) .belief__num { text-align: right; }
.belief__item:nth-child(even) .belief__body { order: 1; }

.belief__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
}
.belief__num::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--coral);
  margin-top: 16px;
}
.belief__item:nth-child(even) .belief__num::after { margin-left: auto; }

.belief__body { padding-top: 18px; }
.belief__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.belief__text {
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
  margin: 0;
  max-width: 600px;
}

@media (max-width: 768px) {
  .belief { padding: 96px 0; }
  .belief::before {
    background-position: center top;
    opacity: 1;
  }
  .belief__head { margin-bottom: 56px; flex-direction: column; gap: 8px; align-items: flex-start; }
  .belief__item,
  .belief__item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
  }
  .belief__item:nth-child(even) .belief__numwrap { order: 0; }
  .belief__item:nth-child(even) .belief__num { text-align: left; }
  .belief__item:nth-child(even) .belief__num::after { margin-left: 0; }
  .belief__num { font-size: 72px; }
  .belief__title { font-size: 22px; }
}

/* ==========================================================
   3. LECTURER  —  哲学を語る人 (.voice__)
   大きな引用符のみ。ポートレート左/テキスト右
========================================================== */
.voice {
  padding: 160px 0;
  background:
    linear-gradient(180deg, var(--white) 0, var(--cream) 120px, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.voice::before,
.voice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.voice::before {
  background:
    radial-gradient(circle, rgba(46, 196, 166, 0.18) 0 2px, transparent 2.5px) 28px 38px / 42px 42px;
  opacity: 0.76;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.46) 45%, rgba(0,0,0,0.86));
}
.voice::after {
  background-image:
    url("./assets/doodle-burst.svg"),
    url("./assets/hand-squiggle.svg"),
    url("./assets/doodle-star.svg"),
    url("./assets/hand-circle.svg");
  background-repeat: no-repeat;
  background-size: 104px auto, 168px auto, 92px auto, 138px auto;
  background-position:
    left max(32px, calc((100vw - var(--container)) / 2 + 10px)) top 150px,
    right max(36px, calc((100vw - var(--container)) / 2 + 40px)) top 148px,
    right max(120px, calc((100vw - var(--container)) / 2 + 150px)) bottom 124px,
    left max(80px, calc((100vw - var(--container)) / 2 + 140px)) bottom 118px;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.voice__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.voice__media {
  position: relative;
}
.voice__portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 8px;
  overflow: hidden;
}
.voice__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.voice__portrait .img-mock-label { background: rgba(255,255,255,0.15); }
.voice__caption {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-mute);
  margin-top: 16px;
  text-transform: uppercase;
}
.voice__caption b { color: var(--coral); font-weight: 700; }

.voice__body {
  position: relative;
  padding-top: 24px;
}
.voice__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
  margin-bottom: 20px;
  display: inline-block;
}
.voice__intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 40px;
  letter-spacing: 0.01em;
}
.voice__quote {
  position: relative;
  margin: 0 0 36px;
  padding: 32px 0 0 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.95;
  color: var(--text);
  font-weight: 500;
}
.voice__quote::before {
  content: "\201C";
  position: absolute;
  top: -52px;
  left: -12px;
  font-family: "Times New Roman", serif;
  font-size: 200px;
  line-height: 1;
  color: var(--coral);
  font-weight: 700;
  opacity: 0.95;
}
.voice__quote em {
  font-style: normal;
  background: linear-gradient(transparent 64%, var(--yellow-soft) 64%);
  padding: 0 0.1em;
}

.voice__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 6px;
}
.voice__name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.voice__credits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-sub);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.voice__credits li {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.voice__credits li::before {
  content: "—";
  color: var(--coral);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .voice__inner { grid-template-columns: 1fr; gap: 48px; }
  .voice__media { max-width: 480px; }
}
@media (max-width: 768px) {
  .voice { padding: 96px 0; }
  .voice::before {
    background:
      radial-gradient(circle, rgba(46, 196, 166, 0.16) 0 1.6px, transparent 2.2px) 16px 26px / 34px 34px;
    opacity: 0.62;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.38) 48%, rgba(0,0,0,0.72));
  }
  .voice::after {
    background-size: 74px auto, 116px auto, 68px auto, 102px auto;
    background-position:
      left 18px top 104px,
      right 20px top 260px,
      right 34px bottom 88px,
      left 28px bottom 168px;
    opacity: 0.28;
  }
  .voice__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .voice__body {
    display: contents;
  }
  .voice__label { order: 1; }
  .voice__heading { order: 2; }
  .voice__intro {
    order: 3;
    margin-bottom: 28px;
  }
  .voice__media {
    order: 4;
    width: 100%;
    max-width: none;
    margin-bottom: 34px;
  }
  .voice__quote { order: 5; }
  .voice__name { order: 6; }
  .voice__credits { order: 7; }
  .voice__quote::before { font-size: 140px; top: -36px; }
}

/* ==========================================================
   4. LESSON  —  マガジン左右交互 (.practice__)
   写真と余白でリズムを作る
========================================================== */
.practice {
  padding: 160px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.practice__head {
  margin-bottom: 56px;
  max-width: 780px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(11, 37, 69, 0.1);
}
.practice__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
  display: inline-block;
  margin-bottom: 16px;
}
.practice__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}
.practice__heading em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.practice__heading em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.5;
}
.practice__lede {
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
  margin: 0;
}

.practice__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.practice__row {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 37, 69, 0.07);
}
.practice__row:nth-child(even) .practice__media { order: 2; }
.practice__row:nth-child(even) .practice__body { order: 1; }

.practice__media {
  position: relative;
}
.practice__media--sp {
  display: none;
}
.practice__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  overflow: hidden;
  border-radius: 8px;
}
.practice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.practice__row:nth-child(1) .practice__img img {
  object-position: center 48%;
}
.practice__row:nth-child(2) .practice__img img {
  object-position: center 38%;
}
.practice__row:nth-child(2) .practice__img {
  background: linear-gradient(135deg, var(--coral-deep) 0%, var(--coral) 100%);
}

.practice__body {
  position: relative;
}
.practice__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--coral);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px 7px 12px;
  border: 1px solid rgba(46, 196, 166, 0.28);
  border-radius: 999px;
  background: rgba(46, 196, 166, 0.08);
  line-height: 1;
}
.practice__num::before {
  content: none;
}
.practice__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.practice__target {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-sub);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.practice__target b { color: var(--coral); }
.practice__text {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-sub);
  margin: 0 0 26px;
}
.practice__text em {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}

.practice__chips-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--navy);
  margin: 0 0 14px;
  text-transform: uppercase;
  position: relative;
  padding-left: 22px;
}
.practice__chips-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1.5px;
  background: var(--navy);
  transform: translateY(-50%);
}
.practice__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.practice__chip {
  display: inline-flex;
  align-items: center;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding: 0;
  background: transparent;
  border: 0;
}
.practice__chip i {
  color: var(--coral);
  font-size: 11px;
}

@media (max-width: 1024px) {
  .practice__row { grid-template-columns: 1fr; gap: 48px; }
  .practice__row:nth-child(even) .practice__media,
  .practice__row:nth-child(even) .practice__body { order: initial; }
}
@media (max-width: 768px) {
  .practice { padding: 96px 0; }
  .practice__head {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .practice__list { gap: 24px; }
  .practice__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 22px;
  }
  .practice__row .practice__body,
  .practice__row:nth-child(even) .practice__body {
    order: 1;
  }
  .practice__row > .practice__media {
    display: none;
  }
  .practice__media--sp {
    display: block;
    width: 100%;
    margin: 22px 0 26px;
  }
  .practice__img { aspect-ratio: 4 / 3; }
  .practice__title {
    font-size: clamp(24px, 7.2vw, 30px);
  }
}

/* ==========================================================
   5. TIMETABLE  —  曜日×時間グリッド (.schedule__)
========================================================== */
.schedule {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--white) 0, var(--cream) 120px, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,247,236,0.84), rgba(255,247,236,0.72)),
    var(--bg-schedule-soft) center / cover no-repeat;
  opacity: 0.66;
}
.schedule > .container {
  position: relative;
  z-index: 2;
}
.schedule__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.schedule__title-block {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.schedule__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
}
.schedule__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.02em;
}
.schedule__note {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  max-width: 360px;
}

.schedule__legend {
  list-style: none;
  padding: 0;
  margin: -20px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 700;
}
.schedule__legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.schedule__legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 37, 69, 0.08);
}
.schedule__legend-dot--kids { background: #F6DA62; }
.schedule__legend-dot--lower { background: #BFD77A; }
.schedule__legend-dot--upper { background: #7EBDD9; }
.schedule__legend-dot--backflip { background: #D57FAE; }

.schedule__panel {
  padding: 28px;
  border: 1px solid rgba(7, 59, 58, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 60px rgba(7, 59, 58, 0.08);
}

.schedule__grid-wrap {
  overflow-x: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.schedule__grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  table-layout: fixed;
}
.schedule__grid--week { min-width: 980px; }
.schedule__grid th,
.schedule__grid td {
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  padding: 14px 6px;
  background: var(--white);
}
.schedule__grid thead th {
  background: var(--yellow-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  padding: 18px 6px;
  letter-spacing: 0.06em;
  border-color: var(--yellow);
}
.schedule__grid thead th.schedule__col-time {
  background: transparent;
  border: none;
}
.schedule__grid thead th.schedule__col-sun { color: var(--coral); }

.schedule__grid .schedule__time {
  background: var(--cream-deep);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.55;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.schedule__grid .schedule__closed {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-mute);
  background: var(--cream);
  letter-spacing: 0.08em;
}
.schedule__grid td.schedule__empty {
  background: rgba(255, 255, 255, 0.58);
}
.schedule__grid td.schedule__rest,
.schedule__grid .schedule__time.schedule__rest {
  background: #F4F7F4;
  color: var(--text-mute);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.schedule__grid td.schedule__slot {
  font-family: var(--font-display);
  font-weight: 800;
}
.schedule__grid td.schedule__slot--kids { background: #FFF0A8; }
.schedule__grid td.schedule__slot--lower { background: #DDECB8; }
.schedule__grid td.schedule__slot--upper { background: #D5ECF7; }
.schedule__grid td.schedule__slot--backflip { background: #F3C4DA; }

.cls {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.cls b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.cls i {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}
.cls--hop   { color: #6F5800; }              /* 入門:amber */
.cls--step  { color: #0B6F61; }              /* mint */
.cls--leap  { color: var(--coral); }
.cls--jump  { color: var(--coral-deep); }
.cls--jumpp { color: var(--navy-soft); }
.cls--acro  { color: var(--navy); }
.cls--backflip { color: #8F2E68; }

.schedule__footnote {
  font-size: 12px;
  color: var(--text-mute);
  margin: 16px 0 0;
}

@media (max-width: 768px) {
  .schedule { padding: 96px 0; }
  .schedule::before { opacity: 0.48; }
  .schedule__panel { padding: 18px 14px; }
  .schedule__legend { margin-top: -12px; }
  .schedule__grid--week { min-width: 920px; }
  .schedule__grid th,
  .schedule__grid td { padding: 10px 4px; }
  .schedule__grid thead th { font-size: 14px; padding: 12px 4px; }
  .schedule__grid .schedule__time { font-size: 11px; }
  .cls b { font-size: 13px; }
  .cls i { font-size: 10px; }
}

/* ==========================================================
   6. COST  —  数字でリズム + Flow統合 (.cost__)
   装飾なし、控えめなインライン注記
========================================================== */
.cost {
  padding: 126px 0 152px;
  background: linear-gradient(180deg, var(--cream) 0, var(--white) 118px, #F5FFF9 44%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 247, 236, 0.5) 28%, rgba(255, 247, 236, 0.4) 70%, transparent 100%),
    radial-gradient(circle, rgba(46, 196, 166, 0.1) 0 2px, transparent 2.5px) 0 0 / 34px 34px;
  opacity: 1;
}
.cost::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 236px;
  z-index: 0;
  width: min(1120px, calc(100% - 48px));
  height: 520px;
  transform: translateX(-50%);
  pointer-events: none;
  border: 1px solid rgba(46, 196, 166, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 18%, rgba(46, 196, 166, 0.1) 0 7px, transparent 8px),
    radial-gradient(circle at 92% 82%, rgba(190, 234, 100, 0.16) 0 9px, transparent 10px),
    linear-gradient(135deg, transparent 0 48%, rgba(46, 196, 166, 0.08) 48% 48.18%, transparent 48.18%),
    linear-gradient(45deg, transparent 0 52%, rgba(190, 234, 100, 0.08) 52% 52.18%, transparent 52.18%);
  opacity: 0.86;
}
.cost > .container {
  position: relative;
  z-index: 3;
}
.cost__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}
.cost__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
  margin-bottom: 16px;
  display: inline-block;
}
.cost__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.01em;
}
.cost__intro {
  font-size: 15px;
  line-height: 2;
  color: var(--text-sub);
  margin: 0;
  max-width: 480px;
}

/* Flow steps — readable enrollment path */
.cost__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-bottom: 96px;
  padding: 22px;
  position: relative;
  counter-reset: step-counter;
  background: var(--white);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(11, 37, 69, 0.08);
  isolation: isolate;
  z-index: 2;
}
.cost__steps::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: var(--white);
}
.cost__step {
  position: relative;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  counter-increment: step-counter;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(11, 37, 69, 0.06);
}
.cost__step:not(:last-child)::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: -49px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(46, 196, 166, 0.42);
  color: var(--coral);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  z-index: 4;
  box-shadow: 0 10px 22px rgba(46, 196, 166, 0.14);
}
.cost__step::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  border: 1px dashed rgba(46, 196, 166, 0.18);
  pointer-events: none;
}

/* Visual mock area (supporting image, not the main hierarchy) */
.cost__step-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  margin-top: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: none;
  isolation: isolate;
}
.cost__step-visual--01,
.cost__step-visual--02,
.cost__step-visual--03 {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(11, 37, 69, 0.06);
}
.cost__step-visual .img-mock-label {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  padding: 9px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.cost__step-visual--03 .img-mock-label {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.cost__step-visual-tag {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.3em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}
.cost__step-visual-doodle {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.cost__step-visual-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: scale(1.14);
  pointer-events: none;
}
.cost__step-visual--01 .cost__step-visual-img {
  transform: translateY(12px) scale(1.14);
}
.cost__step-visual--02 .cost__step-visual-img {
  transform: translateY(12px) scale(1.14);
}
.cost__step-visual--has-img .cost__step-visual-doodle,
.cost__step-visual--has-img .img-mock-label { display: none; }
.cost__step-visual--has-img::before,
.cost__step-visual--has-img::after { content: none; }
.cost__step-visual--01 .cost__step-visual-doodle {
  background-image:
    radial-gradient(circle at 30% 64%, rgba(255,255,255,0.92) 0 22px, transparent 23px),
    radial-gradient(circle at 62% 50%, rgba(255,255,255,0.6) 0 30px, transparent 31px);
}
.cost__step-visual--02 .cost__step-visual-doodle {
  background-image:
    linear-gradient(rgba(11,37,69,0.18) 0 0),
    linear-gradient(rgba(11,37,69,0.18) 0 0),
    linear-gradient(rgba(11,37,69,0.18) 0 0),
    linear-gradient(rgba(11,37,69,0.18) 0 0);
  background-size: 30% 2px, 30% 2px, 2px 32%, 2px 32%;
  background-position: 35% 56%, 35% 78%, 35% 56%, 65% 56%;
}
.cost__step-visual--03 .cost__step-visual-doodle {
  background-image:
    radial-gradient(circle at 28% 76%, rgba(190,234,100,0.45) 0 18px, transparent 19px),
    radial-gradient(circle at 70% 70%, rgba(46,196,166,0.38) 0 26px, transparent 27px);
}

.cost__step-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.4;
}
.cost__step-num {
  width: fit-content;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--coral);
  margin: 0 0 14px;
  padding: 7px 10px 7px 12px;
  border-radius: 999px;
  background: rgba(46, 196, 166, 0.1);
}
.cost__step-text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-sub);
  margin: 0 0 20px;
}

/* ==========================================================
   Cost board — 2カード構成 (主役 / 入口)
   情報の階層: 月謝(継続) と 初期費用(入口) を視覚的に分離
========================================================== */
.cost__board {
  max-width: 1040px;
  margin: 0 auto;
}

/* ボードヘッダー */
.cost__board-head {
  text-align: center;
  margin: 0 0 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.cost__board-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cost__board-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 2.8vw, 34px);
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.cost__board-lede {
  font-size: 15px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.85;
}

/* 2カードグリッド */
.cost__plans {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* カード共通 */
.cost__plan {
  position: relative;
  border-radius: 18px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
}
.cost__plan-tag {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cost__plan-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.cost__plan-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  line-height: 1.5;
}

/* 主役カード: 月謝(navy) */
.cost__plan--main {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cost__plan--main .cost__plan-tag { color: var(--yellow); }
.cost__plan--main .cost__plan-title { color: var(--white); }

.cost__plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cost__plan-price-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 6.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.cost__plan-price-unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}
.cost__plan-price-unit small {
  font-size: 14px;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.cost__plan-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cost__plan-points li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.cost__plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}
.cost__plan-points b {
  color: var(--white);
  font-weight: 700;
}

/* 入口カード: 初期費用 */
.cost__plan--entry {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}
.cost__plan--entry .cost__plan-tag { color: var(--coral); }
.cost__plan--entry .cost__plan-title { color: var(--navy); }

.cost__initial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cost__initial-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.cost__initial-list span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}
.cost__initial-list b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--coral-deep);
  white-space: nowrap;
}
.cost__initial-note {
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.8;
}

.cost__monthly {
  margin-top: 32px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(11, 37, 69, 0.07);
}
.cost__monthly-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}
.cost__monthly-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--navy);
}
.cost__monthly-head p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
}
.cost__table-wrap {
  overflow-x: auto;
}
.cost__price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  font-size: 14px;
}
.cost__price-table th,
.cost__price-table td {
  border: 1px solid rgba(11, 37, 69, 0.08);
  padding: 15px 14px;
  text-align: center;
  vertical-align: middle;
  background: var(--white);
}
.cost__price-table thead th {
  background: #DFF4EC;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
}
.cost__price-table tbody th {
  text-align: left;
  font-family: var(--font-display);
  color: var(--navy);
  background: #F7FCFA;
}
.cost__price-table tbody td {
  color: var(--text-main);
  font-weight: 700;
}
.cost__price-table small {
  color: var(--text-sub);
  font-size: 11px;
  font-weight: 700;
}

/* フッター: CTA + 注釈 */
.cost__board-foot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cost__board-cta { min-width: 280px; }
.cost__footnote {
  font-size: 12px;
  color: var(--text-mute);
  margin: 0;
  text-align: center;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .cost__head { grid-template-columns: 1fr; gap: 24px; }
  .cost__plans { grid-template-columns: 1fr; gap: 24px; }
  .cost__plan { padding: 36px 28px 32px; }
}
@media (max-width: 768px) {
  .cost { padding: 96px 0; }
  .cost::before {
    background:
      linear-gradient(180deg, transparent 0%, rgba(255, 247, 236, 0.36) 42%, transparent 100%),
      radial-gradient(circle, rgba(46, 196, 166, 0.08) 0 2px, transparent 2.5px) 0 0 / 30px 30px;
  }
  .cost::after { display: none; }
  .cost__steps { grid-template-columns: 1fr; gap: 28px; }
  .cost__steps::before { display: none; }
  .cost__step::before { display: none; }
  .cost__step:not(:last-child)::after { display: none; }
  .cost__step-visual { aspect-ratio: 16 / 10; }
  .cost__board-head { margin-bottom: 36px; padding-bottom: 22px; }
  .cost__plan { padding: 32px 22px 28px; border-radius: 14px; }
  .cost__plan-price-num { font-size: 56px; }
  .cost__monthly { padding: 20px 14px; }
  .cost__monthly-head { display: block; }
  .cost__monthly-head p { margin-top: 8px; }
  .cost__board-cta { min-width: 0; width: 100%; }
}

/* ==========================================================
   7. FAQ  —  対話レイアウト (.talk__)
   左Q + 右A、吹き出し風
========================================================== */
.talk {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--white) 0, var(--cream) 120px, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.talk::before {
  background-image:
    linear-gradient(180deg, rgba(255,247,236,0.82), rgba(255,247,236,0.72)),
    var(--bg-faq-talk);
  background-position: center, 50% 50%;
  background-size: auto, cover;
  opacity: 0.72;
}
.talk__head {
  margin-bottom: 72px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.talk__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
  margin-bottom: 14px;
  display: inline-block;
}
.talk__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.02em;
}
.talk__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 820px;
}
.talk__pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.talk__q,
.talk__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

/* Question - 左寄せ、子の声 */
.talk__q {
  max-width: 86%;
}
.talk__q-avatar,
.talk__a-avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.talk__q-avatar { box-shadow: 0 0 0 2px var(--yellow); }
.talk__a-avatar { box-shadow: 0 0 0 2px var(--coral); color: var(--coral); }
.talk__q-avatar img,
.talk__a-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transform: scale(1.14);
}

.talk__q-bubble {
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 4px 16px 16px 16px;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
  position: relative;
}
.talk__q-bubble::before {
  content: "";
  position: absolute;
  top: 14px; left: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--navy) transparent transparent;
}

/* Answer - 右ずれ、コーチの声 (cream-deep + coral アクセント) */
.talk__a {
  max-width: 86%;
  margin-left: auto;
  flex-direction: row-reverse;
}
.talk__a-bubble {
  background: var(--cream-deep);
  color: var(--navy);
  border-radius: 16px 4px 16px 16px;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.85;
  position: relative;
}
.talk__a-bubble::before {
  content: "";
  position: absolute;
  top: 14px; right: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--cream-deep);
}
.talk__a-bubble em {
  font-style: normal;
  background: linear-gradient(transparent 64%, rgba(190,234,100,0.7) 64%);
  font-weight: 700;
  padding: 0 2px;
}

@media (max-width: 768px) {
  .talk { padding: 96px 0; }
  .talk::before { opacity: 0.48; }
  .talk__list { gap: 40px; }
  .talk__q, .talk__a { max-width: 100%; }
  .talk__q-avatar, .talk__a-avatar { width: 56px; height: 56px; font-size: 11px; }
  .talk__q-bubble, .talk__a-bubble { font-size: 14.5px; padding: 16px 20px; }
}

/* ==========================================================
   8. ACCESS  —  地図のみ (.where__)
========================================================== */
.where {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--cream) 0, var(--white) 120px, var(--white) 100%);
  position: relative;
}
.where__head {
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.where__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--coral);
}
.where__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.02em;
}
.where__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.where__map {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.where__map img,
.where__map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.where__map img {
  object-fit: cover;
}
.where__info {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.where__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 4px;
}
.where__name-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--text-mute);
  margin-bottom: 32px;
  display: block;
  text-transform: uppercase;
}
.where__dl {
  margin: 0;
  border-top: 1px solid var(--border);
}
.where__dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.where__dl dt {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--coral);
  text-transform: uppercase;
  margin: 0;
}
.where__dl dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.8;
}
.where__dl dd a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.where__dl dd a:hover {
  color: var(--coral-deep);
}

@media (max-width: 1024px) {
  .where__grid { grid-template-columns: 1fr; gap: 32px; }
  .where__map { min-height: 320px; }
}
@media (max-width: 768px) {
  .where { padding: 96px 0; }
  .where__dl > div { grid-template-columns: 88px 1fr; gap: 16px; padding: 14px 0; }
}

/* ==========================================================
   9. CONTACT CTA  —  祝祭感 (.final__)
   クリーム背景に生成背景を薄く敷く
========================================================== */
.final {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--white) 0, var(--cream) 120px, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final::before {
  background-image:
    linear-gradient(180deg, rgba(255,247,236,0.8), rgba(255,247,236,0.72)),
    var(--bg-final-celebrate);
  background-position: center, 50% 50%;
  background-size: auto, cover;
  opacity: 0.62;
}

.final__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.final__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--coral);
  margin-bottom: 32px;
  display: inline-block;
  text-transform: uppercase;
}
.final__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
  white-space: normal;
}
.final__title-note {
  display: block;
  color: var(--navy);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.final__title-main {
  white-space: nowrap;
}
.final__title em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.final__title em::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 4px;
  height: 16px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.55;
}
.final__lede {
  font-size: 17px;
  line-height: 2;
  color: var(--text);
  margin: 0 0 48px;
  font-weight: 500;
}
.final__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

@media (max-width: 768px) {
  .final { padding: 96px 0; }
  .final::before {
    background-position: 50% 50%;
    opacity: 0.42;
  }
  .final__title {
    font-size: 26px;
    gap: 10px;
  }
  .final__title-note {
    font-size: inherit;
  }
  .final__title-main {
    white-space: nowrap;
  }
}

/* ==========================================================
   FOOTER (維持)
========================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin: 24px 0 20px;
}
.footer-sns {
  display: flex;
  gap: 12px;
}
.footer-sns a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background .25s, transform .25s;
}
.footer-sns a:hover {
  background: var(--coral);
  transform: translateY(-2px);
  opacity: 1;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.2em;
  margin: 0 0 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col li { font-size: 13px; }
.footer-col a:hover { color: var(--coral); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom small { font-size: 12px; }
.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-col h5 { font-size: 11px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ==========================================================
   FLOAT CTA (維持・モバイル)
========================================================== */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: none;
  background: var(--coral);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 32px rgba(46, 196, 166, 0.45);
  align-items: center;
  gap: 8px;
}
.float-cta:hover {
  transform: translateY(-2px);
  background: var(--coral-deep);
  opacity: 1;
}
@media (max-width: 768px) {
  .float-cta { display: none !important; }
}

/* ==========================================================
   SCROLL REVEAL (維持)
========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   反対称的微調整 (AI感緩和)
========================================================== */
@media (min-width: 769px) {
  .belief__list .belief__item:nth-child(1) .belief__num { transform: translateY(2px); }
  .belief__list .belief__item:nth-child(3) .belief__body { padding-left: 24px; }

  .practice__row:nth-child(odd) .practice__media { transform: rotate(-0.4deg); }
  .practice__row:nth-child(even) .practice__media { transform: rotate(0.4deg); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   FINAL POLISH — Self-review fixes (2026-05-06)
   1. Heroサイズ抑制でCTAをファーストビュー内に
   2. Schedule 丸数字フォント修正
   3. Cost OL marker非表示
   4. Access マップアイコン中央配置
   5. Lecturer intro サイズ調整
========================================================== */

/* 1. Hero — タイトル抑制 + 非対称を控えめに */
.eh {
  min-height: auto;
  padding: 140px 0 96px;
}
.eh__title {
  font-size: clamp(48px, 8.4vw, 100px);
  line-height: 1.04;
  margin: 0 0 36px;
}
.eh__title-row--shift {
  padding-left: 0.5em;
}
.eh__title-row--right {
  text-align: left;
  padding-right: 0;
  padding-left: 1em;
}
@media (max-width: 768px) {
  .eh { padding: 120px 0 64px; }
  .eh__title { font-size: clamp(40px, 10.5vw, 56px); }
  .eh__title-row--shift { padding-left: 0.3em; }
  .eh__title-row--right { padding-left: 0.6em; }
}

/* 3. Cost — OL marker 非表示 */
.cost__steps {
  list-style: none;
}
.cost__steps .cost__step::marker { content: none; }

/* 4. Access — マップアイコン中央配置 */
.where__map-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 5. Lecturer — intro と quote のヒエラルキー */
.voice__intro {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 28px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.voice__quote { padding-top: 40px; }
.voice__quote::before { top: -36px; font-size: 160px; }
@media (max-width: 768px) {
  .voice__quote::before { font-size: 110px; top: -22px; }
}

/* 6. Philosophy 偶数行のbody内テキスト幅補正 (number右寄せでテキストが詰まる対策) */
@media (min-width: 769px) {
  .belief__item:nth-child(even) .belief__body {
    padding-right: 24px;
  }
  .belief__item:nth-child(even) .belief__text {
    margin-left: 0;
  }
}

/* 7. Cost__head 左カラムが極端に詰まる場合の対応 */
@media (min-width: 1025px) {
  .cost__head { grid-template-columns: 1.1fr 1fr; }
}

/* 8. Voice__quote em の黄色ハイライトを少し上にズラして自然に */
.voice__quote em { padding: 0 0.15em; }

/* ==========================================================
   日本式調整 — 引用符を和文向けに
========================================================== */

/* 10. Voice quote: 英文ダブルクォート装飾 → 和文の左縦線 */
.voice__quote {
  padding: 6px 0 6px 28px;
}
.voice__quote::before {
  content: "";
  font-size: 0;
  color: transparent;
  width: 4px;
  height: calc(100% - 12px);
  top: 6px;
  left: 0;
  background: var(--coral);
  border-radius: 2px;
  opacity: 1;
}
@media (max-width: 768px) {
  .voice__quote { padding-left: 22px; }
  .voice__quote::before { font-size: 0; width: 3px; }
}

/* ==========================================================
   Hero - Amoeba Photos + Lower Illust (alt MV)
   ※末尾でまとめて override。ここを唯一のソースにする。
========================================================== */
.eh {
  display: block !important;
  min-height: auto !important;
  padding: 128px 0 340px !important;
  overflow: visible;
  position: relative;
}
.eh__inner {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
  padding-bottom: 24px;
  position: relative;
  z-index: 4;
}
.eh__main {
  flex: 1 1 560px;
  min-width: 0;
  display: block;
  position: relative;
  z-index: 2;
}
.eh__title {
  font-size: clamp(36px, 4.6vw, 60px);
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.eh__title em {
  color: var(--coral);
  font-style: normal;
}
.eh__title-row {
  display: block;
  white-space: nowrap;
}
.eh__title-row + .eh__title-row { margin-top: 0.14em; }

/* Blobs area: アメーバ写真2枚 + 散らした小ブロブ */
.eh__blobs {
  flex: 0 0 520px;
  position: relative;
  height: 560px;
  max-width: 560px;
  margin-left: auto;
}
.eh__photo {
  position: absolute;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 28px 72px rgba(11, 37, 69, 0.22);
}
.eh__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* メイン写真: 右上の大きなアメーバ */
.eh__photo--main {
  top: 12px;
  right: 0;
  width: 78%;
  height: 78%;
  border-radius: 58% 42% 64% 36% / 52% 56% 44% 48%;
  transform: rotate(-2deg);
  z-index: 1;
  border: 8px solid #fff;
}
.eh__photo--main img {
  object-position: center 46%;
  transform: rotate(2deg) scale(1.12);
}
/* サブ写真: 左下の小さなアメーバ（メインに少し被せる） */
.eh__photo--sub {
  bottom: 0;
  left: 0;
  width: 44%;
  height: 42%;
  border-radius: 52% 48% 60% 40% / 60% 44% 56% 40%;
  transform: rotate(4deg);
  z-index: 2;
  box-shadow: 0 18px 44px rgba(11, 37, 69, 0.28);
  border: 6px solid #fff;
}
.eh__photo--sub img {
  object-position: center 46%;
  transform: rotate(-4deg) scale(1.18);
}
/* 散らした小ブロブ（参照画像のような外周装飾） */
.eh__accent {
  position: absolute;
  display: block;
  pointer-events: none;
}
.eh__accent--coral {
  width: 110px; height: 100px;
  top: -10px; left: -28px;
  border-radius: 56% 44% 64% 36% / 52% 60% 40% 48%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  transform: rotate(-12deg);
  z-index: 0;
}
.eh__accent--navy {
  width: 86px; height: 78px;
  top: 36px; right: -22px;
  border-radius: 48% 52% 60% 40% / 56% 44% 60% 40%;
  background: linear-gradient(135deg, #6E7DA1 0%, var(--navy-soft) 100%);
  transform: rotate(14deg);
  opacity: 0.55;
  z-index: 0;
}
/* Sport collage: 元の下部イラストを段違いで置く */
.eh__illust {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  height: 340px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.76) 0%, rgba(242, 251, 247, 0.76) 48%, rgba(242, 251, 247, 0) 78%),
    linear-gradient(180deg, rgba(242, 251, 247, 0) 0%, rgba(242, 251, 247, 0.66) 34%, rgba(242, 251, 247, 0.96) 82%, rgba(242, 251, 247, 1) 100%);
}
.eh__illust::before,
.eh__illust::after { content: none; }
.eh__sport {
  position: absolute;
  z-index: 3;
  height: auto;
  display: block;
  max-width: none;
  filter: none;
  opacity: 0.96;
}
.eh__sport--mat {
  left: calc(50% - 320px);
  top: auto;
  bottom: 30px;
  width: clamp(270px, 22vw, 330px);
  transform: rotate(-1deg);
}
.eh__sport--bar {
  left: max(56px, calc((100vw - var(--container)) / 2 - 6px));
  top: auto;
  bottom: 54px;
  width: clamp(140px, 11vw, 168px);
  transform: rotate(-2deg);
}
.eh__sport--vault {
  left: calc(50% + 90px);
  right: auto;
  top: auto;
  bottom: 122px;
  width: clamp(140px, 11vw, 168px);
  transform: rotate(2deg);
  z-index: 4;
}
.eh__sport--trampoline {
  right: max(56px, calc((100vw - var(--container)) / 2 - 6px));
  left: auto;
  top: auto;
  bottom: 30px;
  width: clamp(270px, 22vw, 330px);
  transform: rotate(-0.5deg);
  z-index: 3;
}

@media (max-width: 1100px) {
  .eh__main { flex-basis: 480px; }
  .eh__blobs { flex-basis: 440px; height: 480px; max-width: 480px; }
  .eh__accent--coral { width: 96px; height: 88px; }
  .eh__accent--navy { width: 76px; height: 68px; }
}
@media (max-width: 1024px) {
  .eh__inner { gap: 32px; padding-bottom: 20px; }
  .eh__main { flex-basis: 100%; }
  .eh__blobs {
    flex-basis: 100%;
    height: 420px;
    max-width: 480px;
    margin: 0 auto;
  }
  .eh { padding-bottom: 360px !important; }
  .eh__illust { height: 350px; }
  .eh__sport--mat { left: 28vw; top: auto; bottom: 38px; width: min(275px, 30vw); }
  .eh__sport--bar { left: 8px; top: auto; bottom: 80px; width: min(132px, 14vw); }
  .eh__sport--vault { left: 62vw; right: auto; top: auto; bottom: 132px; width: min(140px, 14vw); }
  .eh__sport--trampoline { left: auto; right: 8px; top: auto; bottom: 30px; width: min(264px, 29vw); }
}
@media (max-width: 768px) {
  .site-header { padding: 10px 0; }
  .site-header.is-scrolled { padding: 8px 0; }
  .logo { width: 54px; height: 54px; }
  .hamburger {
    width: 44px;
    height: 44px;
  }
  .eh { padding: 92px 0 200px !important; }
  .eh__illust {
    bottom: 44px;
    height: 178px;
  }
  .eh__inner {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0;
  }
  .eh__main { display: contents; }
  .eh__kicker {
    order: 1;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.24em;
    line-height: 1.7;
    margin: 0 0 18px;
  }
  .eh__kicker::before { width: 28px; }
  .eh__title {
    order: 2;
    font-size: clamp(42px, 12.4vw, 54px);
    line-height: 1.14;
    margin: 0;
  }
  .eh__title-row { white-space: normal; }
  .eh__blobs {
    order: 3;
    width: min(340px, 92vw);
    height: 282px;
    max-width: 340px;
    margin: 24px auto 0;
    flex-basis: auto;
  }
  .eh__photo--main {
    top: 0;
    right: 12px;
    width: 73%;
    height: 76%;
    border-width: 6px;
  }
  .eh__photo--sub {
    bottom: 8px;
    left: 16px;
    width: 43%;
    height: 38%;
    border-width: 5px;
  }
  .eh__accent--coral { width: 76px; height: 68px; top: 12px; left: -2px; }
  .eh__accent--navy { width: 58px; height: 52px; top: 30px; right: 0; }
  .eh__lede {
    order: 4;
    font-size: 15.5px;
    line-height: 1.75;
    margin: 24px 0 20px;
  }
  .eh__cta {
    order: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
  }
  .eh__cta .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 13.5px;
  }
  .eh__sport--mat {
    left: 88px;
    right: auto;
    top: auto;
    bottom: 40px;
    width: min(122px, 31vw);
  }
  .eh__sport--bar {
    left: 8px;
    right: auto;
    top: auto;
    bottom: 36px;
    width: min(66px, 17vw);
  }
  .eh__sport--vault {
    right: auto;
    left: 218px;
    top: auto;
    bottom: 54px;
    width: min(64px, 16.5vw);
  }
  .eh__sport--trampoline {
    left: auto;
    right: 4px;
    bottom: 38px;
    width: min(100px, 25.5vw);
  }
}

@media (max-width: 360px) {
  .eh__title {
    font-size: clamp(38px, 12vw, 42px);
  }
  .eh__blobs {
    width: calc(100vw - 44px);
  }
  .eh__cta .btn {
    font-size: 13px;
    padding: 0 14px;
  }
}

/* ==========================================================
   Section Title Unification — eyebrow と heading を全セクション統一
   ※既存ルールよりあとに置いて override
========================================================== */
.belief__label,
.voice__label,
.practice__label,
.schedule__label,
.cost__label,
.talk__label,
.where__label,
.final__label {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 18px;
  line-height: 1;
}

.belief__heading,
.voice__heading,
.practice__heading,
.schedule__heading,
.cost__heading,
.talk__heading,
.where__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0;
}
.voice__heading {
  margin-bottom: 24px;
}

/* Lesson の <em> マーカーは他セクションでも使えるよう統一 */
.belief__heading em,
.schedule__heading em,
.cost__heading em,
.talk__heading em,
.where__heading em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.belief__heading em::after,
.schedule__heading em::after,
.cost__heading em::after,
.talk__heading em::after,
.where__heading em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 0.42em;
  background: var(--yellow);
  opacity: 0.6;
  z-index: -1;
}

/* Final はクロージングなので大きめを維持 */
.final__label {
  color: var(--coral);
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .belief__label,
  .voice__label,
  .practice__label,
  .schedule__label,
  .cost__label,
  .talk__label,
  .where__label,
  .final__label {
    font-size: 11px;
    letter-spacing: 0.28em;
    margin-bottom: 14px;
  }
  .belief__heading,
  .voice__heading,
  .practice__heading,
  .schedule__heading,
  .cost__heading,
  .talk__heading,
  .where__heading {
    font-size: clamp(24px, 5.6vw, 32px);
    line-height: 1.36;
  }
}

/* ==========================================================
   Philosophy enrich — kicker + doodle + chips で密度を上げる
========================================================== */
.belief__numwrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.belief__item:nth-child(even) .belief__numwrap {
  align-items: flex-end;
  text-align: right;
}
.belief__kicker {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--coral);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(46, 196, 166, 0.35);
  border-radius: 999px;
  background: rgba(46, 196, 166, 0.06);
  align-self: flex-start;
  margin-top: 4px;
  line-height: 1;
}
.belief__item:nth-child(even) .belief__kicker { align-self: flex-end; }
.belief__chips {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.belief__chips li {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-jp);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid rgba(11, 37, 69, 0.12);
  border-radius: 999px;
  line-height: 1;
}
.belief__chips li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 8px;
}

@media (max-width: 768px) {
  .belief__numwrap,
  .belief__item:nth-child(even) .belief__numwrap {
    align-items: flex-start;
    text-align: left;
  }
  .belief__kicker { font-size: 10px; letter-spacing: 0.3em; padding: 5px 10px; }
  .belief__chips { margin-top: 16px; gap: 6px 8px; }
  .belief__chips li { font-size: 11.5px; padding: 6px 12px; }
}

/* セクション側で覆われる 1px の継ぎ目をスパッと隠す */
.eh, .belief, .voice, .practice, .schedule,
.cost, .talk, .where, .final {
  position: relative;
}

/* Lesson hierarchy: 親の Lesson と子の Class を明確に分ける */
@media (max-width: 768px) {
  .practice__heading {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.24;
  }
  .practice__lede {
    font-size: 15px;
    line-height: 1.9;
  }
  .practice__title {
    font-size: clamp(22px, 6.4vw, 26px);
    line-height: 1.42;
  }
  .practice__target,
  .practice__text,
  .practice__chips-label,
  .practice__chips {
    font-size: 14px;
  }
}

/* ==========================================================
   Revision direction — mint palette / equipment focus / clearer CTA
========================================================== */
.eh {
  background:
    radial-gradient(circle at 82% 18%, rgba(46, 196, 166, 0.18), transparent 28%),
    linear-gradient(180deg, #f5fff9 0%, var(--cream) 100%);
  padding-bottom: 340px !important;
  overflow: visible;
}
.eh__kicker,
.belief__label,
.voice__label,
.practice__label,
.schedule__label,
.cost__label,
.talk__label,
.where__label,
.final__label {
  color: var(--coral-deep);
}
.eh__kicker::before {
  background: var(--coral-deep);
}
.eh__title em,
.practice__target b,
.final__title em {
  color: var(--coral-deep);
}
.eh__lede {
  max-width: 640px;
}
.eh__illust {
  display: block;
}
.eh__accent--coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
}
.eh__accent--navy {
  background: linear-gradient(135deg, #8EDDD0 0%, var(--navy-soft) 100%);
}

.btn-primary {
  background: var(--coral-deep);
  box-shadow: 0 12px 28px -8px rgba(19, 139, 121, 0.48), 0 2px 6px rgba(7, 59, 58, 0.08);
}
.btn-primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 18px 36px -10px rgba(19, 139, 121, 0.56), 0 4px 10px rgba(7, 59, 58, 0.1);
}
.btn-ghost {
  color: var(--navy);
  border-color: rgba(19, 139, 121, 0.24);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
}

.belief {
  background: #ffffff;
}
.belief::before {
  background:
    linear-gradient(180deg, rgba(242, 251, 247, 0.96) 0, rgba(255, 255, 255, 0.98) 140px, rgba(255, 255, 255, 0) 280px),
    radial-gradient(circle at 88% 12%, rgba(46, 196, 166, 0.12), transparent 24%);
}
.belief__num {
  color: rgba(7, 59, 58, 0.92);
}
.belief__num::after,
.belief__chips li::before,
.voice__quote::before {
  background: var(--coral);
}
.belief__kicker {
  color: var(--coral-deep);
  border-color: rgba(46, 196, 166, 0.42);
  background: rgba(46, 196, 166, 0.09);
}
.belief__chips li {
  border-color: rgba(19, 139, 121, 0.16);
}

.voice,
.practice,
.schedule,
.cost,
.talk,
.where,
.final {
  background: linear-gradient(180deg, var(--white) 0, var(--cream) 120px, var(--cream) 100%);
}
.voice::before,
.cost::before {
  opacity: 0.46;
}
.voice__portrait,
.practice__img,
.where__map {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.voice__credits li::before {
  color: var(--coral-deep);
}

.practice__row {
  border-color: rgba(19, 139, 121, 0.12);
  box-shadow: 0 24px 70px rgba(7, 59, 58, 0.07);
}
.practice__num {
  color: var(--coral-deep);
  border-color: rgba(46, 196, 166, 0.35);
  background: rgba(46, 196, 166, 0.1);
}
.practice__row:nth-child(2) .practice__img {
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--coral-deep) 100%);
}
.practice__chip {
  color: var(--coral-deep);
}

.schedule::before {
  background:
    linear-gradient(180deg, rgba(242, 251, 247, 0.88), rgba(242, 251, 247, 0.76)),
    var(--bg-schedule-soft) center / cover no-repeat;
}
.schedule__grid thead th {
  background: #DFF4EC;
  border-color: #A8DCCE;
}
.schedule__grid thead th.schedule__col-sun {
  color: var(--coral-deep);
}
.schedule__grid .schedule__time {
  background: #E9F7F1;
}
.schedule__grid .schedule__closed {
  background: #F0F8F5;
}
.cls--hop { color: #6F5800; }
.cls--step { color: #0B6F61; }
.cls--leap { color: #0D9DA9; }
.cls--jump { color: #0A6F92; }
.cls--jumpp { color: var(--navy-soft); }
.cls--acro { color: var(--navy); }

.cost__plan--main {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.cost__plan--entry .cost__plan-tag {
  color: var(--coral-deep);
}

.talk::before,
.final::before {
  opacity: 0.48;
}
.talk__q-bubble {
  border-color: var(--navy);
}
.talk__q-avatar {
  box-shadow: 0 0 0 2px var(--yellow);
}
.talk__a-avatar {
  box-shadow: 0 0 0 2px var(--coral);
  color: var(--coral-deep);
}
.talk__a-bubble {
  background: var(--cream-deep);
}
.talk__a-bubble::before {
  border-color: transparent transparent transparent var(--cream-deep);
}

.site-footer {
  background: var(--navy-deep);
}
.footer-sns a:hover,
.float-cta {
  background: var(--coral-deep);
}
.float-cta {
  display: inline-flex;
  box-shadow: 0 14px 34px rgba(19, 139, 121, 0.38);
}
.float-cta:hover {
  background: var(--navy-soft);
}

@media (max-width: 1024px) {
  .eh {
    padding-bottom: 360px !important;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    padding-bottom: 76px;
  }
  .eh {
    padding: 92px 0 200px !important;
  }
  .eh__lede {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .float-cta {
    display: inline-flex !important;
    left: 18px;
    right: 18px;
    bottom: 16px;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }
}

/* ==========================================================
   Section rhythm
   Match each divider to the role of the next section.
========================================================== */
:root {
  --divider-angle-lg: 108px;
  --divider-angle-sm: 50px;
  --divider-wave-lg: 92px;
  --divider-wave-sm: 56px;
  --divider-rule: rgba(7, 59, 58, 0.14);
  --divider-rule-strong: rgba(7, 59, 58, 0.2);
}

:where(.belief, .voice, .practice, .schedule, .cost, .talk, .where, .final) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 86px;
}

:where(.belief, .voice, .practice, .schedule, .cost, .talk, .where, .final) > .container {
  position: relative;
  z-index: 2;
}

:where(.voice, .practice, .schedule, .cost, .talk, .where, .final) > .container::before {
  content: none;
}

:where(.belief__head, .practice__head, .schedule__head, .cost__head, .talk__head, .where__head) {
  position: relative;
}

:where(.belief__head, .practice__head, .schedule__head, .cost__head, .talk__head, .where__head)::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  width: 86px;
  height: 5px;
  border-radius: 999px;
  background: var(--coral-deep);
  opacity: 0.9;
}

.schedule__head::before {
  background: var(--navy);
}

.cost__head::before {
  background: #6F5800;
}

/* Fade: first-view to strengths. */
.belief {
  padding-bottom: 198px;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(46, 196, 166, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(242, 251, 247, 0.98) 0, #FFFFFF 24%, #FFFFFF 100%);
}

/* Diagonal: strengths to supervisor, a clear chapter change. */
.voice {
  margin-top: calc(var(--divider-angle-lg) * -1);
  padding-top: 232px;
  padding-bottom: 88px;
  clip-path: polygon(0 var(--divider-angle-lg), 100% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 15% 18%, rgba(190, 234, 100, 0.16), transparent 20%),
    linear-gradient(180deg, #DFF4EC 0%, #F4FFFB 42%, #FFFFFF 100%);
}

.voice::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: auto 0 -1px;
  height: var(--divider-wave-lg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' d='M0 72C160 36 296 92 486 58C688 22 822 14 1018 54C1190 90 1308 84 1440 50V120H0Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  opacity: 1;
  mix-blend-mode: normal;
}

/* Wave: supervisor to lesson, limited to the playful teaching area. */
.practice {
  margin-top: 0;
  padding-top: 76px;
  padding-bottom: 172px;
  background:
    radial-gradient(ellipse at 80% 6%, rgba(46, 196, 166, 0.08), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FCFA 60%, #FFFFFF 100%);
}

.practice::before {
  content: none;
}

/* Straight: lessons to timetable, where the page becomes factual. */
.schedule {
  padding-top: 152px;
  border-top: 1px solid var(--divider-rule-strong);
  background: linear-gradient(180deg, #DFF4EC 0%, #EAF7F8 54%, #F8FFFC 100%);
}

.schedule::before {
  background:
    linear-gradient(180deg, rgba(223, 244, 236, 0.62), rgba(234, 247, 248, 0.7)),
    var(--bg-schedule-soft) center / cover no-repeat;
  opacity: 0.36;
}

/* Fade: timetable to pricing, keeping practical information connected. */
.cost {
  margin-top: -64px;
  padding-top: 190px;
  background:
    radial-gradient(circle at 10% 22%, rgba(190, 234, 100, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(248, 255, 252, 0) 0, rgba(255, 255, 255, 0.92) 86px, #FFFFFF 128px, #FBFFE9 46%, #FFFFFF 100%);
}

/* Straight: pricing to FAQ, a restrained reset after price details. */
.talk {
  padding-top: 168px;
  border-top: 1px solid var(--divider-rule);
  background:
    radial-gradient(ellipse at 82% 4%, rgba(46, 196, 166, 0.1), transparent 30%),
    linear-gradient(180deg, #EEF9F5 0%, #FFFFFF 100%);
}

/* Straight: FAQ to access, keeping utility sections quiet. */
.where {
  padding-top: 164px;
  border-top: 1px solid var(--divider-rule);
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FFFC 100%);
}

/* Fade: access to final CTA. */
.final {
  margin-top: -56px;
  padding-top: 214px;
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 196, 166, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(249, 255, 252, 0) 0, rgba(238, 249, 245, 0.94) 98px, #EEF9F5 42%, #FFFFFF 100%);
}

@media (max-width: 768px) {
  :where(.belief, .voice, .practice, .schedule, .cost, .talk, .where, .final) {
    scroll-margin-top: 74px;
  }

  .belief {
    padding-bottom: 132px;
  }

  .voice {
    margin-top: calc(var(--divider-angle-sm) * -1);
    padding-top: 142px;
    padding-bottom: 64px;
    clip-path: polygon(0 var(--divider-angle-sm), 100% 0, 100% 100%, 0 100%);
  }

  .voice::after {
    height: var(--divider-wave-sm);
  }

  .practice {
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 128px;
  }

  .practice::before {
    content: none;
  }

  .schedule {
    padding-top: 124px;
  }

  .cost {
    margin-top: -42px;
    padding-top: 142px;
  }

  .talk,
  .where {
    padding-top: 128px;
  }

  .final {
    margin-top: -42px;
    padding-top: 154px;
  }

  :where(.belief__head, .practice__head, .schedule__head, .cost__head, .talk__head, .where__head)::before {
    top: -28px;
    width: 64px;
    height: 4px;
  }
}

/* ==========================================================
   Strength media
   Place real photos beside each strength without turning the
   section into stacked cards.
========================================================== */
@media (min-width: 769px) {
  .belief__item,
  .belief__item:nth-child(even) {
    grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr) minmax(300px, 0.78fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    padding: 72px 0;
  }

  .belief__item:nth-child(even) {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr) minmax(118px, 0.34fr);
  }

  .belief__item .belief__numwrap,
  .belief__item:nth-child(even) .belief__media {
    order: 1;
  }

  .belief__item .belief__body,
  .belief__item:nth-child(even) .belief__body {
    order: 2;
    padding: 0;
  }

  .belief__item .belief__media,
  .belief__item:nth-child(even) .belief__numwrap {
    order: 3;
  }

  .belief__list .belief__item:nth-child(3) .belief__body {
    padding-left: 0;
  }
}

.belief__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(7, 59, 58, 0.12);
  background: #F2FBF7;
  box-shadow: 0 24px 54px rgba(7, 59, 58, 0.08);
}

.belief__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.belief__placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, #EEF2F1 0%, #DDE5E2 56%, #CFDAD6 100%);
}

.belief__placeholder::before,
.belief__placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(7, 59, 58, 0.1);
}

.belief__placeholder::before {
  width: 22%;
  aspect-ratio: 1;
  right: 12%;
  top: 16%;
}

.belief__placeholder::after {
  width: 78%;
  height: 42%;
  left: 11%;
  bottom: 13%;
  border-radius: 0 0 6px 6px;
  clip-path: polygon(0 100%, 27% 42%, 45% 62%, 67% 18%, 100% 100%);
}

.belief__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(7, 59, 58, 0.12) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0.55;
}

.belief__media--dummy {
  border-color: rgba(7, 59, 58, 0.1);
  box-shadow: 0 18px 42px rgba(7, 59, 58, 0.05);
}

.belief__media--dummy::after {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 59, 58, 0.06));
  opacity: 0.72;
}

.belief__media--space img {
  object-position: center 58%;
}

.belief__media--equipment img {
  object-position: center 50%;
}

.belief__media--coach img {
  object-position: center 46%;
}

.belief__media--approach img {
  object-position: center 52%;
}

@media (max-width: 980px) and (min-width: 769px) {
  .belief__item,
  .belief__item:nth-child(even) {
    grid-template-columns: minmax(94px, 0.24fr) minmax(0, 1fr) minmax(240px, 0.64fr);
    gap: 28px;
  }

  .belief__item:nth-child(even) {
    grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1fr) minmax(94px, 0.24fr);
  }

  .belief__title {
    font-size: clamp(23px, 3vw, 30px);
  }
}

@media (max-width: 768px) {
  .belief__item,
  .belief__item:nth-child(even) {
    gap: 18px;
    padding: 48px 0;
  }

  .belief__item .belief__numwrap,
  .belief__item:nth-child(even) .belief__numwrap {
    order: 1;
  }

  .belief__item .belief__body,
  .belief__item:nth-child(even) .belief__body {
    order: 2;
  }

  .belief__item .belief__media,
  .belief__item:nth-child(even) .belief__media {
    order: 3;
  }

  .belief__media {
    margin-top: 8px;
    aspect-ratio: 16 / 10;
    border-radius: 7px;
    box-shadow: 0 18px 36px rgba(7, 59, 58, 0.08);
  }

  .belief__media--coach {
    aspect-ratio: 4 / 3;
  }
}
