/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== CSS VARIABLES ========== */
:root {
  --navy: #000064;
  --navy-dark: #0f1740;
  --pink: #E73A77;
  --pink-hover: #d12e6a;
  --cyan: #00A5E3;
  --cyan-light: #33b7e8;
  --sky: #d9eff8;
  --sky-light: #e8f6fb;
  --green-start: #6dd5a0;
  --green-end: #a8e06c;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-text: #595656;
  --max-width: 1100px;
}

/* ========== UTILITY ========== */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  height: 32px;
  width: auto;
}
.header-logo-text {
  font-size: 13px;
  color: var(--gray-text);
  letter-spacing: 0.02em;
}
.header-cta-group {
  display: flex;
  gap: 12px;
}
.btn-header-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 36px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-header-pink:hover { background: var(--pink-hover); }
.btn-header-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background: var(--cyan);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 36px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-header-blue:hover { opacity: 0.85; }

.header-nav {
  border-top: 1px solid #eee;
}
.header-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.header-nav li a {
  display: block;
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav li a:hover { color: var(--navy); }

/* ========== HERO ========== */
.hero {
  padding-top: 108px; /* header offset */
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.hero-photo {
  max-width: 1280px;
  margin: 0 auto;
}
/* green gradient on right */
.hero-gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(135deg, rgba(109,213,160,0.0) 0%, rgba(109,213,160,0.7) 40%, rgba(168,224,108,0.9) 100%);
  z-index: 2;
}
/* white circle overlay */
.hero-circle {
  position: absolute;
  right: 6%;
  top: 57%;
  transform: translateY(-52%);
  width: 480px;
  height: 480px;
  background: var(--white);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px 60px 90px;
  box-shadow: 0 0 0 6px var(--navy);
}
.hero-circle h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-text);
  letter-spacing: 0.02em;
}
.hero-circle p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-text);
}

/* CTA button inside hero */
.hero-cta {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* navy bottom banner */
.hero-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 18px 0;
  text-align: center;
}
.hero-banner p {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* badge row on hero */
.hero-badges {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-badge {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ========== SECTION: ROUTE ========== */
.section-route {
  padding: 80px 0 70px;
  background: var(--white);
}
.route-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}
.route-heading-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.route-heading h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.route-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.route-card {
  border: 2px solid rgba(0,165,227,0.35);
  border-radius: 16px;
  padding: 36px 24px 30px;
  text-align: center;
  background: var(--white);
  position: relative;
  box-shadow: 4px 4px 0 rgba(0,165,227,0.25);
}
.route-card-number {
  font-size: 86px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Pathway Gothic One", sans-serif;
}
.route-card-number::after {
  content: '';
  display: block;
  width: 230px;
  height: 2px;
  background: var(--cyan);
  margin: 12px auto 16px;
}
.route-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}
.route-card-sub {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.route-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

/* CTA Button (shared) */
.cta-btn {
  position: relative;
  display: block;
  max-width: 640px;
  margin: 0 auto 36px;
  padding: 22px 40px;
  background: linear-gradient(180deg, #5ec8f0 0%, #22abe6 40%, #0095d0 100%);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  border-radius: 60px;
  box-shadow: 0 8px 0 #333;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.04em;
  border: 3px solid #0088bb;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  height: 45%;
  border-radius: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #333;
}

.route-checks {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.route-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.route-check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #b0d4f1, #8bc4e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.route-check-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

/* ========== SECTION: WHY ========== */
.section-why {
  padding: 80px 0 70px;
  background: #c9f2ff;
}
.section-why h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 24px;
}
.why-subtitle {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #555;
  line-height: 1.8;
  margin-bottom: 48px;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 2px solid var(--cyan);
  box-shadow: 4px 4px 0 var(--cyan);
}
.why-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.why-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
}
.why-card-header-icon {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}
.why-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* full width card at bottom */
.why-card-full {
  grid-column: 1 / -1;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 36px;
  border: 2px solid var(--cyan);
  box-shadow: 4px 4px 0 var(--cyan);
}
.why-card-full .why-card-header h3 {
  font-size: 22px;
}

.why-closing {
  text-align: center;
  margin-top: 60px;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-text);
  line-height: 1.6;
}

/* CTA row below Why */
.why-cta-row {
  margin-top: 40px;
}

/* ========== SECTION: REASONS ========== */
.section-reasons {
  padding: 0 0 60px;
  background: var(--white);
  overflow: hidden;
}
.reasons-header {
  background: var(--navy);
  padding: 60px 0 70px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.reasons-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 42px solid var(--navy);
  z-index: 2;
}
.reasons-header h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.reason-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  padding: 60px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.reason-item:first-of-type {
  padding-top: 80px;
}
/* Left text / Right image (1, 3, 5) */
.reason-item-left .reason-content { order: 1; }
.reason-item-left .reason-image { order: 2; }
/* Right text / Left image (2, 4) */
.reason-item-right .reason-content { order: 2; }
.reason-item-right .reason-image { order: 1; }

.reason-content {
  padding: 0 40px;
}
.reason-image {
  overflow: hidden;
  border-radius: 12px;
}
.reason-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8e0d8, #d8d0c8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
}

