@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* =============================================
   juku-with リニューアル メインCSS
   カラー：青(#1a5fb4) + オレンジ差し色(#ff7a1a)
   参考：森塾 / 個別指導Axis
   ============================================= */
:root {
  --blue: #1a5fb4;
  --blue-d: #13427e;
  --blue-m: #2b6fd4;
  --blue-l: #eaf2fb;
  --blue-ll: #f4f9ff;
  --orange: #ff7a1a;
  --orange-d: #e85d00;
  --orange-l: #fff4ec;
  --ink: #1a1a2e;
  --text: #3d3d3d;
  --muted: #7a7a8a;
  --line: #dde3ed;
  --bg: #f8fafd;
  --white: #ffffff;
  --green: #1a8f4a;
  --green-l: #e8f5ec;
  --shadow-sm: 0 2px 8px rgba(26,95,180,.10);
  --shadow-md: 0 4px 20px rgba(26,95,180,.14);
  --shadow-lg: 0 8px 40px rgba(26,95,180,.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px; /* デスクトップ基準（全社標準16px） */
}

html, body { overflow-x: hidden; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  font-size: 1rem; /* htmlのfont-sizeに追従 */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

/* =============================================
   ヘッダー
   ============================================= */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  z-index: 200;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header__logo .logo-img {
  height: 44px;
  width: auto;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__tel {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.header__tel a {
  font-weight: 900;
  color: var(--blue-d);
  font-size: 1.2rem;
  letter-spacing: .02em;
}

.header__tel a i { margin-right: 5px; font-size: 1rem; }

.header__tel small {
  font-size: .72rem;
  color: var(--muted);
}

.hamburger {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--blue-d);
  cursor: pointer;
  padding: 4px;
}

/* グローバルナビ */
.gnav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.gnav__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gnav a {
  display: block;
  padding: 13px 14px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}

.gnav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: left .2s, right .2s;
}

.gnav a:hover { color: var(--orange); }
.gnav a:hover::after, .gnav a.active::after { left: 0; right: 0; }
.gnav a.active { color: var(--orange); }

/* スマホドロワー */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-d);
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .95rem;
}

.mobile-nav a:hover { background: rgba(255,255,255,.1); }

/* 追従CTA（スマホ下部） */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 300;
  box-shadow: 0 -3px 16px rgba(0,0,0,.15);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 6px;
  font-weight: 900;
  font-size: .85rem;
  color: #fff;
}

.sticky-cta__tel { background: var(--blue-d); }
.sticky-cta__contact { background: var(--orange); }

/* =============================================
   ボタン
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-m); }

.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-d); }

.btn--ghost { background: #fff; color: var(--blue); border: 2px solid var(--blue); }
.btn--ghost:hover { background: var(--blue-ll); }

.btn--lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 10px; }

.btn--xl { padding: 20px 48px; font-size: 1.2rem; border-radius: 12px; }

/* =============================================
   セクション共通
   ============================================= */
section { padding: 60px 0; }

.sec-head {
  text-align: center;
  margin-bottom: 36px;
}

.sec-head .en {
  display: block;
  color: var(--orange);
  font-size: .75rem;
  letter-spacing: .18em;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.sec-head h2 {
  font-size: 1.55rem;
  color: var(--blue-d);
  font-weight: 900;
  line-height: 1.35;
}

.sec-head h2 em {
  color: var(--orange);
  font-style: normal;
}

.lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.9;
}

.bg-light { background: var(--blue-ll); }
.bg-navy { background: var(--blue-d); }

/* =============================================
   FV スライダー（Swiper）
   ============================================= */
.fv {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: 0; /* ドットはスライダー内に配置（白余白なし） */
}

.fv-swiper {
  width: 100%;
  overflow: hidden; /* フル画像スライダー（見切れ・白余白なし） */
}

.fv-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* paginationドットはswiperの外に出るため絶対位置調整 */
.fv-swiper .swiper-pagination {
  bottom: -28px;
}

.fv-swiper .swiper-pagination-bullet {
  background: var(--blue);
  opacity: .35;
}

.fv-swiper .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
}

.fv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* FVオーバーレイキャッチ */
.fv__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,60,.82) 0%, rgba(10,20,60,.4) 60%, transparent 100%);
  padding: 28px 5% 30px;
  z-index: 10;
}

.fv__catch {
  color: #fff;
  font-size: clamp(1.1rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.fv__catch em {
  color: var(--orange);
  font-style: normal;
}

.fv__sub {
  color: rgba(255,255,255,.88);
  font-size: clamp(.8rem, 2.2vw, 1rem);
  margin-bottom: 16px;
}

.fv__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =============================================
   お悩み
   ============================================= */
.worry-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blue);
}

.worry-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.worry-item p {
  font-weight: 700;
  color: var(--ink);
  padding-top: 10px;
  font-size: .95rem;
}

/* =============================================
   こんなお悩みセクション（tano.mu参考・再デザイン）
   グレー背景＋白カード＋大アイコン＋ロールタグ
   ============================================= */
.worry-section {
  background: #f2f5fb;
  padding: 56px 0 60px;
  overflow: visible;
}

.worry-section__title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--blue-d);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* スクリーンリーダー専用（FVのh1など見た目に出さずSEO/構造を担保） */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* 3カラムグリッド: 左雲列 ｜ 人物 ｜ 右雲列 */
.worry-scene {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.worry-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.worry-col--l { align-items: flex-end; }
.worry-col--r { align-items: flex-start; }

/* 人物プレースホルダー */
.worry-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--blue);
  line-height: 1;
}

/* 雲の吹き出し本体 */
.worry-bubble {
  position: relative;
  background: #d8e2f8;
  padding: 28px 24px;
  text-align: center;
  max-width: 248px;
  border-radius: 50% 50% 45% 55% / 48% 52% 48% 52%;
}

/* 上部の雲のでこぼこ */
.worry-bubble::before,
.worry-bubble::after {
  content: '';
  position: absolute;
  background: #d8e2f8;
  border-radius: 50%;
  z-index: 0;
}
.worry-bubble::before {
  width: 52px;
  height: 52px;
  top: -22px;
  left: 18%;
}
.worry-bubble::after {
  width: 34px;
  height: 34px;
  top: -16px;
  right: 20%;
}

