:root {
  --color-main: #36a8ff;
  --color-main-light: #bde8ff;
  --color-main-dark: #1577bd;
  --color-accent: #ff914d;
  --color-accent-light: #ffd2a9;
  --color-sub: #ffe66d;
  --color-green: #56c878;
  --color-line: #06c755;
  --color-phone: #4a90d9;
  --color-bg: #fffdf0;
  --color-bg-alt: #fff8e7;
  --color-text: #463827;
  --color-muted: #7a6a59;
  --color-white: #fff;
  --font-heading: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-body: 'Kiwi Maru', 'Noto Sans JP', serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 5px 14px rgba(70, 56, 39, .12);
  --shadow-hover: 0 10px 26px rgba(70, 56, 39, .18);
  --header-height: 72px;
  --transition: .28s cubic-bezier(.175,.885,.32,1.275);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: radial-gradient(#ffe66d 1.5px, transparent 1.5px), radial-gradient(#bde8ff 1.2px, transparent 1.2px);
  background-position: 0 0, 22px 22px;
  background-size: 44px 44px;
  font-size: 17px;
  line-height: 1.9;
  overflow-x: hidden;
  padding-bottom: 64px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
table { width: 100%; border-collapse: collapse; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.fade-in { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

.header {
  position: fixed; inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 253, 240, .96);
  border-bottom: 3px dashed var(--color-main-light);
  backdrop-filter: blur(8px);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.header-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--color-main);
  font-size: 15px;
  line-height: 1.05;
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 var(--color-sub);
}
.header-logo span { font-size: 28px; color: var(--color-accent); }
.header-nav { display: none; }
.header-nav ul { display: flex; align-items: center; gap: 22px; }
.header-nav a { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--color-text); }
.header-nav a:hover { color: var(--color-main); }
.nav-cta-btn { color: #fff !important; background: var(--color-accent); padding: 8px 18px; border-radius: 999px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; justify-content: center; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--color-main); border-radius: 99px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.header-nav.open {
  position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
  z-index: 1001;
  display: block;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  background: var(--color-bg);
  border-top: 3px dashed var(--color-main-light);
  box-shadow: 0 12px 30px rgba(70, 56, 39, .16);
  padding: 18px 20px 88px;
}
.header-nav.open ul {
  width: min(350px, 100%);
  margin: 0 auto;
  flex-direction: column;
  gap: 10px;
}
.header-nav.open li {
  width: 100%;
}
.header-nav.open a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 2px dashed var(--color-main-light);
  border-radius: 16px;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(70, 56, 39, .08);
}
.header-nav.open .nav-cta-btn {
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  background: var(--color-accent);
  box-shadow: 0 8px 18px rgba(255, 145, 77, .24);
}