/* Badge — base */
.reason-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
  position: relative;
  overflow: visible;
}
/* Extend badge background to browser left edge */
.reason-item-left .reason-badge {
  border-radius: 0 8px 8px 0;
  margin-left: -40px;
  padding-left: 40px;
}
.reason-item-left .reason-badge::before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background: inherit;
}
/* Extend badge background to browser right edge */
.reason-item-right .reason-badge {
  border-radius: 8px 0 0 8px;
  margin-right: -40px;
  padding-right: 40px;
}
.reason-item-right .reason-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background: inherit;
}
.reason-badge-pink { background: var(--pink); }
.reason-badge-blue { background: var(--cyan); }

.reason-badge .reason-num {
  font-size: 68px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  font-family: "Pathway Gothic One", sans-serif;
}
.reason-badge h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.45;
}

.reason-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
}
.reason-text strong {
  font-weight: 700;
}
.reason-text ul {
  margin: 8px 0;
  padding-left: 1.2em;
}
.reason-text ul li {
  list-style: disc;
  margin-bottom: 2px;
}
.reason-text ul li::marker {
  color: #888;
}

/* CTA after reasons */
.reasons-cta {
  padding: 20px 0 60px;
  text-align: center;
}

/* ========== SECTION: RESULTS ========== */
.section-results {
  background: rgba(255,255,197,0.5);
  padding: 0 0 60px;
}
.results-header {
  background: var(--pink);
  padding: 28px 0 36px;
  text-align: center;
  position: relative;
}
.results-header h2 {
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0 60px;
}
/* laurel wreath decorations */
.results-header h2::before,
.results-header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.results-header h2::before {
  left: 0;
  background-image: url('../img/laurel__left.webp');
}
.results-header h2::after {
  right: 0;
  background-image: url('../img/laurel__right.webp');
}
.results-header-triangle {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid var(--pink);
}
.results-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px 0;
  text-align: center;
}
.results-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.results-highlight-label {
  font-size: 36px;
  font-weight: 900;
  color: #444;
  margin-right: 8px;
}
.results-highlight-badge {
  display: inline-block;
  background: var(--navy);
  color: #ffff23;
  font-size: 28px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 8px;
  margin-right: 12px;
}
.results-highlight-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 40px;
}



/* 37の後ろの大きい丸 */
.results-highlight-number .big-num {
  position: relative;
  z-index: 1;
  font-size: 140px;
  font-weight: 900;
  color: #ffff23;
  -webkit-text-fill-color: #ffff23;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1;
  font-family: "Pathway Gothic One", sans-serif;
}
.results-highlight-number .big-num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: var(--pink);
  border-radius: 50%;
  z-index: -1;
}

/* 名の後ろの小さい丸 */
.results-highlight-number .unit {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  align-self: flex-end;
  margin-left: 10px;
}
.results-highlight-number .unit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--pink);
  border-radius: 50%;
  z-index: -1;
}