/* 左側の雲（右向きに少し調整） */
.worry-bubble--l {
  border-radius: 50% 50% 45% 55% / 52% 48% 52% 48%;
}
/* 右側の雲（左向きに少し調整） */
.worry-bubble--r {
  border-radius: 50% 50% 55% 45% / 48% 52% 48% 52%;
}
.worry-bubble--r::before { left: 22%; }
.worry-bubble--r::after  { right: 18%; }

.worry-bubble__title {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue-d);
  line-height: 1.65;
  margin-bottom: 10px;
}

.worry-bubble__text {
  position: relative;
  z-index: 1;
  font-size: .82rem;
  color: #444;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .worry-scene {
    grid-template-columns: 1fr;
  }
  .worry-col--l,
  .worry-col--r { align-items: center; }
  .worry-figure { font-size: 5rem; padding: 12px 0; }
  .worry-bubble { max-width: 88%; }
  .worry-section__title { font-size: 1.35rem; margin-bottom: 36px; }
}

/* =============================================
   ウイズにお任せバナー
   ============================================= */
.omakase-banner {
  background: linear-gradient(to bottom, var(--blue-ll) 0%, #fff 100%);
  overflow: hidden;
}

.omakase-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0;
}

.omakase-banner__text {
  flex: 1;
  min-width: 0;
}

.omakase-banner__label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--orange-d);
  background: var(--orange-l);
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  padding: 3px 14px;
  margin-bottom: 12px;
}

.omakase-banner__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--blue-d);
  margin-bottom: 16px;
}

.omakase-banner__title em {
  font-style: normal;
  color: var(--orange);
}

.omakase-banner__sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}

.omakase-banner__img {
  flex-shrink: 0;
  width: min(300px, 38vw);
}

.omakase-banner__img img {
  width: 100%;
  display: block;
}

@media (max-width: 599px) {
  .omakase-banner__inner {
    flex-direction: column;
    padding: 32px 0 20px;
    gap: 16px;
  }
  .omakase-banner__img {
    width: min(220px, 70vw);
    margin: 0 auto;
  }
  .omakase-banner__title {
    text-align: center;
  }
  .omakase-banner__label {
    display: block;
    text-align: center;
  }
  .omakase-banner__sub {
    text-align: center;
  }
}

/* =============================================
   セクションつなぎ矢印
   ============================================= */
.section-arrow {
  background: var(--blue-ll);
  text-align: center;
  padding: 36px 0 32px;
  line-height: 1;
}

.section-arrow__icon {
  display: inline-block;
  font-size: 2.8rem;
  color: var(--orange);
  animation: arrow-bounce 1.6s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0);    opacity: 1;  }
  50%       { transform: translateY(10px); opacity: .6; }
}

/* =============================================
   ウイズにお任せ横型バナー（参考：画像3）
   ============================================= */
.omakase-section {
  background: var(--blue-ll);
  padding: 0 0 64px;
}

.omakase-banner-v2 {
  background: var(--orange);
  border-radius: 20px;
  padding: 44px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* スパークル装飾 */
.omakase-banner-v2__deco {
  position: absolute;
  font-size: 5rem;
  color: rgba(255,255,255,.18);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}
.omakase-banner-v2__deco--l { left: 32px; }
.omakase-banner-v2__deco--r { right: 32px; }

/* メインテキスト（1行レイアウト） */
.omakase-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.omakase-headline__s {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

.omakase-headline__brand {
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.omakase-headline__m {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.omakase-banner-v2__sub {
  color: rgba(255,255,255,.88);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 26px;
}

.omakase-banner-v2 .btn--white {
  background: #fff;
  color: var(--orange-d);
  font-weight: 900;
  border: none;
}

.omakase-banner-v2 .btn--white:hover {
  background: var(--orange-l);
}

@media (max-width: 767px) {
  .omakase-banner-v2 { padding: 36px 28px; }
  .omakase-banner-v2__deco { display: none; }
}

/* =============================================
   選ばれる理由
   ============================================= */
.reason-grid {
  display: grid;
  gap: 20px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--blue);
  transition: transform .2s, box-shadow .2s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reason-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.reason-card h3 {
  color: var(--blue-d);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.reason-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
}

/* =============================================
   成績向上宣言（主役）
   ============================================= */
.guarantee-box {
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.guarantee-box__tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  padding: 5px 20px;
  border-radius: 999px;
  font-size: .88rem;
  margin-bottom: 16px;
}

.guarantee-box__main {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--blue-d);
  line-height: 1.3;
  margin-bottom: 8px;
}

.guarantee-box__main em {
  color: var(--orange);
  font-style: normal;
}

.guarantee-box__sub {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-d);
  margin-bottom: 16px;
}

.guarantee-box__sub em {
  color: var(--orange);
  font-style: normal;
}

.guarantee-box p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.9;
}

/* =============================================
   料金
   ============================================= */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.price-card__head {
  background: var(--blue);
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .06em;
}

.price-card__body {
  padding: 28px 24px;
  text-align: center;
}

.price__amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-d);
  line-height: 1;
}