.hero { margin-top: var(--header-height); padding: 58px 0 66px; position: relative; overflow: hidden; }
.hero-flex { display: grid; gap: 36px; align-items: center; text-align: center; }
.hero-flex > * { min-width: 0; }
.hero-intro { width: 100%; max-width: 100%; overflow: hidden; }
.hero-support { display: grid; gap: 28px; align-items: center; }
.hero-tags, .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.tag {
  display: inline-flex; align-items: center;
  min-height: 34px; padding: 4px 16px; border-radius: 999px;
  background: #fff; border: 2px solid currentColor;
  font-family: var(--font-heading); font-weight: 900; font-size: 14px;
}
.tag-blue { color: var(--color-main); }
.tag-orange { color: var(--color-accent); }
.hero-title { margin: 18px 0 16px; }
.title-sub { display: block; color: var(--color-main-dark); font-weight: 800; font-size: clamp(13px, 3vw, 18px); max-width: 100%; overflow-wrap: anywhere; }
.title-main {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: clamp(28px, 7.1vw, 66px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: 3px 3px 0 #fff, 7px 7px 0 rgba(255, 145, 77, .24);
  transform: rotate(-1deg);
}
.title-main-desktop { display: none; }
.mobile-break { display: inline; }
.hero-badge {
  width: min(100%, 320px);
  padding: 8px 16px; border-radius: 999px; color: #fff;
  font-family: var(--font-heading); font-size: 13px; font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-badge-blue { background: var(--color-main); }
.hero-badge-orange { background: var(--color-accent); }
.hero-cta-box {
  margin: 24px auto 0; width: 100%; max-width: 500px; background: #fff;
  border: 4px solid var(--color-sub); border-radius: var(--radius);
  padding: 24px 18px; box-shadow: 8px 8px 0 rgba(255,230,109,.35);
  overflow-wrap: anywhere;
}
.hero-cta-box p { margin-bottom: 18px; text-align: left; }
.hero-cta-box strong { color: var(--color-main-dark); background: linear-gradient(transparent 62%, var(--color-sub) 62%); }
.hero-cta-actions {
  display: grid;
  gap: 10px;
}
.hero-cta-actions .btn {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  text-align: center;
}
.hero-cta-note {
  margin: 12px auto 0 !important;
  text-align: center !important;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}
.hero-image { position: relative; max-width: 500px; margin: 0 auto; }
.hero-illustration { filter: drop-shadow(5px 5px 0 rgba(70,56,39,.08)); }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
}
.deco-card {
  position: absolute; padding: 12px 18px; background: #fff;
  border: 3px dashed var(--color-accent); border-radius: 16px;
  font-family: var(--font-heading); font-weight: 900; color: var(--color-accent);
  box-shadow: var(--shadow);
}
.deco-card-top { top: 6%; right: 0; transform: rotate(7deg); }
.deco-card-bottom { bottom: 4%; left: 0; color: var(--color-main); border-color: var(--color-main); transform: rotate(-8deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 28px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 900; line-height: 1.2;
  color: #fff; transition: var(--transition); box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--color-accent); }
.btn-phone { background: var(--color-phone); }
.btn-line { background: var(--color-line); }
.btn-lg { min-height: 56px; padding: 16px 38px; font-size: 18px; }

.section { padding: 66px 0; }
.section-header { text-align: center; margin-bottom: 38px; }
.section-title {
  display: block; position: relative; z-index: 1;
  font-family: var(--font-heading); font-size: clamp(24px, 7vw, 40px);
  color: var(--color-main); font-weight: 900; line-height: 1.45;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.section-title-deco {
  width: min(420px, 78vw); height: 9px; border-radius: 99px;
  background: var(--color-sub); margin: -12px auto 0; transform: rotate(-1deg);
}

.section-title-wide + .section-title-deco {
  width: min(640px, calc(100vw - 70px));
}
.section-lead { max-width: 720px; margin: 18px auto 0; text-align: left; color: var(--color-muted); }
.section-worries, .section-features, .section-before-after, .section-faq { background: var(--color-bg-alt); }
.section-ican, .section-materials, .section-achievements { background: #fff; }
.achievement-title-desktop { display: none; }

.ican-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ican-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 14px;
  align-items: start;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 3px dashed var(--color-main-light);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.ican-point span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  grid-row: span 2;
  margin-bottom: 0;
}

.ican-point h3 {
  font-family: var(--font-heading);
  color: var(--color-main-dark);
  font-size: 20px;
  margin-bottom: 8px;
}

.ican-point p {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 15px;
}

.example-box {
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: 850px;
  margin: 28px auto 0;
  background: #fff;
  border: 4px solid var(--color-sub);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 8px 8px 0 rgba(255,230,109,.28);
}

.sensei-icon {
  width: 86px;
  margin: 0 auto;
}

.example-box p {
  text-align: left;
  color: var(--color-muted);
}

.example-box strong {
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.worry-grid, .features-grid, .course-cards, .contact-methods {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.worry-card, .feature-card, .course-card, .contact-method, .teacher-card, .message-box, .schedule-box, .access-info, .access-photo {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
}
.worry-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 14px;
  align-items: start;
  padding: 30px 24px;
  border-top: 6px solid var(--color-main);
}
.worry-card:nth-child(2) { border-top-color: var(--color-accent); }
.worry-card:nth-child(3) { border-top-color: var(--color-green); }
.worry-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--color-sub);
  font-family: var(--font-heading); font-weight: 900; color: var(--color-main-dark);
  grid-row: span 2;
  margin-bottom: 0;
}
.worry-card h3, .feature-card h3, .step h3, .course-card h3, .contact-method h3 {
  font-family: var(--font-heading); color: var(--color-main-dark); font-size: 20px; margin-bottom: 8px;
}
.worry-card p, .feature-card p, .course-card p, .step p { color: var(--color-muted); font-size: 15px; text-align: left; }
.ican-point h3, .worry-card h3 { align-self: center; margin-bottom: 0; }
.worry-card p { grid-column: 2; }

.mini-cta { background: linear-gradient(135deg, var(--color-main), var(--color-main-light)); color: #fff; padding: 24px 0; }
.mini-cta-inner { display: grid; gap: 16px; align-items: center; text-align: center; }
.mini-cta p { font-family: var(--font-heading); font-size: 18px; font-weight: 900; }
.mini-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.message-box { text-align: center; padding: 38px 24px; border: 4px dashed var(--color-main-light); }
.message-icon { width: 92px; margin: 0 auto 12px; border-radius: 18px; }
.message-box h2 { font-family: var(--font-heading); color: var(--color-accent); font-size: clamp(24px, 5vw, 36px); line-height: 1.55; margin-bottom: 16px; }
.message-box p { max-width: 760px; margin: 0 auto 14px; text-align: left; }
.message-catch {
  display: inline-block; padding: 18px 20px; background: var(--color-bg-alt);
  border-radius: var(--radius-sm); border-left: 6px solid var(--color-accent);
  font-family: var(--font-heading); font-weight: 900; color: var(--color-main-dark);
}

.feature-card { padding: 30px 22px; text-align: center; transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-img { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 14px; }
.feature-kids { width: 118px; }

.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.materials-grid figure {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}

.materials-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.materials-grid figcaption {
  margin-top: 10px;
  text-align: left;
  color: var(--color-main-dark);
  font-size: 14px;
}

.materials-grid figcaption strong {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}

.materials-grid figcaption span {
  display: block;
  color: var(--color-muted);
  line-height: 1.8;
}

.achievement-carousel {
  position: relative;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  overflow: hidden;
  padding: 8px 0 18px;
}

.achievement-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 20px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
}

.achievement-track.is-dragging {
  cursor: grabbing;
}

.achievement-slide {
  flex: 0 0 min(82vw, 330px);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

.achievement-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  pointer-events: none;
}

.carousel-hint {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-weight: 900;
}

.method-layout { display: grid; gap: 26px; align-items: center; }
.method-photo { border-radius: var(--radius); overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow); }
.method-photo img { width: 100%; height: 100%; object-fit: cover; }
.method-steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 12px; background: #fff; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); }
.step span {
  grid-row: span 2; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: var(--color-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 900; font-size: 20px;
}

.change-lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.85;
  text-align: left;
}
.change-grid {
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.change-card {
  --change-color: var(--color-main);
  --change-shadow: var(--color-main-light);
  position: relative;
  padding: 34px 30px 30px;
  background: var(--color-white);
  border: 3px solid var(--change-color);
  border-radius: 30px;
  box-shadow: 6px 7px 0 var(--change-shadow);
}
.change-card:nth-child(2) {
  --change-color: var(--color-accent);
  --change-shadow: var(--color-accent-light);
}
.change-card:nth-child(3) {
  --change-color: var(--color-green);
  --change-shadow: #c7f0d2;
}
.change-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--change-color);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
}
.change-kicker {
  margin-bottom: 12px;
  color: var(--change-color);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}
.change-card h3 {
  margin-bottom: 26px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 4.8vw, 29px);
  font-weight: 900;
  line-height: 1.5;
}
.change-story {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 2px dashed #eadfce;
}
.change-story-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.change-story-row p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
.change-label {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3eee6;
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}
.change-story-result .change-label { background: var(--color-sub); color: var(--color-text); }
.change-story-result p { color: var(--color-text); font-family: var(--font-heading); font-weight: 700; }

.teacher-card { padding: 28px; display: grid; gap: 22px; align-items: center; }
.teacher-photo-wrapper { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; border: 4px solid var(--color-accent-light); margin: 0 auto; }
.teacher-photo-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.teacher-name { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: var(--color-main-dark); margin-bottom: 12px; }
.teacher-message { background: var(--color-sub); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; }
.teacher-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.teacher-tags li { background: var(--color-main-light); color: var(--color-main-dark); border-radius: 999px; padding: 5px 14px; font-family: var(--font-heading); font-weight: 900; font-size: 13px; }

.teacher-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px auto 0;
  max-width: 920px;
}

