/* ==================== Home ==================== */

main { padding-top: 116px; }
@media (max-width: 1024px) { main { padding-top: 80px; } }

/* ---------- FV (Figma node 1152:2570) ----------
   構造:
   .p-fv              height 720 / bg #F1F8FA / overflow hidden
     .p-fv__bg-photo  absolute top:0 / left:20 right:20 bottom:47 / border-radius 20
     .p-fv__ticker    absolute left:20 right:20 bottom:0 / height 37 / 横幅いっぱいの帯
     .p-fv__inner     absolute inset:0 / padding 100 / overlay content
*/
.p-fv {
  position: relative;
  height: 720px;
  background: #F1F8FA;
  overflow: hidden;
}
/* A. 背景写真 Subtract: 左右20pxマージン、下は ticker分空ける */
.p-fv__bg-photo {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 47px;  /* 37 (ticker) + 10 (gap) */
  border-radius: 20px;
  background: url('/assets/images/home/hero-main.jpg') center right / cover no-repeat;
  z-index: 1;
}
/* B. ティッカー (node 1152:2572): 写真の下に配置、帯状、左右20pxマージン */
.p-fv__ticker {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 37px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  background: none;
  text-decoration: none;
  z-index: 3;
}
.p-fv__ticker-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1C4660;
  letter-spacing: 1.2px;
  line-height: 1.4;
  white-space: nowrap;
}
.p-fv__ticker-badge {
  background: #1C4660;
  color: #fff;
  padding: 10px 15px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.4;
  white-space: nowrap;
}
.p-fv__ticker-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1C4660;
  letter-spacing: 1.6px;
  line-height: 1.76;
  width: 364px;
}
.p-fv__ticker-arrow {
  width: 20px;
  height: 10px;
  display: inline-block;
  font-size: 16px;
  color: #1C4660;
  line-height: 1;
}
/* C. FV要素 (absolute overlay / inset 0 / padding 100) */
.p-fv__inner {
  position: absolute;
  inset: 0;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  z-index: 2;
  pointer-events: none;
}
.p-fv__inner > * { pointer-events: auto; }
/* C-1 キャッチコピー */
.p-fv__copy-img {
  width: 694px;
  max-width: 100%;
  height: auto;
  display: block;
}
/* C-2 バッジブロック */
.p-fv__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  align-self: flex-start;
}
.p-fv__badges-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.p-fv__badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
}
.p-fv__badge-circle {
  width: 140px;
  height: 140px;
  border: 3px solid #B38F3A;
  border-radius: 300px;
  background: linear-gradient(200.21deg,
    #DCC98E 24.226%,
    #F2E9C3 46.404%,
    #DCC98E 72.351%,
    #C8AB5D 85.215%);
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
  margin-bottom: -120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.p-fv__badge-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #1C4660;
  height: 50px;
  justify-content: center;
}
.p-fv__badge-title { font-size: 18px; font-weight: 900; line-height: 1; }
.p-fv__badge-sub   { font-size: 14px; font-weight: 900; line-height: 1; }
.p-fv__badge-sub-row {
  display: flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  color: #1C4660;
}
.p-fv__badge-rate {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  color: #F1191A;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  line-height: 1;
  width: 100%;
}
.p-fv__badge-rate .num { font-size: 44px; line-height: 1; }
.p-fv__badge-rate .pct { font-size: 20px; line-height: 1.2; }
.p-fv__badge-wreath {
  width: 200px;
  height: 134px;
  background: url('/assets/images/home/hero-badge-1.svg') center/contain no-repeat;
  position: relative;
  z-index: 1;
  margin-bottom: -120px;
}
.p-fv__note {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  width: 100%;
  text-shadow: 4px 4px 4px rgba(0,0,0,0.1);
  line-height: 1;
}
/* C-3 タグバー */
.p-fv__tags {
  width: 507px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-fv__tag-teal {
  background: #17BFBD;
  color: #fff;
  padding: 8px 12px;
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 2.6px;
}
.p-fv__tag-teal .b { font-weight: 700; }
.p-fv__tag-teal .m { font-weight: 500; }
.p-fv__tag-white {
  background: #fff;
  color: #17BFBD;
  padding: 12px;
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 4.8px;
  white-space: nowrap;
}

/* ---------- News ticker bar ---------- */
.p-news-bar {
  background: #fff;
  border-top: 1px solid rgba(59,191,191,.2);
  border-bottom: 1px solid rgba(59,191,191,.2);
}
.p-news-bar__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.p-news-bar__date { color: var(--c-text-sub); }
.p-news-bar__tag {
  background: var(--c-teal);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-news-bar__title { flex: 1; color: var(--c-navy); }
.p-news-bar__arrow { color: var(--c-teal); font-size: 18px; }

/* ---------- Banner ---------- */
.p-banner {
  background: linear-gradient(180deg, #EAF5FA 0%, #D9F0F5 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.p-banner__heading {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.08em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-banner__heading::before,
.p-banner__heading::after {
  content: "";
  width: 48px; height: 3px;
  background: var(--c-teal);
  flex: 0 0 auto;
}
.p-banner__photos {
  max-width: 1800px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transform: translateY(60px);
}
.p-banner__photo {
  aspect-ratio: 11/6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(28,70,96,.1);
}
.p-banner__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Intro (Start Your Story) ---------- */
.p-intro {
  background: var(--c-bg-light);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.p-intro__deco-circle {
  position: absolute;
  left: 10%;
  top: 120px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(143, 216, 216, 0.18);
  z-index: 0;
  pointer-events: none;
}
.p-intro__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.p-intro__en {
  position: absolute;
  left: 44%;
  top: 20px;
  font-family: 'Oooh Baby', cursive;
  font-size: 160px;
  line-height: 1;
  color: #D9EE52;
  transform: rotate(-8deg);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.p-intro__heading {
  font-size: 32px;
  color: var(--c-navy);
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 48px;
}
.p-intro__body {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 60px;
  align-items: flex-end;
}
.p-intro__body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-text);
  max-width: 604px;
}

/* ---------- Feature ---------- */
.p-feature {
  background: linear-gradient(180deg, #F1F8FA 30%, #FFFFFF 99%);
  padding: 40px 0 120px;
  position: relative;
  overflow: hidden;
}
.p-feature__deco-tr {
  position: absolute;
  right: -260px; top: 100px;
  width: 1115px; height: 1115px;
  background: radial-gradient(circle, rgba(23,191,189,.10) 0%, rgba(23,191,189,.02) 55%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.p-feature__deco-bl {
  position: absolute;
  left: -260px; bottom: 80px;
  width: 930px; height: 930px;
  background: radial-gradient(circle, rgba(23,191,189,.08) 0%, rgba(23,191,189,.02) 55%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.p-feature .c-section-heading { max-width: 1200px; margin: 0 auto; }
.p-feature__list {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.p-feature__item {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  box-shadow: 0 12px 40px rgba(26,43,74,.06);
}
.p-feature__item--reverse { flex-direction: row-reverse; }
.p-feature__image {
  width: 360px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}
.p-feature__image img { width: 100%; height: 100%; object-fit: cover; }
.p-feature__body { flex: 1; min-width: 0; }
.p-feature__title {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #DFE7F2;
  margin-bottom: 22px;
}
.p-feature__num {
  font-family: 'Gaegu', 'Caveat', cursive;
  font-size: 64px;
  line-height: 1;
  color: #D9EE52;
  font-weight: 700;
  flex-shrink: 0;
  text-shadow: 1px 1px 0 rgba(0,0,0,.04);
}
.p-feature__title h3 {
  font-size: 20px;
  color: var(--c-navy);
  font-weight: 700;
  line-height: 1.5;
}
.p-feature__body p {
  font-size: 14px;
  color: var(--c-text);
  line-height: 2.05;
}

/* ---------- Lesson ---------- */
.p-lesson {
  background: #fff;
  padding-bottom: 120px;
  position: relative;
}
.p-lesson__deco {
  position: absolute;
  right: -100px; bottom: 60px;
  width: 400px;
  opacity: .5;
  pointer-events: none;
}
.p-lesson__tabs {
  max-width: 1000px;
  margin: 0 auto 0;
  display: flex;
  background: #E5E5E5;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.p-lesson__tab {
  flex: 1;
  padding: 24px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: 0.1em;
  transition: .25s;
  position: relative;
}
.p-lesson__tab + .p-lesson__tab::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 65px;
  background: #1C4660;
  opacity: 0.25;
}
.p-lesson__tab.is-active {
  background: #fff;
}
.p-lesson__panel {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 50px 40px;
  box-shadow: 0 12px 40px rgba(28,70,96,.06);
}
.p-lesson__panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.p-lesson__card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}
.p-lesson__img {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}
.p-lesson__img img { width: 100%; height: 100%; object-fit: cover; }
.p-lesson__body h3 {
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 18px;
  font-weight: 700;
}
.p-lesson__body p {
  font-size: 14px;
  color: var(--c-text);
  line-height: 2.1;
  margin-bottom: 32px;
}
.p-lesson__cta { text-align: center; }

/* ---------- Teachers ---------- */
.p-teachers {
  background: var(--c-bg-light);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.p-teachers__deco {
  position: absolute;
  left: -150px; bottom: 40px;
  width: 420px;
  opacity: .5;
  pointer-events: none;
}
.p-teachers__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.p-teachers__card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(28,70,96,.08);
  transition: transform .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.p-teachers__card .c-btn-outline { margin-top: auto; }
.p-teachers__card:hover { transform: translateY(-4px); }
.p-teachers__avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--c-bg-cyan);
}
.p-teachers__avatar img { width: 100%; height: 100%; object-fit: cover; }
.p-teachers__card h3 {
  font-size: 18px;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.p-teachers__card .role {
  font-size: 11px;
  color: var(--c-text-sub);
  margin-bottom: 14px;
  line-height: 1.6;
}
.p-teachers__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 18px;
}
.p-teachers__tags span {
  background: #E5E5E5;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--c-navy);
  line-height: 1.4;
}
.p-teachers__card .c-btn-outline {
  padding: 14px 20px;
  font-size: 12px;
  gap: 14px;
}
.p-teachers__card .c-btn-outline::before { height: 20px; }
.p-teachers__cta { text-align: center; margin-top: 48px; }

/* ---------- Voice ---------- */
.p-voice {
  background: var(--c-bg-light);
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.p-voice__deco-l {
  position: absolute;
  left: -100px; top: 280px;
  width: 380px;
  opacity: .45;
  pointer-events: none;
}
.p-voice__deco-r {
  position: absolute;
  right: -100px; bottom: 100px;
  width: 380px;
  opacity: .45;
  pointer-events: none;
}
.p-voice__record {
  max-width: 860px;
  margin: 0 auto 100px;
  background: #fff;
  border-radius: 20px;
  padding: 60px 70px;
  position: relative;
  box-shadow: 0 12px 40px rgba(26,43,74,.08);
}
.p-voice__ribbon {
  background: var(--c-red);
  color: #fff;
  padding: 14px 48px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(232,68,90,.25);
}
.p-voice__ribbon::before, .p-voice__ribbon::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 24px;
  background: var(--c-red);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 20% 50%);
}
.p-voice__ribbon::before { left: -24px; transform: scaleX(-1); }
.p-voice__ribbon::after { right: -24px; }

.p-voice__record .label {
  text-align: center;
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 6px;
  font-weight: 700;
}
.p-voice__rate {
  text-align: center;
  font-family: var(--f-en);
  font-size: 80px;
  color: var(--c-red);
  font-weight: 700;
  line-height: 1;
  background: url('/assets/images/home/voice-balloon.svg') center/contain no-repeat;
  padding: 20px 0 30px;
  margin-bottom: 28px;
}
.p-voice__rate span { font-size: 40px; }
.p-voice__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 56px;
  margin-bottom: 40px;
}
.p-voice__ribbon--sm {
  font-size: 18px;
  padding: 10px 36px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.p-voice__list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #E0E6EE;
  font-size: 15px;
}
.p-voice__list li span:last-child { color: var(--c-red); font-weight: 700; }

.p-voice__subtitle {
  text-align: center;
  font-size: 24px;
  color: var(--c-navy);
  margin-bottom: 40px;
  font-weight: 700;
}
.p-voice__subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-navy);
  margin: 12px auto 0;
}
.p-voice__cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-voice__card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 10px 32px rgba(26,43,74,.06);
}
.p-voice__card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.p-voice__card-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #E8EEF2;
  flex-shrink: 0;
}
.p-voice__card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.p-voice__card-meta .year {
  display: inline-block;
  background: var(--c-navy);
  color: #fff;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.p-voice__card-meta h4 {
  font-size: 17px;
  color: var(--c-navy);
  font-weight: 700;
}
.p-voice__card-meta .name {
  font-size: 12px;
  color: var(--c-text-sub);
  margin-top: 2px;
}
.p-voice__card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text);
}
.p-voice__cta { text-align: center; margin-top: 56px; }

