@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");

:root {
  --base: #F5F8FC;
  --main: #2A95C9;
  --deep-blue: #1F4E79;
  --accent: #4A90E2;
  --surface: #FBFDFF;
  --surface-blue: #EEF6FC;
  --surface-blue-2: #E3F0FA;
  --line-soft: #D2E3F0;
  --sky: var(--accent);
  --sky-2: var(--surface-blue-2);
  --sky-3: var(--base);
  --gold: var(--accent);
  --gold-dark: #2A78BE;
  --navy: var(--deep-blue);
  --blue: var(--accent);
  --text: #263744;
  --muted: #647484;
  --line: var(--line-soft);
  --white: var(--surface);
  --gray: var(--surface-blue);
  --deep: var(--deep-blue);
  --shadow: 0 16px 34px rgba(31, 78, 121, 0.11);
  --radius: 18px;
  --max: 1180px;
  --header-height: 110px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--base);
  color: var(--text);
 font-family: "EB Garamond", serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  height: var(--header-height);
  min-height: 110px;
  padding: 14px clamp(24px, 3vw, 48px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.94), rgba(227, 240, 250, 0.94));
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: 82px;
  height: 66px;
  flex: 0 0 82px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: #111;
  font-size: 30px;
  line-height: 1.1;
}

.brand-text small {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 42px);
  color: #111;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: translateY(5px);
  transition: 0.22s ease;
}

.global-nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid rgba(8, 36, 61, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
}

.language-switch span,
.language-switch [aria-current="true"] {
  background: var(--gold);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(42deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-42deg);
}

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 14px;
  left: 14px;
  z-index: 38;
  display: grid;
  gap: 2px;
  max-height: calc(100vh - 92px);
  overflow: auto;
  border: 1px solid rgba(74, 144, 226, 0.26);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(24, 55, 70, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mobile-nav a {
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--navy);
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--sky-3);
  color: var(--main);
}

.nav-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 30px;
  background: linear-gradient(180deg, #74B8E3, var(--gold));
  color: #111;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(74, 144, 226, 0.22);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button::after {
  content: ">";
  font-size: 24px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 78, 121, 0.18);
}

.button-secondary {
  border: 1px solid rgba(51, 51, 51, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 94px);
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 35%, rgba(42, 149, 201, 0.24), transparent 27%),
    linear-gradient(110deg, #FBFDFF 0%, var(--base) 43%, rgba(74, 144, 226, 0.18) 100%);
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 160px;
  background-image: radial-gradient(circle at 12px 12px, rgba(74, 144, 226, 0.16) 2px, transparent 3px);
  background-size: 26px 26px;
  content: "";
  opacity: 0.8;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: clamp(54px, 6vw, 96px) clamp(28px, 4vw, 64px) clamp(54px, 6vw, 86px) clamp(28px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  margin-bottom: 28px;
  color: #111;
  font-size: clamp(46px, 5.15vw, 78px);
  line-height: 1.18;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 36px;
  font-size: 19px;
  font-weight: 650;
}

.hero-points {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
  text-align: center;
}

.hero-points div {
  display: grid;
  justify-items: center;
  gap: 11px;
}

.hero-points strong {
  color: #222;
  font-size: 15px;
  line-height: 1.55;
}

.point-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 3px solid rgba(74, 144, 226, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, var(--sky-2));
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(24, 55, 70, 0.08);
}

.point-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  margin-left: 0;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  mix-blend-mode: normal;
}

.hero-visual::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(34%, 340px);
  background: linear-gradient(
    90deg,
    rgba(243, 251, 253, 0.96) 0%,
    rgba(243, 251, 253, 0.52) 42%,
    rgba(243, 251, 253, 0) 100%
  );
  content: "";
  pointer-events: none;
}

.sakura-branch {
  position: absolute;
  top: 4%;
  left: -5%;
  z-index: 2;
  width: 430px;
  height: 130px;
  border-top: 7px solid rgba(137, 96, 69, 0.38);
  border-radius: 50%;
  transform: rotate(0deg);
}

.sakura-branch span {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 48% 52%;
  background: rgba(249, 178, 190, 0.82);
  box-shadow: 26px 18px 0 rgba(249, 178, 190, 0.7), -18px 20px 0 rgba(249, 178, 190, 0.64);
}

