/* ============ Reset & Base ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: #0a0a0a;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

:root {
  --red: #E60023;
  --red-deep: #B0001B;
  --red-light: #FF3247;
  --black: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-800: #2a2a2a;
  --gray-600: #6a6a6a;
  --gray-300: #d5d5d5;
  --gray-200: #ececec;
  --gray-100: #f5f5f5;
  --yellow: #FFD400;
  --cream: #FFF9F0;
  --font-en: 'Bebas Neue', 'Roboto', sans-serif;
  --font-heading: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}

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

/* ============ Loader ============ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s .4s ease, visibility 0s 1s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo {
  width: 60px; height: 60px; margin: 0 auto 20px;
  background: var(--red);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  animation: loaderPulse 1s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.15) rotate(3deg); }
}
.loader__bar {
  width: 200px; height: 3px; background: #333; margin: 0 auto;
  overflow: hidden; border-radius: 2px;
}
.loader__bar span {
  display: block; width: 100%; height: 100%; background: var(--red);
  animation: loaderBar 1.2s ease-out forwards;
}
@keyframes loaderBar {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* ============ Header ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 40px;
  display: flex; align-items: center; gap: 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: transform .4s ease, padding .3s ease;
}
.header.is-scrolled { padding: 8px 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.header.is-hidden { transform: translateY(-100%); }
.header__logo { flex-shrink: 0; }
.header__logo img { height: 40px; }
.header.is-scrolled .header__logo img { height: 34px; }
.header__nav {
  display: flex; gap: 28px; flex: 1;
  font-size: 14px; font-weight: 700;
}
.header__nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.header__nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.header__nav a:hover { color: var(--red); }
.header__nav a:hover::after { transform: scaleX(1); }
.header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 900; letter-spacing: 0.03em;
  transition: transform .2s, box-shadow .3s;
  box-shadow: 0 6px 20px rgba(230,0,35,0.35);
}
.header__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(230,0,35,0.45); }
.header__burger { display: none; width: 32px; height: 24px; position: relative; }
.header__burger span {
  position: absolute; left: 0; right: 0; height: 3px;
  background: var(--black); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.header__burger span:nth-child(1) { top: 0; }
.header__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__burger span:nth-child(3) { bottom: 0; }
.header__burger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.pulse-dot--white { background: #fff; }
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* ============ Mobile Menu ============ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 10, 10, 0.98);
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility 0s .4s;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; transition: opacity .4s; }
.menu-overlay__inner {
  padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 24px;
  color: #fff;
}
.menu-overlay__inner a {
  font-size: 24px; font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 16px;
}
.menu-overlay__tel {
  margin-top: 24px;
  color: var(--red-light) !important;
  font-family: var(--font-en) !important;
  font-size: 40px !important;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  overflow: hidden;
  background: #fff;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blob 8s ease-in-out infinite;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,0,35,0.6), transparent 70%);
  top: -100px; right: -100px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,212,0,0.4), transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -4s;
}
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero__marquee {
  position: absolute; left: 0; right: 0;
  overflow: hidden;
  padding: 12px 0;
  background: var(--black);
  color: #fff;
  z-index: 2;
}
.hero__marquee--top { top: 80px; transform: rotate(-2deg); left: -5%; right: -5%; }
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: 24px; letter-spacing: 0.08em;
  animation: marquee 20s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__content {
  position: relative; z-index: 3;
  max-width: 1300px; margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__text { min-width: 0; }
.hero__photo {
  position: relative;
  opacity: 0; animation: fadeUp 1s 1.4s forwards;
}
.hero__photo-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 10px 30px rgba(230,0,35,0.15);
  transform: rotate(2deg);
  border: 5px solid #fff;
}
.hero__photo-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(230,0,35,0.15) 100%);
  z-index: 2; pointer-events: none;
}
.hero__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroImgZoom 12s ease-in-out infinite alternate;
}
@keyframes heroImgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__photo-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  z-index: 5;
  background: var(--red);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(230,0,35,0.4);
  transform: rotate(-4deg);
  border: 4px solid #fff;
}
.hero__photo-badge-num {
  display: block;
  font-family: var(--font-en);
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero__photo-badge-num em {
  font-style: normal;
  opacity: 0.6;
  margin: 0 4px;
}
.hero__photo-badge-txt {
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero__photo-tag {
  position: absolute;
  top: -14px; right: -14px;
  z-index: 5;
  background: var(--black);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  transform: rotate(4deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
}
.badge-red {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  font-size: 11px; letter-spacing: 0.15em;
}
.eyebrow-line { width: 40px; height: 1px; background: var(--black); }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--black);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span,
.hero__title .line em,
.hero__title .line b,
.hero__title .line strong {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  animation: heroLine .9s cubic-bezier(.2,.9,.2,1) forwards;
  font-style: normal;
  font-weight: 900;
}
.hero__title .line-1 span { animation-delay: 1.0s; }
.hero__title .line-2 em { animation-delay: 1.1s; }
.hero__title .line-3 b { animation-delay: 1.2s; }
.hero__title .line-4 strong { animation-delay: 1.3s; }
.hero__title em { color: var(--red); }
.hero__title strong { color: var(--red); }
@keyframes heroLine {
  to { transform: translateY(0); opacity: 1; }
}
.hero__title .line-2 em::before {
  content: ''; position: absolute; inset: -10px -6px;
  border: 3px solid var(--red); border-radius: 4px;
  transform: rotate(-2deg); pointer-events: none;
  opacity: 0;
}

.hero__lead {
  max-width: 640px;
  font-size: 16px; line-height: 1.9;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp .8s 1.6s forwards;
}
.hero__lead b { color: var(--red); font-weight: 900; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0; animation: fadeUp .8s 1.8s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 900; font-size: 15px; letter-spacing: 0.03em;
  transition: transform .2s, box-shadow .3s, background .3s;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 24px rgba(230,0,35,0.35);
}
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(230,0,35,0.45); }
.btn--ghost {
  background: transparent; color: var(--black);
  border: 2px solid var(--black);
}
.btn--ghost:hover { background: var(--black); color: #fff; }
.btn--large { padding: 20px 40px; font-size: 17px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--black);
  color: #fff;
  border-radius: 20px;
  opacity: 0; animation: fadeUp .8s 2.0s forwards;
  position: relative; overflow: hidden;
}
.hero__stats::before {
  content: ''; position: absolute; top: 0; right: -20%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(230,0,35,0.5), transparent);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%,100% { transform: translateX(-100%); }
  50% { transform: translateX(400%); }
}
.stat { text-align: center; position: relative; }
.stat__num {
  font-family: var(--font-en);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--red-light);
  letter-spacing: 0.02em;
}
.stat__num small {
  font-family: var(--font-heading);
  font-size: 0.4em;
  color: #fff; margin-left: 4px;
}
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.hero__side {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.scroll-hint {
  writing-mode: vertical-rl;
  font-family: var(--font-en); font-size: 12px;
  letter-spacing: 0.3em;
  display: flex; align-items: center; gap: 12px;
}
.scroll-hint__line {
  width: 1px; height: 60px; background: var(--black);
  position: relative; overflow: hidden;
}
.scroll-hint__line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ============ News Ticker ============ */
.news-ticker {
  display: flex; align-items: stretch;
  background: var(--red);
  color: #fff;
  overflow: hidden;
}
.news-ticker__label {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--black);
  font-family: var(--font-en);
  font-size: 16px; letter-spacing: 0.15em;
  flex-shrink: 0;
}
.news-ticker__scroll {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
}
.news-ticker__track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 20px;
}
.news-ticker__item { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; }
.news-ticker__item time { font-family: var(--font-en); font-size: 13px; opacity: 0.85; letter-spacing: 0.05em; }
.news-ticker__item .cat {
  display: inline-block; padding: 2px 8px;
  background: rgba(255,255,255,0.2); border-radius: 3px;
  font-size: 11px; font-weight: 700;
}