.results-table {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 16px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(0,165,227,0.4);
  box-shadow: 4px 4px 0 rgba(0,165,227,0.2);
}
.results-table thead th {
  background: var(--navy);
  color: #ffff23;
  font-size: 26px;
  font-weight: 900;
  padding: 10px;
  text-align: center;
  letter-spacing: 0.05em;
}
.results-table tbody td {
  padding: 0px 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #ccc;
  background: var(--white);
}
.results-table tbody tr:nth-child(even) td {
  background: #f0f4ff;
}
.results-table tbody tr:last-child td {
  border-bottom: none;
}
.results-table .grade-label {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}
.results-table .arrow {
  color: var(--pink);
  font-size: 16px;
}
.results-table .count {
  color: var(--pink);
  font-size: 44px;
  font-weight: 900;
}
.results-table .count .unit-small {
  font-size: 16px;
  font-weight: 600;
  color: var(--pink);
}
.results-note {
  margin-top: 12px;
  font-size: 13px;
  color: #999;
  text-align: right;
}

/* ========== SECTION: VOICE ========== */
.section-voice {
  background: rgba(255,255,197,0.5);
  padding: 60px 0 80px;
}

.voice-header {
  text-align: center;
  margin-bottom: 47px;
}

.voice-header h2 {
  display: inline-block;
  position: relative;
  background: var(--pink);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 48px;
  margin: 0;
}

/* 左下の折り返し */
.voice-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  border-top: 20px solid #B3284F;
  border-left: 40px solid transparent;
}

/* 右下の折り返し */
.voice-header h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  border-top: 20px solid #B3284F;
  border-right: 40px solid transparent;
}

.voice-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.voice-slider {
  display: flex;
  transition: transform 0.5s ease;
}
.voice-slide {
  min-width: 100%;
  padding: 0 60px;
}
.voice-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
}
.voice-card-photo {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.voice-card-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e0d8, #d0c8c0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
  text-align: center;
  padding: 8px;
}
.voice-card-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--cyan);
}
.voice-card-info p {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}
.voice-card-meta {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #444;
}
.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
.voice-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c8dde6;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.voice-dot.active { background: var(--cyan); }

/* slider arrows */
.voice-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
}
.voice-arrow:hover { background: var(--white); }
.voice-arrow-left { left: 8px; }
.voice-arrow-right { right: 8px; }

/* 合格実績 list */
.voice-results {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.voice-results-header {
  display: inline-block;
  position: relative;
  background: #00A5E3;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 60px 7px 48px;
  margin-bottom: 20px;
}

/* 右側の切り込み（三角の凹み） */
.voice-results-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-right: 16px solid #FFFDE6; /* 背景色に合わせる */
}
.voice-results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.voice-results-list li {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

/* 合格実績リスト 2カラム化（22校対応） */
.voice-results-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 4px;
}

@media (max-width: 480px) {
  .voice-results-list--2col {
    grid-template-columns: 1fr;
  }
}

/* ========== SECTION: MESSAGE ========== */
.section-message {
  padding: 80px 0;
  background: var(--white);
}
.message-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: #333;
  margin-bottom: 48px;
}
.message-photo {
  max-width: 700px;
  margin: 0 auto 28px;
  border-radius: 8px;
  overflow: hidden;
}
.message-photo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #555, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  border-radius: 8px;
}
.message-body {
  max-width: 700px;
  margin: 0 auto;
}
.message-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
}
.message-body p {
  font-size: 15px;
  line-height: 2.1;
  color: #444;
  margin-bottom: 24px;
}
.message-body p span {
  font-weight: 700;
}
.message-signature {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 800;
  color: #333;
}

/* ========== SECTION: NOTE (COLUMNS) ========== */
.section-note {
  padding: 80px 0;
  background: #c9f2ff;
}
.note-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.note-heading-icon {
  width: 55px;
  flex-shrink: 0;
}
.note-heading h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.55;
}
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.note-card {
  background: transparent;
}
.note-card-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.note-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c9a87c, #a08060);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}
.note-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 8px;
}
.note-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.note-card-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.note-card-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 1px 12px;
  border-radius: 15px;
}