.sakura-branch span:nth-child(1) { left: 58px; top: 14px; }
.sakura-branch span:nth-child(2) { left: 142px; top: 26px; }
.sakura-branch span:nth-child(3) { left: 228px; top: 10px; }
.sakura-branch span:nth-child(4) { left: 312px; top: 31px; }
.sakura-branch span:nth-child(5) { left: 390px; top: 4px; }

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px clamp(20px, 4vw, 28px);
}

.section-tint {
  max-width: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(74, 144, 226, 0.1), transparent 23%),
    linear-gradient(180deg, var(--sky-3), #FBFDFF);
}

.benefits.section {
  max-width: 1420px;
}

.courses > *,
.faq > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  z-index: 1;
  text-wrap: balance;
}

.section-heading h2::after {
  position: absolute;
  right: 2%;
  bottom: -10px;
  left: 2%;
  z-index: -1;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 10%, var(--gold) 92%, transparent 100%);
  content: "";
  transform: rotate(0deg);
}

.section-heading.centered h2::before,

.section-heading.centered h2::before {
  right: auto;
  left: -52px;
  transform: scaleX(-1) rotate(18deg);
}

.decorated-section::before {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 210px;
  height: 96px;
  background:
    repeating-radial-gradient(ellipse at bottom, transparent 0 11px, rgba(74, 144, 226, 0.13) 12px 14px, transparent 15px 28px);
  content: "";
  opacity: 0.7;
  pointer-events: none;
}



.section-heading.centered p:not(.eyebrow),
.section-heading.split > p {
  color: var(--muted);
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  max-width: var(--max);
  margin-bottom: 34px;
}

.section-heading.split > p {
  max-width: 430px;
  margin-bottom: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 58px);
}

.benefit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3vw, 42px) clamp(22px, 2.8vw, 34px) clamp(30px, 3vw, 42px);
  border: 1px solid var(--line);
  text-align: center;
}

.benefit-photo {
  position: relative;
  width: min(300px, 100%);
  margin: 0 auto 50px;
}

.benefit-photo img {
  width: 100%;
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(24, 55, 70, 0.13);
}

.benefit-badge {
  position: absolute;
  right: 50%;
  bottom: -28px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  transform: translateX(50%);
  box-shadow: 0 14px 28px rgba(24, 55, 70, 0.12);
}

.benefit-badge svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.badge-blue {
  background: var(--accent);
}

.badge-pink {
  background: #74B8E3;
}

.badge-green {
  background: var(--accent);
}

.benefit-card h3 {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(23px, 1.75vw, 30px);
  line-height: 1.35;
  white-space: nowrap;
}

.benefit-card h3::before {
  content: none;
}

.benefit-card h3::after {
  position: absolute;
  right: -8px;
  bottom: -9px;
  left: -8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  z-index: -1;
  transform: rotate(0deg);
}

.benefit-card p {
  max-width: 29em;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.9;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.course-card {
  position: relative;
  display: grid;
  min-height: 248px;
  grid-template-columns: minmax(270px, 340px) minmax(0, 1fr) 188px;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(24, 55, 70, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.course-card::before {
  position: absolute;
  top: 24px;
  right: 188px;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: var(--sky);
  content: "";
}

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

.course-card.featured {
  border-color: rgba(255, 215, 0, 0.85);
  background: linear-gradient(90deg, #FBFDFF 0%, #EEF6FC 100%);
}

.course-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.course-photo img {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
}

.course-card:nth-child(1) .course-photo img {
  object-position: center;
}

.course-body {
  display: grid;
  align-content: center;
  padding: 34px clamp(28px, 4vw, 48px);
}

.course-side {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 30px 28px;
  min-width: 188px;
  border-left: 1px solid rgba(216, 237, 242, 0.85);
  background: #FBFDFF;
}

.course-side strong {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  white-space: nowrap;
}

.course-side strong.price-wide {
  transform: translateX(-12px);
}

.course-side small {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.course-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-2);
  color: var(--blue);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.78), 0 10px 22px rgba(24, 55, 70, 0.08);
}

.course-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.course-image-icon {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.course-image-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.course-icon.icon-gold {
  background: #fff0b0;
  color: #b07900;
}

.course-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.16;
}

.jp-name {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 900;
}

.jp-name::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--sky);
  content: "";
}

.jp-name.accent-orange {
  color: #2A78BE;
}

.jp-name.accent-orange::after {
  background: var(--gold);
}

.course-card p:not(.jp-name) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.course-card strong {
  display: inline-block;
  color: var(--navy);
  /* font-size: clamp(34px, 4vw, 46px); */
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1;
}