/* ============ Sections ============ */
.section {
  padding: 120px 40px;
  position: relative;
  max-width: 1400px; margin: 0 auto;
}
.section--dark {
  background: var(--black); color: #fff;
  max-width: none;
  padding-left: 40px; padding-right: 40px;
}
.section--gray {
  background: var(--gray-100);
  max-width: none;
  padding-left: 40px; padding-right: 40px;
}
.section__label {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-en);
  font-size: 16px; letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 20px;
}
.section__label span:first-child {
  font-size: 40px; line-height: 1;
  color: var(--red);
}
.section__label--white { color: #fff; }
.section__label--white span:first-child { color: var(--red); }
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}
.section__title--white { color: #fff; }
.compare__title {
  font-size: clamp(28px, 8vw, 84px);
  white-space: nowrap;
}
@media (max-width: 500px) {
  .compare__title { font-size: 9vw; }
}
.big-red { color: var(--red); font-style: normal; }
/* Force a line break only on narrow (smartphone) viewports, to avoid awkward
   mid-word wraps in section titles while keeping single-line layout on
   larger screens where there's enough horizontal space. */
.sp-only { display: none; }
@media (max-width: 640px) {
  .sp-only { display: block; content: ""; }
}
.vs {
  display: inline-block;
  font-family: var(--font-en);
  color: var(--red);
  margin: 0 8px;
  transform: rotate(-5deg);
}
.section__lead {
  font-size: 17px; line-height: 1.9;
  max-width: 720px;
  margin-bottom: 60px;
  color: var(--gray-600);
}
.section__lead--white { color: rgba(255,255,255,0.75); }
.section__lead b { color: var(--red); font-weight: 900; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.9,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============ Feature ============ */
.feature__image {
  position: relative;
  margin: 40px 0 60px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  border: 3px solid var(--black);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.feature__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.feature__image:hover img { transform: scale(1.04); }
.feature__image-caption {
  position: absolute;
  left: 40px; bottom: 40px;
  padding: 24px 32px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border-left: 5px solid var(--red);
  color: #fff;
  max-width: 500px;
}
.feature__image-caption span {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--red-light);
  margin-bottom: 4px;
}
.feature__image-caption strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.feature__hero {
  margin: 60px 0 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  border-radius: 24px;
  border: 3px solid var(--black);
  position: relative;
  overflow: hidden;
}
.feature__hero::before {
  content: '1:2';
  position: absolute; right: -40px; bottom: -60px;
  font-family: var(--font-en);
  font-size: 300px; line-height: 1;
  color: var(--red); opacity: 0.06;
  pointer-events: none;
}

.oneOnTwo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.oneOnTwo__teacher {
  text-align: center;
}
.oneOnTwo__students {
  display: flex; gap: 24px;
  justify-content: center;
}
.oneOnTwo__student { text-align: center; }
.avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
  color: #fff;
  position: relative;
  margin: 0 auto 12px;
}
.avatar--teacher {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 30px rgba(230,0,35,0.3);
}
.avatar--s1, .avatar--s2 {
  background: var(--black);
  width: 80px; height: 80px;
  font-size: 14px;
}
.avatar--s1 { background: var(--gray-800); }
.avatar--s2 { background: var(--gray-800); }
.oneOnTwo__ticket {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gray-600);
}
.oneOnTwo__link {
  width: 80px; height: 4px;
  background: var(--black);
  position: relative;
}
.oneOnTwo__link::before,
.oneOnTwo__link::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  animation: linkPulse 2s ease-in-out infinite;
}
.oneOnTwo__link::after { animation-delay: -1s; }
@keyframes linkPulse {
  0%,100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}
