:root {
  --bg: #fffdf8;
  --paper: #ffffff;
  --navy: #06183a;
  --blue: #12366f;
  --text: #31405f;
  --muted: #6b7489;
  --gold: #b8913d;
  --gold-soft: #f6ead0;
  --crimson: #b94434;
  --crimson-dark: #8f3026;
  --green: #1e6f5c;
  --line: rgba(8, 26, 61, 0.14);
  --shadow: 0 24px 70px rgba(8, 26, 61, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 0 44px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(8, 26, 61, 0.08);
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
}

.language-switch a.active {
  background: var(--navy);
  color: #fff;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 18px;
  border-bottom: 1px solid rgba(184, 145, 61, 0.22);
  background: #0b214b;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 850;
}

.announcement a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(184, 145, 61, 0.48);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-weight: 850;
}

nav a:hover,
.text-link:hover,
nav a.active {
  color: var(--crimson);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 950;
  white-space: nowrap;
}

.primary {
  border: 1px solid var(--crimson);
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 14px 28px rgba(185, 68, 52, 0.24);
}

.primary:hover {
  background: var(--crimson-dark);
}

.secondary {
  border: 1px solid rgba(8, 26, 61, 0.5);
  background: rgba(255, 255, 255, 0.88);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.46fr) minmax(0, 0.54fr);
  min-height: 650px;
  overflow: hidden;
  background: #fff;
}

.hero:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, #fffdf8 0%, rgba(255, 253, 248, 0.96) 32%, rgba(255, 253, 248, 0.22) 63%, rgba(255, 253, 248, 0) 100%),
    linear-gradient(180deg, transparent 76%, var(--bg) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 34px 118px 64px;
}

h1,
h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
}

h1 span {
  display: block;
}

h1 span + span {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(1.7rem, 2.75vw, 3rem);
  line-height: 1.14;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.75rem);
  line-height: 1.08;
}

.hero p,
.lead {
  color: var(--text);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 700;
  line-height: 1.9;
}

.hero p {
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 58% center;
}

.note {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 52px;
  max-width: 286px;
  border-radius: 8px;
  background: rgba(8, 26, 61, 0.88);
  color: #fff;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.note span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.proof {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -48px auto 0;
  border: 1px solid rgba(184, 145, 61, 0.34);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.proof article {
  min-height: 112px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.proof article:first-child {
  border-left: 0;
}

.proof strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.65rem;
}

.proof span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 28px auto 0;
  border: 1px solid rgba(8, 26, 61, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: 0 18px 54px rgba(8, 26, 61, 0.08);
}

.quick-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.quick-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.7;
}

.quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(246, 234, 208, 0.75);
  padding: 0 12px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.98rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.65;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
  text-align: left;
}

.journey-card {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  border: 1px solid rgba(184, 145, 61, 0.28);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.journey-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.12;
}

.journey-card p {
  color: var(--text);
  font-weight: 760;
  line-height: 1.8;
}

.journey-steps {
  display: grid;
  gap: 12px;
}

.journey-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
}

.journey-steps b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: Georgia, serif;
}

.journey-steps h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 710;
  line-height: 1.65;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.decision-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 54px rgba(8, 26, 61, 0.08);
}

.decision-card strong {
  color: var(--crimson);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pathway article {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.pathway article:first-child {
  border-left: 0;
}

.pathway h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.pathway p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
}

.label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.center .lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(8, 26, 61, 0.08);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 690;
  line-height: 1.75;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.image-card .card-body {
  padding: 22px;
}

.life-grid,
.news-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.news-card time {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 750;
  line-height: 1.7;
}

.check-item:before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  content: "✓";
  font-weight: 950;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.contact-strip div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.contact-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.policy-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 710;
  line-height: 1.7;
}

.tuition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.tuition-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 54px rgba(8, 26, 61, 0.08);
}

.tuition-card h3 {
  margin: 0;
  font-size: 1.04rem;
}

.tuition-card strong {
  color: var(--crimson);
  font-family: Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
}

.tuition-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.5;
}

.fee-table {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(8, 26, 61, 0.08);
  text-align: left;
}

.fee-table th,
.fee-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  vertical-align: top;
}

.fee-table th {
  background: rgba(246, 234, 208, 0.5);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
}

.fee-table tr:last-child td {
  border-bottom: 0;
}

.fee-table td {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.65;
}

.fee-table td:first-child {
  color: var(--navy);
  font-weight: 950;
}

.fee-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.75;
}

.fee-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.fee-value-grid article {
  border: 1px solid rgba(184, 145, 61, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(246, 234, 208, 0.42), #fff);
  padding: 20px;
}

.fee-value-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fee-value-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.fee-value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 730;
  line-height: 1.7;
}

.method-band {
  background: linear-gradient(135deg, rgba(8, 26, 61, 0.96), rgba(18, 54, 111, 0.96));
  color: #fff;
}

.method-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.method-inner > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.method-band h2 {
  color: #fff;
}

.method-band .label {
  color: var(--gold-soft);
}

.method-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.method-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}

.badge {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(246, 234, 208, 0.5);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 950;
}