.price__amount small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price__note {
  color: var(--muted);
  font-size: .85rem;
  margin: 10px 0 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.badge {
  display: inline-block;
  background: var(--green-l);
  color: var(--green);
  border: 1px solid #a9d9be;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .82rem;
  font-weight: 800;
}

/* =============================================
   クラス紹介カード
   ============================================= */
.course-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  border-top: 5px solid var(--blue);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.course-card--elem  { border-top-color: #3aaa64; }
.course-card--mid   { border-top-color: var(--blue); }
.course-card--high  { border-top-color: #e8632e; }
.course-card--eiken { border-top-color: #7b5cc4; }
.course-card--test  { border-top-color: #0a9aa0; }

.course-card__img {
  height: 160px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 2.4rem;
  overflow: hidden;
}
.course-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.course-card__body { padding: 18px; }

.course-card__label {
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.course-card h3 {
  color: var(--blue-d);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.course-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.course-card__price {
  font-weight: 900;
  color: var(--orange);
  font-size: .95rem;
}

/* =============================================
   実績・数字
   ============================================= */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-item__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-item__num small { font-size: 1.3rem; }

.stat-item__label {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* 合格実績ボックス */
.result-box {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 28px;
}

.result-box__tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  padding: 4px 18px;
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 12px;
}

.result-box__main {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--blue-d);
}

.result-box__main em {
  color: var(--orange);
  font-style: normal;
}

/* =============================================
   声・口コミ
   ============================================= */
.voice-grid {
  display: grid;
  gap: 18px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.voice-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.voice-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.voice-card__name {
  font-weight: 800;
  color: var(--ink);
  font-size: .95rem;
}

.voice-card__attr {
  font-size: .78rem;
  color: var(--muted);
}

.stars {
  color: #f5a623;
  font-size: .85rem;
  margin-bottom: 4px;
}

.voice-card p { color: var(--text); line-height: 1.85; font-size: .95rem; }

/* =============================================
   講師
   ============================================= */
.teacher-grid {
  display: grid;
  gap: 20px;
}

.teacher-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}

.teacher-card:hover { transform: translateY(-3px); }

.teacher-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 14px;
}

.teacher-card h3 {
  color: var(--blue-d);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.teacher-card p { color: var(--muted); font-size: .9rem; line-height: 1.8; }

/* =============================================
   季節講習バナー
   ============================================= */
.season-banner {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}

.season-banner:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg);
}

.season-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   投稿カード（キャンペーン・お知らせ）
   ============================================= */
.posts-grid {
  display: grid;
  gap: 16px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-card__img {
  height: 140px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 2rem;
  overflow: hidden;
}

.post-card__img img { width: 100%; height: 100%; object-fit: cover; }

.post-card__body { padding: 16px; flex: 1; }

.post-card__tag {
  display: inline-block;
  background: var(--orange-l);
  color: var(--orange-d);
  font-size: .75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.post-card__tag--blue {
  background: var(--blue-l);
  color: var(--blue-d);
}

.post-card h3 {
  color: var(--ink);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.5;
}

/* =============================================
   キャンペーン・お知らせ（交互レイアウト）
   ============================================= */
.news-section {
  background: var(--blue-ll);
  padding: 80px 0;
}

.news-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.news-row:last-of-type { margin-bottom: 0; }

.news-row--reverse { flex-direction: row-reverse; }

.news-row__media {
  flex: 0 0 56%;
  min-width: 0;
}
.news-row__media img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 32px rgba(0,0,0,.10);
}
.news-row__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--blue-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 4rem;
  box-shadow: 0 6px 32px rgba(0,0,0,.08);
}

.news-row__body { flex: 1; min-width: 0; }

.news-row__tag {
  display: inline-block;
  background: var(--orange-l);
  color: var(--orange-d);
  font-size: .75rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.news-row__tag--blue {
  background: var(--blue-l);
  color: var(--blue-d);
}

.news-row__title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 0;
}

.news-row__hr {
  border: none;
  border-top: 1px solid #cdd4e0;
  margin: 18px 0 20px;
}

.news-row__text {
  color: #555;
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .news-row,
  .news-row--reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
  }
  .news-row__media { flex: none; width: 100%; }
  .news-row__title { font-size: 1.25rem; }
}

/* =============================================
   無料体験の流れ（flow）
   ============================================= */
.flow-section {
  background: #fff;
  padding: 80px 0;
}

.flow-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.flow-section__head h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
}
.flow-section__bar {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto;
}

.flow {
  max-width: 780px;
  margin: 0 auto;
}

.flow__hr {
  border: none;
  border-top: 1px solid #e4e9f0;
  margin: 52px 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 52px;
}

.flow-step__illust {
  flex: 0 0 130px;
}
.flow-step__placeholder {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--blue-ll);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 3.5rem;
}

.flow-step__body { flex: 1; min-width: 0; }

.flow-step__label {
  font-size: .82rem;
  color: #888;
  margin-bottom: 8px;
  line-height: 1;
}
.flow-step__s {
  font-size: .72rem;
  letter-spacing: .08em;
}
.flow-step__n {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .04em;
}

.flow-step__title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.4;
  margin-bottom: 14px;
}

.flow-step__text {
  color: #444;
  font-size: .95rem;
  line-height: 1.9;
  margin-bottom: 0;
}

.flow-step__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 22px;
  text-decoration: none;
  transition: background .2s, color .2s;
  max-width: 420px;
}
.flow-step__cta:hover {
  background: var(--blue);
  color: #fff;
}

@media (max-width: 640px) {
  .flow-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .flow-step__illust { flex: none; }
  .flow-step__placeholder { width: 120px; height: 120px; font-size: 2.5rem; }
  .flow-section__head h2 { font-size: 1.45rem; }
  .flow-step__title { font-size: 1.15rem; }
  .flow-step__cta { max-width: 100%; }
}

/* =============================================
   安心表示
   ============================================= */
.assure {
  background: var(--green-l);
  border: 1px solid #a9d9be;
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  color: var(--green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .95rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* =============================================
   CTAバンド
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--blue-d) 0%, var(--blue) 100%);
  color: #fff;
  padding: 56px 0;
}