.oneOnTwo__watermark {
  position: absolute; right: 0; top: 0;
  font-family: var(--font-en);
  font-size: 20px; letter-spacing: 0.1em;
  color: var(--red);
  writing-mode: vertical-rl;
}

.feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  padding: 40px 32px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--red);
  transition: height .4s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(230,0,35,0.1);
}
.feat-card:hover::before { height: 100%; }
.feat-card__num {
  font-family: var(--font-en);
  font-size: 40px; line-height: 1;
  color: var(--red);
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 900;
  margin-bottom: 12px;
}
.feat-card p { font-size: 14px; color: var(--gray-600); }

/* ============ Compare ============ */
.compare__table {
  display: grid;
  gap: 8px;
  max-width: 1100px; margin: 0 auto;
}
.compare__row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.compare__row--head .compare__cell {
  background: var(--gray-800);
  color: #fff;
  font-weight: 900;
  padding: 20px; text-align: center;
  font-family: var(--font-heading);
  font-size: 18px;
}
.compare__row--head .compare__cell--ind {
  background: var(--red); position: relative;
}
.compare__cell {
  padding: 24px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex; align-items: center;
  font-size: 15px;
}
.compare__cell--label {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  justify-content: center;
  font-family: var(--font-heading);
}
.compare__row--head .compare__cell--label {
  background: var(--red);
}
.compare__cell--group {
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
  text-decoration-color: rgba(255,80,80,0.6);
  text-decoration-thickness: 2px;
}
.compare__cell--ind {
  background: rgba(230,0,35,0.15);
  color: #fff; font-weight: 700;
  border: 2px solid var(--red);
  position: relative;
}
.compare__cell--ind::after {
  content: '✓'; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--red-light);
  font-size: 24px; font-weight: 900;
}
.compare__row--head .compare__cell--ind .badge-red {
  background: #fff; color: var(--red);
  margin-right: 8px;
}
.compare__row--head .compare__cell--ind::after { content: none; }