/* ========== SECTION: SCHOOL ========== */
.section-school {
  padding: 80px 0;
  background: rgba(255,255,197,0.5);
}
.school-heading {
  text-align: center;
  margin-bottom: 12px;
}
.school-heading h2 {
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  color: var(--pink);
  border-top: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
  padding: 12px 0;
  letter-spacing: 0.03em;
}
.school-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 48px;
}
.school-area-label {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 3px solid #666;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.school-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.school-card {
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--cyan);
  display: flex;
  flex-direction: column;
}
.school-card-name {
  background: var(--cyan);
  color: var(--white);
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  padding: 14px;
  letter-spacing: 0.03em;
}
.school-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.school-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d8d0c8, #c8c0b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
}
.school-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.school-card-catch {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.school-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 16px;
  flex: 1;
}
.school-card-access {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.school-card-access-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.school-card-map {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 12px;
  margin-left: 30px;
}
.school-card-map:hover { text-decoration: underline; }
.school-card-grade {
  display: inline-block;
  background: #555;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 14px;
  color: var(--white);
  margin-bottom: 16px;
}
.school-card-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 15px 5px 15px 5px;
  background: linear-gradient(to bottom, #ff2b8a 0%, #ff1f7f 45%, #e6005c 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  line-height: 1;
  box-shadow: 0 10px 0 #ffeb00;
  margin-bottom: 10px;
}
.school-card-cta::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 40%;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}
.school-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 0 #ffeb00;
}
.school-card-cta .school-name {
  font-size: 20px;
  font-weight: 700;
}
.school-card-cta .cta-suffix {
  font-size: 14px;
  font-weight: 400;
}
.school-card-cta .arrow-icon {
  font-size: 13px;
  margin-left: 1x;
}

.campus-info__icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    margin-top: 2px;
}
/* ========== SECTION: FAQ ========== */
.section-faq {
  padding: 80px 0;
  background: var(--gray-light);
}
.faq-heading {
  text-align: center;
  margin-bottom: 48px;
}
.faq-heading h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  display: inline-block;
  border-top: 4px solid var(--cyan);
  border-bottom: 4px solid var(--cyan);
  padding: 8px 24px;
  letter-spacing: 0.05em;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: none;
  border: 2px solid var(--pink);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: var(--pink);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--pink-hover); }
.faq-q-label {
  flex-shrink: 0;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}
.faq-q-text {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  padding: 16px 8px;
}
.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  margin-right: 20px;
}
.faq-item.is-open .faq-toggle { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 24px 28px 28px;
  background: #f5f5f5;
}


.faq-answer-inner > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
}

.faq-a-label {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  grid-row: 1 / 3;  /* A.を縦2行分に */
  align-self: start;
}