.course-card small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.course-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 34px auto 0;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.course-tagline span:last-child {
  position: relative;
  color: var(--accent);
}

.course-tagline span:last-child::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  z-index: -1;
}

.mini-logo {
  display: inline-block;
  width: 66px;
  height: 50px;
  border-radius: 10px;
  background: url("assets/logo-fuji-sun.png") center / cover no-repeat;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.flow {
  max-width: 1480px;
}

.flow-grid article {
  position: relative;
  min-height: 548px;
  padding: 30px 28px 38px;
  border: 1px solid rgba(216, 237, 242, 0.75);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(24, 55, 70, 0.1);
  text-align: center;
}

.flow-grid article:not(:last-child)::after {
  position: absolute;
  top: 48%;
  right: -28px;
  z-index: 2;
  color: var(--blue);
  content: "→";
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.flow-number {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #74B8E3, var(--gold));
  color: var(--navy);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  transform: none;
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.flow-number::after {
  content: none;
}

.flow-illustration {
  display: grid;
  height: 280px;
  margin: 34px 0 20px;
  place-items: center;
}

.flow-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ill-shirt {
  fill: #64aee3;
  stroke: var(--navy);
  stroke-width: 2.2;
}

.ill-skin {
  fill: #f1c995;
  stroke: var(--navy);
  stroke-width: 2.2;
}

.ill-hair {
  fill: #e2c083;
  stroke: var(--navy);
  stroke-width: 2.2;
}

.ill-line {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.navy-line {
  stroke: var(--navy);
  stroke-width: 2.5;
}

.ill-device,
.ill-card,
.ill-calendar,
.ill-laptop,
.ill-phone {
  fill: #f4f7f8;
  stroke: var(--navy);
  stroke-width: 2.2;
}

.ill-card {
  fill: #3f99d3;
}

.ill-card-line {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-width: 3;
}

.ill-calendar {
  fill: #ffffff;
}

.ill-face {
  fill: #f0c991;
  stroke: var(--navy);
  stroke-width: 2;
}

.ill-device-dot,
.ill-blue-fill {
  fill: var(--blue);
}

.ill-bubble,
.ill-bubble-path {
  fill: #ffffff;
  stroke: var(--navy);
  stroke-width: 2.2;
}

.ill-ray,
.ill-headset,
.ill-laptop-base {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}

.ill-hair-dark {
  fill: #2f3134;
  stroke: var(--navy);
  stroke-width: 1.6;
}

.flow-grid h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.3;
  white-space: nowrap;
}

.flow-grid h3::after {
  position: absolute;
  right: -8px;
  bottom: -9px;
  left: -8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  z-index: -1;
  transform: rotate(-2deg);
}

.flow-grid p {
  min-height: 74px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.9;
}

.reasons {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  gap: 46px;
  align-items: center;
}

.teacher-illustration {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(74, 144, 226, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, var(--sky-2));
}

.teacher-illustration::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: 0.36;
}

.teacher-illustration img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
}

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

.reason-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 55, 70, 0.06);
}

.reason-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: #13485d;
  font-weight: 900;
}

.reason-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.results {
  max-width: none;
  background: var(--deep);
  color: #fff;
}

.results .section-heading,
.results .stats-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.results h2 {
  color: #fff;
}

.results .eyebrow {
  color: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stats-grid article {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(74, 144, 226, 0.14), rgba(245, 248, 252, 0.08));
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(46px, 6vw, 74px);
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.voice-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 55, 70, 0.07);
}

.voice-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  margin: 18px 0 12px;
  color: var(--gold-dark);
  letter-spacing: 2px;
}

.voice-card p {
  color: var(--muted);
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card span {
  color: #408ead;
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 55, 70, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #1d333d;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.cta {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 28px auto;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), #ffffff 130%);
  box-shadow: var(--shadow);
}

.cta h2 {
  color: #111;
}

.cta p:not(.eyebrow) {
  margin-bottom: 0;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(24, 55, 70, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 127, 167, 0.2);
  box-shadow: 0 18px 34px rgba(24, 55, 70, 0.1);
}

.blog-card > img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.blog-card:hover > img {
  transform: scale(1.035);
}

.blog-card > div {
  padding: 22px;
}

.blog-card > div span,
.blog-card > div time {
  color: #4fa4db;
  font-size: 13px;
  font-weight: 900;
}

.blog-card > div time {
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
}

.blog-card > div p {
  color: var(--muted);
}

.blog-card .read-more {
  display: inline-flex;
  margin-top: 10px;
  color: #257fa7;
  font-weight: 900;
}

.blog-thumb {
  position: relative;
  height: 178px;
  margin: 0;
  overflow: hidden;
  background: var(--sky-3);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.045);
}