/* ============ Course ============ */
.course__tabs {
  display: flex; gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gray-200);
  overflow-x: auto;
}
.course__tab {
  padding: 20px 32px;
  color: var(--gray-600);
  text-align: left;
  border-bottom: 4px solid transparent;
  transition: all .3s;
  flex-shrink: 0;
  margin-bottom: -2px;
}
.course__tab:hover { color: var(--black); }
.course__tab.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.course__tab-en {
  display: block;
  font-family: var(--font-en);
  font-size: 14px; letter-spacing: 0.15em;
}
.course__tab-jp {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 900;
  margin-top: 4px;
}
.course__panel {
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  animation: fadeUp .5s ease;
}
.course__panel.is-active { display: grid; }
.course__lead h3 {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 900;
  line-height: 1.2;
  margin: 20px 0 20px;
}
.course__num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 48px; line-height: 1;
  color: var(--red);
  padding-bottom: 8px;
  border-bottom: 4px solid var(--red);
}
.course__lead p {
  font-size: 15px; line-height: 1.9;
  color: var(--gray-600);
}
.course__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.point-card {
  padding: 32px 24px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.point-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.point-card__icon {
  width: 50px; height: 50px;
  color: var(--red);
  margin-bottom: 16px;
}
.point-card__icon svg { width: 100%; height: 100%; }
.point-card h4 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 900;
  margin-bottom: 10px;
}
.point-card p { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* ============ Eiken ============ */
.eiken__hero {
  position: relative;
  margin: 40px 0 60px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border: 3px solid var(--black);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.eiken__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.eiken__hero-overlay {
  position: absolute;
  left: 40px; bottom: 40px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-left: 5px solid var(--red);
  max-width: 420px;
}
.eiken__hero-tag {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 4px;
}
.eiken__hero-overlay strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--black);
  display: block;
}
.eiken__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============ Care ============ */
.care__hero {
  position: relative;
  margin: 40px 0 60px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border: 3px solid var(--black);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.care__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.care__hero-overlay {
  position: absolute;
  right: 40px; bottom: 40px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-right: 5px solid var(--red);
  text-align: right;
  max-width: 400px;
}
.care__hero-tag {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 4px;
}
.care__hero-overlay strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--black);
  display: block;
}