/* 押したくなるCTAパネル（白カード＋イラスト＋大ボタン）2026-06-17 */
.cta-panel {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 24px;
  padding: 36px 44px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(8,30,80,.28);
}
.cta-panel__fig {
  flex: 0 0 34%;
  max-width: 280px;
  align-self: flex-end;
}
.cta-panel__fig img { width: 100%; display: block; }
.cta-panel__body { flex: 1; min-width: 0; }
.cta-panel__eyebrow {
  display: inline-block;
  background: var(--blue-ll);
  color: var(--blue-d);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.cta-panel__title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  color: var(--blue-d);
  line-height: 1.35;
  margin-bottom: 16px;
}
.cta-panel__title mark {
  background: linear-gradient(transparent 58%, #ffd9a8 58%);
  color: var(--orange-d);
  padding: 0 .08em;
}
.cta-panel__merits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 22px;
}
.cta-panel__merits li {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-d);
  background: var(--blue-ll);
  border-radius: 8px;
  padding: 7px 13px;
}
.cta-panel__merits li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  margin-right: 7px;
}
.cta-panel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 1.18rem;
  padding: 18px 24px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(240,121,46,.4);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.cta-panel__btn:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(240,121,46,.5);
  animation: none;
}
.cta-panel__btn i { transition: transform .15s ease; }
.cta-panel__btn:hover i { transform: translateX(4px); }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(240,121,46,.4); }
  50% { box-shadow: 0 10px 22px rgba(240,121,46,.4), 0 0 0 8px rgba(240,121,46,.12); }
}
.cta-panel__tel {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin: 16px 0 0;
  font-size: .9rem;
}
.cta-panel__tel a {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--blue-d);
  text-decoration: none;
}
.cta-panel__tel a i { font-size: 1rem; margin-right: 5px; color: var(--blue); }
.cta-panel__tel span { color: #777; }
@media (max-width: 760px) {
  .cta-panel { flex-direction: column; text-align: center; padding: 30px 22px; gap: 8px; }
  .cta-panel__fig { max-width: 200px; }
  .cta-panel__merits { justify-content: center; }
  .cta-panel__tel { justify-content: center; }
}

/* =============================================
   フッター
   ============================================= */
.footer {
  background: #1b2735;
  color: #c3ccd9;
  font-size: .9rem;
}

.footer__main {
  display: grid;
  gap: 28px;
  padding: 44px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand {}

.footer__logo-wrap {
  background: #fff;
  display: inline-block;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.footer__logo-wrap img { height: 56px; width: auto; }

.footer__tagline {
  color: #9aabb8;
  font-size: .88rem;
  line-height: 1.85;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.footer__col { display: flex; flex-direction: column; gap: 9px; }

.footer__col-h {
  font-weight: 900;
  color: #fff;
  font-size: .88rem;
  margin-bottom: 3px;
}

.footer__col a {
  color: #c3ccd9;
  font-size: .85rem;
  transition: color .2s;
}

.footer__col a:hover { color: #fff; }

.footer__info {
  display: grid;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__address {
  font-size: .85rem;
  color: #9aabb8;
  line-height: 1.9;
}

.footer__address strong { color: #fff; display: block; margin-bottom: 4px; }

.footer__map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 10px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 0;
  font-size: .78rem;
  color: #6a7a8a;
}

.footer__bottom a { color: #6a7a8a; transition: color .2s; }
.footer__bottom a:hover { color: #fff; }

/* =============================================
   下層ページ共通
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue-d) 0%, var(--blue) 100%);
  padding: 38px 0 32px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero__sub {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

.breadcrumb {
  font-size: .78rem;
  color: var(--muted);
  padding: 12px 0 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.breadcrumb a { color: var(--blue); }
.breadcrumb i { font-size: .65rem; }

/* =============================================
   FAQアコーディオン
   ============================================= */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 52px 16px 54px;
  font-weight: 700;
  color: var(--blue-d);
  position: relative;
  font-size: 1rem;
  background: var(--blue-ll);
  line-height: 1.55;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::before {
  content: "Q";
  position: absolute;
  left: 18px;
  top: 14px;
  background: var(--blue);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .82rem;
  line-height: 26px;
  text-align: center;
}

.faq-item > summary::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.1rem;
  transition: transform .25s;
}

.faq-item[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] > summary { border-bottom: 1px solid var(--line); }

.faq-answer {
  padding: 16px 18px 16px 54px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.9;
  position: relative;
}

.faq-answer::before {
  content: "A";
  position: absolute;
  left: 18px;
  top: 15px;
  background: var(--orange);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .82rem;
  line-height: 26px;
  text-align: center;
}

/* =============================================
   入塾の流れ（STEP）
   ============================================= */
.flow-steps {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

/* =============================================
   料金テーブル
   ============================================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th {
  background: var(--blue);
  color: #fff;
  padding: 12px 14px;
  text-align: center;
  font-weight: 800;
}

.price-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table td:first-child {
  font-weight: 700;
  color: var(--blue-d);
}

.price-note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.85;
}

/* =============================================
   コースタブ（クラス紹介）
   ============================================= */
.course-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.course-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--muted);
  transition: all .2s;
  text-decoration: none;
}

.course-tab:hover, .course-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* コース詳細カード */
.course-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  border-top: 5px solid var(--blue);
}

.course-section--elem  { border-top-color: #3aaa64; }
.course-section--mid   { border-top-color: var(--blue); }
.course-section--high  { border-top-color: #e8632e; }
.course-section--eiken { border-top-color: #7b5cc4; }
.course-section--test  { border-top-color: #0a9aa0; }

.course-section h2 {
  color: var(--blue-d);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-section h2 .label-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.course-section p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.85;
}

/* =============================================
   お知らせ・常設
   ============================================= */
.news-fixed {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.news-fixed__item {
  background: var(--orange-l);
  border: 1px solid #ffd0aa;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.news-fixed__title {
  font-weight: 900;
  color: var(--blue-d);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-fixed__title i { color: var(--orange); }

.news-fixed__body {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.85;
}

/* =============================================
   お問い合わせフォーム
   ============================================= */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}

/* =============================================
   お問い合わせフォーム・フルワイドリデザイン（Mori-juku参考）
   ============================================= */
.cf-page-section {
  padding-top: 0;
}

.cf-form {
  margin-top: 48px;
}

.cf-section {
  border: 0;
  padding: 0;
  margin: 0 0 64px;
}

.cf-section__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--ink);
  border-bottom: 3px solid var(--blue);
  padding-bottom: 14px;
  margin-bottom: 36px;
}

.cf-section__title small {
  font-size: .72em;
  font-weight: 600;
  color: var(--muted);
}

.cf-req {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.cf-opt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

/* チェックボックスグリッド */
.cf-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
}

.cf-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

.cf-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.cf-check__text {
  flex: 1;
}

/* フォームフィールド（dl/dt/dd） */
.cf-field {
  margin-top: 44px;
}

.cf-field:first-of-type {
  margin-top: 0;
}

.cf-field__label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-d);
  margin-bottom: 10px;
}

.cf-field__label label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cf-field__input {
  margin: 0;
}

.cf-field__note {
  margin-top: 8px;
  font-size: .82rem;
  color: var(--muted);
}

/* 入力欄 */
.cf-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  min-height: 52px;
  box-sizing: border-box;
}

.cf-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,180,.12);
}

.cf-input--half {
  max-width: 420px;
}

.cf-input--textarea {
  min-height: 160px;
  resize: vertical;
}

.cf-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 送信エリア */
.cf-submit {
  margin-top: 64px;
  text-align: center;
}

.cf-agree {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .95rem;
  margin-bottom: 28px;
}

.cf-agree input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--blue);
  cursor: pointer;
}

.cf-agree a {
  color: var(--blue);
  text-decoration: underline;
}

.cf-submit__btn {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  font-size: 1.05rem;
  padding: 18px 24px;
}

.cf-submit__note {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 800;
  color: var(--blue-d);
  font-size: .92rem;
  margin-bottom: 6px;
}

.form-label .req {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  padding: 1px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-label .opt {
  display: inline-block;
  background: var(--muted);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.form-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  cursor: pointer;
}

.form-check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,180,.12);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-submit {
  text-align: center;
  margin-top: 24px;
}

/* =============================================
   プライバシーポリシー
   ============================================= */
.policy-body {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.policy-body h2 {
  color: var(--blue-d);
  font-size: 1.1rem;
  font-weight: 900;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--blue-l);
}

.policy-body h2:first-child { margin-top: 0; }

.policy-body p, .policy-body li {
  color: var(--text);
  font-size: .92rem;
  line-height: 1.9;
  margin-bottom: 8px;
}

.policy-body ul { padding-left: 1.2em; }
.policy-body ul li { list-style: disc; }

/* =============================================
   お知らせ一覧
   ============================================= */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-item__date {
  font-size: .85rem;
  color: var(--muted);
  font-feature-settings: "tnum";
}

.news-item .cat {
  display: inline-block;
  background: var(--blue-l);
  color: var(--blue-d);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}

.news-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.news-item p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

.news-section-head {
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue-d);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-l);
}