.blog-thumb figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #257fa7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.blog-body {
  padding: 22px;
}

.blog-body span {
  color: #4fa4db;
  font-size: 13px;
  font-weight: 900;
}

.blog-body p {
  color: var(--muted);
}

.blog-body a,
.text-link {
  color: #257fa7;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-badges a {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--sky-2);
  color: #257fa7;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #222;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--gray);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.line-consult,
.download {
  max-width: none;
}

.line-card,
.download-card {
  display: grid;
  max-width: var(--max);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  margin: 0 auto;
  border: 1px solid rgba(74, 144, 226, 0.26);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.line-card {
  grid-template-columns: 260px 1fr;
  padding: clamp(30px, 5vw, 54px);
}

.line-qr {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 12px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 36, 61, 0.12) 12px, transparent 12px) 0 0 / 30px 30px,
    linear-gradient(rgba(8, 36, 61, 0.12) 12px, transparent 12px) 0 0 / 30px 30px,
    var(--sky-2);
  color: #257fa7;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(24, 55, 70, 0.12);
}

.line-card h2,
.download-card h2 {
  margin-bottom: 16px;
}

.line-card p:not(.eyebrow),
.download-card p:not(.eyebrow) {
  color: var(--muted);
}

.download-card {
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(74, 144, 226, 0.2), transparent 28%),
    #fff;
}

.download-card figure {
  height: 100%;
  min-height: 320px;
  margin: 0;
}

.download-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-card > div {
  padding: clamp(30px, 5vw, 56px) clamp(28px, 5vw, 62px) clamp(30px, 5vw, 56px) 0;
}

.download-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 24px;
}

.download-form input {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--gray);
  color: var(--text);
}

.site-footer {
  background: #102f3c;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.95fr 1.1fr;
  gap: clamp(24px, 5vw, 58px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px clamp(20px, 4vw, 28px);
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: #fff;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: #fff;
}

.sns-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.sns-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sns-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.sns-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-placeholder {
  display: grid;
  width: 92px;
  height: 92px;
  margin-top: 16px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(20px, 4vw, 28px) 76px;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 215, 0, 0.2), transparent 20%),
    linear-gradient(135deg, #FBFDFF 0%, var(--sky-3) 72%, rgba(74, 144, 226, 0.22) 100%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  max-width: var(--max);
  align-items: center;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.page-hero p {
  color: var(--muted);
  font-weight: 650;
}

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

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.page-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 55, 70, 0.06);
}

.contact-panel .contact-methods,
.contact-info-panel .contact-methods {
  grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 24px;
}

.contact-method-card {
  display: grid;
  align-content: start;
  min-height: 218px;
  min-width: 0;
  overflow: hidden;
  padding: 22px 20px 24px;
  border-color: rgba(74, 144, 226, 0.32);
}

.contact-method-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(24, 55, 70, 0.1));
}

.contact-method-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.3;
  word-break: keep-all;
}

.contact-method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-method-card .contact-email {
  overflow-wrap: anywhere;
  word-break: normal;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  text-align: left;
}

.price-table th {
  background: var(--sky-2);
  color: var(--navy);
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 55, 70, 0.06);
}

.step-card strong {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 26px;
}

.teacher-profile {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.teacher-profile img {
  border-radius: var(--radius);
  background: var(--sky-2);
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.article-content,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 55, 70, 0.06);
}

.article-content {
  padding: clamp(28px, 5vw, 54px);
}

.article-content img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.side-panel {
  padding: 24px;
}

.side-panel a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: #257fa7;
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Deep blue friendly school theme */
.site-header {
  border-bottom-color: rgba(31, 78, 121, 0.14);
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.96), rgba(227, 240, 250, 0.94));
  box-shadow: 0 8px 24px rgba(31, 78, 121, 0.07);
}

.brand-text strong,
.global-nav,
h1,
.hero-points strong {
  color: var(--main);
}

.brand-text small,
.eyebrow,
h1 span,
.blog-body span,
.blog-card > div span,
.text-link,
.side-panel a,
.jp-name,
.course-tagline span:last-child {
  color: var(--accent);
}

.global-nav a::after,
.section-heading h2::after,
.section-heading.centered h2::before,
.benefit-card h3::after,
.course-card::before,
.jp-name::after,
.course-tagline span:last-child::after {
  background: var(--accent);
}