.care__panel-photo {
  width: 100%; height: 240px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.care__panel-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.care__panel:hover .care__panel-photo img { transform: scale(1.06); }

.care__story {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 40px;
}
.care__panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  border: 3px solid var(--black);
  position: relative;
}
.care__panel--reverse {
  grid-template-columns: 1fr 320px;
}
.care__panel--reverse .care__panel-illust { order: 2; }
.care__panel-num {
  position: absolute; top: -14px; left: 30px;
  padding: 4px 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px; letter-spacing: 0.1em;
  border-radius: 4px;
}
.care__panel-illust {
  width: 100%; height: 240px;
  background: var(--gray-100);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.care__panel-text h3 {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 900;
  margin-bottom: 12px;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}
.care__panel-text p { color: var(--gray-600); }

/* Illustrations */
.illust-figure { position: relative; width: 100%; height: 100%; }
.illust-figure--worry { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.illust-head {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fdd; border: 3px solid var(--black);
  position: relative;
}
.illust-head::before, .illust-head::after {
  content: ''; position: absolute;
  width: 6px; height: 6px; background: var(--black);
  border-radius: 50%; top: 22px;
}
.illust-head::before { left: 15px; }
.illust-head::after { right: 15px; }
.illust-body {
  width: 90px; height: 80px;
  background: var(--red);
  border: 3px solid var(--black);
  border-radius: 12px 12px 4px 4px;
  margin-top: -5px;
}
.illust-thought {
  position: absolute; top: 10px; right: 40px;
  display: flex; gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.illust-thought::before {
  content: ''; position: absolute; bottom: -8px; left: 20px;
  width: 12px; height: 12px;
  background: #fff;
  border: 2px solid var(--black);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.illust-thought span { display: block; padding: 2px 6px; background: var(--gray-100); border-radius: 3px; }

.illust-head--teacher {
  background: #ffe4c4; border-color: var(--black);
}
.illust-head--teacher::after,
.illust-head--teacher::before { background: var(--black); }
.illust-body--teacher {
  background: var(--black);
  width: 90px; height: 80px;
  border-radius: 12px 12px 4px 4px;
  margin-top: -5px;
  position: relative;
}
.illust-body--teacher::after {
  content: ''; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px;
  background: var(--red);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}
.illust-speech {
  position: absolute; top: 20px; right: 20px;
  padding: 12px 16px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 12px;
  font-size: 13px; font-weight: 900;
  line-height: 1.4;
}
.illust-speech::before {
  content: ''; position: absolute; bottom: -10px; left: 30px;
  width: 14px; height: 14px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

.illust-figure--back { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 20px; }
.illust-back-arrow {
  width: 100px; color: var(--red);
}
.illust-back-arrow svg { width: 100%; height: auto; }
.illust-back-text {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 900;
  color: var(--black);
  text-align: center;
  line-height: 1.4;
}
.illust-back-text::after {
  content: 'BACK'; display: block;
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  letter-spacing: 0.2em;
}

.illust-figure--success { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.illust-star {
  font-size: 60px; color: var(--yellow);
  text-shadow: 0 0 0 var(--black), 2px 2px 0 var(--black), -2px 2px 0 var(--black), 2px -2px 0 var(--black), -2px -2px 0 var(--black);
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.illust-100 {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 900;
  color: var(--red);
  margin-top: 8px;
  padding: 6px 20px;
  background: #fff;
  border: 3px solid var(--red);
  border-radius: 999px;
  transform: rotate(-3deg);
}
.illust-lines { position: absolute; inset: 0; }
.illust-lines span {
  position: absolute;
  width: 3px; height: 30px;
  background: var(--red);
}
.illust-lines span:nth-child(1) { top: 20%; left: 10%; transform: rotate(-30deg); }
.illust-lines span:nth-child(2) { top: 20%; right: 10%; transform: rotate(30deg); }
.illust-lines span:nth-child(3) { bottom: 15%; left: 15%; transform: rotate(45deg); }
.illust-lines span:nth-child(4) { bottom: 15%; right: 15%; transform: rotate(-45deg); }

/* ============ Year ============ */
.year__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.year__timeline::before {
  content: ''; position: absolute;
  top: 30px; left: 5%; right: 5%; height: 3px;
  background: repeating-linear-gradient(90deg, var(--red) 0 12px, transparent 12px 20px);
  z-index: 0;
}
.year__season {
  padding: 60px 24px 32px;
  background: #fff;
  border: 3px solid var(--black);
  border-radius: 16px;
  position: relative;
  transition: transform .3s;
}
.year__season:hover { transform: translateY(-6px); }
.year__season-tag {
  position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px; letter-spacing: 0.15em;
  border-radius: 999px;
}
.year__season--spring .year__season-tag { background: #FF80A0; }
.year__season--summer .year__season-tag { background: var(--red); }
.year__season--winter .year__season-tag { background: #4A6FA5; }
.year__season--regular .year__season-tag { background: var(--yellow); color: var(--black); }
.year__season h3 {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 900;
  margin-bottom: 4px;
}
.year__period {
  font-family: var(--font-en);
  color: var(--red);
  font-size: 14px; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.year__season p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ============ Time ============ */
.time__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.time__slot {
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  text-align: center;
  transition: border-color .3s, background .3s;
}
.time__slot:hover {
  border-color: var(--red);
  background: rgba(230,0,35,0.1);
}
.time__slot-name {
  font-family: var(--font-en);
  font-size: 60px; line-height: 1;
  color: var(--red);
}
.time__slot-time {
  font-family: var(--font-en);
  font-size: 20px; letter-spacing: 0.05em;
  margin: 12px 0 8px;
}
.time__slot-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.time__foot {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-top: 40px;
}

/* ============ Flow ============ */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.flow-step {
  padding: 60px 20px 28px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.flow-step:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.flow-step::after {
  content: '→';
  position: absolute; top: 50%; right: -14px;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 22px; font-weight: 900;
  z-index: 2;
}
.flow-step:last-child::after { content: none; }
.flow-step__num {
  position: absolute; top: -20px; left: 20px;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 20px; letter-spacing: 0.05em;
}
.flow-step h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 900;
  margin-bottom: 10px;
}
.flow-step p { font-size: 13px; color: var(--gray-600); line-height: 1.7; }
.flow-step p b { color: var(--red); font-weight: 900; }

/* ============ Price ============ */
.price__notice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.price__notice-item {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.price__notice-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 8px; height: 100%;
  background: var(--red);
}
.price__notice-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--black); color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 12px;
}
.price__notice-value {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 900;
  color: var(--black);
  line-height: 1.2;
}
.price__notice-value small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 700;
  margin-left: 4px;
  color: var(--gray-600);
}
.price__notice-value strong {
  color: var(--red);
}
.price__notice-note {
  font-size: 12px; color: var(--gray-600);
  margin-top: 8px;
}

.price__block {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
}
.price__block-head {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-100);
}
.price__block-num {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--red); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(230,0,35,0.25);
}
.price__block-title {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 900;
  margin-bottom: 4px;
}
.price__block-sub {
  font-size: 13px; color: var(--gray-600);
  line-height: 1.6;
}

.price__tabs {
  display: flex; gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.price__tab {
  padding: 12px 28px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  transition: all .2s;
}
.price__tab:hover { background: var(--gray-200); }
.price__tab.is-active {
  background: var(--black);
  color: #fff;
}

.price__panel { display: none; }
.price__panel.is-active {
  display: block;
  animation: fadeUp .4s ease;
}

.price__table-wrap { overflow-x: auto; }
.price__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  min-width: 640px;
}
.price__table thead th {
  background: var(--black);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  border-radius: 8px;
}
.price__table thead th:first-child {
  background: var(--red);
}
.price__table tbody th {
  background: var(--gray-100);
  padding: 20px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  border-radius: 8px;
  border-left: 5px solid var(--red);
  white-space: nowrap;
}
.price__table tbody td {
  background: #fff;
  border: 2px solid var(--gray-200);
  padding: 18px 20px;
  text-align: center;
  border-radius: 8px;
  transition: border-color .2s, background .2s;
}
.price__table tbody tr:hover td {
  border-color: var(--red);
  background: #fff9fa;
}
.price__num {
  font-family: var(--font-en);
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.02em;
}
.price__table tbody td small {
  font-size: 12px;
  color: var(--gray-600);
  margin-left: 2px;
  font-weight: 700;
}

.price__foot-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

.price__month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.price__month {
  padding: 20px 12px;
  background: var(--gray-100);
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
}
.price__month:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.price__month-tag {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.price__month-price {
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.02em;
}
.price__month-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--gray-600);
  margin-left: 2px;
}

.price__mat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price__mat {
  padding: 28px;
  background: var(--gray-100);
  border-radius: 14px;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.price__mat:hover { border-color: var(--red); }
.price__mat--emph {
  background: #fff5f6;
  border-color: var(--red);
  position: relative;
}
.price__mat--emph::before {
  content: 'RECOMMEND';
  position: absolute;
  top: -12px; right: 20px;
  padding: 4px 12px;
  background: var(--red); color: #fff;
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: 0.15em;
  border-radius: 3px;
}
.price__mat-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 900;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.price__mat-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
}
.price__mat-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-300);
  font-size: 14px;
  font-weight: 700;
}
.price__num-small {
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--red);
  letter-spacing: 0.02em;
}
.price__num-small small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--gray-600);
  margin-left: 2px;
  font-weight: 700;
}