.teacher-support-grid article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 14px;
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--color-main);
}

.teacher-support-grid article:nth-child(2) {
  border-top-color: var(--color-accent);
}

.teacher-support-grid article:nth-child(3) {
  border-top-color: var(--color-green);
}

.teacher-support-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-sub);
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  grid-row: span 2;
  margin-bottom: 0;
}

.teacher-support-grid h3 {
  align-self: center;
  font-family: var(--font-heading);
  color: var(--color-main-dark);
  font-size: 18px;
  margin-bottom: 0;
}

.teacher-support-grid p {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.course-card { position: relative; padding: 28px 22px; border: 4px dashed var(--color-main-light); text-align: center; }
.course-card.popular { border-color: var(--color-accent); }
.course-card.popular::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: calc(var(--radius) - 6px);
  border: 2px solid rgba(255, 145, 77, .18);
  pointer-events: none;
}
.course-num {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-sub);
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-weight: 900;
}
.course-badge { display: inline-block; background: var(--color-accent); color: #fff; border-radius: 999px; padding: 3px 12px; font-family: var(--font-heading); font-weight: 900; font-size: 12px; margin-bottom: 8px; }
.course-price { font-family: var(--font-heading); font-size: 38px !important; font-weight: 900; color: var(--color-accent) !important; text-align: center !important; line-height: 1.35; }
.course-price span { font-size: 15px; color: var(--color-muted); }
.pricing-option {
  margin-top: 18px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 4px dashed var(--color-green);
  box-shadow: var(--shadow);
}
.pricing-option h3 {
  font-family: var(--font-heading);
  color: var(--color-main-dark);
  font-size: 20px;
  margin-bottom: 6px;
  text-align: center;
}
.pricing-option p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}
.pricing-option strong {
  color: var(--color-accent);
  font-family: var(--font-heading);
}
.schedule-box { padding: 20px; margin-top: 22px; border: 4px dashed var(--color-sub); overflow-x: auto; }
.schedule-box h3 { font-family: var(--font-heading); color: var(--color-main-dark); text-align: center; margin-bottom: 14px; font-size: 22px; }
.schedule-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}
.schedule-support-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 4px dashed var(--color-main-light);
}
.schedule-support-card:nth-child(2) {
  border-color: var(--color-accent-light);
}
.schedule-support-card span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--color-sub);
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
}
.schedule-support-card h3 {
  font-family: var(--font-heading);
  color: var(--color-main-dark);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.schedule-support-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
.schedule-support-card p + p {
  margin-top: 8px;
}
th, td { border-bottom: 2px dashed #efe5d4; padding: 13px 14px; text-align: left; vertical-align: top; }
th { width: 130px; background: #fff3bc; color: var(--color-main-dark); font-family: var(--font-heading); }

.faq-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; gap: 16px;
  padding: 20px 22px; border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-heading); color: var(--color-main-dark); font-weight: 900; font-size: 16px; text-align: left;
}
.faq-question:hover { background: #fff2bd; }
.faq-question span:last-child { color: var(--color-accent); font-size: 24px; transition: var(--transition); }
.faq-item.active .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 22px 20px; color: var(--color-muted); font-size: 15px; }
.faq-item.active .faq-answer { max-height: 360px; }

.access-content { display: grid; gap: 24px; }
.access-info { overflow: hidden; }
.access-info a { color: var(--color-phone); font-weight: 900; }
.access-photo { overflow: hidden; min-height: 260px; border: 5px solid #fff; }
.section-contact { background: linear-gradient(135deg, var(--color-main-light), #fff4d1); }
.contact-lead { max-width: 640px; margin: -12px auto 30px; text-align: left; font-family: var(--font-heading); font-weight: 900; }
.trial-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 720px;
  margin: -10px auto 24px;
}
.trial-point {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .92);
  border: 2px dashed var(--color-main);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(70, 56, 39, .08);
}
.trial-point span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
}
.trial-point p {
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}
.contact-method { padding: 34px 22px; text-align: center; }
.contact-phone-number { display: block; color: var(--color-phone); font-family: var(--font-heading); font-weight: 900; font-size: clamp(28px, 8vw, 38px); margin: 8px 0; }
.qr { width: min(210px, 72vw); margin: 4px auto 16px; border: 2px dashed var(--color-accent-light); border-radius: 12px; padding: 8px; background: #fff; }
.line-note {
  margin: 14px auto 0;
  max-width: 300px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}
.line-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-main-dark);
  font-family: var(--font-heading);
  font-size: 15px;
}