.language-switch,
.menu-toggle,
.mobile-nav {
  border-color: rgba(31, 78, 121, 0.16);
  background: rgba(251, 253, 255, 0.9);
  color: var(--deep-blue);
}

.language-switch span,
.language-switch [aria-current="true"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--accent);
  color: #FBFDFF;
}

.button {
  border-radius: 999px;
  background: linear-gradient(180deg, #66B8EA, var(--accent));
  color: #FBFDFF;
  box-shadow: 0 12px 24px rgba(74, 144, 226, 0.22);
}

.button:hover {
  background: linear-gradient(180deg, #78C4F0, #3D82D2);
  box-shadow: 0 16px 28px rgba(31, 78, 121, 0.18);
}

.button-secondary {
  border: 1px solid rgba(31, 78, 121, 0.18);
  background: rgba(251, 253, 255, 0.92);
  color: var(--deep-blue);
}

.hero {
  background:
    radial-gradient(circle at 42% 35%, rgba(42, 149, 201, 0.24), transparent 30%),
    linear-gradient(110deg, var(--base) 0%, #FBFDFF 45%, rgba(74, 144, 226, 0.18) 100%);
}

.hero::after {
  background-image: radial-gradient(circle at 12px 12px, rgba(74, 144, 226, 0.14) 2px, transparent 3px);
}

.hero-visual::before {
  background: linear-gradient(
    90deg,
    rgba(245, 248, 252, 0.96) 0%,
    rgba(245, 248, 252, 0.5) 42%,
    rgba(245, 248, 252, 0) 100%
  );
}

.sakura-branch {
  border-top-color: rgba(31, 78, 121, 0.28);
}

.sakura-branch span {
  background: rgba(102, 184, 234, 0.72);
  box-shadow: 26px 18px 0 rgba(74, 144, 226, 0.44), -18px 20px 0 rgba(42, 149, 201, 0.38);
}

.section {
  background: var(--base);
}

.section-tint,
.courses,
.faq,
.page-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(74, 144, 226, 0.1), transparent 24%),
    linear-gradient(180deg, var(--base), #FBFDFF);
}

.benefit-card,
.course-card,
.flow-grid article,
.reason-list article,
.stats-grid article,
.voice-card,
.faq-list details,
.blog-card,
.contact-form,
.line-card,
.download-card,
.page-card,
.contact-method-card,
.step-card,
.teacher-profile,
.article-content,
.side-panel {
  border-color: var(--line-soft);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--surface), var(--surface-blue));
  box-shadow: 0 14px 30px rgba(31, 78, 121, 0.09);
}

.benefit-card {
  background: rgba(251, 253, 255, 0.82);
}

.benefit-photo img {
  border-color: #FBFDFF;
  box-shadow: 0 18px 34px rgba(31, 78, 121, 0.1);
}

.benefit-card h3 {
  color: var(--main);
}

.benefit-card p {
  color: #526779;
}

.course-card:hover,
.blog-card:hover,
.voice-card:hover {
  box-shadow: 0 18px 36px rgba(31, 78, 121, 0.13);
}