.price__mobara {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--black);
  color: #fff;
  border-radius: 20px;
  margin-top: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.price__mobara::before {
  content: '!';
  position: absolute;
  right: -30px; bottom: -60px;
  font-family: var(--font-en);
  font-size: 300px;
  color: rgba(230,0,35,0.15);
  line-height: 1;
}
.price__mobara-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 900;
}
.price__mobara-body { position: relative; z-index: 1; }
.price__mobara-body h4 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 900;
  margin-bottom: 6px;
}
.price__mobara-body p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 10px;
}
.price__mobara-link {
  display: inline-block;
  color: var(--red-light);
  font-weight: 900;
  font-size: 14px;
  border-bottom: 2px solid var(--red-light);
  padding-bottom: 2px;
  transition: color .2s;
}
.price__mobara-link:hover { color: #fff; border-color: #fff; }

.price__mobara-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: right;
}
.price__mobara-note a {
  color: var(--gray-600);
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 3px;
  transition: color .2s;
}
.price__mobara-note a:hover { color: var(--red); text-decoration-color: var(--red); }

/* ============ Schools ============ */
.schools__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.school-card {
  padding: 28px 24px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.school-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.school-card__label {
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 8px;
}
.school-card__name {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 900;
  margin-bottom: 12px;
}
.school-card__addr {
  font-size: 12px; color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.school-card__tel {
  font-family: var(--font-en);
  font-size: 22px; letter-spacing: 0.03em;
  color: var(--black);
}
.school-card__more {
  position: absolute; bottom: 12px; right: 16px;
  font-size: 12px; font-weight: 700;
  color: var(--red);
}

.school-modal {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
}
.school-modal.is-open { opacity: 1; visibility: visible; transition: opacity .3s; }
.school-modal__inner {
  background: #fff;
  max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  border-radius: 20px;
  position: relative;
  padding: 40px;
}
.school-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--black); color: #fff;
  border-radius: 50%;
  font-size: 22px; font-weight: 700;
}
.school-modal__body h3 {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 900;
  margin-bottom: 8px;
}
.school-modal__body .subtitle {
  color: var(--red); font-family: var(--font-en);
  letter-spacing: 0.15em; margin-bottom: 24px;
}
.school-modal__body .info {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 24px;
}
.school-modal__body .info-item h4 {
  font-size: 12px; color: var(--gray-600);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.school-modal__body .info-item p {
  font-size: 15px; font-weight: 700;
}
.school-modal__body .info-item .tel-large {
  font-family: var(--font-en);
  font-size: 32px; color: var(--red);
  letter-spacing: 0.03em;
}
.school-modal__body .map-frame {
  width: 100%; height: 380px;
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--gray-200);
}
.school-modal__body .map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ============ Contact ============ */
.contact__form {
  max-width: 720px; margin: 0 auto 60px;
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.form-row { margin-bottom: 24px; }
.form-row--half {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-label {
  display: block;
  font-size: 13px; font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}
.req {
  display: inline-block;
  padding: 2px 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  border-radius: 3px;
  margin-left: 6px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}
.contact__form option { background: var(--black); color: #fff; }
.form-fixed-content {
  padding: 14px 16px;
  background: rgba(230,0,35,0.15);
  border: 2px solid var(--red);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.form-fixed-tag {
  padding: 3px 10px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 3px;
  flex-shrink: 0;
}
.form-row--policy {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.policy-check {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.policy-check input { width: 20px; height: 20px; accent-color: var(--red); flex-shrink: 0; }
.policy-note {
  flex: 1;
  min-width: 240px;
  margin: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--red);
  border-radius: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .form-row--policy { flex-direction: column; gap: 12px; }
  .policy-note { min-width: 0; width: 100%; }
}

.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.form-message--success {
  background: rgba(230,0,35,0.12);
  border: 1px solid var(--red);
  color: #fff;
}
.form-message--error {
  background: rgba(255,50,71,0.15);
  border: 1px solid var(--red-light);
  color: #fff;
}

.contact__tel {
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.contact__tel p { font-size: 14px; margin-bottom: 8px; }
.contact__tel-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 60px; letter-spacing: 0.05em;
  color: var(--red-light);
  margin: 8px 0;
}
.contact__tel-schools {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  margin: 16px 0 12px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(230,0,35,0.4);
  transition: transform .3s, box-shadow .3s;
}
.contact__tel-schools svg {
  width: 22px; height: 22px;
  transition: transform .3s;
}
.contact__tel-schools:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(230,0,35,0.5);
}
.contact__tel-schools:hover svg { transform: translateX(6px); }
.contact__tel-time { font-size: 13px !important; opacity: 0.75; }

/* ============ Footer ============ */
.footer {
  background: #050505;
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 20px;
}
.footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img { height: 40px; background: #fff; padding: 8px; border-radius: 6px; margin-bottom: 16px; }
.footer__brand p { font-size: 13px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer__col h4 {
  color: #fff; font-size: 14px;
  margin-bottom: 16px;
  font-family: var(--font-heading); font-weight: 900;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 13px; transition: color .2s; }
.footer__col a:hover { color: var(--red-light); }
.footer__copy {
  text-align: center;
  padding-top: 20px;
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

/* ============ Floating CTA (Mobile) ============ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 12px;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.1);
}
.floating-cta a {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-weight: 900;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 14px;
}
.floating-cta__tel {
  background: var(--black); color: #fff;
  flex: 0 0 90px;
}
.floating-cta__tel svg { width: 16px; height: 16px; }
.floating-cta__form { background: var(--red); color: #fff; }

/* ============ Responsive ============ */
@media (max-width: 1200px) {
  .schools__list { grid-template-columns: repeat(3, 1fr); }
  .feature__grid { grid-template-columns: repeat(2, 1fr); }
  .eiken__grid { grid-template-columns: repeat(2, 1fr); }
  .flow__steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step::after { content: none; }
}

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: block; }
  .header { padding: 14px 20px; gap: 12px; justify-content: space-between; }
  .hero { padding: 100px 20px 60px; }
  .hero__side { display: none; }
  .hero__marquee--top { top: 60px; }
  .marquee-track { font-size: 18px; }
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { max-width: 400px; margin: 0 auto; width: 100%; }
  .hero__photo-frame { transform: rotate(1deg); }
  .hero__photo-badge { padding: 14px 18px; }
  .hero__photo-badge-num { font-size: 34px; }
  .feature__image { aspect-ratio: 4 / 3; }
  .feature__image-caption { left: 20px; bottom: 20px; padding: 16px 20px; max-width: calc(100% - 40px); }
  .feature__image-caption strong { font-size: 16px; }
  .care__hero { aspect-ratio: 4 / 3; }
  .care__hero-overlay { right: 20px; bottom: 20px; padding: 16px 20px; max-width: calc(100% - 40px); }
  .care__hero-overlay strong { font-size: 16px; }
  .eiken__hero { aspect-ratio: 4 / 3; }
  .eiken__hero-overlay { left: 20px; bottom: 20px; padding: 16px 20px; max-width: calc(100% - 40px); }
  .eiken__hero-overlay strong { font-size: 16px; }
  .care__panel-photo { height: 220px; }
  .contact__tel-schools { font-size: 18px; padding: 16px 24px; }
  .price__notice { grid-template-columns: 1fr; }
  .price__notice-value { font-size: 24px; }
  .price__block { padding: 28px 20px; }
  .price__block-head { gap: 16px; }
  .price__block-num { width: 44px; height: 44px; font-size: 20px; }
  .price__block-title { font-size: 20px; }
  .price__num { font-size: 22px; }
  .price__month-grid { grid-template-columns: repeat(2, 1fr); }
  .price__mat-grid { grid-template-columns: 1fr; }
  .price__mobara { flex-direction: column; text-align: center; padding: 24px 20px; }
  .section { padding: 80px 20px; }
  .compare__row { grid-template-columns: 100px 1fr 1fr; }
  .compare__cell { padding: 14px 10px; font-size: 13px; }
  .compare__row--head .compare__cell { font-size: 14px; padding: 14px 8px; }
  .course__panel { grid-template-columns: 1fr; gap: 30px; }
  .course__points { grid-template-columns: 1fr 1fr; gap: 12px; }
  .course__lead h3 { font-size: 32px; }
  .care__panel { grid-template-columns: 1fr; padding: 30px 24px; }
  .care__panel--reverse .care__panel-illust { order: 0; }
  .care__panel-illust { height: 200px; }
  .year__timeline { grid-template-columns: repeat(2, 1fr); }
  .year__timeline::before { content: none; }
  .time__grid { grid-template-columns: repeat(2, 1fr); }
  .schools__list { grid-template-columns: repeat(2, 1fr); }
  .flow__steps { grid-template-columns: 1fr; }
  .contact__form { padding: 24px 20px; }
  .form-row--half { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .contact__tel-num { font-size: 40px; }
  .floating-cta { display: flex; }
  body { padding-bottom: 80px; }
  .school-modal__inner { padding: 30px 20px; }
  .school-modal__body .info { grid-template-columns: 1fr; }
  .school-modal__body h3 { font-size: 28px; }
  .oneOnTwo { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .oneOnTwo__link { width: 4px; height: 60px; margin: 0 auto; }
  .feature__hero { padding: 40px 20px; }
  .feat-card { padding: 30px 24px; }
}

@media (max-width: 500px) {
  .schools__list { grid-template-columns: 1fr; }
  .feature__grid { grid-template-columns: 1fr; }
  .eiken__grid { grid-template-columns: 1fr; }
  .course__points { grid-template-columns: 1fr; }
  .year__timeline { grid-template-columns: 1fr; }
  .time__grid { grid-template-columns: 1fr 1fr; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