.footer { background: #463827; color: rgba(255,255,255,.78); padding: 36px 0 26px; }
.footer a { color: var(--color-main-light); }
.footer-content { display: grid; gap: 12px; text-align: center; }
.footer-logo { font-family: var(--font-heading); color: #fff; font-size: 24px; font-weight: 900; }
.fixed-footer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 998; display: flex; box-shadow: 0 -2px 12px rgba(0,0,0,.12); }
.fixed-footer-btn {
  flex: 1;
  color: #fff;
  min-height: 58px;
  padding: 12px 8px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.25;
}
.fixed-footer-phone { background: var(--color-phone); }
.fixed-footer-line { background: var(--color-line); }
.page-top {
  position: fixed; right: 16px; bottom: 78px; z-index: 997;
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: var(--color-accent); color: #fff; font-size: 20px; font-weight: 900;
  opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow); cursor: pointer;
}
.page-top.visible { opacity: 1; visibility: visible; }

@media (min-width: 768px) {
  .mobile-break { display: none; }
  .section-title { font-size: clamp(28px, 5vw, 40px); }
  .ican-points { grid-template-columns: repeat(3, 1fr); }
  .example-box { grid-template-columns: 110px 1fr; }
  .worry-grid, .features-grid { grid-template-columns: repeat(3, 1fr); }
  .materials-grid { grid-template-columns: repeat(4, 1fr); }
  .course-cards, .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .schedule-support-grid { grid-template-columns: repeat(2, 1fr); }
  .trial-points { grid-template-columns: repeat(3, 1fr); }
  .method-layout { grid-template-columns: 1fr 1fr; }
  .access-content { max-width: 760px; margin: 0 auto; }
  .achievement-title-mobile { display: none; }
  .achievement-title-desktop { display: inline; }
  .teacher-card { grid-template-columns: 180px 1fr; max-width: 820px; margin: 0 auto; }
  .teacher-photo-wrapper { margin: 0; }
  .teacher-support-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-cta-inner { grid-template-columns: 1fr auto; text-align: left; }
}