.faq-a-lead {
  grid-column: 2;
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-a-text {
  grid-column: 2;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}




/* ========== SECTION: FOOTER ========== */
.footer {
  padding: 40px 0 80px;
  background: var(--cyan);
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: var(--white);
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.7; color: var(--white); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

/* ========== BOOKING STEPS (unused placeholder) ========== */

/* ========== FIXED CTA BAR ========== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  border-top: 2px solid #ddd;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.fixed-cta.is-visible {
  transform: translateY(0);
}
.fixed-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.fixed-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 50px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46,204,113,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.fixed-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46,204,113,0.45);
}
.fixed-cta-btn .free-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--white);
  color: #27ae60;
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}
.fixed-cta-steps {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fixed-step {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--cyan);
  border-radius: 0;
  overflow: hidden;
  height: 68px;
}
.fixed-step-num {
  padding: 10px 18px;
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
  text-align: center;
  border-right: 1px solid rgba(0,165,227,0.3);
  font-family: "Pathway Gothic One", sans-serif;
}
.fixed-step-num span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
}
.fixed-step-label {
  padding: 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--cyan);
  white-space: nowrap;
  line-height: 1.35;
  text-align: center;
}
.fixed-step-arrow {
  color: var(--cyan);
  font-size: 14px;
  margin: 0 0px;
}
.fixed-step-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-12deg);
  flex-shrink: 0;
}

/* ========== STEP BOOKING ========== */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}
.booking-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ========== INLINE SVG ICONS ========== */
.icon-clipboard {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

/* ========== RESPONSIVE: TABLET (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .school-cards { grid-template-columns: repeat(2, 1fr); }
  .note-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-circle {
    width: 400px;
    height: 400px;
    padding: 50px 40px 50px 55px;
  }
}

/* ========== RESPONSIVE: MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
  .inner { padding: 0 16px; }

  /* --- HEADER --- */
  .header-top {
    padding: 10px 16px;
    justify-content: center;
  }
  .header-logo svg { height: 26px; }
  .header-logo-text { font-size: 11px; }
  .header-cta-group { display: none; }
  .header-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header-nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    min-width: max-content;
    padding: 0 8px;
  }
  .header-nav li a {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .header-nav { scrollbar-width: none; }

  /* --- HERO --- */
.hero {
  padding-top: 84px;
}
  .hero-gradient-right { width: 50%; }
  .hero-circle {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 85%;
    height: auto;
    margin: -40px auto 0;
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: 0 0 0 4px var(--navy);
    z-index: 3;
  }
  .hero-circle h1 { font-size: 26px; }
  .hero-circle p { font-size: 15px; margin-top: 14px; }
  .hero-photo-placeholder {
    height: 260px;
  }
  .hero-banner {
    position: relative;
    padding: 14px 0;
  }
  .hero-banner p { font-size: 16px; }

  /* --- ROUTE --- */
  .section-route { padding: 50px 0 40px; }
  .route-heading {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .route-heading h2 { font-size: 18px; text-align: center;letter-spacing: -0.05em; }
  .route-heading-icon { width: 36px; height: 36px; }
  .route-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .route-card { padding: 20px 20px 20px; }
  .route-card-number { font-size: 44px; }
  .route-card h3 { font-size: 16px; }
  .cta-btn {
    font-size: 15px;
    padding: 12px 8px;
    etter-spacing: -0.05em;
  }
  .route-checks { gap: 8px; }
  .route-check { font-size: 13px; }

  /* --- WHY --- */
  .section-why { padding: 50px 0 40px; }
  .section-why h2 { font-size: 22px; }
  .why-subtitle { font-size: 14px; margin-bottom: 32px; }
  .why-subtitle br { display: none; }
  .why-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card { padding: 24px 20px; }
  .why-card-header h3 { font-size: 17px; }
  .why-card-full { padding: 24px 20px; }
  .why-card-full .why-card-header h3 { font-size: 18px; }
  .why-closing {
    font-size: 15px;
    margin-top: 40px;
  }

  /* --- REASONS --- */
  .reasons-header { padding: 20px 16px 20px; }
  .reasons-header h2 { font-size: 22px; }
  .reasons-header::after {
    border-left-width: 40px;
    border-right-width: 40px;
    border-top-width: 28px;
    bottom: -28px;
  }
  .reason-item {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 20px;
  }
  .reason-item:first-of-type { padding-top: 56px; }
  .reason-item-right .reason-content { order: 1; }
  .reason-item-right .reason-image { order: 2; }
  .reason-content { padding: 0; }
  .reason-badge {
    padding: 12px 20px;
    gap: 12px;
  }
  .reason-badge .reason-num { font-size: 32px; }
  .reason-badge h3 { font-size: 18px; }
  .reason-item-left .reason-badge {
    margin-left: -16px;
    padding-left: 16px;
  }
  .reason-item-right .reason-badge {
    margin-right: 0;
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 20px;
    border-radius: 0 8px 8px 0;
  }
  .reason-item-right .reason-badge::after { display: none; }
  .reason-item-left .reason-badge::before { display: block; }
  .reason-text { font-size: 14px; }
  .reasons-cta { padding: 10px 16px; }

  /* --- RESULTS --- */
  .results-header h2 { font-size: 22px; padding: 0 40px; }
  .results-body { padding: 40px 16px 0; }
  .results-highlight-label { font-size: 26px; }
  .results-highlight-badge { font-size: 22px; padding: 4px 16px; }
  .results-table { max-width: 100%; }
  .results-table .grade-label { font-size: 16px; }
  .results-table .count { font-size: 22px; }

  /* --- VOICE --- */
  .section-voice { padding: 40px 0 60px; }
  .voice-header h2 { font-size: 20px; padding: 12px 28px; }
  .voice-slide { padding: 0 12px; }
  .voice-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .voice-card-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
  }
  .voice-card-info h3 { font-size: 15px; }
  .voice-card-info p { font-size: 13px; }
  .voice-arrow { display: none; }
  .voice-results-header { font-size: 20px; padding: 12px 40px; }
  .voice-results-list li { font-size: 15px; }

  /* --- MESSAGE --- */
  .section-message { padding: 50px 0; }
  .message-heading { font-size: 24px; margin-bottom: 32px; }
  .message-body h3 { font-size: 16px; }
  .message-body p { font-size: 14px; line-height: 2; }

  /* --- NOTE --- */
  .section-note { padding: 50px 0; }
  .note-heading { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .note-heading h2 { font-size: 20px; text-align: center; }
  .note-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .note-card h3 { font-size: 13px; }

  /* --- SCHOOL --- */
  .section-school { padding: 50px 0; }
  .school-heading h2 { font-size: 20px; }
  .school-subtitle { font-size: 14px; margin-bottom: 32px; }
  .school-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .school-card-name { font-size: 20px; padding: 12px; }
  .school-card-desc { font-size: 12px; }
  .school-card-cta .school-name { font-size: 18px; }
  .school-card-cta .cta-suffix { font-size: 14px; }

  /* --- FAQ --- */
  .section-faq { padding: 50px 0; }
  .faq-heading h2 { font-size: 24px; }
  .faq-q-label { padding: 12px 14px; font-size: 16px; }
  .faq-q-text { font-size: 14px; padding: 12px 6px; }
  .faq-answer-inner { padding: 20px 16px 24px; }
  .faq-a-label { font-size: 20px; }
  .faq-a-lead { font-size: 14px; }
  .faq-a-text { font-size: 13px; }

  /* --- FIXED CTA BAR (2行レイアウト) --- */
  .fixed-cta-inner {
    flex-direction: column;
    gap: 8px;
    padding: 0 12px;
  }
  .fixed-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 24px;
    font-size: 18px;
  }
  .fixed-cta-btn .free-badge {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .fixed-cta-steps {
    gap: 4px;
    justify-content: center;
  }
  .fixed-step { height: 36px; }
  .fixed-step-num { padding: 4px 8px; font-size: 8px; }
  .fixed-step-num span { font-size: 14px; }
  .fixed-step-label { padding: 0 18px; font-size: 10px; }
  .fixed-step-arrow { font-size: 10px; }
  .fixed-step-confirm {
    width: 36px;
    height: 36px;
    font-size: 9px;
  }
  .fixed-cta { padding: 8px 0; }

  /* --- FOOTER --- */
  .footer { padding: 32px 0 100px; }
}

/* ========== RESPONSIVE: SMALL (max-width: 480px) ========== */
@media (max-width: 480px) {
  .header-top {
    gap: 0;
    justify-content: center;
  }
  .header-logo { width: 100%; justify-content: center; }
  .header-nav li a { padding: 6px 10px; font-size: 11px; }

  .hero-circle {
    width: 92%;
    padding: 28px 20px;
  }
  .hero-circle h1 { font-size: 22px; }
  .hero-circle p { font-size: 13px; }
  .hero-banner p { font-size: 14px; }

  .section-why h2 { font-size: 18px; }
  .why-subtitle { font-size: 13px; }

  .note-grid { grid-template-columns: 1fr; }

  .voice-card-photo { width: 120px; height: 120px; }

  .results-highlight { flex-direction: inherit; gap: 8px; }

  .school-cards[style] {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}


/* ========== RESPONSIVE: MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {

  .reason-text br {
    display: none;
  }
  .faq-list {
      gap: 14px;
  }
  .school-card-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
  }
  
  .school-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .school-card-access br {
    display: none;
  }
  .school-card-map {
      margin-left: 36px;
      top: -2em;
      position: relative;
  }
  .results-highlight-number .big-num::before {
    width: 150px;
    height: 150px;
  }
  .results-highlight-number .big-num {
    font-size: 115px;
 }
 .results-highlight-number {
   margin-left: 19px;
 }
 .results-highlight-label {
   margin-right: 0;
 }
}


/* ==================== FIXED BANNER ==================== */
.fixed-banner {
  position: fixed;
  right: 5px;
  z-index: 999;
  display: block;
  width: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s ease;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .2s ease;
}
.fixed-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.fixed-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.fixed-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .fixed-banner {
    bottom: 100px; /* 固定フッターの高さに応じて調整 */
  }
}

@media (max-width: 768px) {
  .fixed-banner {
    width: 220px;
    right: 3px;
    bottom: 115px; /* SP固定フッターの高さに応じて調整 */
  }
}