/* フォーム同意チェック */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* アクセス情報 */
.access-block {
  display: grid;
  gap: 20px;
  margin-top: 16px;
}

.access-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--blue-ll);
  border-radius: var(--radius);
  padding: 20px;
}

.access-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.access-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue-d);
  margin-bottom: 4px;
}

.access-card p, .access-card address {
  font-size: .9rem;
  color: var(--text);
  font-style: normal;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .news-item { flex-direction: row; align-items: flex-start; gap: 20px; }
  .news-item__meta { flex-direction: column; gap: 4px; align-items: flex-start; flex-shrink: 0; width: 140px; }
  .access-block { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   レスポンシブ用フォントスケール
   html に設定することで rem 単位が全体一括でスケールする
   - 980px以上：16px（デスクトップ標準・全社基準）
   - 600〜979px：16px（タブレット。縮小しない）
   - 600px未満：16px（スマホ。全社基準の本文16pxを下回らない）
   ============================================= */
@media (max-width: 979px) {
  html { font-size: 16px; }
}
@media (max-width: 599px) {
  html { font-size: 16px; }
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (min-width: 480px) {
  .worry-grid--cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 600px) {
  .worry-grid { grid-template-columns: 1fr 1fr; }
  .course-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid  { grid-template-columns: 1fr 1fr; }
  .teacher-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .header__top { padding: 12px 0; }
  .header__logo .logo-img { height: 58px; }
  .header__tel { display: flex; }
  .hamburger { display: none; }
  .gnav { display: block; }
  .sticky-cta { display: none; }

  .fv__overlay { padding: 36px 6% 40px; }
  .fv__catch { font-size: clamp(1.4rem, 3vw, 2.3rem); }

  .sec-head h2 { font-size: 1.9rem; }

  .reason-grid { grid-template-columns: repeat(3, 1fr); }
  .teacher-grid { grid-template-columns: repeat(3, 1fr); }
  .posts-grid { grid-template-columns: repeat(3, 1fr); }

  .footer__main { grid-template-columns: 1.1fr 2fr; align-items: start; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .footer__info { grid-template-columns: 1.5fr 1fr; align-items: start; }

  .news-fixed { grid-template-columns: 1fr 1fr; }
}

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

@media (min-width: 980px) {
  .course-grid { grid-template-columns: repeat(5, 1fr); }
}

/* スマホでは追従CTAのためにボトムパディング */
@media (max-width: 767px) {
  body { padding-bottom: 56px; }
  /* ヘッダーCTAはロゴ＋ハンバーガーと並ぶと幅に収まらないため非表示（下部の追従CTAで代替） */
  .header__right .btn { display: none; }
}

/* タブレット幅でグローバルナビが折り返さないよう圧縮 */
@media (min-width: 768px) and (max-width: 919px) {
  .gnav a { padding: 13px 8px; font-size: .82rem; }
  .header__tel a { font-size: 1.05rem; }
}

@media (max-width: 599px) {
  section { padding: 44px 0; }
  .sec-head { margin-bottom: 24px; }
  .course-card__img { height: 120px; }
  .stat-item__num { font-size: 2.2rem; }
  .guarantee-box { padding: 28px 18px; }
  .cta-band { padding: 44px 0; }
  .footer__map iframe { height: 150px; }
  .cf-check-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cf-input--half {
    max-width: 100%;
  }
  .cf-input-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ユーティリティ
   ============================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* ===== 改修追記（写真差し込み・体験談）2026-06-16 ===== */

/* お悩み中央：生徒写真を丸く */
.worry-figure img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(20,60,140,.18);
}

/* お知らせ：実写真の比率を揃える */
.news-row__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* 無料体験の流れ：プレースホルダを写真に */
.flow-step__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* 合格者・保護者の声 */
.voice-section { background: var(--blue-ll); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.voice-card {
  position: relative;
  background: #fff;
  margin: 0;
  padding: 26px 28px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(20,60,140,.08);
}
.voice-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eef1f6;
}
.voice-card__avatar {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-ll);
  overflow: hidden;
  display: block;
}
.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.voice-card__mark {
  font-size: 1.05rem;
  color: var(--orange, #f0792e);
  margin-right: 6px;
  vertical-align: top;
}
.voice-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text, #333);
}
.voice-card__cap {
  font-size: .9rem;
  color: #666;
}
.voice-card__cap strong {
  display: block;
  font-size: 1.02rem;
  color: var(--blue-d, #14438c);
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .voice-grid { grid-template-columns: 1fr; gap: 18px; }
  .flow-step__img { width: 120px; height: 120px; }
  .worry-figure img { max-width: 160px; }
}

/* ===== お悩みカード（森塾風・悩みイラスト）2026-06-17 ===== */
.worry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.worry-card2 {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20,60,140,.07);
}
/* 上に小さな吹き出しツノ（森塾風の親しみ） */
.worry-card2::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 4px;
}
.worry-card2__img {
  width: 132px; height: 132px;
  margin: 0 auto 14px;
}
.worry-card2__img img { width: 100%; height: 100%; object-fit: contain; }
.worry-card2__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-d);
  line-height: 1.5;
  margin-bottom: 10px;
}
.worry-card2__text {
  font-size: .92rem;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 880px) {
  .worry-cards { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 480px) {
  .worry-cards { gap: 12px; }
  .worry-card2 { padding: 22px 12px 18px; }
  .worry-card2__img { width: 104px; height: 104px; }
  .worry-card2__title { font-size: .98rem; }
}

/* ===== FV 森塾風（中央寄せ・少し小さめ・1600×840バナーを全表示）2026-06-17 ===== */
.fv { padding: 22px 0 26px; background: var(--blue-ll); }
.fv-swiper {
  width: 100%;                    /* 全幅（左右の覗きが画面端まで）*/
  overflow: hidden;
}
.fv-swiper .swiper-slide {
  aspect-ratio: 40 / 21;          /* バナー1600×840の比率に一致＝横長に潰れない・全表示 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(20,60,140,.12);
  transition: opacity .3s;
}
/* 中央以外は少し控えめに（森塾風の中央強調・白枠は出さない） */
.fv-swiper .swiper-slide:not(.swiper-slide-active) { opacity: .82; }
.fv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* 全スライド1600×840なので実質トリミングなし */
  object-position: center center;
}
/* 前後矢印（森塾風） */
.fv-swiper .swiper-button-prev,
.fv-swiper .swiper-button-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  color: var(--blue);
}
.fv-swiper .swiper-button-prev::after,
.fv-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 900; }
.fv-swiper .swiper-pagination { bottom: 10px; }
.fv-swiper .swiper-pagination-bullet { background: #fff; opacity: .7; box-shadow: 0 0 3px rgba(0,0,0,.3); }
.fv-swiper .swiper-pagination-bullet-active { background: var(--orange); opacity: 1; }
@media (max-width: 599px) {
  .fv-swiper .swiper-button-prev, .fv-swiper .swiper-button-next { display: none; }
}

/* ===== お悩み：中央イラスト＋四隅の吹き出し（参考レイアウト）2026-06-17 ===== */
.only-sp { display: none; }
.worry-stage {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px) 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "tl fig tr"
    "bl fig br";
  align-items: center;
  gap: 26px 30px;
  max-width: 1040px;
  margin: 0 auto;
}
.worry-stage__fig { grid-area: fig; text-align: center; }
.worry-stage__fig img {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  display: block;
}
.wbubble--tl { grid-area: tl; }
.wbubble--tr { grid-area: tr; }
.wbubble--bl { grid-area: bl; }
.wbubble--br { grid-area: br; }