.method-list p,
.method-band .lead {
  color: rgba(255, 255, 255, 0.8);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
  text-align: left;
}

.program {
  overflow: hidden;
  padding: 0;
  min-height: 444px;
  display: flex;
  flex-direction: column;
}

.program img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.program div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(184, 145, 61, 0.34);
  border-radius: 999px;
  background: var(--gold-soft);
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 950;
}

.program .text-link {
  margin-top: auto;
}

.program-price {
  margin: 12px 0 18px;
  color: var(--crimson);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.25;
}

.program-price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 950;
}

.teachers-band {
  background: linear-gradient(180deg, rgba(246, 234, 208, 0.45), rgba(255, 253, 248, 0.76));
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1020px;
  margin: 38px auto 0;
  text-align: left;
}

.avatar {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.65;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.trial-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1fr);
  gap: 30px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 36px;
}

.trial-copy {
  display: grid;
  gap: 18px;
  padding-top: 12px;
}

.trial-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.96;
}

.trial-hero .lead {
  margin-bottom: 0;
}

.trial-hero-photo {
  width: 100%;
  max-height: 245px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.trial-form-card {
  scroll-margin-top: 104px;
  padding: 26px;
  box-shadow: 0 22px 70px rgba(8, 26, 61, 0.12);
}

.trial-form-card h3 {
  margin-bottom: 8px;
}

.trial-form-card form {
  gap: 12px;
}

.trial-form-card input,
.trial-form-card select {
  min-height: 44px;
}

.trial-form-card textarea {
  min-height: 76px;
}

.trial {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  gap: 26px;
}

.trial-flow {
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 34px;
}

.trial-flow h2 {
  color: #fff;
}

.trial-flow ol {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  font-weight: 850;
}

.trial-flow li span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
}

.trial-assurance {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.trial-assurance div {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.65;
}

.trial-assurance strong {
  display: block;
  color: var(--gold-soft);
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 950;
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 740;
  line-height: 1.7;
}

.field-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 740;
  line-height: 1.5;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  font-weight: 750;
}

textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.hp-field {
  display: none;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.6;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

.full {
  grid-column: 1 / -1;
}

button {
  border: 0;
  cursor: pointer;
}

.success {
  margin: 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.6;
}

.microcopy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.55;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 32px 44px;
}

.footer p {
  margin: 0 auto 0 0;
  color: var(--muted);
  font-weight: 700;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid rgba(8, 26, 61, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 18px 54px rgba(8, 26, 61, 0.18);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  min-height: 42px;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 0.82rem;
}

@media (max-width: 1050px) {
  .header {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }

  .header-actions {
    justify-self: end;
  }

  nav {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 2px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .split,
  .method-inner,
  .trial,
  .detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 52px 22px 28px;
  }

  .proof,
  .program-grid,
  .decision-grid,
  .pathway,
  .trust-row,
  .journey-grid,
  .tuition-grid,
  .fee-value-grid,
  .life-grid,
  .news-grid,
  .price-grid,
  .policy-grid,
  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .trial-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trial-hero-photo {
    display: none;
  }
}

@media (max-width: 680px) {
  .header {
    min-height: 68px;
    gap: 12px;
    padding: 10px 12px;
  }

  .mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    max-width: 120px;
    font-size: 0.56rem;
  }

  .header .btn {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    width: 100%;
  }

  .language-switch {
    font-size: 0.76rem;
  }

  .language-switch a {
    padding: 0 9px;
  }

  nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3rem;
  }

  h1 span + span {
    font-size: 1.62rem;
  }

  .announcement {
    display: grid;
    gap: 4px;
    text-align: center;
  }

  .hero-actions,
  .quick-panel,
  .proof,
  .grid,
  .program-grid,
  .teacher-grid,
  .decision-grid,
  .pathway,
  .trust-row,
  .journey-grid,
  .tuition-grid,
  .fee-value-grid,
  .life-grid,
  .news-grid,
  .price-grid,
  .policy-grid,
  .check-grid,
  .contact-strip,
  form {
    grid-template-columns: 1fr;
  }

  .pathway article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pathway article:first-child {
    border-top: 0;
  }

  .hero-media img {
    min-height: 360px;
  }

  .note {
    left: 18px;
    right: 18px;
    bottom: 20px;
    max-width: none;
  }

  .section,
  .method-inner,
  .trial-hero,
  .detail-hero {
    padding: 68px 18px;
  }

  .trial-hero {
    gap: 22px;
    padding-top: 34px;
  }

  .trial-copy {
    padding-top: 0;
  }

  .trial-hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.6rem);
  }

  .trial-form-card {
    scroll-margin-top: 190px;
  }

  .quick-panel {
    margin: 22px 18px 0;
    padding: 20px;
  }

  .journey-steps article {
    grid-template-columns: 38px 1fr;
  }

  .journey-steps b {
    width: 36px;
    height: 36px;
  }

  .fee-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  body {
    padding-bottom: 82px;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .program {
    min-height: 0;
  }

  .footer {
    display: grid;
    padding: 28px 18px;
  }
}