@media (max-width: 600px) {
  .container {
    width: min(350px, calc(100% - 40px));
    margin-left: 20px;
    margin-right: auto;
  }

  .hero-image {
    max-width: 350px;
  }

  .change-card { padding: 28px 20px 24px; border-radius: 26px; }
  .change-story-row { grid-template-columns: 100px minmax(0, 1fr); gap: 10px; }
  .change-story-row p { font-size: 14px; }
  .change-label { font-size: 13px; }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .header-nav { display: block; }
  .header-nav ul { gap: 12px; }
  .header-nav a { font-size: 12px; white-space: nowrap; }
  .nav-cta-btn { padding: 8px 12px; }
  .hamburger { display: none; }
  .hero-flex {
    max-width: 1120px;
    margin: 0 auto;
    gap: 38px;
    text-align: center;
    padding: 44px 0 34px;
  }
  .hero-intro {
    max-width: 960px;
    margin: 0 auto;
  }
  .title-main-mobile { display: none; }
  .title-main-desktop {
    display: block;
    font-size: clamp(44px, 4.6vw, 66px);
    line-height: 1.28;
    overflow-wrap: normal;
    word-break: keep-all;
    text-shadow: 3px 3px 0 #fff, 7px 7px 0 rgba(255, 145, 77, .22);
  }
  .hero-badges {
    max-width: 760px;
    margin: 0 auto;
  }
  .hero-badge {
    width: min(100%, 360px);
    min-height: 46px;
    padding: 11px 22px;
    font-size: 16px;
  }
  .hero-support {
    grid-template-columns: repeat(2, minmax(0, 520px));
    justify-content: center;
    align-items: stretch;
    gap: 42px;
  }
  .hero-cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    min-height: 390px;
    margin: 0;
    padding: 34px 30px;
  }
  .hero-cta-box p {
    font-size: 17px;
    line-height: 2;
  }
  .hero-cta-actions {
    grid-template-columns: 1.15fr .85fr;
    margin-top: 4px;
  }
  .hero-cta-actions .btn {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 15px;
  }
  .hero-image {
    display: flex;
    width: 100%;
    max-width: none;
    height: 100%;
  }
  .hero-photo {
    height: 100%;
    min-height: 390px;
  }
  .section { padding: 82px 0; }
  .fixed-footer { display: none; }
  .page-top { bottom: 28px; right: 28px; }
  .footer-content { grid-template-columns: auto 1fr; text-align: left; align-items: center; justify-content: space-between; }
}
