/* ============================================================
   スタディリンク LP v2 — Canvaデザイン準拠
   カラー：navy #1B54A3 / blue #006EB3 / cyan #00B0D6
           yellow #FCCE5A / cream #FBF5E6 / line #06C755
   ============================================================ */

:root {
  --navy: #1B54A3;
  --navy-deep: #123C8F;
  --ink-navy: #17376E;
  --blue: #006EB3;
  --cyan: #00B0D6;
  --yellow: #FCCE5A;
  --cream: #FBF5E6;
  --pale: #EAF3FB;
  --ink: #2b3a55;
  --ink-soft: #4a5a74;
  --line-green: #06C755;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 8px 26px rgba(27, 84, 163, .10);
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --header-h: 64px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
b, strong { font-weight: 700; }

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

.c-yellow { color: var(--yellow); }
.c-cyan { color: #7FD8F0; }
.c-blue { color: var(--navy); }

/* ---------- layout ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.container--mid { max-width: 940px; }
.center { text-align: center; }

.section { position: relative; padding: 64px 0; overflow: hidden; }
.section--cream { background: var(--cream); }
.section--pale { background: linear-gradient(180deg, #EDF5FC 0%, #E3EFFA 100%); }

/* ---------- 装飾 ---------- */
.deco-circle { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.deco-dots {
  position: absolute; width: 130px; height: 130px; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(27,84,163,.28) 2.4px, transparent 2.8px);
  background-size: 16px 16px;
}
.deco-dots--tr { top: 26px; right: 22px; }
.deco-dots--tl { top: 26px; left: 22px; }
.deco-dots--bl { bottom: 26px; left: 22px; }
.deco-dots--br { bottom: 26px; right: 22px; }
.deco-dots--tl-light, .deco-dots--br-light, .deco-dots--hero-l, .deco-dots--hero-r {
  background-image: radial-gradient(circle, rgba(255,255,255,.35) 2.4px, transparent 2.8px);
}
.deco-dots--tl-light { top: 26px; left: 22px; }
.deco-dots--br-light { bottom: 26px; right: 22px; }

/* ---------- セクションラベル（…● ラベル ●…） ---------- */
.sec-label {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; color: var(--ink-navy);
  font-size: 15px; margin-bottom: 14px; letter-spacing: .08em;
}
.sec-label__line {
  width: 64px; height: 3px; flex: none;
  background-image: radial-gradient(circle, #9db9dc 1.5px, transparent 1.9px);
  background-size: 8px 3px; background-repeat: repeat-x; background-position: center;
}
.sec-label__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); flex: none; }
.sec-label__txt { white-space: nowrap; }
@media (max-width: 480px) { .sec-label__line { width: 26px; } }
.sec-label--left { justify-content: flex-start; }
.sec-label--light { color: #fff; }
.sec-label--light .sec-label__line { background-image: radial-gradient(circle, rgba(255,255,255,.55) 1.5px, transparent 1.9px); }

/* ---------- セクションタイトル ---------- */
.sec-title {
  font-family: var(--font-head); font-weight: 900; color: var(--ink-navy);
  font-size: clamp(24px, 5.4vw, 38px); line-height: 1.55; text-align: center;
  margin-bottom: 26px; letter-spacing: .02em;
}
.sec-title--left { text-align: left; }
.marker { background: linear-gradient(transparent 66%, rgba(252,206,90,.9) 66% 94%, transparent 94%); padding: 0 2px; }

.lead-text { text-align: left; max-width: 760px; margin: 0 auto 30px; font-size: 15px; }
.lead-text.center { text-align: center; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
  border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); }
.btn--line {
  background: linear-gradient(180deg, #1fd162 0%, var(--line-green) 100%);
  color: #fff; box-shadow: 0 6px 18px rgba(6,199,85,.35);
}
.btn--line:hover { box-shadow: 0 10px 24px rgba(6,199,85,.45); }
.btn--header { padding: 9px 18px; font-size: 13px; white-space: nowrap; }
.btn--navy {
  background: var(--navy); color: #fff; border-radius: 10px;
  box-shadow: 0 4px 14px rgba(27,84,163,.32);
}
.btn--navy:hover { box-shadow: 0 8px 20px rgba(27,84,163,.42); }
.btn--navy.btn--header { padding: 11px 22px; }
.btn--yellow {
  background: linear-gradient(180deg, #FFD968 0%, var(--yellow) 100%);
  color: var(--ink-navy); border-radius: 12px;
  box-shadow: 0 6px 18px rgba(252,206,90,.5);
}
.btn--yellow:hover { box-shadow: 0 10px 24px rgba(252,206,90,.6); }
.btn--lg { padding: 15px 30px; font-size: 17px; }
.btn--xl { padding: 20px 42px; font-size: clamp(17px, 3.6vw, 24px); width: min(100%, 700px); }
@media (max-width: 480px) { .btn--xl { font-size: 16.5px; padding: 18px 20px; white-space: nowrap; } }
.btn--plan { width: 100%; padding: 14px 18px; font-size: 16px; position: relative; }
.btn__icon { display: inline-flex; flex: none; }
.btn__arrow {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.28);
}
.btn--plan .btn__arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(20,40,90,.08);
}
.header__inner {
  max-width: 1200px; margin: 0 auto; padding: 8px 16px;
  display: flex; align-items: center; gap: 18px; min-height: var(--header-h);
}
.header__logo { display: flex; align-items: center; gap: 9px; margin-right: auto; }
.header__mark { width: 52px; height: auto; flex: none; }
.header__logo-txt { display: flex; flex-direction: column; line-height: 1.2; }
.header__logo-name { font-family: var(--font-head); font-weight: 900; font-size: 24px; letter-spacing: .01em; }
.header__logo-name b { color: var(--navy); }
.header__logo-name i { color: var(--cyan); font-style: normal; }
.header__logo-sub { font-size: 10.5px; font-weight: 700; color: var(--navy); letter-spacing: .3em; white-space: nowrap; }
.header__nav { display: none; gap: 26px; }
.header__nav a {
  font-size: 13.5px; font-weight: 700; color: var(--ink-navy); position: relative; padding: 4px 0;
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  border-radius: 2px; background: var(--yellow); transform: scaleX(0); transition: transform .25s ease;
}
.header__nav a:hover::after { transform: scaleX(1); }

@media (min-width: 1060px) {
  .header__nav { display: flex; }
}
@media (max-width: 480px) {
  .header__logo-name { font-size: 19px; }
  .header__logo-sub { font-size: 8.5px; letter-spacing: .18em; }
  .header__mark { width: 40px; }
  .header__inner { gap: 10px; }
  .btn--header { padding: 8px 12px; font-size: 11.5px; }
}

/* ============================================================
   1. ヒーロー
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(115deg, #1E5FBE 0%, #1B54A3 45%, #2373CE 100%);
  padding: 46px 0 0;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__wave { position: absolute; inset: 0; width: 100%; height: 100%; }
.deco-dots--hero-l { top: 12%; left: 3%; width: 110px; height: 150px; }
.deco-dots--hero-r { bottom: 22%; right: 4%; width: 110px; height: 110px; }

.hero__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
.hero__text { padding: 12px 0 26px; }
.hero__title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: clamp(34px, 8.6vw, 60px); line-height: 1.38; letter-spacing: .015em;
  text-shadow: 0 2px 14px rgba(10,40,100,.3);
}
.hero__title .c-yellow, .hero__title .c-cyan { font-size: 1.1em; }
.hero__title .c-cyan { color: #8FE0F4; }
.hero__num { font-size: 1.22em !important; letter-spacing: 0; }
.hero__ga { font-size: .58em; margin-left: 3px; }
.hero__sub { margin-top: 16px; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: clamp(14px, 2.7vw, 19px); letter-spacing: .04em; }
.hero__cta { margin-top: 26px; }

.hero__media { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 300px; }
.hero__arrow {
  position: absolute; width: 66%; max-width: 400px; right: -5%; bottom: 34%; z-index: 0; opacity: .97;
}
.hero__student {
  position: relative; z-index: 1; width: min(100%, 560px); height: auto;
  margin-bottom: -6px;
  filter: drop-shadow(0 14px 26px rgba(8, 26, 64, .28));
}
.hero__bg::before {
  content: ""; position: absolute; top: 7%; left: 46%;
  width: clamp(70px, 10vw, 130px); aspect-ratio: 1; border-radius: 50%;
  background: #3FA9E5; opacity: .55;
}
.hero__bg::after {
  content: ""; position: absolute; top: 36%; right: 5%;
  width: clamp(30px, 4vw, 52px); aspect-ratio: 1; border-radius: 50%;
  background: #7FD8F0; opacity: .55;
}
.hero__curve { display: block; width: 100%; height: 56px; position: relative; z-index: 2; margin-top: -54px; }

@media (min-width: 820px) {
  .hero { padding-top: 30px; }
  .hero__inner { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 0; }
  .hero__text { padding: 40px 0 90px; }
  .hero__media { min-height: 440px; }
  .hero__student { width: min(106%, 620px); max-width: none; }
  .hero__curve { height: 90px; margin-top: -88px; }
}

/* ============================================================
   2. 選ばれる理由（ネイビー）
   ============================================================ */
.reasons { background: linear-gradient(160deg, #17479C 0%, #1B54A3 55%, #154592 100%); color: #fff; padding: 72px 0; }
.reasons__title {
  font-family: var(--font-head); font-weight: 900; text-align: center; color: #fff;
  font-size: clamp(23px, 5vw, 36px); letter-spacing: .06em; margin-bottom: 46px;
}
.reasons__bar { display: block; width: 86px; height: 6px; border-radius: 4px; background: var(--yellow); margin: 16px auto 0; }
.reasons__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 18px;
}
.reason { text-align: center; }
.reason__icon {
  position: relative; width: 118px; height: 118px; margin: 0 auto 26px;
  border: 3px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.reason__icon svg { width: 58%; height: 58%; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.reason__icon svg .thin { stroke-width: 2; }
.reason__icon svg .fill-bg { fill: #1B54A3; }
.reason__num {
  position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: #2EA6DC; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
.reason__name { font-family: var(--font-head); font-weight: 900; font-size: clamp(15px, 2.4vw, 20px); line-height: 1.5; }
.reason__dots {
  display: block; width: 74px; height: 6px; margin: 10px auto 12px;
  background-image: radial-gradient(circle, #58C4E8 2.4px, transparent 2.8px);
  background-size: 13px 6px; background-repeat: repeat-x; background-position: center;
}
.reason p { font-size: 13.5px; line-height: 1.85; color: #EAF2FC; }

@media (min-width: 900px) {
  .reasons__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   3. 悩み共感（クリーム）
   ============================================================ */
.worry__grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 34px auto 0;
}
.worry-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 24px 22px; display: flex; align-items: center; gap: 18px;
}
.worry-card__icon {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  background: var(--ink-navy); display: flex; align-items: center; justify-content: center;
}
.worry-card__icon svg { width: 32px; height: 32px; }
.worry-card p { font-weight: 700; color: var(--ink-navy); font-size: 15px; line-height: 1.75; }
.worry-card p br { display: none; }

@media (min-width: 760px) {
  .worry__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .worry-card p br { display: inline; }
}

/* ============================================================
   4. スタディリンクとは
   ============================================================ */
.about { background: linear-gradient(180deg, #F5FAFE 0%, #E9F3FB 100%); }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about .sec-title--left { font-size: clamp(22px, 4.2vw, 31px); }
.about__lead { font-size: 15px; line-height: 2.05; }
.about__lead br { display: none; }

.about__visual { position: relative; padding-top: 34px; }
.about__bubble {
  position: absolute; top: -4px; right: 4%; z-index: 2;
  background: #fff; border-radius: 16px; padding: 10px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--ink-navy);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; line-height: 1.5;
}
.about__bubble svg { color: var(--cyan); flex: none; }
.about__bubble::after {
  content: ""; position: absolute; bottom: -8px; left: 34px;
  border: 8px solid transparent; border-top-color: #fff; border-bottom: 0;
}
.laptop { max-width: 520px; margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(27,84,163,.22)); }
.laptop__screen {
  background: #1d2530; border-radius: 14px 14px 4px 4px; padding: 10px 10px 14px;
  border: 2px solid #39424e;
}
.laptop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.tile { aspect-ratio: 4/3; border-radius: 6px; position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.tile::before {  /* 人物（肩・体） */
  content: ""; position: absolute; left: 50%; bottom: -26%; transform: translateX(-50%);
  width: 64%; aspect-ratio: 1.15; border-radius: 52% 52% 16% 16% / 88% 88% 12% 12%;
  background: var(--tile-person, #35507e);
}
.tile::after {  /* 人物（頭） */
  content: ""; position: absolute; left: 50%; top: 13%; transform: translateX(-50%);
  width: 29%; aspect-ratio: 1; border-radius: 50%;
  background: var(--tile-person, #35507e);
}
.tile i {  /* 名前バー（ビデオ通話UI風） */
  position: absolute; left: 6%; bottom: 7%; z-index: 1;
  width: 38%; height: 11%; min-height: 6px; border-radius: 99px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 1px 3px rgba(20,40,80,.18);
}
.t1 { background: linear-gradient(180deg, #dfe9f2, #c6d6e6); --tile-person: #3c5c8f; }
.t2 { background: linear-gradient(180deg, #f4ead9, #e3d2ba); --tile-person: #5b7ab0; }
.t3 { background: linear-gradient(180deg, #dcecf5, #bfd8ea); --tile-person: #2f4d7d; }
.t4 { background: linear-gradient(180deg, #eee6f2, #d8cbe4); --tile-person: #4a6ba3; }
.t5 { background: linear-gradient(180deg, #e3f0e5, #c8dfcd); --tile-person: #37598c; }
.t6 { background: linear-gradient(180deg, #f5e8e2, #e6d0c5); --tile-person: #56779f; }
.t7 { background: linear-gradient(180deg, #e2ecf7, #c9daed); --tile-person: #40608f; }
.t8 { background: linear-gradient(180deg, #f2eedd, #e0dabf); --tile-person: #2d4a78; }
.t9 { background: linear-gradient(180deg, #e6e9f5, #cdd3ea); --tile-person: #517099; }
.laptop__base {
  height: 16px; margin: 0 -6%;
  background: linear-gradient(180deg, #d9dee5, #aab3bf);
  border-radius: 3px 3px 12px 12px;
}
.laptop__base::after {
  content: ""; display: block; width: 18%; height: 5px; margin: 0 auto;
  background: #97a1ae; border-radius: 0 0 8px 8px;
}

@media (min-width: 860px) {
  .about__grid { grid-template-columns: 1fr 1.05fr; gap: 48px; }
  .about__lead br { display: inline; }
  .about__bubble { font-size: 14px; }
}

/* ============================================================
   5. なぜ、毎日なのか（比較）
   ============================================================ */
.everyday .lead-text { text-align: center; }
.everyday .lead-text br { display: none; }
.compare {
  display: grid; grid-template-columns: 1fr; gap: 14px; align-items: stretch;
  max-width: 980px; margin: 10px auto 0;
}
.compare-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow);
  padding: 26px 22px; text-align: center;
}
.compare-card__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  border-radius: 999px; padding: 7px 20px; margin-bottom: 20px;
}
.compare-card__label--plain { background: var(--ink-navy); color: #fff; }
.compare-card__label--navy { background: var(--navy); color: #fff; }
.compare-card__label img { width: 27px; height: auto; }
.week { display: flex; justify-content: center; gap: 4%; margin-bottom: 20px; }
.week li { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.week li i {
  font-style: normal; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--navy);
}
.week li span { width: 26px; height: 26px; border-radius: 50%; background: #D8DEE7; }
.week li.on span { background: var(--navy); }
.week li.on.yl span { background: var(--navy); } /* 創太先生指示：交互色をやめ青系統一 */
.week--full li.yl i { color: inherit; }
.compare-card__cap {
  border-radius: 14px; padding: 16px 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.compare-card__cap--pale { background: #EFF3F8; color: #5A6B84; }
.compare-card__cap--yellow { background: #FDF3D3; color: var(--ink-navy); }
.compare-card__cap p { font-weight: 700; font-size: 14.5px; text-align: left; line-height: 1.7; }
.face { flex: none; width: 40px; height: 40px; }
.face svg { width: 100%; height: 100%; }
.face--sad { color: #8195AE; }
.face--happy { color: var(--navy); }
.compare__vs { display: flex; align-items: center; justify-content: center; }
.compare__vs span {
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3D8FD9, #1B54A3);
  color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(27,84,163,.3); position: relative;
}
.compare__vs span::before, .compare__vs span::after {
  content: ""; position: absolute; width: 3px; height: 12px; border-radius: 2px; background: #7FB6E8;
}
.compare__vs span::before { top: -18px; left: 8px; transform: rotate(-28deg); }
.compare__vs span::after { top: -18px; right: 8px; transform: rotate(28deg); }

@media (min-width: 860px) {
  .everyday .lead-text br { display: inline; }
  .compare { grid-template-columns: 1fr auto 1fr; gap: 20px; }
  .compare__vs { padding-top: 30px; }
}

/* ============================================================
   6. 毎晩のしくみ（タイムライン）
   ============================================================ */
.rhythm { background: linear-gradient(180deg, #FDF8EC 0%, #FBF3DE 100%); }
.timeline { margin-top: 36px; position: relative; }
.timeline__item { position: relative; display: flex; align-items: stretch; margin-bottom: 18px; }
.timeline__time {
  flex: none; width: 74px; height: 74px; border-radius: 50%;
  background: var(--ink-navy); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center; text-align: center;
  align-self: center; position: relative; z-index: 2; line-height: 1.3;
}
.timeline__time--sm { font-size: 14px; }
.timeline__item:not(:last-child) .timeline__time::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 3px; height: 70px;
  background-image: radial-gradient(circle, #96A9C8 1.5px, transparent 1.9px);
  background-size: 3px 9px;
}
.timeline__link {
  flex: none; width: 26px; height: 3px; align-self: center;
  background-image: radial-gradient(circle, #96A9C8 1.5px, transparent 1.9px);
  background-size: 9px 3px; background-repeat: repeat-x; background-position: center;
}
.timeline__card {
  flex: 1; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 18px 20px; display: flex; align-items: center; gap: 16px;
}
.timeline__body { flex: 1; }
.timeline__body h3 {
  font-family: var(--font-head); font-weight: 900; color: var(--ink-navy);
  font-size: clamp(16px, 2.6vw, 19px); display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.timeline__no {
  flex: none; width: 27px; height: 27px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.timeline__body p { font-size: 13.5px; line-height: 1.8; }
.timeline__icon {
  flex: none; width: 96px; color: var(--navy);
  display: none; align-items: center; justify-content: center; gap: 4px;
  border-left: 2px dotted #C6D4E8; padding-left: 16px; align-self: stretch;
}
.timeline__icon svg { width: 56px; height: 56px; }
.timeline__x4 { font-family: var(--font-head); font-weight: 900; font-size: 18px; color: var(--ink-navy); }

.rhythm__note {
  margin: 34px auto 0; max-width: 560px;
  background: var(--ink-navy); color: #fff; border-radius: 999px;
  padding: 14px 26px; display: flex; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 8px 20px rgba(23,55,110,.3);
}
.rhythm__note-icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.rhythm__note p { font-family: var(--font-head); font-weight: 900; font-size: clamp(16px, 3vw, 20px); letter-spacing: .06em; }

@media (min-width: 700px) {
  .timeline__icon { display: flex; }
}
@media (max-width: 560px) {
  .timeline__item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .timeline__time { width: 62px; height: 62px; font-size: 14.5px; margin-left: 4px; }
  .timeline__time--sm { font-size: 12.5px; }
  .timeline__item:not(:last-child) .timeline__time::after { display: none; }
  .timeline__link { display: none; }
  .timeline__card { width: 100%; }
}

/* ============================================================
   7. 学びの考え方
   ============================================================ */
.learning .lead-text br { display: none; }
.loop {
  display: grid; grid-template-columns: 1fr; gap: 10px; align-items: center;
  max-width: 1020px; margin: 10px auto 40px;
}
.loop-card {
  background: #fff; border-radius: 999px; box-shadow: var(--shadow);
  padding: 14px 22px 14px 14px; display: flex; align-items: center; gap: 16px;
}
.loop-card__icon {
  flex: none; width: 86px; height: 86px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #3D8FD9, #1B54A3);
  display: flex; align-items: center; justify-content: center;
}
.loop-card__icon svg { width: 48px; height: 48px; }
.loop-card__no { font-family: var(--font-head); font-weight: 700; color: #2EA6DC; font-size: 14px; letter-spacing: .1em; display: block; }
.loop-card__txt h3 { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: 17px; line-height: 1.4; }
.loop-card__txt h3 small { font-size: 12px; font-weight: 700; }
.loop-card__txt p { font-size: 12.5px; line-height: 1.65; margin-top: 4px; }
.loop__arrow { display: flex; justify-content: center; color: var(--navy); }
.loop__arrow svg { width: 30px; height: 30px; transform: rotate(90deg); }

@media (min-width: 920px) {
  .learning .lead-text br { display: inline; }
  .loop { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; }
  .loop-card { align-self: stretch; }
  .loop__arrow svg { transform: none; }
}

/* manabo帯 */
.manabo {
  background: linear-gradient(120deg, #17479C, #1B54A3);
  border-radius: 22px; color: #fff; box-shadow: 0 14px 30px rgba(23,55,110,.25);
  padding: 30px 26px; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
  max-width: 1020px; margin: 0 auto;
}
.manabo__name { font-family: var(--font-head); font-weight: 900; font-size: clamp(30px, 5vw, 40px); letter-spacing: .02em; line-height: 1.2; }
.manabo__copy { font-family: var(--font-head); font-weight: 900; font-size: clamp(16px, 2.6vw, 20px); margin-top: 6px; line-height: 1.6; }
.manabo__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 12px; }
.manabo__stats li { text-align: center; position: relative; padding: 0 4px; }
.manabo__icon {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  width: 58px; height: 58px; margin: 0 auto 8px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55); position: relative;
}
.manabo__icon svg { width: 30px; height: 30px; }
.manabo__icon b { display: none; }
.manabo__stats p { font-size: 12.5px; font-weight: 500; line-height: 1.6; }
.manabo__stats p b { color: var(--yellow); font-size: 1.25em; }
.manabo__stats p b.big { font-size: 1.7em; }
.manabo__stats p small { color: var(--yellow); font-weight: 700; }

@media (min-width: 880px) {
  .manabo { grid-template-columns: auto 1fr; padding: 34px 40px; }
  .manabo__head { padding-right: 28px; border-right: 2px dotted rgba(255,255,255,.4); }
  .manabo__stats { grid-template-columns: repeat(4, 1fr); }
  .manabo__stats li:not(:first-child)::before {
    content: ""; position: absolute; left: -6px; top: 12%; bottom: 12%; width: 1px; background: rgba(255,255,255,.35);
  }
}

/* ============================================================
   8. 心も育てる
   ============================================================ */
.heart__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1020px; margin: 34px auto 0; }
.heart-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow);
  padding: 26px 24px; text-align: center; position: relative;
}
.heart-card__no {
  position: absolute; top: 14px; left: 20px;
  font-family: var(--font-head); font-weight: 900; font-size: 26px; color: var(--navy);
  border-bottom: 4px solid var(--yellow); line-height: 1.3;
}
.heart-card__illust { display: block; max-width: 220px; margin: 14px auto 6px; }
.heart-card__name {
  font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: 19px;
  padding-bottom: 10px; margin-bottom: 12px; position: relative;
}
.heart-card__name::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 120px; height: 4px;
  background-image: radial-gradient(circle, #A7C4E6 2px, transparent 2.4px);
  background-size: 11px 4px; background-repeat: repeat-x;
}
.heart-card p { font-size: 13.5px; line-height: 1.9; }
.heart-card p br { display: none; }

@media (min-width: 860px) {
  .heart__grid { grid-template-columns: repeat(3, 1fr); }
  .heart-card p br { display: inline; }
}

/* ============================================================
   9. 保護者の方へ
   ============================================================ */
.parents__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.parents__lead { font-size: 15px; line-height: 2.05; }
.parents__lead br { display: none; }
.parents__phrase {
  margin-top: 26px; background: var(--yellow); border-radius: 18px;
  padding: 20px 22px 20px 66px; position: relative;
  font-family: var(--font-head); font-weight: 900; color: var(--ink-navy);
  font-size: clamp(16px, 3vw, 20px); line-height: 1.7;
  box-shadow: 0 10px 22px rgba(217,167,18,.25);
}
.parents__phrase-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
}

.parents__visual { display: flex; justify-content: center; align-items: center; gap: 20px; }
.phone {
  width: min(78%, 290px); background: #20242c; border-radius: 34px; padding: 10px;
  box-shadow: 0 22px 40px rgba(20,40,90,.28); position: relative; flex: none;
}
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 17px; background: #20242c; border-radius: 0 0 12px 12px; z-index: 2;
}
.phone__head {
  background: #fff; border-radius: 24px 24px 0 0; padding: 26px 16px 10px;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); color: var(--ink-navy); font-size: 13.5px;
  border-bottom: 1px solid #e6e9ef;
}
.phone__back { color: #8a94a5; font-size: 18px; line-height: 1; }
.phone__body { background: #E9EDF4; padding: 14px 12px; display: grid; gap: 12px; }
.phone__msg { background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 2px 6px rgba(20,40,90,.07); }
.phone__msg-title {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--ink-navy); font-size: 11.5px; margin-bottom: 5px;
}
.phone__msg-text { font-size: 10.5px; color: #5a6a82; line-height: 1.6; margin-bottom: 8px; }
.phone__msg-btn {
  display: block; text-align: center; border: 1.5px solid var(--navy); color: var(--navy);
  font-size: 10.5px; font-weight: 700; border-radius: 8px; padding: 5px;
}
.phone__foot {
  background: #fff; border-radius: 0 0 24px 24px; padding: 8px 14px 12px;
  display: flex; align-items: center; gap: 8px; color: #98a2b3; font-size: 13px;
}
.phone__input { flex: 1; height: 22px; background: #eef1f5; border-radius: 999px; }

.parents__callouts { display: grid; gap: 18px; }
.parents__callout { text-align: center; max-width: 150px; }
.parents__callout-icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 8px; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow);
}
.parents__callout-icon svg { width: 36px; height: 36px; }
.parents__callout p {
  font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: 12.5px; line-height: 1.6;
  background: #FDF3D3; border-radius: 12px; padding: 8px 10px;
}

@media (min-width: 900px) {
  .parents__grid { grid-template-columns: 1.05fr 1fr; }
  .parents__lead br { display: inline; }
}
@media (max-width: 420px) {
  .parents__visual { flex-direction: column; }
  .parents__callouts { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   10. 創太先生＋教え子の物語
   ============================================================ */
.teacher { background: linear-gradient(180deg, #F4F9FE 0%, #E9F2FB 100%); }
.profile {
  display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center;
  max-width: 980px; margin: 16px auto 56px;
}
.profile__photo {
  width: min(64%, 270px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  margin: 0 auto; box-shadow: 0 16px 32px rgba(27,84,163,.2); background: #dfe9f2;
}
.profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.profile__name {
  font-family: var(--font-head); font-weight: 900; color: var(--ink-navy);
  font-size: clamp(21px, 4vw, 27px); margin-bottom: 14px;
  padding-left: 14px; border-left: 6px solid var(--navy); line-height: 1.4;
}
.profile__body p { font-size: 14px; line-height: 1.95; margin-bottom: 10px; }
.quote {
  margin-top: 16px; background: #FDF4DC; border-radius: 16px; padding: 22px 44px;
  position: relative; font-weight: 700; color: var(--ink-navy);
}
.quote p { font-size: 14px; line-height: 2; margin: 0; }
.quote__mark {
  position: absolute; font-family: Georgia, serif; font-size: 56px; line-height: 1; color: var(--navy);
}
.quote__mark--open { top: 6px; left: 12px; }
.quote__mark--close { bottom: -10px; right: 14px; }

.stories__title {
  text-align: center; font-family: var(--font-head); font-weight: 900; color: var(--ink-navy);
  font-size: clamp(19px, 3.4vw, 24px); margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.stories__title::before, .stories__title::after {
  content: ""; width: 56px; height: 2px; background: var(--ink-navy); opacity: .7;
}
.stories { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1020px; margin: 0 auto; }
.story-card {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 24px 22px 26px 64px; position: relative;
}
.story-card__no {
  position: absolute; top: 18px; left: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #2EA6DC; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.story-card__illust { display: block; max-width: 190px; margin: 6px 0 10px; }
.story-card__text { font-weight: 700; color: var(--ink-navy); font-size: 14px; line-height: 1.85; margin-bottom: 10px; }
.story-card__text:last-child { margin-bottom: 0; }
.story-card__text b { border-bottom: 3px solid rgba(0,176,214,.45); }
.story-card__text br { display: none; }

@media (min-width: 860px) {
  .profile { grid-template-columns: auto 1fr; gap: 44px; }
  .profile__photo { width: 270px; }
  .stories { grid-template-columns: repeat(3, 1fr); }
  .story-card__text br { display: inline; }
}

/* ============================================================
   11. 料金プラン
   ============================================================ */
.plans {
  display: grid; grid-template-columns: 1fr; gap: 34px 24px;
  max-width: 940px; margin: 40px auto 26px; align-items: stretch;
}
.plan {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow);
  padding: 30px 26px 28px; text-align: center; position: relative;
  display: flex; flex-direction: column;
}
.plan--main { border: 2px solid rgba(252,206,90,.7); }
.plan__ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink-navy);
  font-family: var(--font-head); font-weight: 900; font-size: 14px; letter-spacing: .06em;
  padding: 7px 26px; white-space: nowrap;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
}
.plan__name { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(20px, 3.6vw, 25px); margin: 8px 0 10px; }
.plan__price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 18px; color: var(--ink-navy); }
.plan__prefix { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.plan__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(38px, 7vw, 48px); letter-spacing: .01em; }
.plan__tax { font-size: 13px; font-weight: 700; }
.plan__base {
  background: #EAF3FB; border-radius: 999px; font-family: var(--font-head); font-weight: 700;
  color: var(--ink-navy); font-size: 14px; padding: 8px 16px; margin-bottom: 14px;
}
.plan__list { text-align: left; margin-bottom: 22px; flex: 1; }
.plan__list li {
  position: relative; padding: 9px 2px 9px 30px; font-size: 13.5px; font-weight: 500;
  border-bottom: 2px dotted #D9E4F0; color: var(--ink);
}
.plan__list li:last-child { border-bottom: none; }
.plan__list li::before {
  content: ""; position: absolute; left: 2px; top: 12px; width: 18px; height: 18px; border-radius: 50%;
  background: #2EA6DC url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12.5l4.5 4.5L19 7.5"/></svg>') center/11px no-repeat;
}

.price-notes {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  max-width: 1020px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 8px; padding: 20px 16px;
}
.price-notes li {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: 13px;
  text-align: left; line-height: 1.5; position: relative; padding: 2px 6px;
}
.price-notes li small { font-weight: 500; font-size: 10.5px; color: #5a6a82; }
.price-notes__icon { flex: none; width: 40px; height: 40px; color: var(--navy); }
.price-notes__icon svg { width: 100%; height: 100%; }

@media (min-width: 820px) {
  .plans { grid-template-columns: 1fr 1fr; }
  .price-notes { grid-template-columns: repeat(4, 1fr); padding: 22px 18px; }
  .price-notes li:not(:first-child)::before {
    content: ""; position: absolute; left: -4px; top: 10%; bottom: 10%; width: 2px;
    background-image: radial-gradient(circle, #C6D4E8 1.4px, transparent 1.8px);
    background-size: 2px 8px;
  }
}

/* ============================================================
   12. FAQ
   ============================================================ */
.faq-sec { background: linear-gradient(180deg, #FDF8EC 0%, #FAF2DC 100%); }
.faq { margin-top: 10px; display: grid; gap: 14px; }
.faq__item { background: #fff; border-radius: 16px; box-shadow: 0 4px 14px rgba(27,84,163,.08); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 14px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 16px 18px;
  font-family: var(--font-body);
}
.faq__q-mark {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.faq__q-txt { flex: 1; font-weight: 700; color: var(--ink-navy); font-size: 14.5px; line-height: 1.6; }
.faq__toggle { flex: none; position: relative; width: 20px; height: 20px; }
.faq__toggle::before, .faq__toggle::after {
  content: ""; position: absolute; background: var(--navy); border-radius: 2px;
  transition: transform .25s ease;
}
.faq__toggle::before { left: 0; right: 0; top: 8.5px; height: 3px; }
.faq__toggle::after { top: 0; bottom: 0; left: 8.5px; width: 3px; }
.faq__item.is-open .faq__toggle::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; display: flex; gap: 14px; padding: 0 18px; }
.faq__item.is-open .faq__a-inner { padding: 2px 18px 18px; }
.faq__a-mark {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--yellow); color: var(--ink-navy); font-family: var(--font-head); font-weight: 900; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.faq__a p { font-size: 14px; font-weight: 500; color: var(--ink); padding-top: 5px; }

/* ============================================================
   13. 無料相談までの流れ
   ============================================================ */
.flow {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #1E5FBE 0%, #1B54A3 50%, #174A9B 100%);
  color: #fff; padding: 72px 0 80px;
}
.flow .sec-label { margin-bottom: 40px; font-size: 17px; }
.steps {
  display: grid; grid-template-columns: 1fr; gap: 12px; align-items: stretch;
  max-width: 980px; margin: 0 auto 34px;
}
.step {
  background: #fff; border-radius: 20px; color: var(--ink);
  padding: 26px 22px 24px; text-align: center; box-shadow: 0 12px 26px rgba(10,35,90,.25);
}
.step__badge {
  display: inline-block; background: var(--ink-navy); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .1em;
  border-radius: 8px; padding: 5px 20px; margin-bottom: 16px;
}
.step__icon { display: block; width: 84px; margin: 0 auto 12px; }
.step__icon svg { width: 100%; height: auto; }
.step__name { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 13.5px; line-height: 1.75; }
.step__arrow { display: flex; align-items: center; justify-content: center; }
.step__arrow svg {
  width: 40px; height: 40px; padding: 8px; border-radius: 50%;
  background: #2EA6DC; box-shadow: 0 4px 12px rgba(10,35,90,.3); transform: rotate(90deg);
}
.flow__note { text-align: center; font-weight: 700; font-size: clamp(14px, 2.8vw, 17px); letter-spacing: .04em; margin-bottom: 26px; }
.flow__cta { text-align: center; }

@media (min-width: 860px) {
  .steps { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; }
  .step__arrow svg { transform: none; }
}

/* ============================================================
   14. フッター
   ============================================================ */
.footer { background: #131C4E; color: #fff; padding: 64px 0 34px; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  padding-bottom: 44px;
}
.footer__logo { display: flex; align-items: center; gap: 14px; justify-content: center; }
.footer__logo img { width: 82px; height: auto; flex: none; }
.footer__logo-txt { display: flex; flex-direction: column; line-height: 1.35; }
.footer__logo-name { font-family: var(--font-head); font-weight: 900; font-size: clamp(26px, 5vw, 34px); letter-spacing: .04em; }
.footer__logo-name b { color: #fff; }
.footer__logo-name i { color: var(--cyan); font-style: normal; }
.footer__logo-sub { font-size: 12px; font-weight: 700; letter-spacing: .4em; color: #E6ECF8; }
.footer__divider { display: flex; align-items: center; justify-content: center; margin: 16px 0 14px; }
.footer__divider::before, .footer__divider::after {
  content: ""; height: 2px; flex: 1; max-width: 190px; background: rgba(255,255,255,.5);
}
.footer__divider i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); margin: 0 10px; }
.footer__tagline { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(13px, 2.6vw, 15px); letter-spacing: .12em; }

.footer__side { text-align: center; }
.footer__sns { display: flex; justify-content: center; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.sns {
  width: 44px; height: 44px; border-radius: 12px; background: #fff; color: #131C4E;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.sns:hover { transform: translateY(-3px); }
.sns--line { background: var(--line-green); color: #fff; border-radius: 50%; }
.sns--yt { color: #E62117; }
.sns--note { color: #2c2c2c; }
.sns--ig { color: #C13584; }
.sns--tt { color: #111; }
.sns--x { color: #111; }
.footer__links { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__links a { font-size: 13.5px; font-weight: 500; color: #E6ECF8; }
.footer__links a:hover { color: var(--yellow); }
.footer__links-sep { width: 1px; height: 16px; background: rgba(255,255,255,.5); }
.footer__copyright {
  text-align: center; font-size: 12.5px; color: #B9C3DE; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
}

@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1fr auto; gap: 30px; }
  .footer__logo { justify-content: flex-start; }
  .footer__side { border-left: 1px solid rgba(255,255,255,.25); padding-left: 56px; }
}

/* ============================================================
   追従LINEボタン（FAB）
   ============================================================ */
.fab-line {
  position: fixed; right: 16px; bottom: 18px; z-index: 90;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--line-green); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(6,199,85,.45);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.fab-line.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-line__txt { font-size: 10px; font-weight: 700; letter-spacing: .04em; margin-top: -2px; }

/* ============================================================
   フェードイン
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .sns, .fab-line, .faq__a, .faq__toggle::before, .faq__toggle::after { transition: none; }
}

/* ============================================================
   v3（2026-07-27）創太先生フィードバック反映分
   ============================================================ */

/* ---------- ヒーロー v3 ---------- */
.hero__big { display: inline-block; font-size: 1.16em; letter-spacing: .005em; white-space: nowrap; position: relative; }
.hero__big::after {
  content: ""; position: absolute; left: 1%; bottom: -3px; width: 34%; height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cpath d='M4 12c14-8 24 6 38-3s24 5 38-4 22 4 36-2' fill='none' stroke='%2366D6EE' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
@media (min-width: 820px) { .hero__title { font-size: clamp(30px, 3.4vw, 46px); } }
.ul-yellow { background: linear-gradient(transparent 78%, rgba(252,206,90,.9) 78%); padding: 0 .04em .06em; }
.hero__sub .c-strong { color: var(--yellow); font-weight: 700; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__badge {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  padding: 12px 16px; border-radius: 999px; background: #fff; color: var(--ink-navy);
  border: 2.5px solid var(--cyan); font-family: var(--font-head); font-weight: 700;
  font-size: 14px; line-height: 1.25; box-shadow: 0 4px 12px rgba(6,40,90,.25);
}
.hero__badge b { color: var(--blue); font-size: 1.15em; }
.hero__teacher {
  position: absolute; top: 2%; left: 2%; z-index: 2; text-align: center;
}
.hero__teacher img {
  width: clamp(88px, 12vw, 128px); height: auto; border-radius: 50%;
  border: 4px solid #fff; box-shadow: 0 10px 24px rgba(6,30,70,.35); display: block; margin: 0 auto;
}
.hero__teacher-note {
  display: inline-block; margin-top: 8px; padding: 7px 12px; border-radius: 12px;
  background: #fff; color: var(--ink-navy); font-family: var(--font-head); font-weight: 700;
  font-size: 12.5px; line-height: 1.35; box-shadow: 0 4px 10px rgba(6,30,70,.25); position: relative;
}
.hero__teacher-note::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-bottom-color: #fff; border-top: 0;
}
.hero__link-line { position: absolute; top: 4%; left: 8%; width: 52%; max-width: 300px; z-index: 1; opacity: .9; }

/* ---------- 悩み×解決 ---------- */
.pair__grid { display: grid; gap: 18px; margin-top: 34px; }
.pair {
  background: #fff; border: 1px solid #edf2f8; border-radius: 18px;
  padding: 22px 20px; box-shadow: 0 10px 24px rgba(27,84,163,.08);
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
}
.pair__worry { background: #F2F5FA; border-radius: 12px; padding: 14px 16px; position: relative; }
.pair__worry p { color: #45536b; font-weight: 500; line-height: 1.7; margin-top: 6px; }
.pair__who {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px; padding: 3px 12px; color: #fff;
}
.pair__who--st { background: var(--cyan); }
.pair__who--pa { background: #E8A13B; }
.pair__arrow { align-self: center; color: var(--yellow); line-height: 0; }
.pair__solve h3 {
  font-family: var(--font-head); font-weight: 700; color: var(--ink-navy);
  font-size: clamp(16px, 2.4vw, 18.5px); margin-bottom: 6px;
  background: linear-gradient(transparent 76%, rgba(252,206,90,.55) 76%);
  display: inline; line-height: 1.7; padding-bottom: .1em;
}
.pair__solve p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.9; margin-top: 8px; }
@media (min-width: 820px) {
  .pair__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ---------- 中間CTA ---------- */
.midcta { background: linear-gradient(180deg, #EAF3FB, #DFECf8); padding: 34px 0; }
.midcta__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.midcta__txt { font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: clamp(15px, 2.6vw, 18px); }
.midcta .btn--line { width: min(100%, 420px); }

/* ---------- 比較表 ---------- */
.vs-table { background: #fff; }
.vst { max-width: 880px; margin: 36px auto 0; border-radius: 14px; overflow: hidden; border: 1px solid #E3EBF5; box-shadow: 0 12px 28px rgba(27,84,163,.08); }
.vst__row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr .9fr; align-items: center; }
.vst__row--head { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; }
.vst__row--head span { padding: 14px 8px; text-align: center; }
.vst__row--head span:first-child { text-align: left; padding-left: 20px; }
.vst__row:not(.vst__row--head) { border-top: 1px solid #EDF2F8; font-size: 15px; }
.vst__row:not(.vst__row--head) span { padding: 15px 8px; text-align: center; }
.vst__name { text-align: left !important; padding-left: 20px !important; font-weight: 700; color: var(--ink-navy); }
.vst__row--sl { background: #FFF7DF; }
.vst__row--sl .vst__name { color: var(--ink-navy); }
.m-good { color: var(--cyan); font-weight: 900; font-size: 1.2em; }
.m-ok { color: #2E9E63; font-weight: 900; font-size: 1.1em; }
.m-soso { color: #E5A93D; font-weight: 900; }
.m-bad { color: #E0524A; font-weight: 900; font-size: 1.1em; }
.vsc { display: none; }
.vs-note { max-width: 720px; margin: 26px auto 0; background: #F4F8FD; border-left: 4px solid var(--yellow); border-radius: 10px; padding: 18px 20px; }
.vs-note p { color: var(--ink-soft); font-size: 14.5px; line-height: 2; }
.vs-note b { color: var(--ink-navy); }
@media (max-width: 640px) {
  .vst { display: none; }
  .vsc { display: grid; gap: 12px; margin-top: 30px; }
  .vsc__card { background: #fff; border: 1px solid #E3EBF5; border-radius: 14px; padding: 16px 18px; box-shadow: 0 8px 20px rgba(27,84,163,.07); }
  .vsc__card h3 { font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: 16px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
  .vsc__card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
  .vsc__card li { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--ink-soft); border-bottom: 1px dashed #E3EBF5; padding-bottom: 6px; }
  .vsc__card--sl { background: #FFF7DF; border-color: #F3D98A; }
}

/* ---------- manaboセクション ---------- */
.mnb-steps { display: flex; flex-direction: column; align-items: stretch; gap: 10px; max-width: 820px; margin: 36px auto 30px; }
.mnb-step { background: #fff; border: 1px solid #E3EBF5; border-radius: 16px; padding: 22px 20px; text-align: center; box-shadow: 0 10px 24px rgba(27,84,163,.07); flex: 1; }
.mnb-step__no { display: inline-block; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .1em; border-radius: 999px; padding: 4px 14px; }
.mnb-step__icon { display: block; width: 64px; margin: 14px auto 10px; }
.mnb-step h3 { font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: 17px; margin-bottom: 6px; }
.mnb-step p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.8; }
.mnb-arrow { align-self: center; color: var(--yellow); line-height: 0; transform: rotate(90deg); }
.mnb-note { text-align: center; color: #8895a8; font-size: 12.5px; margin-top: 18px; line-height: 1.8; }
@media (min-width: 760px) {
  .mnb-steps { flex-direction: row; align-items: stretch; gap: 0; }
  .mnb-step { margin: 0 6px; }
  .mnb-arrow { transform: none; flex: none; }
}

/* ---------- 体験者の声 ---------- */
.voices__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 760px; margin: 34px auto; }
.voices__stats li { background: #fff; border: 1px solid #E3EBF5; border-radius: 14px; padding: 18px 10px; text-align: center; box-shadow: 0 8px 20px rgba(27,84,163,.06); }
.voices__stats b.big { font-family: var(--font-head); font-weight: 900; color: var(--blue); font-size: clamp(22px, 4vw, 30px); display: block; }
.voices__stats b.big small { font-size: .55em; }
.voices__stats p { color: var(--ink-soft); font-size: 12px; line-height: 1.7; margin-top: 6px; }
.voices__grid { display: grid; gap: 16px; }
.voice { background: #fff; border: 1px solid #EDF2F8; border-radius: 16px; padding: 20px; box-shadow: 0 10px 24px rgba(27,84,163,.07); }
.voice figcaption { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-family: var(--font-head); color: var(--ink-navy); font-size: 14px; }
.voice__chip { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; border-radius: 999px; padding: 3px 11px; color: #fff; }
.voice__chip--st { background: var(--cyan); }
.voice__chip--pa { background: #E8A13B; }
.voice blockquote { color: var(--ink-soft); font-size: 14.5px; line-height: 2; }
.marker-thin { background: linear-gradient(transparent 74%, rgba(252,206,90,.6) 74%); font-weight: 700; color: var(--ink-navy); }
.voices__note { text-align: center; color: #8895a8; font-size: 12px; margin-top: 20px; }
@media (min-width: 820px) { .voices__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

/* ---------- 無料相談の中身 ---------- */
.consult { max-width: 860px; margin: 40px auto 8px; }
.consult__title { text-align: center; color: #fff; font-family: var(--font-head); font-weight: 900; font-size: clamp(19px, 3.6vw, 26px); letter-spacing: .04em; margin-bottom: 24px; }
.consult__grid { display: grid; gap: 14px; }
.consult__card { position: relative; background: #fff; border-radius: 16px; padding: 24px 22px 22px; box-shadow: 0 14px 30px rgba(4,20,50,.25); }
.consult__no { position: absolute; top: -12px; left: 18px; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); color: var(--ink-navy); font-family: var(--font-head); font-weight: 900; font-size: 17px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,.18); }
.consult__icon { display: block; width: 46px; margin-bottom: 10px; }
.consult__card h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: clamp(16px, 2.4vw, 18px); margin-bottom: 8px; }
.consult__card p { color: var(--ink-soft); font-size: 14px; line-height: 1.95; }
.consult__card p b { color: var(--ink-navy); background: linear-gradient(transparent 76%, rgba(252,206,90,.55) 76%); }
@media (min-width: 760px) { .consult__grid { grid-template-columns: 1fr 1fr; gap: 18px; } }

/* ---------- oVice画面 ---------- */
.ovice { margin: 0; }
.ovice img { width: 100%; height: auto; border-radius: 14px; border: 1px solid #E3EBF5; box-shadow: 0 16px 34px rgba(27,84,163,.16); }
.ovice figcaption { text-align: center; color: #8895a8; font-size: 12.5px; margin-top: 10px; }

/* ---------- スマホ微調整 ---------- */
@media (max-width: 480px) {
  .hero__teacher { top: 0; left: 0; }
  .hero__teacher img { width: 84px; }
  .hero__teacher-note { font-size: 11.5px; padding: 6px 10px; }
  .hero__badge { font-size: 13px; padding: 10px 14px; }
  .voices__stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .voices__stats p { font-size: 10.5px; }
}

/* ---------- v4 追加（manabo公式素材・アプリグラフ） ---------- */
.mnb-official { max-width: 540px; margin: 34px auto 28px; }
.mnb-official img { width: 100%; height: auto; border-radius: 16px; background: #fff; border: 1px solid #E3EBF5; box-shadow: 0 12px 28px rgba(27,84,163,.1); }
.mnb-tutors { max-width: 660px; margin: 26px auto 0; background: #fff; border: 1px solid #E3EBF5; border-radius: 14px; padding: 18px 18px 12px; box-shadow: 0 8px 20px rgba(27,84,163,.07); }
.mnb-tutors img { width: 100%; height: auto; }
.mnb-tutors figcaption { text-align: center; color: #5a6b84; font-size: 12.5px; margin-top: 8px; line-height: 1.7; }
.rhythm__graph { max-width: 640px; margin: 30px auto 0; background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 12px 28px rgba(27,84,163,.12); border: 1px solid #eef3f9; }
.rhythm__graph img { width: 100%; height: auto; border-radius: 10px; }
.rhythm__graph figcaption { text-align: center; color: #6b7a92; font-size: 12.5px; margin-top: 10px; line-height: 1.7; }
.nowrap { white-space: nowrap; }
@media (min-width: 820px) { .hero__sub { font-size: 17.5px; } }

/* ---------- v5 悩み×解決（image2デザイン案準拠） ---------- */
.pair { gap: 8px; }
.pair__worry { background: transparent; padding: 4px 0 0; }
.pair__wbody { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.pair__bubble {
  position: relative; flex: 1; background: #F0F3F8; border-radius: 14px; padding: 14px 14px 14px 12px;
  display: flex; align-items: center; gap: 9px;
}
.pair__bubble::after {
  content: ""; position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  border: 8px solid transparent; border-left-color: #F0F3F8; border-right: 0;
}
.pair__bubble p { color: #45536b; font-weight: 500; line-height: 1.75; font-size: 13.8px; }
.pair__moya { flex: none; line-height: 0; }
.pair__ill { width: 38%; max-width: 190px; height: auto; border-radius: 10px; flex: none; }
.pair__arrow { align-self: center; line-height: 0; filter: drop-shadow(0 3px 5px rgba(220,160,20,.3)); }
.pair__solve { display: flex; align-items: flex-start; gap: 14px; padding-top: 2px; }
.pair__badge {
  flex: none; width: 62px; height: 62px; border-radius: 50%; background: var(--ink-navy);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 6px 14px rgba(23,55,110,.28);
}
.pair__badge i { position: absolute; top: 6px; left: 9px; font-style: normal; font-size: 10px; color: var(--yellow); }
.pair__stext h3 {
  font-family: var(--font-head); font-weight: 700; color: var(--ink-navy);
  font-size: clamp(16px, 2.4vw, 18.5px); line-height: 1.6; display: inline;
  background: linear-gradient(transparent 74%, #BFE2F5 74%); padding-bottom: .08em;
}
.pair__stext p { color: var(--ink-soft); font-size: 14px; line-height: 1.9; margin-top: 8px; }
@media (max-width: 480px) {
  .pair__ill { width: 42%; }
  .pair__bubble p { font-size: 13px; }
  .pair__bubble br { display: none; }
}

/* ============================================================
   v6（デザインv2準拠）03 選ばれる理由・05 なぜ毎日
   ============================================================ */
.reasons__title-sm { font-size: .62em; letter-spacing: .1em; font-weight: 700; }
.reasons__title { position: relative; line-height: 1.3; }
.reasons__swash { display: block; width: min(64%, 300px); height: 12px; margin: 10px auto 0; }
.reasons__grid { gap: 34px 18px; }
.reason__circle {
  position: relative; width: min(37vw, 168px); aspect-ratio: 1; margin: 0 auto 16px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(4,20,60,.3);
}
.reason__circle svg { width: 56%; height: 56%; }
.reason__num {
  position: absolute; top: -4px; left: -4px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--ink-navy);
  font-family: var(--font-head); font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.22);
}
/* 旧アイコン枠は使わない */
.reason__icon { display: none !important; }

.vs2 { max-width: 560px; margin: 34px auto 0; display: flex; flex-direction: column; gap: 0; }
.vs2__card { background: #fff; border-radius: 20px; padding: 26px 20px 22px; box-shadow: 0 12px 30px rgba(27,84,163,.12); }
.vs2__label {
  width: fit-content; margin: -40px auto 16px; padding: 9px 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px;
  display: flex; align-items: center; gap: 8px;
  background: var(--ink-navy); box-shadow: 0 5px 12px rgba(10,30,80,.25); position: relative;
}
.vs2__label--cyan { background: linear-gradient(90deg, #0aa3cc, #00B0D6); }
.vs2__line { border: none; border-top: 1.5px solid #cfd8e6; margin: 16px 4px; }
.vs2__line--blue { border-top-color: #9fd4ea; }
.vs2__row { display: flex; align-items: center; gap: 14px; }
.vs2__boy { width: 30%; max-width: 120px; height: auto; flex: none; }
.vs2__txt { font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: clamp(15px, 3.8vw, 19px); line-height: 1.8; }
.hl-cyan { background: linear-gradient(transparent 62%, #BFE6F5 62%); font-size: 1.15em; }
.vs2__bubble {
  position: relative; flex: 1; background: var(--yellow); border-radius: 14px; padding: 16px 14px;
  font-family: var(--font-head); font-weight: 900; color: var(--ink-navy);
  font-size: clamp(16px, 4.4vw, 21px); line-height: 1.65; text-align: center;
}
.vs2__bubble::before {
  content: ""; position: absolute; left: -9px; top: 50%; transform: translateY(-50%);
  border: 9px solid transparent; border-right-color: var(--yellow); border-left: 0;
}
.vs2__vs {
  align-self: center; width: 66px; height: 66px; border-radius: 50%; z-index: 1; margin: 14px 0;
  background: radial-gradient(circle at 32% 28%, #2E7BD6, #0E4DA8 70%);
  color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 21px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(10,40,110,.35);
}
.vs2__vs span { letter-spacing: .04em; font-style: italic; }
.vs2__closing { text-align: center; margin-top: 26px; font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: clamp(13.5px, 3.4vw, 16px); line-height: 2; }
.vs2__closing b, .vs2__closing { letter-spacing: .03em; }
@media (min-width: 860px) {
  .vs2 { max-width: 900px; flex-direction: row; align-items: stretch; gap: 0; }
  .vs2__card { flex: 1; }
  .vs2__vs { margin: auto 14px; flex: none; }
}

/* ---------- v6b：06しくみ・07考え方・08比較・09manabo ---------- */
.timeline__icon--ill { width: 34% !important; max-width: 170px; background: none !important; border: none !important; }
.timeline__icon--ill img { width: 100%; height: auto; display: block; }
.timeline__no {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 26px; padding: 0 6px; margin-right: 8px; border-radius: 7px;
  background: var(--yellow); color: var(--ink-navy);
  font-family: var(--font-head); font-weight: 900; font-size: 14px;
}
.stack-card { max-width: 640px; margin: 34px auto 0; border-radius: 18px; overflow: hidden; box-shadow: 0 14px 32px rgba(27,84,163,.16); }
.stack-card__head {
  background: var(--ink-navy); color: #fff; padding: 15px 18px;
  font-family: var(--font-head); font-weight: 900; font-size: clamp(17px, 4vw, 21px); letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.stack-card__body { background: #fff; padding: 16px 16px 18px; }
.stack-card__body img { width: 100%; height: auto; border-radius: 10px; }
.stack-card__cap { text-align: center; color: #8895a8; font-size: 12px; margin-top: 8px; }
.stack-card__closing { text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: clamp(14px, 3.4vw, 16.5px); margin-top: 12px; }
.stack-card__closing b { background: linear-gradient(transparent 72%, rgba(252,206,90,.7) 72%); }

.loop2 { display: flex; flex-direction: column; align-items: stretch; max-width: 640px; margin: 34px auto 0; }
.loop2-card {
  background: #fff; border-radius: 18px; padding: 20px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: 0 10px 26px rgba(27,84,163,.1);
}
.loop2-card__circle {
  flex: none; width: min(27vw, 116px); aspect-ratio: 1; border-radius: 50%;
  background: var(--ink-navy); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(23,55,110,.25);
}
.loop2-card__circle svg { width: 58%; height: 58%; }
.loop2-card__txt { flex: 1; }
.loop2-card__txt h3 { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(18px, 4.6vw, 23px); display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.loop2-card__txt h3 small { font-size: .62em; font-weight: 700; }
.loop2-card__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; margin-right: 8px;
  background: var(--yellow); color: var(--ink-navy); font-size: 16px; font-weight: 900; flex: none;
}
.loop2-card__line { display: block; height: 2.5px; background: linear-gradient(90deg, var(--blue), #8FD9F2); border-radius: 2px; margin: 10px 0; position: relative; }
.loop2-card__line::before, .loop2-card__line::after { content: ""; position: absolute; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.loop2-card__line::before { left: 0; } .loop2-card__line::after { right: 0; background: #8FD9F2; }
.loop2-card__txt p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.85; }
.loop2__arrow { align-self: center; line-height: 0; margin: 10px 0; filter: drop-shadow(0 3px 5px rgba(20,60,140,.25)); }
.loop2__closing { text-align: center; margin-top: 30px; font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(18px, 4.6vw, 24px); line-height: 2; }

.cmp { background: #fff; border-radius: 16px; overflow: hidden; display: flex; box-shadow: 0 8px 22px rgba(27,84,163,.09); border: 1px solid #EDF2F8; }
.cmp + .cmp { margin-top: 14px; }
.vs-table .cmp:first-of-type { margin-top: 34px; }
.cmp__svc {
  flex: none; width: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 6px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; text-align: center; line-height: 1.3;
}
.cmp--navy .cmp__svc { background: var(--navy); }
.cmp--cyan .cmp__svc { background: #1D9AC2; }
.cmp--blue .cmp__svc { background: #2E6FBE; }
.cmp--sl { background: #FFF4CE; border-color: #F3DE96; }
.cmp--sl .cmp__svc { background: var(--yellow); color: var(--ink-navy); }
.cmp__icon { display: block; width: 40px; height: 40px; }
.cmp__icon svg { width: 100%; height: 100%; }
.cmp__marks { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.cmp__marks li { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 4px; padding: 12px 3px; text-align: center; }
.cmp__marks li + li { border-left: 1.5px dashed #DFE7F1; }
.cmp--sl .cmp__marks li + li { border-left-color: #EFDCA0; }
.cmp__marks i { font-style: normal; font-size: 10px; font-weight: 700; color: var(--ink-navy); letter-spacing: .02em; }
.cmp__marks b { font-size: 21px; line-height: 1.1; }
.cmp__marks b.m-soso { font-size: 18px; }
.cmp__marks small { font-size: 9.5px; color: var(--ink-soft); line-height: 1.45; }
@media (min-width: 760px) {
  .cmp { max-width: 780px; margin-left: auto !important; margin-right: auto !important; }
  .cmp + .cmp { margin-top: 16px; }
  .cmp__svc { width: 130px; font-size: 15px; }
  .cmp__marks i { font-size: 11.5px; }
  .cmp__marks b { font-size: 25px; }
  .cmp__marks small { font-size: 11.5px; }
}
.vs-note { display: flex; gap: 14px; align-items: flex-start; }
.vs-note__bulb { flex: none; width: 44px; }
.mnb-pill {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: fit-content; margin: 14px auto 2px; padding: 9px 20px;
  border: 2px solid var(--cyan); border-radius: 999px; color: var(--blue);
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; background: #fff;
}
/* v6c 微修正 */
.timeline__icon--ill { display: flex !important; border-left: none !important; padding-left: 0 !important; }
@media (max-width: 640px) {
  .reasons__grid .reason p br { display: none; }
  .reasons__grid .reason p { text-align: center; }
  .cmp__marks i { font-size: 9px; white-space: nowrap; letter-spacing: 0; }
  .cmp__svc { width: 84px; font-size: 12.5px; }
}

/* ============================================================
   v7：ラベル統一・04強み・10マインド・12プロフ・13声・14流れ・15フッター
   ============================================================ */
/* 小見出しラベル＝吹き出しピル型に統一 */
.sec-label__line, .sec-label__dot { display: none !important; }
.sec-label { margin-bottom: 18px; }
.sec-label__txt {
  position: relative; display: inline-block; padding: 8px 24px; border-radius: 999px;
  border: 2px solid var(--blue); color: var(--blue); background: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; letter-spacing: .12em;
}
.sec-label__txt::after {
  content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.sec-label--light .sec-label__txt { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.sec-label--light .sec-label__txt::after { background: transparent; border-color: rgba(255,255,255,.85); }

/* 04 強み3つ */
.about__perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 760px; margin: 30px auto 0; padding-top: 26px; border-top: 1.5px dashed #D9E4F1; }
.about__perks li { text-align: center; padding: 0 4px; }
.about__perks span { display: block; width: 52px; margin: 0 auto 8px; }
.about__perks h3 { font-family: var(--font-head); font-weight: 700; color: var(--ink-navy); font-size: clamp(12.5px, 3.2vw, 16px); margin-bottom: 6px; }
.about__perks p { color: var(--ink-soft); font-size: clamp(10.5px, 2.7vw, 13px); line-height: 1.75; }

/* 10 マインドカード */
.mind__list { display: grid; gap: 16px; max-width: 720px; margin: 30px auto 0; }
.mind-card { background: #fff; border-radius: 18px; padding: 22px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 10px 26px rgba(27,84,163,.09); }
.mind-card__txt { flex: 1; }
.mind-card__txt h3 { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(18px, 4.6vw, 22px); display: flex; align-items: center; flex-wrap: wrap; line-height: 1.4; }
.mind-card__no { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; margin-right: 10px; background: var(--yellow); color: var(--ink-navy); font-size: 16px; font-weight: 900; flex: none; }
.mind-card__line { display: block; height: 2.5px; background: linear-gradient(90deg, var(--blue), #8FD9F2); border-radius: 2px; margin: 10px 0; position: relative; }
.mind-card__line::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: #8FD9F2; }
.mind-card__txt p { color: var(--ink-soft); font-size: 13.8px; line-height: 1.9; }
.mind-card__ill { flex: none; width: 36%; max-width: 190px; height: auto; border-radius: 10px; }
.mind-card:nth-child(3) .mind-card__ill { width: 27%; max-width: 140px; }
.heart__grid { display: none; }

/* 12 プロフィール */
.profile__photo { position: relative; }
.profile__photo img { border: 3px solid var(--blue); }
.profile__badge {
  position: absolute; right: -6px; bottom: -10px; width: 108px; aspect-ratio: 1; border-radius: 50%;
  background: var(--ink-navy); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-align: center; box-shadow: 0 8px 18px rgba(10,30,80,.3); font-family: var(--font-head);
}
.profile__badge b { font-size: 20px; font-weight: 900; }
.profile__badge b small { font-size: .55em; font-weight: 700; margin-left: 2px; }
.profile__badge i { width: 44px; height: 3px; border-radius: 2px; background: var(--yellow); }
.profile__badge span { font-size: 9.5px; line-height: 1.35; font-weight: 700; }
.quote__div { border: none; border-top: 1.5px dashed #9fc2e2; margin: 10px 0; }

/* 13 声 v2 */
.vstat__icon { display: block; width: 40px; margin: 0 auto 6px; }
.voices__stats u { text-decoration: none; background: linear-gradient(transparent 72%, rgba(252,206,90,.75) 72%); font-weight: 700; color: var(--ink-navy); }
.voice2 { background: #fff; border-radius: 18px; padding: 20px; box-shadow: 0 10px 24px rgba(27,84,163,.08); }
.voice2 figcaption { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-family: var(--font-head); color: var(--ink-navy); font-size: 13.5px; font-weight: 700; flex-wrap: wrap; }
.voice2__stars { color: #F5B301; letter-spacing: .1em; font-size: 14px; }
.voice2 h3 { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(16.5px, 4.2vw, 19px); line-height: 1.75; margin-bottom: 8px; }
.voice2 blockquote { color: var(--ink-soft); font-size: 13.8px; line-height: 1.95; }
.voices__close { display: flex; align-items: center; justify-content: center; gap: 9px; width: fit-content; margin: 28px auto 0; padding: 12px 26px; border: 2px solid var(--blue); border-radius: 999px; background: #fff; color: var(--ink-navy); font-family: var(--font-head); font-weight: 700; font-size: clamp(13.5px, 3.5vw, 16px); }
.voices__close svg { color: var(--blue); flex: none; }
@media (min-width: 820px) { .voices__grid { grid-template-columns: repeat(3, 1fr); } }

/* 14 STEP横型 */
.steps2 { list-style: none; display: flex; flex-direction: column; max-width: 620px; margin: 0 auto; }
.step2 { background: #fff; border-radius: 18px; padding: 18px 18px; display: flex; align-items: center; gap: 16px; box-shadow: 0 12px 26px rgba(4,20,50,.28); }
.step2__circle { flex: none; width: min(24vw, 104px); aspect-ratio: 1; border-radius: 50%; background: #EFF5FB; display: flex; align-items: center; justify-content: center; }
.step2__circle svg { width: 62%; height: 62%; }
.step2__txt { flex: 1; border-left: 1.5px solid #DCE6F2; padding-left: 16px; }
.step2__txt h3 { font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(17px, 4.4vw, 21px); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.step2__badge { background: var(--navy); color: #fff; border-radius: 999px; padding: 4px 12px; font-size: 11.5px; letter-spacing: .08em; font-weight: 700; flex: none; }
.step2__txt p { color: var(--ink-soft); font-size: 13px; line-height: 1.85; margin-top: 7px; }
.steps2__arrow { align-self: center; line-height: 0; margin: 10px 0; }
.flow__note--shield { display: flex; align-items: center; justify-content: center; gap: 9px; }

/* 15 フッター */
.footer2 { text-align: center; padding: 10px 0 0; }
.footer2__logo { margin-bottom: 22px; }
.footer2__bubble {
  position: relative; display: inline-block; padding: 12px 30px; border: 2.5px solid #fff; border-radius: 16px;
  color: #fff; font-family: var(--font-head); font-weight: 900; font-size: clamp(26px, 7vw, 34px); letter-spacing: .02em; font-style: italic;
}
.footer2__bubble::after { content: ""; position: absolute; left: 50%; bottom: -9px; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: inherit; border-right: 2.5px solid #fff; border-bottom: 2.5px solid #fff; background: #101E45; }
.footer2__sub { display: block; margin-top: 15px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .28em; }
.footer2__tagline { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: clamp(15px, 4vw, 19px); letter-spacing: .06em; line-height: 2; margin-bottom: 24px; }
.footer2__ul { background: linear-gradient(transparent 82%, rgba(252,206,90,.9) 82%); padding-bottom: .1em; }
.footer2__sns { display: flex; justify-content: center; gap: 13px; margin-bottom: 26px; }
.sns2 { width: 52px; height: 52px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.25); transition: transform .2s ease; }
.sns2:hover { transform: translateY(-3px); }
.sns2--line { background: #06C755; }
.footer2__links { display: flex; justify-content: center; align-items: center; gap: 10px; color: #8fa2c8; font-size: 12.5px; margin-bottom: 18px; flex-wrap: wrap; }
.footer2__links a { color: #C9D6EE; text-decoration: none; }
.footer2__links a:hover { color: #fff; }
/* v7b 微修正 */
.voices__close { max-width: 92%; }
.voices__close-txt { line-height: 1.8; }
.profile__photo { overflow: visible; }
.profile__badge { right: 4px; bottom: -8px; }

/* ---------- v8：ゆなさん微調整①〜⑥ ---------- */
/* ① ヒーロー：先生小窓を上部に大きく・バッジ丸型 */
.hero__teacher { position: static !important; display: flex; align-items: center; gap: 4px; margin-bottom: 18px; text-align: left; }
.hero__teacher img { width: clamp(118px, 31vw, 158px) !important; border-width: 3px; }
.hero__teacher-note {
  margin-top: 0 !important; font-size: 13px !important; padding: 10px 14px !important;
  border-radius: 14px !important;
}
.hero__teacher-note::before {
  top: 50% !important; left: -7px !important; transform: translateY(-50%) !important;
  border: 7px solid transparent !important; border-right-color: #fff !important; border-left: 0 !important;
}
.hero__badge {
  width: 82px; aspect-ratio: 1; border-radius: 50% !important; padding: 0 !important;
  font-size: 13.5px !important; line-height: 1.3 !important; flex: none;
  border-width: 3px !important;
}
.hero__actions { flex-wrap: nowrap; }
.hero__cta { flex: 1; min-width: 0; }
.hero__link-line { display: none; }
@media (min-width: 820px) {
  .hero__teacher img { width: 150px !important; }
}

/* ② 解決ブロックの縦位置を統一 */
.pair__solve { align-items: center; }
.pair { justify-content: space-between; }
@media (min-width: 820px) {
  .pair__wbody { min-height: 170px; align-items: center; }
  .pair__stext p { min-height: 84px; }
}

/* ③ 講師グラフカードを主役に */
.mnb-tutors { max-width: 720px; margin: 26px auto 30px; padding: 22px 22px 16px; }
.mnb-tutors__title { text-align: center; font-family: var(--font-head); font-weight: 900; color: var(--ink-navy); font-size: clamp(17px, 4.4vw, 22px); margin-bottom: 14px; }
.mnb-tutors figcaption { font-size: 12px; }

/* ⑤ プロフィール写真を丸に */
.profile__photo img { border-radius: 50% !important; aspect-ratio: 1; object-fit: cover; object-position: center 20%; }
.profile__badge { right: 0; bottom: 2px; }

/* ⑥ 読みやすい文章配置（行バランス自動調整） */
.lead-text, .sec-title, .about__lead, .parents__lead, .vs2__closing,
.stack-card__closing, .loop2__closing, .voices__close-txt, .footer2__tagline { text-wrap: balance; }
/* v8b：ヒーローバッジ・CTA・見出しバランス */
.hero__badge { display: flex; align-items: center; justify-content: center; text-align: center; }
.hero__badge > span { display: block; line-height: 1.35; }
.hero__cta { font-size: 15.5px !important; white-space: nowrap; padding: 17px 16px !important; }
.pair__stext h3 { text-wrap: balance; }

/* ---------- v9：PC版ヒーローをインパクト構成に ---------- */
.mnb-tutors__title .c-blue { color: var(--blue); font-size: 1.25em; }
@media (min-width: 820px) {
  .hero__inner { grid-template-columns: 1.12fr 1fr; align-items: end; gap: 0; }
  .hero__text { padding: 26px 0 70px; }
  .hero__teacher { margin-bottom: 20px; }
  .hero__teacher img { width: 172px !important; }
  .hero__teacher-note { font-size: 15px !important; padding: 12px 18px !important; }
  .hero__title { font-size: clamp(42px, 4.8vw, 66px); line-height: 1.32; }
  .hero__big::after {
    left: 0; width: 102%; height: 15px; bottom: -8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M6 13c60-6 130 5 190-3 70-8 140 4 198-4' fill='none' stroke='%23ffffff' stroke-width='9' stroke-linecap='round' opacity='.92'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  }
  .hero__sub { font-size: 19px; margin-top: 22px; }
  .hero__actions { margin-top: 26px; gap: 18px; }
  .hero__badge { width: 100px; font-size: 15.5px !important; border-width: 3.5px !important; }
  .hero__cta { font-size: 19px !important; padding: 21px 34px !important; flex: none; }
  .hero__media { min-height: 600px; }
  .hero__student { width: min(116%, 720px); max-width: none; }
  .hero__arrow { width: 74%; max-width: 460px; right: -7%; bottom: 40%; }
  .hero__link-line { display: block; top: 0; left: -16%; width: 56%; max-width: 340px; opacity: .95; }
}
/* v9b：2行目「今日もできた！が」を一体化 */
.hero__line2 { white-space: nowrap; position: relative; display: inline-block; }
@media (min-width: 820px) {
  .hero__big::after { display: none; }
  .hero__line2::after {
    content: ""; position: absolute; left: 0; width: 100%; height: 15px; bottom: -8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M6 13c60-6 130 5 190-3 70-8 140 4 198-4' fill='none' stroke='%23ffffff' stroke-width='9' stroke-linecap='round' opacity='.92'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  }
  .hero__title { font-size: clamp(40px, 4.2vw, 58px); }
}

/* ============================================================
   v10：ヒーロー アート方式（デザイン案2準拠）
   ============================================================ */
.hero2 { background: #123C8F; }
.hero2__frame { position: relative; max-width: 1672px; margin: 0 auto; }
.hero2__bg { display: block; width: 100%; height: auto; }
.hero2__note {
  position: absolute; left: 29.5%; top: 3.2%; width: 25%;
  text-align: center; color: var(--ink-navy); font-family: var(--font-head);
  font-weight: 700; font-size: clamp(11px, 3.1vw, 14px); line-height: 1.45;
}
.hero2__title {
  position: absolute; left: 4.5%; top: 21.5%; color: #fff;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 900;
  font-size: clamp(30px, 11.4vw, 100px); line-height: 1.32; letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(10,40,100,.35);
}
.hero2__title .c-yellow { font-size: 1.1em; }
.hero2__l2 { font-size: .94em; letter-spacing: 0; white-space: nowrap; }
.hero2__l2 small { font-size: .6em; }
.hero2__sub {
  position: absolute; left: 4.5%; top: 50.5%; color: #fff;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: clamp(13px, 3.9vw, 34px); letter-spacing: .03em;
}
.hero2__sub b { color: var(--yellow); }
.hero2__badge {
  position: absolute; left: 4.2%; top: 60.8%; width: 15.8%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--ink-navy); font-family: var(--font-head); font-weight: 900;
  font-size: clamp(10px, 3vw, 26px); line-height: 1.3;
}
.hero2__cta {
  position: absolute; left: 20%; top: 61.5%; width: 37%; height: 5.2%;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--ink-navy); font-family: var(--font-head); font-weight: 900;
  font-size: clamp(13px, 3.9vw, 34px); text-decoration: none; letter-spacing: .02em;
}
@media (min-width: 820px) {
  .hero2__note { left: 21.8%; top: 7.5%; width: 13%; font-size: clamp(13px, 1.15vw, 19px); }
  .hero2__title { left: 6%; top: 24%; font-size: clamp(40px, 4.7vw, 80px); line-height: 1.3; }
  .hero2__l2 { position: relative; }
  .hero2__l2::after {
    content: ""; position: absolute; left: 0; width: 100%; height: 14px; bottom: -8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 20' preserveAspectRatio='none'%3E%3Cpath d='M6 13c60-6 130 5 190-3 70-8 140 4 198-4' fill='none' stroke='%23ffffff' stroke-width='9' stroke-linecap='round' opacity='.92'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  }
  .hero2__sub { left: 6%; top: 56.5%; font-size: clamp(16px, 1.55vw, 27px); }
  .hero2__badge { left: 5.6%; top: 61.5%; width: 9%; font-size: clamp(14px, 1.35vw, 24px); }
  .hero2__cta { left: 14.2%; top: 63.5%; width: 28.5%; height: 11%; font-size: clamp(18px, 1.9vw, 33px); }
}
/* v10b：ヒーロー位置微調整 */
.hero2__title { top: 20.4%; font-size: clamp(30px, 12vw, 106px); line-height: 1.36; }
.hero2__l3 { display: inline-block; margin-top: .32em; }
.hero2__sub { top: 50.2%; font-size: clamp(12.5px, 3.55vw, 31px); width: 91%; line-height: 1.75; }
.hero2__cta { left: 19.5%; width: 39%; font-size: clamp(12px, 3.5vw, 31px); white-space: nowrap; }
@media (min-width: 820px) {
  .hero2__title { left: 23%; top: 18.5%; font-size: clamp(38px, 3.6vw, 62px); line-height: 1.34; }
  .hero2__l3 { margin-top: .28em; }
  .hero2__sub { left: 23%; top: 45.5%; font-size: clamp(15px, 1.5vw, 26px); width: auto; }
  .hero2__sub br.only-sp { display: none; }
}
/* v10c */
.hero2__cta { padding-left: 7%; }
@media (min-width: 820px) { .hero2__cta { padding-left: 4%; } }
/* v10d：PC版の最終上書き（優先順位確保のため最後に定義） */
@media (min-width: 820px) {
  .hero2__title { left: 23%; top: 18.5%; font-size: clamp(38px, 3.6vw, 62px); }
  .hero2__sub { left: 23.3%; top: 48.4%; width: auto; font-size: clamp(14px, 1.28vw, 22px); white-space: nowrap; line-height: 1.6; }
  .hero2__badge { left: 5.6%; top: 61.5%; width: 9%; font-size: clamp(14px, 1.35vw, 24px); }
  .hero2__cta { left: 14.2%; top: 63.3%; width: 28.5%; font-size: clamp(17px, 1.8vw, 29px); white-space: nowrap; padding-left: 4%; }
}

/* ============================================================
   v11：デザイン案2のPCレイアウト（学び3列・マインド3列・STEP横・しくみ2列・フッターロゴ）
   ============================================================ */
.footer2__mark { display: block; margin: 0 auto 10px; width: 84px; height: auto; }
.footer2__name { display: block; color: #fff; font-family: var(--font-head); font-weight: 900; font-size: clamp(26px, 6.4vw, 34px); letter-spacing: .06em; }
.footer2__name i { font-style: normal; color: #35C8E8; }
.footer2__div { display: flex; align-items: center; justify-content: center; margin-top: 14px; }
.footer2__div::before, .footer2__div::after { content: ""; width: 74px; height: 1.5px; background: #2c3f6e; }
.footer2__div i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); margin: 0 10px; }

@media (min-width: 860px) {
  /* 学びの考え方：3列 */
  .loop2 { flex-direction: row; align-items: stretch; max-width: 1000px; }
  .loop2-card { flex: 1; flex-direction: column; text-align: center; gap: 12px; padding: 26px 18px; }
  .loop2-card__circle { width: 108px; }
  .loop2-card__txt h3 { justify-content: center; font-size: 20px; }
  .loop2__arrow { transform: rotate(-90deg); margin: 0 4px; align-self: center; flex: none; }
  /* マインド：3列 */
  .mind__list { grid-template-columns: repeat(3, 1fr); max-width: 1000px; gap: 18px; }
  .mind-card { flex-direction: column; align-items: flex-start; }
  .mind-card__ill { width: 78% !important; max-width: 230px !important; align-self: center; }
  /* STEP：横並び */
  .steps2 { flex-direction: row; align-items: stretch; max-width: 1020px; }
  .step2 { flex: 1; flex-direction: column; text-align: center; gap: 12px; padding: 24px 16px; }
  .step2__txt { border-left: none; padding-left: 0; }
  .step2__txt h3 { justify-content: center; font-size: 19px; }
  .steps2__arrow { transform: rotate(-90deg); margin: 0 2px; align-self: center; }
  /* しくみ：タイムライン＋積み上げの2列 */
  .rhythm .container--mid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 12px 40px; max-width: 1040px; }
  .rhythm .sec-label, .rhythm .sec-title { grid-column: 1 / -1; }
  .rhythm .timeline { grid-column: 1; }
  .rhythm .stack-card { grid-column: 2; align-self: center; margin: 0; }
}
/* v11b */
.timeline__body h3 .marker { white-space: nowrap; }
@media (min-width: 860px) { .timeline__body h3 { font-size: 16.5px; } }
/* v12：新イラストのサイズ調整 */
.pair__ill { max-height: 200px; width: auto; max-width: 42%; object-fit: contain; }
.mind-card__ill { max-height: 260px; object-fit: contain; }

/* ============================================================
   v13：デザイン案2アイコンへの全差し替え
   ============================================================ */
.reason__img { width: 70%; height: auto; display: block; }
.about__perks span img { width: 100%; height: auto; display: block; }
.loop2-card__circle--img { background: none !important; box-shadow: 0 8px 18px rgba(23,55,110,.22); border-radius: 50%; width: min(28vw, 120px); height: auto; }
.cmp__icon--img { width: 46px; height: 46px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cmp__icon--img img { width: 100%; height: 100%; object-fit: cover; }
.cmp--navy .cmp__svc { background: #0751A0; }
.cmp--cyan .cmp__svc { background: #079DEA; }
.cmp--blueA .cmp__svc { background: #1772CA; }
.cmp--blueB .cmp__svc { background: #1474CC; }
.cmp--sl .cmp__svc { background: #FDCC60; }
.manabo__icon--img { background: none !important; border: none !important; width: 54px !important; height: auto !important; }
.manabo__icon--img img { width: 100%; height: auto; display: block; }
.vstat__icon img { width: 100%; height: auto; display: block; }
.vstat__icon { width: 46px; }
.vstat__icon--stars { width: 116px; }
.step2__circle--img { background: none !important; border-radius: 14px; }
.consult__icon--img { width: 86px !important; }
.consult__icon--img img { width: 100%; height: auto; display: block; border-radius: 12px; }
@media (min-width: 860px) { .loop2-card__circle--img { width: 116px; } }

/* ---------- v14：④ラベル拡大 ③はみ出し修正 ---------- */
.sec-label__txt {
  font-size: 15.5px !important; padding: 11px 30px !important;
  border-width: 2.5px !important; letter-spacing: .14em !important;
}
.sec-label__txt::after { bottom: -9px !important; width: 14px !important; height: 14px !important; border-width: 2.5px !important; }
.sec-label { margin-bottom: 24px; }
.timeline__card { overflow: hidden; }
.timeline__icon--ill { width: 30% !important; max-width: 150px; align-self: center; }
.timeline__icon--ill img { width: 100%; height: auto; }
@media (min-width: 860px) {
  .rhythm .stack-card { align-self: start; margin-top: 8px; }
  .timeline__icon--ill { width: 27% !important; }
}
.timeline__body { min-width: 0; }

/* ---------- v15：新ヒーロー背景（先生実写・ヘッドホンなし）位置調整 ---------- */
.hero2__note {
  left: 52%; top: 5.5%; width: auto; padding: 10px 16px;
  background: #fff; border-radius: 14px; box-shadow: 0 5px 14px rgba(6,30,70,.25);
  font-size: clamp(11.5px, 3.2vw, 15px);
}
.hero2__note::before {
  content: ""; position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
  border: 8px solid transparent; border-right-color: #fff; border-left: 0;
}
.hero2__title { top: 21.5%; }
.hero2__sub { top: 52.5%; left: 5%; }
.hero2__badge { left: 4.3%; top: 43.2%; width: 15%; }
.hero2__cta { left: 15%; top: 44%; width: 41%; height: 4.8%; }
@media (min-width: 820px) {
  .hero2__note { left: 23.5%; top: 7%; font-size: clamp(13px, 1.1vw, 18px); padding: 12px 18px; }
  .hero2__title { left: 25%; top: 16.5%; }
  .hero2__sub { left: 25.3%; top: 53.6%; }
  .hero2__badge { left: 4.4%; top: 59.6%; width: 8.2%; }
  .hero2__cta { left: 13%; top: 60.8%; width: 26.5%; height: 9%; padding-left: 4%; }
  .hero2__l2::after { display: none; }
}
/* v15b：新背景の実測補正 */
.hero2__title { top: 22%; font-size: clamp(30px, 11.4vw, 100px); }
.hero2__badge { left: 2.6%; top: 63.4%; width: 17%; }
.hero2__cta { left: 16%; top: 64.4%; width: 39%; height: 5.6%; }
@media (min-width: 820px) {
  .hero2__badge { left: 4.3%; top: 76.4%; width: 9.4%; }
  .hero2__cta { left: 14%; top: 78%; width: 29%; height: 8.6%; }
}
/* v15c：PCタイトル最終指定（上書き順対策・最後に定義） */
@media (min-width: 820px) {
  .hero2__title { left: 25%; top: 16.5%; font-size: clamp(38px, 3.6vw, 62px); line-height: 1.34; }
}
/* v16：吹き出しの突起を本体と一体化 */
.sec-label__txt::after { clip-path: none !important; z-index: 1; }
.sec-label__txt { z-index: 2; }

/* v17：08-07 ゆなさん指摘修正（吹き出し突起・マインドタイトル） */
.sec-label__txt::after {
  bottom: -7px !important;
  width: 12px !important;
  height: 12px !important;
  background: inherit !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 2.5px solid currentColor !important;
  border-bottom: 2.5px solid currentColor !important;
  z-index: -1 !important;
}
.sec-label__txt { isolation: isolate; }
.mind-card__txt h3 { flex-wrap: nowrap; }
.mind-card__txt h3 .mind-card__no { flex: 0 0 40px; }
@media (min-width: 860px) {
  .mind-card__txt h3 { font-size: clamp(17px, 1.55vw, 22px); }
}

/* v18：08-07 細部調整（悩みカード・強みアイコン帯・グラフ配置） */
.pair__moya { display: none !important; }
.pair__who {
  font-size: 14.5px !important;
  padding: 8px 18px !important;
  min-width: 128px;
  text-align: center;
  box-shadow: 0 5px 12px rgba(27,84,163,.13);
}
.pair__who--st { background: #25BFE0 !important; }
.pair__who--pa { background: #F2A23A !important; }
.pair__wbody { gap: 16px; align-items: stretch; }
.pair__bubble {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 22px 24px;
}
.pair__bubble p {
  width: 100%;
  font-size: 15px;
  line-height: 1.85;
  text-align: left;
}
.pair__ill { max-width: 45%; }
@media (max-width: 480px) {
  .pair__who { font-size: 14px !important; min-width: 120px; padding: 8px 16px !important; }
  .pair__wbody { gap: 10px; }
  .pair__bubble { min-height: 112px; padding: 18px 16px; }
  .pair__bubble p { font-size: 13.5px; line-height: 1.75; }
}
.about__perks {
  max-width: 900px;
  gap: 18px;
  padding-top: 32px;
}
.about__perks span { width: 76px !important; margin-bottom: 12px !important; }
.about__perks h3 { font-size: clamp(16px, 4.1vw, 22px) !important; margin-bottom: 10px !important; }
.about__perks p { font-size: clamp(13px, 3.2vw, 16px) !important; line-height: 1.85 !important; }
.about__perks span img { filter: drop-shadow(0 4px 8px rgba(27,84,163,.12)); }
@media (min-width: 860px) {
  .rhythm .container--mid {
    grid-template-columns: .9fr 1.18fr;
    gap: 12px 46px;
    max-width: 1160px;
  }
  .rhythm .stack-card {
    max-width: none;
    width: 100%;
    align-self: start;
    margin-top: 94px;
  }
  .stack-card__body { padding: 18px 18px 20px; }
  .stack-card__cap { font-size: 13px; }
  .stack-card__closing { font-size: 18px; }
}
@media (min-width: 1180px) {
  .rhythm .stack-card { margin-top: 104px; }
}

/* v19：08-07 image2新アイコン差し替え */
.reason__img { width: 78% !important; }
.about__perks span { width: 88px !important; }
.loop2-card__circle--img {
  width: min(31vw, 132px) !important;
  box-shadow: 0 10px 22px rgba(23,55,110,.14) !important;
}
.cmp__icon--img {
  width: 62px !important;
  height: 62px !important;
  padding: 6px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.cmp__icon--img img { object-fit: contain !important; border-radius: 10px; }
.parents__callout-icon--img {
  width: 80px;
  height: 80px;
  padding: 8px;
}
.parents__callout-icon--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (min-width: 860px) {
  .loop2-card__circle--img { width: 132px !important; }
}
@media (max-width: 640px) {
  .cmp__icon--img { width: 54px !important; height: 54px !important; padding: 5px; }
}

/* v20：08-07 アイコン反映漏れ・白背景欠け修正 */
.reason__circle {
  overflow: visible !important;
  background: #fff !important;
}
.reason__img {
  width: 76% !important;
  height: 76% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
.about__perks span {
  width: 104px !important;
  height: 104px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.about__perks span img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
.loop2-card__circle--img {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}
.cmp__icon--img {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.cmp__icon--img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
.parents__callout-icon--img {
  background: #fff !important;
  border-radius: 50% !important;
  width: 82px !important;
  height: 82px !important;
}

/* v21：08-07 新ファイル名でキャッシュ回避・統計アイコン差し替え */
.reason__circle { overflow: visible !important; }
.reason__img { display: block !important; }
.vstat__icon--new {
  width: 74px !important;
  height: 74px !important;
  margin-bottom: 8px !important;
}
.vstat__icon--new img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

/* v22：08-07 細部修正（解決バッジ・ポモドーロ・統計・マインド） */
.pair__solve {
  position: relative;
  display: block !important;
  padding: 8px 86px 0 0 !important;
  min-height: 74px;
}
.pair__badge {
  position: absolute !important;
  right: 0;
  top: 0;
  width: 66px !important;
  height: 66px !important;
}
.pair__stext h3 { padding-right: 4px; }
.pair__stext p { min-height: 0 !important; }
.timeline__item:nth-child(2) .timeline__icon--ill {
  transform: translateY(16px);
}
.vs-note__bulb { width: 38px !important; }
.vs-note__bulb svg { width: 38px; height: 38px; }
.mind-card:nth-child(2) .mind-card__txt h3 {
  font-size: clamp(15px, 1.22vw, 18px) !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}
.voices__stats li {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.voices__stats b.big {
  font-size: clamp(36px, 5vw, 46px) !important;
  line-height: 1.1;
}
.voices__stats p {
  font-size: clamp(14px, 1.8vw, 16px) !important;
  line-height: 1.8 !important;
}
.voices__stats b.big small { font-size: .5em; }
.vstat__icon--stars { width: 132px !important; margin-bottom: 18px !important; }
.vstat__icon--new { width: 92px !important; height: 92px !important; margin-bottom: 18px !important; }
.cmp__icon--img img { opacity: 1 !important; }
@media (max-width: 640px) {
  .pair__solve { padding-right: 76px !important; }
  .pair__badge { width: 60px !important; height: 60px !important; }
  .mind-card:nth-child(2) .mind-card__txt h3 { font-size: 15px !important; }
  .voices__stats li { min-height: 190px; padding: 16px 6px !important; }
  .voices__stats b.big { font-size: 28px !important; }
  .voices__stats p { font-size: 11.5px !important; }
}

/* v23：08-07 細部再調整（解決バッジ左・理由下線削除・統計統一） */
.pair__solve {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 8px 0 0 !important;
  min-height: 74px;
}
.pair__badge {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  flex: 0 0 66px;
}
.pair__stext {
  flex: 1;
  min-width: 0;
}
.pair__stext h3 { padding-right: 0 !important; }
.reason__dots { display: none !important; }
.reason:nth-child(4) .reason__name {
  white-space: nowrap;
  font-size: clamp(14px, 1.55vw, 19px) !important;
}
.stack-card__head {
  justify-content: center !important;
  gap: 0 !important;
}
.vs-note__bulb { width: 40px !important; }
.vs-note__bulb svg { width: 40px !important; height: 40px !important; }
.voices__stats li {
  min-height: 238px !important;
  padding: 20px 10px !important;
}
.voices__stats b.big {
  font-size: clamp(31px, 4vw, 38px) !important;
}
.voices__stats b.big small { font-size: .55em !important; }
.vstat__icon--stars { width: 118px !important; margin-bottom: 18px !important; }
.vstat__icon--new { width: 86px !important; height: 86px !important; margin-bottom: 18px !important; }
.voices__close { gap: 0 !important; }
.voices__close svg { display: none !important; }
@media (max-width: 640px) {
  .pair__solve { gap: 12px !important; padding-top: 4px !important; }
  .pair__badge { flex-basis: 58px; width: 58px !important; height: 58px !important; }
  .reason:nth-child(4) .reason__name { white-space: normal; }
  .voices__stats li { min-height: 178px !important; padding: 16px 6px !important; }
  .voices__stats b.big { font-size: 26px !important; }
  .vstat__icon--stars { width: 86px !important; }
  .vstat__icon--new { width: 64px !important; height: 64px !important; }
}

/* v24：08-07 無料相談アイコン差し替え・注釈マーク化 */
.vs-note__bulb { display: none !important; }
.vs-note__mark {
  flex: none;
  width: 40px;
  color: #E8B93A;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  margin-top: 1px;
}
.step2__circle--img {
  width: min(28vw, 124px) !important;
  height: min(28vw, 124px) !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
.consult__icon--img {
  width: 104px !important;
  height: 104px !important;
}
.consult__icon--img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
@media (min-width: 860px) {
  .step2__circle--img { width: 132px !important; height: 132px !important; }
}
@media (max-width: 640px) {
  .vs-note__mark { width: 26px; font-size: 22px; }
  .consult__icon--img { width: 86px !important; height: 86px !important; }
}

/* v25：08-07 無料相談カード・理由下線・解決バッジ微調整 */
.reasons__swash { display: none !important; }
.reasons__underline {
  display: block;
  width: min(48%, 260px);
  height: 8px;
  margin: 12px auto 0;
  background: #FCCE5A;
  border-radius: 2px;
  transform: skewX(-8deg);
}
.consult__card {
  display: grid;
  grid-template-columns: 112px 1fr;
  column-gap: 18px;
  align-items: center;
}
.consult__icon--img {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0 !important;
}
.consult__card h4 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0 !important;
}
.consult__card p {
  grid-column: 1 / -1;
  margin-top: 16px;
}
.pair__badge {
  transform: translateY(-10px);
}
@media (max-width: 640px) {
  .reasons__underline { width: min(58%, 210px); height: 7px; }
  .consult__card {
    grid-template-columns: 84px 1fr;
    column-gap: 14px;
  }
  .consult__card p { margin-top: 14px; }
  .pair__badge { transform: translateY(-6px); }
}

/* v26：08-07 トップFV素材合成版 */
.hero2 { background: #062d86; }
.hero2__frame {
  max-width: 1672px;
  overflow: hidden;
}
@media (min-width: 820px) {
  .hero2__note { left: 21.6% !important; top: 7.1% !important; }
  .hero2__title { left: 24.8% !important; top: 17.4% !important; font-size: clamp(38px, 4vw, 68px) !important; }
  .hero2__sub { left: 5.4% !important; top: 62.2% !important; font-size: clamp(17px, 1.65vw, 28px) !important; }
  .hero2__badge { left: 5.2% !important; top: 69.4% !important; width: 10.2% !important; }
  .hero2__cta { left: 14.4% !important; top: 70.8% !important; width: 30.8% !important; height: 10.2% !important; }
}
@media (max-width: 819px) {
  .hero2__note { left: 36% !important; top: 6.5% !important; width: 34% !important; font-size: clamp(13px, 3vw, 22px) !important; }
  .hero2__title { left: 7% !important; top: 23% !important; font-size: clamp(34px, 11vw, 86px) !important; }
  .hero2__sub { left: 7% !important; top: 55% !important; width: 88% !important; }
  .hero2__badge { left: 7% !important; top: 64.8% !important; width: 21% !important; }
  .hero2__cta { left: 25% !important; top: 65.8% !important; width: 55% !important; height: 5.4% !important; }
}

/* v27：08-07 トップCTA・丸バッジをHTML側で再構築 */
.hero2__title,
.hero2__sub,
.hero2__note,
.hero2__badge,
.hero2__cta { z-index: 2; }
.hero2__l2 { position: relative; display: inline-block; }
.hero2__l2::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 5%;
  bottom: -8px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 176, 214, .88);
  transform: skewX(-8deg);
  z-index: -1;
}
.hero2__badge {
  background: #fff;
  border: 5px solid #14AEE8;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,0,0,.26);
}
.hero2__cta {
  background: linear-gradient(180deg, #FFD967 0%, #F9BE27 100%);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(5,22,70,.32), inset 0 1px 0 rgba(255,255,255,.55);
  padding-left: 0 !important;
}
.hero2__cta svg { margin-left: 8px; }
@media (min-width: 820px) {
  .hero2__sub { left: 5.4% !important; top: 60.5% !important; }
  .hero2__badge { left: 5.0% !important; top: 68.5% !important; width: 10.4% !important; }
  .hero2__cta { left: 14.2% !important; top: 70.2% !important; width: 31.5% !important; height: 9.8% !important; }
}
@media (max-width: 819px) {
  .hero2__cta { height: 5.8% !important; }
}

/* v28：08-07 トップを完成画像ベースに戻す */
.hero2 { background: #072d85 !important; }
.hero2__frame { max-width: 1668px !important; overflow: hidden; }
.hero2__bg { width: 100% !important; height: auto !important; }
.hero2__note,
.hero2__title,
.hero2__sub,
.hero2__badge {
  display: none !important;
}
.hero2__cta {
  position: absolute !important;
  z-index: 3 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: transparent !important;
  text-shadow: none !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  padding: 0 !important;
}
.hero2__cta svg { display: none !important; }
@media (min-width: 820px) {
  .hero2__cta {
    left: 3.6% !important;
    top: 69.4% !important;
    width: 42.5% !important;
    height: 16.5% !important;
  }
}
@media (max-width: 819px) {
  .hero2__frame { max-width: 862px !important; }
  .hero2__cta {
    left: 3.6% !important;
    top: 28.1% !important;
    width: 42.5% !important;
    height: 6.6% !important;
  }
}

/* v29：08-07 スマホトップの不要な縦伸ばしを削除 */
@media (max-width: 819px) {
  .hero2__bg { display: block; }
  .hero2__cta {
    left: 3.6% !important;
    top: 69.4% !important;
    width: 42.5% !important;
    height: 16.5% !important;
  }
}

/* v30：08-07 新トップ画像＋ボタン素材を重ねる */
.hero2 { background: #062d86 !important; }
.hero2__frame { max-width: 1672px !important; overflow: hidden; }
.hero2__note,
.hero2__title,
.hero2__sub,
.hero2__badge { display: none !important; }
.hero2__cta {
  position: absolute !important;
  z-index: 4 !important;
  display: block !important;
  height: auto !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
  color: transparent !important;
}
.hero2__cta img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
}
@media (min-width: 820px) {
  .hero2__cta {
    left: 3.5% !important;
    top: 68.8% !important;
    width: 43.5% !important;
  }
}
@media (max-width: 819px) {
  .hero2__frame { max-width: 1086px !important; }
  .hero2__cta {
    left: 5.2% !important;
    top: 51.9% !important;
    width: 60% !important;
  }
}

/* v31：08-07 スマホトップCTAの顔かぶり回避 */
@media (max-width: 819px) {
  .hero2__cta {
    left: 4.2% !important;
    top: 49.6% !important;
    width: 49% !important;
  }
}

/* v32：08-07 トップCTAを小さめにしてホバー感を追加 */
.hero2__cta {
  transform-origin: center center;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
  will-change: transform;
}
.hero2__cta:hover,
.hero2__cta:focus-visible {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.05);
}
.hero2__cta:active {
  transform: translateY(-1px) scale(.995);
}
.hero2__cta img {
  transition: filter .18s ease;
}
.hero2__cta:hover img,
.hero2__cta:focus-visible img {
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.28));
}
@media (min-width: 820px) {
  .hero2__cta {
    left: 3.9% !important;
    top: 72.0% !important;
    width: 37.5% !important;
  }
}
@media (max-width: 819px) {
  .hero2__cta {
    left: 4.5% !important;
    top: 50.5% !important;
    width: 45% !important;
  }
}

/* v33：08-07 スマホトップCTAの本文かぶり回避 */
@media (max-width: 819px) {
  .hero2__cta {
    left: 5.0% !important;
    top: 53.2% !important;
    width: 39.5% !important;
  }
}

/* v34：08-07 スマホのセクション吹き出し見切れ防止 */
@media (max-width: 520px) {
  .sec-label {
    padding-inline: 10px;
  }
  .sec-label__txt {
    max-width: calc(100vw - 44px) !important;
    box-sizing: border-box;
    white-space: normal !important;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.55;
    font-size: 13.2px !important;
    letter-spacing: .08em !important;
    padding: 9px 18px !important;
  }
}