/* ---------- News ---------- */
.p-news {
  position: relative;
  padding: 80px;
  background: url('/assets/images/home/carousel-6.jpg') center/cover no-repeat;
  overflow: hidden;
}
.p-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.p-news__card {
  position: relative;
  background: #F1F8FA;
  border-radius: 24px;
  padding: 50px;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  gap: 106px;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
}
.p-news__heading {
  width: 216px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  padding-top: 20px;
}
.p-news__heading-box {
  position: relative;
  width: 216px;
  height: 74px;
}
.p-news__heading-en {
  position: absolute;
  left: -94px;
  top: -84px;
  font-family: 'Oooh Baby', cursive;
  font-size: 130px;
  color: #D9EE52;
  line-height: 1;
  letter-spacing: -6.5px;
  transform: rotate(-7.92deg);
  white-space: nowrap;
  pointer-events: none;
  margin: 0;
}
.p-news__heading-jp {
  position: absolute;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1.4;
  margin: 0;
}
.p-news__list {
  width: 831px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-news__item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: .2s;
  text-decoration: none;
}
.p-news__item:hover { background: #FBFDFE; }
.p-news__item-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-navy);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.p-news__item-badge {
  background: var(--c-navy);
  color: #fff;
  padding: 10px 15px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  flex-shrink: 0;
}
.p-news__item-title {
  flex: 1;
  font-size: 16px;
  color: var(--c-navy);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.76;
}
.p-news__item-arrow {
  color: var(--c-navy);
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .p-news { padding: 40px 20px; }
  .p-news__card { flex-direction: column; gap: 40px; padding: 30px 20px; }
  .p-news__heading, .p-news__heading-box { width: 100%; }
  .p-news__list { width: 100%; }
  .p-news__item { padding: 16px 20px; }
  .p-news__item-title { font-size: 14px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .p-fv { min-height: auto; }
  .p-fv__inner { padding: 60px 24px; min-height: auto; }
  .p-fv__bg-photo { width: 100%; opacity: .25; clip-path: none; }
  .p-fv__copy-img { width: 100%; }
  .p-fv__tags { width: 100%; }
  .p-fv__tag-teal { font-size: 18px; }
  .p-fv__tag-white { font-size: 20px; }
  .p-banner__heading { font-size: 20px; }
  .p-banner__heading::before, .p-banner__heading::after { width: 28px; }
  .p-banner__photos { grid-template-columns: repeat(2, 1fr); }
  .p-intro__en { position: static; width: 100%; margin-bottom: 20px; }
  .p-intro__body { grid-template-columns: 1fr; gap: 24px; }
  .p-feature__item, .p-feature__item--reverse { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .p-feature__item--reverse .p-feature__image { order: 0; }
  .p-feature__image { height: 220px; }
  .p-lesson__card { grid-template-columns: 1fr; gap: 24px; }
  .p-lesson__img { aspect-ratio: 16/10; max-width: 480px; margin: 0 auto; }
  .p-teachers__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .p-voice__record { padding: 50px 28px; }
  .p-voice__rate { font-size: 56px; }
  .p-voice__rate span { font-size: 28px; }
  .p-voice__list { grid-template-columns: 1fr; gap: 6px; }
  .p-voice__cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .p-fv { padding: 40px 0 48px; }
  .p-intro { padding: 120px 0 80px; }
  .p-intro__heading { font-size: 22px; }
  .c-section-heading { padding: 80px 0 40px; }
  .c-section-heading__jp { font-size: 20px; }
  .p-feature__num { font-size: 28px; }
  .p-feature__title h3 { font-size: 16px; }
  .p-teachers__list { grid-template-columns: 1fr; }
  .p-banner__heading { font-size: 16px; padding: 0 16px; }
  .p-banner__photos { grid-template-columns: 1fr 1fr; }
}