.course-card.featured {
  border-color: rgba(74, 144, 226, 0.58);
  background: linear-gradient(90deg, #FBFDFF 0%, #EEF6FC 100%);
}

.course-side {
  border-left-color: rgba(31, 78, 121, 0.13);
  background: var(--surface);
}

.point-icon,
.course-icon,
.benefit-badge,
.reason-list span,
.contact-method-icon,
.flow-number {
  border-color: rgba(74, 144, 226, 0.34);
  background: linear-gradient(145deg, #FBFDFF, var(--surface-blue-2));
  color: var(--main);
  box-shadow: 0 10px 22px rgba(31, 78, 121, 0.08);
}

.course-image-icon {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.flow-number,
.benefit-badge,
.reason-list span {
  background: linear-gradient(180deg, #66B8EA, var(--accent));
  color: #FBFDFF;
}

.badge-blue,
.badge-pink,
.badge-green {
  background: var(--accent);
}

.course-icon.icon-gold,
.jp-name.accent-orange::after {
  background: var(--surface-blue-2);
  color: var(--main);
}

.jp-name.accent-orange {
  color: var(--main);
}

.results,
.cta,
.site-footer {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--main) 100%);
  color: #FBFDFF;
}

.results .eyebrow,
.site-footer .eyebrow,
.footer-grid h3,
.footer-grid a:hover,
.sns-links a:hover {
  color: #D8ECFA;
}

.cta .button {
  background: linear-gradient(180deg, #8CCAF0, var(--accent));
  color: #FBFDFF;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.download-form input {
  border-color: var(--line-soft);
  border-radius: 16px;
  background: #FBFDFF;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.download-form input:focus {
  outline: 3px solid rgba(74, 144, 226, 0.24);
  border-color: var(--accent);
}

.price-table th {
  background: var(--main);
  color: #FBFDFF;
}

.price-table th,
.price-table td {
  border-color: var(--line-soft);
}

.ill-shirt,
.ill-card,
.ill-blue-fill {
  fill: var(--accent);
}

.ill-device,
.ill-calendar,
.ill-laptop,
.ill-phone {
  fill: #FBFDFF;
  stroke: var(--main);
}

.ill-line,
.ill-bubble,
.ill-bubble-path,
.ill-ray,
.ill-headset,
.ill-laptop-base,
.navy-line {
  stroke: var(--main);
}

.sns-links a,
.qr-placeholder {
  border-color: rgba(74, 144, 226, 0.22);
  background: rgba(74, 144, 226, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1200px) {
  .global-nav {
    gap: 18px;
    font-size: 16px;
  }

  .benefit-card h3 {
    white-space: normal;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .global-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header > .language-switch {
    display: none;
  }

  .mobile-nav .language-switch {
    margin-top: 8px;
  }

  .benefit-grid {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: clamp(28px, 5vw, 70px);
  }

  .hero-visual {
    min-height: 480px;
    margin-left: 0;
  }

  .reasons,
  .contact,
  .page-hero-inner,
  .teacher-profile,
  .article-layout,
  .contact-panel,
  .line-card,
  .download-card {
    grid-template-columns: 1fr;
  }

  .teacher-illustration {
    max-width: 380px;
  }

  .line-qr {
    width: min(220px, 100%);
  }

  .download-card > div {
    padding: 0 28px 34px;
  }

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

@media (max-width: 900px) {
  .contact-panel .contact-methods,
  .contact-info-panel .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-method-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 110px;
  }

  .site-header {
    height: var(--header-height);
    min-height: 110px;
    padding: 14px 24px;
  }

  .global-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 54px;
    height: 43px;
    flex-basis: 54px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .site-header > .language-switch {
    display: none;
  }

  .mobile-nav .language-switch {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 42px 18px 26px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-points,
  .benefit-grid,
  .course-grid,
  .flow-grid,
  .stats-grid,
  .voice-grid,
  .blog-grid,
  .page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    grid-template-columns: 1fr;
  }

  .course-card::before {
    display: none;
  }

  .course-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .course-body {
    padding: 26px 24px 12px;
  }

  .course-side {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    padding: 10px 24px 28px;
    border-top: 1px solid rgba(216, 237, 242, 0.85);
    border-left: 0;
  }

  .course-side strong.price-wide {
    transform: none;
  }

  .course-icon {
    width: 68px;
    height: 68px;
  }

  .course-icon svg {
    width: 42px;
    height: 42px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .hero-points {
    gap: 16px;
    text-align: left;
  }

  .hero-points div {
    grid-template-columns: 58px 1fr;
    justify-items: start;
    text-align: left;
  }

  .point-icon {
    width: 58px;
    height: 58px;
  }

  .hero-actions,
  .cta,
  .section-heading.split,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: 360px;
    margin-left: 0;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, var(--base) 0%, rgba(245, 248, 252, 0.1) 40%);
  }

  .sakura-branch {
    left: 7%;
    width: 300px;
    transform: scale(0.7) rotate(-7deg);
    transform-origin: top left;
  }

  .reason-list article {
    grid-template-columns: 1fr;
  }

  .section-heading h2::before,
  .flow-grid article:not(:last-child)::after,
  .decorated-section::after {
    display: none;
  }

  .flow-grid article {
    min-height: auto;
    padding: 28px 22px 30px;
  }

  .flow-illustration {
    height: 250px;
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .flow-number {
    top: 26px;
    left: 26px;
    width: 62px;
    height: 62px;
    font-size: 27px;
  }

  .flow-grid p {
    min-height: 0;
  }

  .course-tagline {
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }

  .contact-form {
    padding: 22px;
  }

  .line-card {
    padding: 24px;
  }

  .line-qr {
    width: 180px;
    height: 180px;
  }

  .download-form {
    grid-template-columns: 1fr;
  }

  .download-card figure {
    min-height: 220px;
  }
}