.wbubble {
  position: relative;
  background: #fbf2e4;             /* やわらかいベージュ（参考画像） */
  border-radius: 16px;
  padding: 20px 22px;
}
.wbubble__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--blue-d);
  font-size: clamp(1.05rem, 1vw + .7rem, 1.18rem); /* PCで約18px・画面幅で調整 */
  line-height: 1.45;
  margin-bottom: 8px;
}
.wbubble__ttl i { color: var(--orange); font-size: 1.1rem; flex: none; }
.wbubble__txt { font-size: 1rem; color: #6d6456; line-height: 1.75; }

/* 吹き出しのしっぽ（中央のイラストへ向ける） */
.wbubble::after {
  content: "";
  position: absolute;
  top: 32px;
  width: 0; height: 0;
  border: 11px solid transparent;
}
.wbubble--tl::after, .wbubble--bl::after { right: -18px; border-left-color: #fbf2e4; }
.wbubble--tr::after, .wbubble--br::after { left: -18px; border-right-color: #fbf2e4; }

/* タブレット以下：イラストを上、吹き出しを2×2 */
@media (max-width: 860px) {
  .worry-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "fig fig"
      "tl  tr"
      "bl  br";
    gap: 16px;
  }
  .worry-stage__fig { max-width: 280px; margin: 0 auto 6px; }
  .wbubble::after { display: none; }
  .only-sp { display: inline; }
}
@media (max-width: 480px) {
  .worry-stage {
    grid-template-columns: 1fr;
    grid-template-areas: "fig" "tl" "tr" "bl" "br";
  }
  .wbubble__ttl { font-size: 1.05rem; }
}

/* ===== お任せ（イラスト＋見出し）＋ 選ばれる理由（森塾風）2026-06-17 ===== */
.omakase-section { background: linear-gradient(180deg,#fff7ee 0%,#fdeedd 100%); }
.omakase2 { display: flex; align-items: center; gap: 40px; }
.omakase2__fig { flex: 0 0 36%; max-width: 360px; }
.omakase2__fig img { width: 100%; display: block; }
.omakase2__body { flex: 1; min-width: 0; }
.omakase2__lead { font-size: 1.15rem; font-weight: 800; color: var(--blue-d); margin-bottom: 2px; }
.omakase2__head {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 900; color: var(--blue-d); line-height: 1.4; margin-bottom: 16px;
}
.omakase2__head mark {
  background: linear-gradient(transparent 55%, #ffe08a 55%);
  color: var(--orange-d); padding: 0 4px;
}
.omakase2__sub { font-size: 1rem; line-height: 1.95; color: var(--text); margin-bottom: 22px; }
.omakase2__sub strong { color: var(--blue-d); }
@media (max-width: 780px) {
  .omakase2 { flex-direction: column; text-align: center; gap: 16px; }
  .omakase2__fig { max-width: 240px; }
}

/* 選ばれる理由（森塾風：宣言バッジ → 数字カード） */
.reason-section { text-align: center; }
.reason-badge {
  position: relative; display: inline-block;
  background: var(--blue); color: #fff; font-weight: 800;
  font-size: clamp(1.02rem, 2.4vw, 1.25rem);
  padding: 13px 32px; border-radius: 999px; margin-bottom: 30px;
}
.reason-badge em { color: #ffe08a; font-style: normal; font-size: 1.35em; margin: 0 2px; }
.reason-badge::after {
  content: ""; position: absolute; bottom: -11px; left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent; border-top-color: var(--blue); border-bottom: 0;
}
.reason-heading { font-size: clamp(1.5rem, 4.2vw, 2.1rem); font-weight: 900; color: var(--blue-d); margin-bottom: 40px; }
.reason-heading em { color: var(--orange); font-style: normal; }

.reason-grid--num { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.reason-grid--num .reason-card {
  position: relative; background: #fff;
  border: 2px solid var(--blue-l); border-radius: 18px;
  padding: 44px 24px 28px; box-shadow: 0 8px 24px rgba(20,60,140,.07);
  text-align: center;
}
.reason-card__no {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; font-weight: 900; font-size: 1.2rem;
  border-radius: 50%; box-shadow: 0 5px 12px rgba(20,60,140,.28);
}
.reason-grid--num .reason-card__icon { font-size: 2.3rem; color: var(--orange); margin-bottom: 12px; }
.reason-grid--num .reason-card h3 { font-size: 1.22rem; color: var(--blue-d); margin-bottom: 12px; line-height: 1.4; }
.reason-grid--num .reason-card p { font-size: 1rem; color: var(--text); line-height: 1.85; text-align: left; }
@media (max-width: 780px) {
  .reason-grid--num { grid-template-columns: 1fr; gap: 34px; }
}

/* 理由カードを「支給写真トップ＋原稿テキスト」に上書き 2026-06-17 */
.reason-grid--num .reason-card { padding: 0 0 26px; overflow: hidden; text-align: left; }
.reason-card__photo { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.reason-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.reason-card__no { top: 12px; left: 12px; transform: none; z-index: 2; }
.reason-grid--num .reason-card h3 { padding: 18px 22px 0; text-align: left; }
.reason-grid--num .reason-card p { padding: 8px 22px 0; text-align: left; }

/* ===== 成績向上宣言（イラスト＋大きな宣言）2026-06-17 ===== */
.guarantee2 { background: linear-gradient(180deg,#eaf2fb 0%,#f4f9ff 100%); }
.guarantee2__in { display: flex; align-items: center; gap: 44px; }
.guarantee2__fig { flex: 0 0 32%; max-width: 300px; }
.guarantee2__fig img { width: 100%; display: block; }
.guarantee2__body { flex: 1; min-width: 0; }
.guarantee2__eyebrow { display: inline-block; color: var(--orange); font-weight: 900; font-size: .82rem; letter-spacing: .1em; margin-bottom: 8px; }
.guarantee2__big { font-size: clamp(1.8rem,5vw,2.8rem); font-weight: 900; color: var(--blue-d); line-height: 1.3; margin-bottom: 14px; }
.guarantee2__big em { color: var(--orange); font-style: normal; font-size: 1.25em; }
.guarantee2__lead { font-size: 1rem; line-height: 1.95; color: var(--text); margin-bottom: 18px; }
.guarantee2__lead strong { color: var(--blue-d); }
.guarantee2__promise { background: #fff; border-left: 5px solid var(--orange); border-radius: 10px; padding: 15px 18px; font-size: 1rem; line-height: 1.7; color: var(--blue-d); box-shadow: 0 4px 16px rgba(20,60,140,.08); }
.guarantee2__promise i { color: var(--orange); margin-right: 6px; }
.guarantee2__promise strong { color: var(--orange-d); }
@media (max-width: 780px) {
  .guarantee2__in { flex-direction: column; text-align: center; gap: 18px; }
  .guarantee2__fig { max-width: 220px; }
  .guarantee2__promise { text-align: left; }
}

/* ===== 料金（学年別ミニカード）===== */
.price-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 22px; }
.price-mini { background: #fff; border: 2px solid var(--blue-l); border-radius: 14px; padding: 22px 10px; text-align: center; box-shadow: 0 6px 18px rgba(20,60,140,.06); }
.price-mini__cat { font-size: .95rem; font-weight: 800; color: var(--blue-d); margin-bottom: 8px; }
.price-mini__amt { font-size: 1.5rem; font-weight: 900; color: var(--orange-d); line-height: 1.1; }
.price-mini__amt span { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); margin-top: 5px; }
.price-mini--accent { border-color: var(--orange); background: var(--orange-l); }
.price-note-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .price-grid { gap: 10px; } .price-mini { padding: 16px 8px; } .price-mini__amt { font-size: 1.3rem; } }

/* ===== 修正・追加 2026-06-17 (2) ===== */
/* 成績向上宣言：小さい文字を大きく＋左の色帯を廃止 */
.guarantee2__eyebrow { font-size: .95rem; }
.guarantee2__title { font-size: clamp(1.4rem,3.5vw,1.95rem); font-weight: 900; color: var(--blue-d); line-height: 1.3; margin-bottom: 10px; }
.guarantee2__promise { border-left: 0 !important; background: var(--orange-l); border-radius: 12px; }

/* 料金：学年カラーの料金カード */
.fee-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 18px; align-items: start; }
.fee-card { border: 2px solid var(--c); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 6px 18px rgba(20,60,140,.06); }
.fee-card__cat { background: var(--c); color: #fff; font-weight: 900; text-align: center; padding: 11px 6px; font-size: 1.02rem; line-height: 1.3; }
.fee-card__cat small { font-size: .72rem; font-weight: 700; }
.fee-card__list { padding: 8px 14px 14px; }
.fee-card__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 9px 0; border-bottom: 1px dashed #e8e8e8; font-size: 1rem; color: var(--text); }
.fee-card__list li:last-child { border-bottom: 0; }
.fee-card__list li span { white-space: nowrap; }
.fee-card__list b { color: var(--c); font-weight: 900; white-space: nowrap; }
@media (max-width: 880px) { .fee-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fee-grid { grid-template-columns: 1fr; } }

/* クラス紹介：左右交互のジグザグ */
.course-zig { display: flex; flex-direction: column; gap: 28px; max-width: 960px; margin: 0 auto; }
.czrow { display: flex; align-items: center; gap: 34px; }
.czrow:nth-child(even) { flex-direction: row-reverse; }
.czrow__img { flex: 0 0 46%; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(20,60,140,.12); }
.czrow__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 18%; display: block; }
.czrow__body { flex: 1; min-width: 0; }
.czrow__label { color: var(--c); font-weight: 900; font-size: .8rem; letter-spacing: .1em; }
.czrow__title { font-size: clamp(1.3rem,3vw,1.6rem); color: var(--c); font-weight: 900; margin: 4px 0 10px; }
.czrow__text { font-size: 1rem; line-height: 1.9; color: var(--text); margin-bottom: 10px; }
.czrow__price { font-weight: 900; color: var(--orange-d); font-size: 1.15rem; }
@media (max-width: 680px) { .czrow, .czrow:nth-child(even) { flex-direction: column; } .czrow__img { flex: none; width: 100%; } }

/* 選ばれる理由：minikura風 大きな縦並びカード（左右交互） */
.reason-rows { display: flex; flex-direction: column; gap: 30px; max-width: 1000px; margin: 0 auto; }
.rrow { display: flex; align-items: stretch; background: #fff; border-radius: 20px; box-shadow: 0 12px 32px rgba(20,60,140,.10); overflow: hidden; text-align: left; }
.rrow:nth-child(even) { flex-direction: row-reverse; }
.rrow__body { flex: 1; padding: 38px 42px; display: flex; flex-direction: column; justify-content: center; }
.rrow__no { color: var(--orange); font-weight: 900; letter-spacing: .08em; font-size: 1rem; margin-bottom: 8px; }
.rrow__title { font-size: clamp(1.3rem,3vw,1.7rem); color: var(--blue-d); font-weight: 900; margin-bottom: 14px; line-height: 1.4; }
.rrow__text { font-size: 1rem; line-height: 1.9; color: var(--text); }
.rrow__img { flex: 0 0 44%; }
.rrow__img img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; display: block; }
@media (max-width: 780px) { .rrow, .rrow:nth-child(even) { flex-direction: column; } .rrow__img { flex: none; width: 100%; } .rrow__img img { min-height: 0; aspect-ratio: 16/9; } .rrow__body { padding: 26px 24px; } }

/* ===== 無料体験＝アイコン化／assure・保証文の脱「AI感ボックス」 2026-06-17 ===== */
.flow-step__ico {
  width: 110px; height: 110px; aspect-ratio: 1 / 1;
  border-radius: 50%; background: var(--blue-ll); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.7rem; margin: 0 auto;
}
@media (max-width: 680px) { .flow-step__ico { width: 92px; height: 92px; font-size: 2.3rem; } }

/* 「入塾前提ではありません」＝ボックスをやめてシンプルな一文に */
.assure2 { text-align: center; color: var(--green,#1a8f4a); font-weight: 700; font-size: 1rem; margin-top: 30px; }
.assure2 i { margin-right: 6px; }

/* 成績向上宣言の保証文＝丸角チェックボックスをやめ「タグ＋マーカー」に */
.guarantee2__promise { background: none !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; padding: 0 !important; font-size: 1rem; line-height: 1.85; color: var(--text); }
.guarantee2__tag { display: inline-block; background: var(--orange); color: #fff; font-weight: 900; font-size: .8rem; padding: 3px 12px; border-radius: 6px; margin-right: 8px; vertical-align: middle; }
.hl-orange { background: linear-gradient(transparent 55%, #ffd9b0 55%); color: inherit; font-weight: 800; padding: 0 2px; }

/* ===== 料金：イラスト＋「わかりやすい理由」（5枚グリッド/緑ピルを廃止）2026-06-17 ===== */
.ryokin { display: flex; flex-direction: row-reverse; align-items: center; gap: 48px; }
.ryokin__fig { flex: 0 0 40%; max-width: 380px; }
.ryokin__fig img { width: 100%; display: block; }
.ryokin__body { flex: 1; min-width: 0; }
.ryokin__eyebrow { color: var(--orange); font-weight: 900; font-size: .82rem; letter-spacing: .18em; margin-bottom: 6px; }
.ryokin__head { font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 900; color: var(--blue-d); margin-bottom: 14px; }
.ryokin__lead { font-size: 1rem; line-height: 1.95; color: var(--text); margin-bottom: 22px; }
.ryokin__points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.ryokin__points li { font-size: 1rem; line-height: 1.7; color: var(--text); }
.ryokin__points b { display: block; color: var(--blue-d); font-size: 1.1rem; margin-bottom: 3px; }
.ryokin__points b::before { content: ""; display: inline-block; width: 11px; height: 11px; background: var(--orange); border-radius: 3px; margin-right: 9px; transform: rotate(45deg); vertical-align: middle; }
.ryokin__note { font-size: .9rem; color: var(--muted); margin-bottom: 20px; }
@media (max-width: 780px) {
  .ryokin { flex-direction: column; text-align: center; gap: 20px; }
  .ryokin__fig { max-width: 250px; }
  .ryokin__points { text-align: left; }
}

/* ===== 実績：イラスト＋全員合格＋数値（枠囲みボックスを廃止）2026-06-17 ===== */
.result2 { display: flex; align-items: center; gap: 48px; max-width: 960px; margin: 0 auto; }
.result2__fig { flex: 0 0 40%; max-width: 360px; }
.result2__fig img { width: 100%; display: block; }
.result2__body { flex: 1; min-width: 0; }
.result2__tag { display: inline-block; background: var(--blue); color: #fff; font-weight: 900; padding: 4px 18px; border-radius: 999px; font-size: .85rem; margin-bottom: 12px; }
.result2__main { font-size: clamp(1.7rem,4vw,2.3rem); font-weight: 900; color: var(--blue-d); line-height: 1.25; margin-bottom: 14px; }
.result2__main mark { background: linear-gradient(transparent 55%, #ffd9a8 55%); color: var(--orange-d); padding: 0 .1em; }
.result2__lead { font-size: 1rem; line-height: 1.95; color: var(--text); margin-bottom: 22px; }
.result2__stats { display: flex; gap: 20px; flex-wrap: wrap; }
.rstat { flex: 1; min-width: 150px; background: var(--blue-ll); border-radius: 14px; padding: 16px 18px; }
.rstat__num { display: block; font-size: 1.7rem; font-weight: 900; color: var(--blue); line-height: 1.1; }
.rstat__num small { font-size: 1.05rem; }
.rstat__label { display: block; font-size: .82rem; color: var(--muted); margin-top: 6px; line-height: 1.6; }
@media (max-width: 780px) {
  .result2 { flex-direction: column; text-align: center; gap: 18px; }
  .result2__fig { max-width: 240px; }
  .result2__stats { text-align: left; }
}

/* ===== 講師：イラスト＋ポイント（アイコン3カードを廃止）2026-06-17 ===== */
.teacher2 { display: flex; flex-direction: row-reverse; align-items: center; gap: 48px; max-width: 960px; margin: 0 auto; }
.teacher2__fig { flex: 0 0 42%; max-width: 400px; }
.teacher2__fig img { width: 100%; display: block; }
.teacher2__points { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.teacher2__points li { font-size: 1rem; line-height: 1.85; color: var(--text); }
.teacher2__points b { display: block; color: var(--blue-d); font-size: 1.15rem; margin-bottom: 4px; }
.teacher2__points b::before { content: ""; display: inline-block; width: 11px; height: 11px; background: var(--orange); border-radius: 3px; margin-right: 9px; transform: rotate(45deg); vertical-align: middle; }
@media (max-width: 780px) {
  .teacher2 { flex-direction: column; gap: 20px; }
  .teacher2__fig { max-width: 260px; }
}
