:root {
  --color-navy: #25324a;
  --color-pink: #e6868b;
  --color-gold: #c59b49;
  --color-turquoise: #009fa8;
  --color-cream: #fffdf8;
  --color-text: #333;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#about,
#skills,
#lesson,
#price,
#free-trial,
#application {
  scroll-margin-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-text);
  background: var(--color-cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 79px;
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(197, 155, 73, 0.22);
  backdrop-filter: blur(8px);
}
.header__inner, .header__brand, .header__right, .header__social, .header__nav, .header__nav-links {
  display: flex;
  align-items: center;
}
.header__inner {
  justify-content: space-between;
  width: min(100% - 48px, var(--content-width));
  height: 100%;
  margin-inline: auto;
}
.header__brand {
  flex: 0 0 auto;
  gap: 13px;
}
.header__logo {
  width: 44.8px;
  height: 44.8px;
}
.header__brand-text, .header__brand-school, .header__brand-course {
  display: block;
}
.header__brand-school {
  color: var(--color-turquoise);
  font-size: 14px;
  line-height: 1.4;
}
.header__brand-course {
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}
.header__right {
  gap: 42px;
}
.header__social {
  gap: 7px;
}
.header__social-icon, .header__social-icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.header__nav {
  gap: 34px;
}
.header__nav-links {
  gap: 24px;
}
.header__nav-link {
  color: var(--color-navy);
  font-size: 13.8px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 1.9;
  white-space: nowrap;
  transition: color 0.2s ease, filter 0.2s ease;
}
.header__nav-link:hover, .header__nav-link:focus-visible {
  color: var(--color-pink);
}
.header__nav-link--application {
  display: grid;
  width: 195px;
  height: 46.14px;
  place-items: center;
  color: #fff;
  background: var(--color-gold);
  border-radius: 999px;
  box-shadow: 0 10px 11px rgba(197, 155, 73, 0.22);
}
.header__nav-link--application:hover, .header__nav-link--application:focus-visible {
  color: #fff;
  filter: brightness(1.06);
}
.header__menu-button {
  display: none;
}

@media (max-width: 1199px) {
  .header__right {
    gap: 20px;
  }
  .header__social {
    display: none;
  }
  .header__nav {
    gap: 20px;
  }
  .header__nav-links {
    gap: 16px;
  }
  .header__nav-link {
    font-size: 12px;
  }
  .header__nav-link--application {
    width: 170px;
  }
}
@media (max-width: 767px) {
  body.is-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }
  .header {
    height: 68px;
    background: var(--color-cream);
    backdrop-filter: none;
  }
  .header__inner {
    width: calc(100% - 32px);
  }
  .header__logo {
    width: 38px;
    height: 38px;
  }
  .header__brand {
    gap: 9px;
  }
  .header__brand-school {
    font-size: 10px;
  }
  .header__brand-course {
    font-size: 16px;
  }
  .header__menu-button {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    order: 3;
    margin-left: 0;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .header__menu-button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
  }
  .header__menu-line {
    position: absolute;
    top: 50%;
    left: 9px;
    display: block;
    width: 26px;
    height: 2px;
    margin-top: -1px;
    background: var(--color-navy);
    transform-origin: center;
    transition: transform 180ms ease-out, opacity 180ms ease-out;
  }
  .header__menu-line:nth-child(1) {
    transform: translateY(-7px);
  }
  .header__menu-line:nth-child(2) {
    transform: translateY(0);
  }
  .header__menu-line:nth-child(3) {
    transform: translateY(7px);
  }
  .header__menu-button[aria-expanded=true] .header__menu-line:nth-child(1) {
    transform: rotate(45deg);
  }
  .header__menu-button[aria-expanded=true] .header__menu-line:nth-child(2) {
    opacity: 0;
  }
  .header__menu-button[aria-expanded=true] .header__menu-line:nth-child(3) {
    transform: rotate(-45deg);
  }
  .header__right {
    position: static;
    order: 2;
    flex: 0 0 auto;
    width: auto;
    gap: 10px;
    margin-left: auto;
  }
  .header__social {
    display: flex;
  }
  .header__nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: calc(100dvh - 68px);
    padding: 20px 24px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    background: var(--color-cream);
    border-bottom: 1px solid rgba(197, 155, 73, 0.22);
    box-shadow: 0 14px 24px rgba(37, 50, 74, 0.08);
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 0s linear 180ms;
  }
  .header__nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .header__nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .header__nav-link {
    display: flex;
    align-items: center;
    width: auto;
    min-height: 48px;
    padding: 10px 4px;
    font-size: 14px;
  }
  .header__nav-link--application {
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .header__menu-line, .header__nav {
    transition: none;
  }
}
.footer {
  color: #fff;
  background: var(--color-navy);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--content-width));
  min-height: 98px;
  margin-inline: auto;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer__brand img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}
.footer__brand span {
  display: grid;
}
.footer__brand small {
  font-size: 14px;
}
.footer__brand strong {
  font-family: var(--font-serif);
  font-size: 21px;
}
.footer__copyright {
  font-size: 13.3px;
}

@media (max-width: 767px) {
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 32px);
    padding: 24px 0;
  }
  .footer__copyright {
    align-self: center;
    font-size: 11px;
  }
}
.section-heading__eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}
.section-heading__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 43.2px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
}
.section-heading__title--small {
  font-size: 36px;
}
.section-heading__title small {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
}
.section-heading--center {
  text-align: center;
}

@media (max-width: 767px) {
  .section-heading__title,
  .section-heading__title--small {
    font-size: clamp(28px, 8vw, 34px);
  }
}
.hero {
  position: relative;
  height: 709px;
  padding-top: 95px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(251, 246, 237, 0.75), rgba(255, 253, 248, 0.88));
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 548px 532px;
  gap: 40px;
  width: var(--content-width);
  margin-inline: auto;
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  min-width: 0;
}
.hero__decoration {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}
.hero__decoration--pink {
  top: 61px;
  left: -180px;
  width: 380px;
  height: 380px;
  background: rgba(248, 232, 227, 0.75);
}
.hero__decoration--gold {
  right: -81px;
  bottom: 166px;
  width: 300px;
  height: 300px;
  background: rgba(234, 216, 173, 0.28);
}
.hero__badge {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 360px;
  min-height: 92px;
  margin: 0;
  padding: 12px 24px;
  color: #e8e2d7;
  text-align: center;
  background: var(--color-navy);
  border-radius: 18px;
  letter-spacing: 0.32px;
  white-space: nowrap;
}
.hero__badge-school, .hero__badge-course {
  display: block;
}
.hero__badge-school {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.hero__badge-course {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
.hero__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 4.838px;
  line-height: 1.5;
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__title-accent, .hero__title sup {
  color: var(--color-pink);
}
.hero__title sup {
  font-size: 20px;
  letter-spacing: 0;
  vertical-align: 0.65em;
}
.hero__subcopy {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.hero__subcopy-break {
  display: block;
}
.hero__skills {
  display: grid;
  grid-template-columns: repeat(2, 241px);
  gap: 14px;
  width: 496px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__skills li {
  min-width: 0;
}
.hero__skill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 69px;
  padding: 14px 16px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(93, 71, 42, 0.06);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 1.95;
}
.hero__skill img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.hero__skill:hover, .hero__skill:focus-visible {
  background: #fff;
}
.hero__actions {
  display: flex;
  gap: 12px;
  width: 100%;
}
.hero__button {
  display: grid;
  width: 172.3px;
  height: 52px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  transition: filter 0.2s ease;
}
.hero__button:hover, .hero__button:focus-visible {
  filter: brightness(1.03);
}
.hero__button--primary {
  color: #fff;
  background: var(--color-pink);
  box-shadow: 0 14px 14px rgba(217, 130, 130, 0.24);
}
.hero__button--secondary {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.8);
  border-color: #eadfce;
}
.hero__visual {
  width: 532.11px;
  height: 494px;
  margin: 0;
  padding: 7px 15px;
  border: 1px solid rgba(197, 155, 73, 0.55);
  border-radius: 119.72px 119.72px 111.74px 111.74px;
}
.hero__image {
  width: 502.11px;
  height: 480px;
  object-fit: cover;
  border-radius: 112.97px 112.97px 105.44px 105.44px;
}
.hero__note {
  width: 100%;
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .hero {
    height: auto;
    padding: 72px 0;
  }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    width: min(100% - 64px, 960px);
  }
  .hero__badge {
    max-width: 100%;
  }
  .hero__title {
    font-size: clamp(40px, 4.2vw, 48px);
    letter-spacing: 0.06em;
  }
  .hero__title-line {
    white-space: normal;
  }
  .hero__skills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .hero__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 532.11/494;
  }
  .hero__image {
    width: 100%;
    height: 100%;
  }
  .hero__note {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 28px 0 56px;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px);
  }
  .hero__column {
    display: contents;
  }
  .hero__decoration--pink {
    top: 74px;
    left: -150px;
    width: 270px;
    height: 270px;
  }
  .hero__decoration--gold {
    right: -95px;
    bottom: 210px;
    width: 210px;
    height: 210px;
  }
  .hero__badge {
    order: 1;
    align-self: flex-start;
    width: 210px;
    min-height: 60px;
    padding: 8px 14px;
    border-radius: 15px;
  }
  .hero__badge-school {
    font-size: 11px;
  }
  .hero__badge-course {
    font-size: 20px;
  }
  .hero__title {
    order: 2;
    margin-top: 24px;
    font-size: clamp(29px, 8.4vw, 36px);
    letter-spacing: 0.05em;
    line-height: 1.55;
  }
  .hero__title-line {
    white-space: normal;
  }
  .hero__title sup {
    font-size: 12px;
  }
  .hero__subcopy {
    order: 3;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.8;
  }
  .hero__subcopy-break {
    display: none;
  }
  .hero__visual {
    order: 4;
    width: 100%;
    height: auto;
    margin-top: 28px;
    padding: 6px 9px;
    aspect-ratio: 532.11/494;
    border-radius: 78px 78px 72px 72px;
  }
  .hero__image {
    width: 100%;
    height: 100%;
    border-radius: 70px 70px 65px 65px;
  }
  .hero__skills {
    order: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 28px;
  }
  .hero__skill {
    gap: 8px;
    height: 54px;
    padding: 10px 8px;
    font-size: 16px;
  }
  .hero__note {
    order: 5;
    margin-top: 24px;
    font-size: 13px;
  }
  .hero__actions {
    order: 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  .hero__button {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
}
@media (max-width: 389px) {
  .hero__title {
    font-size: 27px;
  }
  .hero__actions {
    grid-template-columns: 1fr;
  }
}
.announcement {
  background: #f4efe6;
  border-bottom: 1px solid rgba(197, 155, 73, 0.18);
}
.announcement__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--content-width));
  min-height: 53px;
  margin-inline: auto;
}
.announcement__message, .announcement__link {
  display: flex;
  align-items: center;
  margin: 0;
}
.announcement__message {
  gap: 16px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement__badge {
  padding: 4px 12px;
  color: var(--color-pink);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
}
.announcement__link {
  gap: 4px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
}
.announcement__link img {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .announcement__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 32px);
    padding-block: 14px;
  }
  .announcement__message {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .announcement__link {
    align-self: flex-end;
  }
}
.concerns {
  width: 880px;
  margin: 26px auto 93.77px;
  padding-top: 37.72px;
}
.concerns__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 606.7px;
  height: 62px;
  margin: 0 136.49px 0 136.81px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 43.2px;
  font-weight: 600;
  letter-spacing: 3.456px;
  line-height: 66.96px;
  text-align: center;
  white-space: nowrap;
}
.concerns__list {
  display: grid;
  gap: 16px;
  margin: 42.95px 0 0;
  padding: 0;
  list-style: none;
}
.concerns__item {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 76.39px;
  padding: 0 28px;
  column-gap: 17.28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #eadfce;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(93, 71, 42, 0.06);
  letter-spacing: 0.32px;
}
.concerns__icon {
  flex: 0 0 16.72px;
  width: 16.72px;
  color: var(--color-pink);
  font-size: 16px;
  font-weight: 700;
  line-height: 30.4px;
}
.concerns__text {
  min-width: 0;
  margin: 0;
  color: #3f332c;
  font-size: 20px;
  font-weight: 500;
  line-height: 30.4px;
}

@media (max-width: 1024px) {
  .concerns {
    width: min(100% - 64px, 880px);
  }
  .concerns__title {
    width: 100%;
    margin-inline: auto;
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .concerns {
    width: calc(100% - 32px);
    margin-top: 56px;
    margin-bottom: 72px;
    padding-top: 0;
  }
  .concerns__title {
    height: auto;
    font-size: clamp(27px, 7.6vw, 32px);
    letter-spacing: 0.06em;
    line-height: 1.5;
    white-space: normal;
  }
  .concerns__list {
    gap: 12px;
    margin-top: 32px;
  }
  .concerns__item {
    height: auto;
    min-height: 72px;
    padding: 18px 20px;
    column-gap: 12px;
  }
  .concerns__text {
    font-size: 16px;
    line-height: 1.7;
  }
}
.growth {
  height: 913.6px;
  padding: 70px 0 66px;
  background: linear-gradient(139.11deg, rgba(248, 232, 227, 0.55), rgba(223, 233, 216, 0.42));
}
.growth__inner, .growth__main, .growth__header, .growth__title-group, .growth__family, .growth__family-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.growth__inner {
  gap: 70px;
  width: var(--content-width);
  margin-inline: auto;
}
.growth__main {
  gap: 39px;
  width: 100%;
}
.growth__header {
  gap: 31px;
  width: 100%;
}
.growth__title-group {
  gap: 18px;
  width: 100%;
}
.growth__eyebrow {
  margin: 0;
  color: var(--color-gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.246px;
  line-height: 23.71px;
  text-transform: uppercase;
}
.growth__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 43.2px;
  font-weight: 600;
  letter-spacing: 3.456px;
  line-height: 66.96px;
  white-space: nowrap;
}
.growth__lead {
  width: 100%;
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 32.83px;
}
.growth__content {
  display: grid;
  grid-template-columns: 453px 600px;
  gap: 67px;
  align-items: start;
  width: 100%;
}
.growth__list {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 453px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.growth__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64.4px;
  padding: 0 21px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #eadfce;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.growth__skill {
  color: var(--color-navy);
}
.growth__ability {
  color: #b96f71;
}
.growth__diagram {
  position: relative;
  width: 600px;
  height: 320px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #eadfce;
  border-radius: 34px;
  box-shadow: 0 18px 48px rgba(93, 71, 42, 0.1);
}
.growth__diagram-border {
  position: absolute;
  top: 50px;
  right: 90px;
  bottom: 50px;
  left: 94px;
  border: 2px solid rgba(197, 155, 73, 0.45);
  border-radius: 172.2px;
}
.growth__diagram-label, .growth__diagram-center {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 58px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-align: center;
  white-space: nowrap;
}
.growth__diagram-label {
  color: #172033;
  font-size: 18px;
  line-height: 30.4px;
}
.growth__diagram-label--top {
  top: 21px;
  left: 182px;
  gap: 11px;
  width: 240px;
  padding-left: 65px;
  background: #fff1f0;
  border: 1px solid #d97d7f;
}
.growth__diagram-label--right {
  top: 131px;
  right: 29px;
  gap: 3px;
  width: 180px;
  padding-left: 23px;
  background: #eff5e4;
  border: 1px solid #83976a;
}
.growth__diagram-label--bottom {
  bottom: 22px;
  left: 182px;
  gap: 8px;
  width: 240px;
  padding-left: 21px;
  background: #eff2f8;
  border: 1px solid #7586a6;
  line-height: 27.36px;
}
.growth__diagram-label--left {
  top: 131px;
  left: 32px;
  gap: 4px;
  width: 180px;
  padding-left: 8px;
  background: #fdf6e4;
  border: 1px solid #c59b34;
}
.growth__diagram-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.growth__diagram-break {
  display: none;
}
.growth__diagram-center {
  top: 131.45px;
  left: 234px;
  justify-content: center;
  width: 136px;
  color: #fff;
  background: linear-gradient(135deg, #d8b15b, var(--color-gold));
  font-size: 24px;
  line-height: 38px;
}
.growth__family {
  gap: 7px;
  width: 100%;
  min-height: 175px;
  padding: 25px 31px;
  background: #fff;
  border: 1px solid #ead7aa;
  border-radius: 18px;
  letter-spacing: 0.32px;
}
.growth__family-title {
  margin: 0;
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 25.98px;
}
.growth__family-text {
  gap: 0;
  width: 100%;
  color: #2f3340;
  font-size: 18px;
  line-height: 30.4px;
}
.growth__family-text p {
  margin: 0;
}
.growth__family-emphasis {
  color: #f00;
}

@media (max-width: 1199px) {
  .growth {
    height: auto;
  }
  .growth__inner {
    width: min(100% - 64px, var(--content-width));
  }
  .growth__title {
    white-space: normal;
  }
  .growth__content {
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
    gap: 40px;
  }
  .growth__list, .growth__diagram, .growth__family {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .growth {
    padding: 48px 0;
    background: linear-gradient(108.66deg, rgba(248, 232, 227, 0.55), rgba(223, 233, 216, 0.42));
  }
  .growth__inner {
    gap: 40px;
    width: 100%;
  }
  .growth__main {
    gap: 32px;
  }
  .growth__header {
    gap: 24px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
  .growth__title-group {
    gap: 12px;
  }
  .growth__title {
    font-size: clamp(27px, 7.6vw, 32px);
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .growth__lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .growth__content {
    gap: 32px;
  }
  .growth__list {
    gap: 12px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
  .growth__item {
    min-height: 64px;
    height: auto;
    padding: 14px 18px;
    font-size: 16px;
    line-height: 1.6;
  }
  .growth__diagram {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .growth__diagram-border {
    top: 52px;
    right: 45px;
    bottom: 50px;
    left: 45px;
  }
  .growth__diagram-break {
    display: block;
  }
  .growth__diagram-label {
    height: 58px;
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
  }
  .growth__diagram-label--top {
    top: 23px;
    left: calc(50% - 70px);
    gap: 8px;
    width: 140px;
    padding-left: 22px;
    line-height: 30.4px;
  }
  .growth__diagram-label--right {
    top: 131px;
    right: 9px;
    gap: 4px;
    width: 124px;
    padding-left: 20px;
  }
  .growth__diagram-label--right .growth__diagram-label-text {
    width: 49px;
  }
  .growth__diagram-label--bottom {
    top: 240px;
    bottom: auto;
    left: calc(50% - 70px);
    gap: 7px;
    width: 140px;
    padding-left: 11px;
    line-height: 20px;
  }
  .growth__diagram-label--bottom .growth__diagram-label-text {
    width: 82px;
  }
  .growth__diagram-label--left {
    top: 131px;
    left: 9px;
    gap: 5px;
    width: 124px;
    padding-left: 8px;
  }
  .growth__diagram-label--left .growth__diagram-label-text {
    width: 70px;
  }
  .growth__diagram-center {
    top: 111px;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    background: linear-gradient(113.1deg, #d8b15b, var(--color-gold));
    font-size: 21px;
    line-height: 28px;
    white-space: normal;
  }
  .growth__diagram-center-text {
    width: 43px;
  }
  .growth__family {
    width: calc(100% - 32px);
    min-height: 0;
    margin-inline: auto;
    padding: 22px 20px;
  }
  .growth__family-title {
    font-size: 18px;
  }
  .growth__family-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.reason {
  padding: 77px 0 112px;
}
.reason__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
}
.reason .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.reason .section-heading__eyebrow {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 2.246px;
  line-height: 23.71px;
}
.reason .section-heading__title {
  font-size: 43.2px;
  letter-spacing: 3.456px;
  line-height: 66.96px;
  white-space: nowrap;
}
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.reason__row {
  display: grid;
  gap: 24px;
}
.reason__row--top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.reason__row--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.reason__footnote {
  margin: 0;
  color: #6f7078;
  font-size: 16px;
  line-height: 30px;
}
.reason__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 35px;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 22px;
  box-shadow: 0 18px 24px rgba(93, 71, 42, 0.1);
}
.reason__text, .reason__text p {
  margin: 0;
}
.reason__text {
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.reason__text h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.5;
}
.reason__number {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 45.6px;
}
.reason__title-break {
  display: none;
}
.reason .section-heading__title sup {
  font-size: 24px;
  letter-spacing: 0;
  vertical-align: 0.65em;
}

@media (max-width: 1199px) {
  .reason .section-heading__title {
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .reason {
    padding: 64px 0 72px;
  }
  .reason__inner {
    gap: 24px;
    width: calc(100% - 32px);
  }
  .reason .section-heading {
    gap: 12px;
  }
  .reason .section-heading__title {
    font-size: clamp(28px, 8vw, 34px);
    letter-spacing: 0.06em;
    line-height: 1.45;
    white-space: normal;
  }
  .reason .section-heading .section-heading__title sup {
    font-size: 16px;
  }
  .reason .section-heading .reason__title-break {
    display: block;
  }
  .reason__list {
    gap: 20px;
  }
  .reason__row, .reason__row--top, .reason__row--bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reason__card {
    height: auto;
    padding: 28px 24px;
  }
}
.program {
  padding-top: 83px;
  background: linear-gradient(180deg, rgba(251, 246, 237, 0.75), rgba(255, 253, 248, 0.88));
}
.program__inner, .program__header, .program__title-group, .program__summary, .program__notice, .program__course, .program__card, .program__article-content, .program__card-body, .program__topics, .program__legend, .program__legend ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.program__inner {
  gap: 42px;
  width: min(100% - 48px, 1160px);
  margin-left: max(24px, (100% - 1150px) / 2);
}
.program__header {
  gap: 19px;
  width: 100%;
}
.program__title-group {
  gap: 11px;
  width: 100%;
  min-height: 99px;
}
.program__eyebrow, .program__title, .program__summary, .program__summary p, .program__notice p, .program__course-title, .program__lesson-title, .program__lesson-description, .program__topics, .program__topics p, .program__note, .program__legend h3, .program__legend ul {
  margin: 0;
}
.program__eyebrow {
  color: #c79d45;
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 3.584px;
  line-height: 24.32px;
  text-transform: uppercase;
}
.program__title {
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 43.2px;
  font-weight: 600;
  letter-spacing: 2.592px;
  line-height: 62.64px;
}
.program__summary {
  justify-content: center;
  min-height: 61px;
  color: #6f7078;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.program__notice {
  justify-content: center;
  width: 593px;
  min-height: 108px;
  padding: 8px 14px;
  color: #9b5755;
  background: #fff1ef;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.program__layout {
  display: grid;
  grid-template-columns: minmax(0, 764px) 368px;
  gap: 28px;
  align-items: start;
  width: 100%;
}
.program__course {
  gap: 22px;
  min-width: 0;
}
.program__course-title {
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
}
.program__course-description {
  margin: 0;
  color: #6f7078;
  font-size: 16px;
  line-height: 28px;
}
.program__card, .program__legend {
  width: 100%;
  background: #fff;
  border: 1px solid #e8e2d7;
  border-radius: 24px;
  box-shadow: 0 18px 23px rgba(40, 48, 65, 0.09);
}
.program__card--first {
  gap: 25px;
  min-height: 269px;
  padding: 32px 31px 37px;
}
.program__card--regular {
  gap: 44px;
  min-height: 666px;
  padding: 32px 31px 41px;
}
.program__round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 7px 14px 8px;
  color: #fff;
  background: #1f2d4a;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 23.71px;
  white-space: nowrap;
}
.program__article-content {
  gap: 20px;
  width: 100%;
}
.program__lesson-title-row, .program__card-head, .program__topic-title, .program__marks {
  display: flex;
  align-items: center;
}
.program__lesson-title-row {
  gap: 24px;
  width: 100%;
  min-height: 38px;
}
.program__lesson-title {
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 18.4px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 26.68px;
}
.program__lesson-description {
  width: 100%;
  color: #2f3340;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.program__card-head {
  gap: 38px;
  width: 100%;
  min-height: 40px;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24.93px;
}
.program__card-head .program__round {
  min-height: 40px;
  padding-inline: 13px;
}
.program__card-body {
  width: 100%;
  min-height: 509px;
}
.program__topics {
  width: 100%;
  min-height: 484px;
  padding: 0;
  list-style: none;
}
.program__topics li {
  position: relative;
  width: 100%;
  padding-left: 40px;
}
.program__topics li::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 13px;
  height: 13px;
  background: #e99693;
  border-radius: 50%;
  content: "";
}
.program__topics li:not(:last-child)::after {
  position: absolute;
  top: 20px;
  bottom: -7px;
  left: 14px;
  width: 1px;
  background: #ead7aa;
  content: "";
}
.program__topics li:nth-child(1) {
  min-height: 90px;
}
.program__topics li:nth-child(2) {
  min-height: 121px;
}
.program__topics li:nth-child(3) {
  min-height: 121px;
}
.program__topics li:nth-child(4) {
  min-height: 152px;
}
.program__topic-title {
  gap: 8px;
  min-height: 38px;
  color: #2f3340;
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.program__topic-title strong {
  flex: 0 0 auto;
}
.program__topics li > p {
  margin-top: 4px;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.program__marks {
  gap: 8px;
}
.program__mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid;
  border-radius: 50%;
  box-shadow: 0 4px 5px rgba(31, 45, 74, 0.08);
}
.program__mark img {
  display: block;
  width: 24px;
  height: 24px;
}
.program__mark--speak {
  background: #fff6f5;
  border-color: #d97d7f;
}
.program__mark--hearing {
  background: #f6f8f2;
  border-color: #83976a;
}
.program__mark--star {
  background: #fff9e9;
  border-color: #c59b34;
}
.program__mark--heart {
  background: #f4f6fa;
  border-color: #7586a6;
}
.program__note {
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24.93px;
}
.program__legend {
  gap: 19px;
  min-height: 291px;
  margin-top: 129px;
  padding: 31px;
}
.program__legend h3 {
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 18.7px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 27.14px;
}
.program__legend ul {
  gap: 10px;
  width: 100%;
  padding: 0;
  list-style: none;
}
.program__legend li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  color: #2f3340;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .program__inner {
    width: calc(100% - 48px);
    margin-inline: auto;
  }
  .program__layout {
    grid-template-columns: 1fr;
  }
  .program__legend {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .program {
    padding: 64px 0;
  }
  .program__inner {
    gap: 36px;
    width: calc(100% - 32px);
  }
  .program__header {
    gap: 16px;
  }
  .program__title-group {
    min-height: 0;
  }
  .program__title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.45;
  }
  .program__summary {
    min-height: 0;
    font-size: 16px;
    white-space: normal;
  }
  .program__notice {
    width: 100%;
    min-height: 0;
    font-size: 14px;
  }
  .program__course {
    gap: 20px;
  }
  .program__course-description {
    font-size: 14px;
    line-height: 1.8;
  }
  .program__card--first, .program__card--regular {
    gap: 24px;
    height: auto;
    min-height: 0;
    padding: 22px 18px;
  }
  .program__lesson-title-row, .program__card-head, .program__topic-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .program__lesson-title-row {
    gap: 12px;
  }
  .program__card-head {
    flex-direction: column;
    gap: 8px;
  }
  .program__card-body, .program__topics {
    height: auto;
  }
  .program__card-body, .program__legend {
    min-height: 0;
  }
  .program__topics li {
    height: auto !important;
    min-height: 0;
    padding-bottom: 28px;
  }
  .program__topics li:not(:last-child)::after {
    bottom: 0;
  }
  .program__topics li:last-child {
    padding-bottom: 18px;
  }
  .program__topic-title strong {
    flex-basis: 100%;
  }
  .program__legend {
    padding: 24px 20px;
    margin-top: 0;
  }
  .program__legend li {
    white-space: normal;
  }
}
.instructor {
  padding-block: 80px;
}
.instructor__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
}
.instructor__title-break {
  display: none;
}
.instructor__profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: start;
}
.instructor__bio {
  display: grid;
  gap: 0;
}
.instructor__bio p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 1.8;
}
.instructor__qualifications {
  padding-left: 56px;
  border-left: 1px solid #e8e2d7;
}
.instructor__qualifications h3 {
  width: fit-content;
  margin: 0 0 24px;
  padding-bottom: 8px;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-gold);
  font-family: var(--font-serif);
  font-size: 20px;
}
.instructor__qualifications ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.instructor__qualifications li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.instructor__qualifications li::before {
  color: var(--color-gold);
  content: "-";
}

@media (max-width: 900px) {
  .instructor__profile {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .instructor__qualifications {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid #e8e2d7;
    border-left: 0;
  }
}
@media (max-width: 767px) {
  .instructor {
    padding-block: 64px;
  }
  .instructor__inner {
    width: calc(100% - 32px);
    gap: 36px;
  }
  .instructor__title-break {
    display: initial;
  }
}
.classes {
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
  padding: 23px 0 35px;
  border-top: 1px solid #e8e2d7;
}
.classes__inner, .classes__header, .classes__content, .classes__card {
  display: flex;
  flex-direction: column;
}
.classes__inner {
  gap: 37px;
}
.classes__header {
  gap: 11px;
  min-height: 127px;
}
.classes .section-heading {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 85px;
}
.classes .section-heading__eyebrow {
  margin: 0;
  line-height: 24.32px;
}
.classes .section-heading__title {
  line-height: 52.2px;
}
.classes__lead {
  margin: 0;
  color: #6f7078;
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.classes__content {
  gap: 24px;
}
.classes__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.classes__card {
  gap: 6px;
  min-height: 174px;
  padding: 17px 22px 21px;
  background: #fff;
  border: 1px solid #d97d7f;
  border-top-width: 4px;
  border-radius: 16px;
  box-shadow: 0 10px 13px rgba(31, 45, 74, 0.06);
}
.classes__card--blue {
  border-color: #7586a6;
}
.classes__card--blue .classes__card-title {
  color: #7586a6;
}
.classes__card-title, .classes__card-time, .classes__card-dates {
  margin: 0;
  letter-spacing: 0.32px;
}
.classes__card-title {
  color: #d97d7f;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 23.71px;
}
.classes__card-time {
  color: #1f2d4a;
  font-size: 18px;
  line-height: 30.4px;
}
.classes__card-dates {
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 31.92px;
}
.classes__calendar {
  min-height: 915.03px;
  padding: 41px 38px 39px;
  background: #fff;
  border: 1px solid #e8e2d7;
  border-radius: 26px;
  box-shadow: 0 18px 23px rgba(40, 48, 65, 0.09);
}
.classes__calendar-head h3 {
  margin: 0;
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 24.8px;
  font-weight: 600;
  letter-spacing: 0.32px;
  line-height: 35.96px;
}
.classes__calendar-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
}
.classes__calendar-range {
  margin: 0;
  color: #2f3340;
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.classes__calendar-legend {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24.93px;
  list-style: none;
}
.classes__calendar-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.classes__legend-dot {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.classes__legend-dot--sunday {
  background: #d97d7f;
}
.classes__legend-dot--monday {
  background: #7586a6;
}
.classes__months {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  column-gap: 15px;
  row-gap: 16px;
  margin-top: 44px;
}
.classes__month {
  height: 367px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e2d7;
  border-radius: 16px;
}
.classes__month h4 {
  display: grid;
  height: 42px;
  margin: 0;
  place-items: center;
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 15.2px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 22.04px;
  text-align: center;
  background: #f7e3e2;
}
.classes__month--december h4 {
  background: #e8eee1;
}
.classes__month--january h4 {
  background: #faebc7;
}
.classes__month--february h4 {
  background: #e5eef3;
}
.classes__month--march h4 {
  background: #ece6f1;
}
.classes__month--february, .classes__month--march {
  height: 319px;
}
.classes__month--november tbody tr:nth-child(4) {
  height: 57px;
}
.classes__month-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.classes__month-table thead {
  height: 35px;
  border-bottom: 1px solid #e8e2d7;
}
.classes__month-table th {
  height: 35px;
  padding: 0;
  color: #6f7078;
  font-size: 10.9px;
  font-weight: 700;
  line-height: 1;
}
.classes__month-table th:first-child {
  color: #c85d61;
}
.classes__month-table th:last-child {
  color: #597caa;
}
.classes__month-table tbody tr {
  height: 48px;
}
.classes__month-table td {
  height: 48px;
  padding: 0;
  color: #2f3340;
  font-size: 11.8px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
}
.classes__month-table td:first-child {
  color: #c85d61;
}
.classes__month-table td:last-child {
  color: #597caa;
}
.classes__date {
  display: grid;
  width: 28px;
  height: 28px;
  margin: 5px auto 0;
  place-items: center;
}
.classes__lesson-day {
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}
.classes__lesson-day--sunday {
  background: #d98d95;
}
.classes__lesson-day--monday {
  background: #7f9dbc;
}
.classes__holiday {
  display: block;
  margin-top: 1px;
  color: #a25151;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .classes__months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .classes__month {
    min-width: 0;
  }
  .classes__calendar-legend {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .classes__calendar-legend li {
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .classes {
    width: calc(100% - 32px);
    padding-block: 48px;
  }
  .classes__inner {
    gap: 32px;
  }
  .classes__header {
    min-height: 0;
  }
  .classes .section-heading {
    min-height: 0;
  }
  .classes__cards, .classes__months {
    grid-template-columns: 1fr;
  }
  .classes__card {
    height: auto;
    min-height: 0;
  }
  .classes__calendar {
    height: auto;
    min-height: 0;
    padding: 26px 18px;
  }
  .classes__calendar-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .classes__calendar-legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .classes__months {
    row-gap: 16px;
    margin-top: 28px;
  }
  .classes__month {
    width: 100%;
  }
}
.first-lesson {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: min(100% - 48px, 1160px);
  min-height: 168px;
  margin-inline: auto;
  padding: 30px 42px 30px 30px;
  background: #fff8f6;
  border: 1px solid #e8e2d7;
  border-radius: 24px;
  box-shadow: 0 18px 23px rgba(40, 48, 65, 0.09);
}
.first-lesson__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 18.7px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 27.14px;
}
.first-lesson__description {
  color: #2f3340;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.first-lesson__description p {
  margin: 0;
}
.first-lesson__description strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .first-lesson {
    width: calc(100% - 32px);
    height: auto;
    min-height: 0;
    padding: 22px 20px;
  }
  .first-lesson__description p {
    margin: 0;
  }
}
.benefits {
  width: min(100% - 48px, 1160px);
  margin: 91px auto 0;
  padding-top: 60px;
  border-top: 1px solid #e8e2d7;
}
.benefits__inner, .benefits__header, .benefits__main, .benefits__card, .benefits__description {
  display: flex;
  flex-direction: column;
}
.benefits__inner {
  gap: 31px;
}
.benefits__header {
  gap: 15px;
  min-height: 135px;
}
.benefits__header .section-heading {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 89px;
}
.benefits__header .section-heading__eyebrow {
  margin: 0;
  line-height: 24.32px;
}
.benefits__header .section-heading__title {
  line-height: 52.2px;
}
.benefits__lead {
  margin: 0;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.benefits__main {
  gap: 35px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 20px;
}
.benefits__card {
  min-height: 254.36px;
  padding: 30px 28px;
  background: linear-gradient(145deg, #fff, #faf8f3);
  border: 1px solid #e8e2d7;
  border-radius: 18px;
}
.benefits__card:nth-child(-n+2) {
  min-height: 280.88px;
}
.benefits__card:nth-child(4) {
  padding-top: 28px;
}
.benefits__card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 18.9px;
  line-height: 28.32px;
}
.benefits__tags {
  display: flex;
  gap: 8px;
  height: 31.88px;
  margin: 0;
}
.benefits__tag {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 31.88px;
  padding: 0 10px;
  color: #667355;
  background: #eff2e9;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 21.89px;
}
.benefits__tag--child {
  color: #a35659;
  background: #fbefeb;
}
.benefits__card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 14px;
}
.benefits__number {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}
.benefits__description {
  margin-top: 14px;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.benefits__description p {
  margin: 0;
}
.benefits__card:nth-child(3) .benefits__description {
  margin-top: 43.64px;
}
.benefits__card:nth-child(4) .benefits__description {
  margin-top: 22.32px;
}

.teacher {
  display: grid;
  grid-template-columns: 159px minmax(0, 1fr);
  gap: 55px;
  min-height: 643px;
  padding: 37px 58px 55px;
  background: #fff;
  border: 1px solid #e8e2d7;
  border-radius: 24px;
  box-shadow: 0 18px 23px rgba(40, 48, 65, 0.09);
}
.teacher__image {
  width: 159px;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}
.teacher__body {
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-width: 0;
  min-height: 549px;
}
.teacher__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 79px;
}
.teacher__role, .teacher__name,
.teacher h4,
.teacher p,
.teacher dl {
  margin: 0;
}
.teacher__role {
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.teacher__role strong {
  font-weight: 700;
}
.teacher__name {
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 27.2px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 39.44px;
}
.teacher__profile {
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-height: 282px;
}
.teacher h4 {
  min-height: 24px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 23.2px;
}
.teacher dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #2f3340;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 23px;
}
.teacher dl div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
}
.teacher dt,
.teacher dd {
  margin: 0;
}
.teacher__comment {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.teacher__comment-body p {
  line-height: 23px;
}

@media (max-width: 767px) {
  .benefits {
    width: calc(100% - 32px);
    margin-top: 64px;
    padding-top: 48px;
  }
  .benefits__header, .benefits__header .section-heading {
    min-height: 0;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .benefits__card, .benefits__card:nth-child(-n+2) {
    height: auto;
    min-height: 0;
    padding: 28px;
  }
  .benefits__card:nth-child(3) .benefits__description, .benefits__card:nth-child(4) .benefits__description {
    margin-top: 14px;
  }
  .teacher {
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
    min-height: 0;
    padding: 28px 20px;
  }
  .teacher__image {
    margin-inline: auto;
  }
  .teacher__body {
    height: auto;
    min-height: 0;
  }
  .teacher__profile {
    min-height: 0;
  }
  .teacher dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .teacher dt {
    font-weight: 700;
  }
}
.price {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: min(100% - 48px, 1160px);
  margin: 91px auto 0;
  padding: 60px 0 118px;
  border-top: 1px solid #e8e2d7;
}
.price .section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 88px;
}
.price .section-heading__eyebrow {
  height: 25px;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 24.32px;
}
.price .section-heading__title {
  display: flex;
  align-items: baseline;
  height: 53px;
  letter-spacing: 1.8px;
  line-height: 52.2px;
}
.price__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.price__card {
  min-height: 183.47px;
  padding: 22px 23px;
  background: #fff;
  border: 1px solid #e8e2d7;
  border-radius: 16px;
  letter-spacing: 0.32px;
}
.price__card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 23.2px;
}
.price__card strong {
  display: flex;
  align-items: center;
  height: 30px;
  margin-top: 17px;
  color: #d97d7f;
  font-size: 20.8px;
  line-height: 39.52px;
}
.price__card p {
  margin: 12.5px 0 0;
  color: #6f7078;
  font-size: 13.3px;
  line-height: 25.33px;
}
.price__card .price__methods {
  margin-top: 16px;
  color: #2f3340;
  font-size: 16px;
  line-height: 30.4px;
}

@media (max-width: 767px) {
  .price {
    width: calc(100% - 32px);
    margin-top: 64px;
  }
  .price__grid {
    grid-template-columns: 1fr;
  }
  .price__card {
    min-height: 0;
  }
}
.organizer {
  padding-block: 87px;
  background: linear-gradient(125.298deg, rgba(248, 232, 227, 0.55), rgba(223, 233, 216, 0.42));
}
.organizer__inner {
  display: grid;
  grid-template-columns: 453px minmax(0, 600.78px);
  gap: 66px;
  align-items: start;
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
}
.organizer__intro {
  position: sticky;
  top: 0;
}
.organizer__intro .section-heading {
  display: flex;
  flex-direction: column;
  gap: 49px;
  padding-top: 2px;
}
.organizer__intro .section-heading__eyebrow {
  height: 24px;
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 2.246px;
  line-height: 23.71px;
}
.organizer__intro .section-heading__title {
  letter-spacing: 0;
  line-height: 66.96px;
}
.organizer__card {
  min-width: 0;
  padding: 43px 35px;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 34px;
  box-shadow: 0 18px 24px rgba(93, 71, 42, 0.1);
}
.organizer__summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.organizer__card h3 {
  min-height: 34px;
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 21.6px;
  font-weight: 600;
  letter-spacing: 0.32px;
  line-height: 33.48px;
}
.organizer__card p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.organizer__summary p:first-of-type, .organizer__summary p:last-of-type {
  min-height: 0;
}

@media (max-width: 1199px) {
  .organizer {
    padding-block: 64px;
  }
  .organizer__inner {
    grid-template-columns: 1fr;
  }
  .organizer__intro {
    position: static;
  }
  .organizer__title-break {
    display: none;
  }
}
@media (max-width: 767px) {
  .organizer__inner {
    width: calc(100% - 32px);
  }
  .organizer__intro .section-heading__title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.45;
  }
  .organizer__card {
    padding: 28px 20px;
  }
}
.access {
  display: grid;
  grid-template-columns: 458.19px minmax(0, 659.63px);
  align-items: start;
  column-gap: 42px;
  width: min(100% - 48px, 1159.82px);
  margin: 0 auto;
  padding: 99px 0 93px;
}
.access__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.access__info .section-heading {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.access__info .section-heading__eyebrow {
  margin: 0;
  color: #c79d45;
  line-height: 25px;
}
.access__info .section-heading__title {
  color: #1f2d4a;
  line-height: 63px;
}
.access__header, .access__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.access__header {
  gap: 42px;
}
.access__details {
  gap: 22px;
  min-height: 225px;
  letter-spacing: 0.32px;
}
.access__details h3 {
  margin: 0;
  color: #1f2d4a;
  font-family: var(--font-serif);
  font-size: 18.7px;
  font-weight: 700;
  line-height: 27.14px;
}
.access__details address,
.access__details p {
  margin: 0;
  color: #2f3340;
  font-style: normal;
  font-size: 16px;
  line-height: 30.4px;
}
.access__transport-list {
  width: 100%;
  margin: 0;
  padding: 0 0 0 19px;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.access__transport-list li {
  width: 424.35px;
}
.access__map {
  width: 659.63px;
  height: 504.33px;
  overflow: hidden;
  border: 1px dashed #cfc8bb;
  border-radius: 18px;
}
.access__map-fallback, .access__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.access__map-fallback {
  object-fit: cover;
}

@media (max-width: 1199px) {
  .access {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }
  .access__map {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .access__transport-list li {
    width: min(424.35px, 100%);
  }
}
@media (max-width: 767px) {
  .access {
    width: calc(100% - 32px);
    padding: 72px 0;
  }
  .access__transport-list li {
    width: auto;
  }
  .access__details {
    min-height: 0;
  }
  .access__map {
    aspect-ratio: 1/1;
  }
}
.trial {
  padding: 102px 0 100px;
  background: linear-gradient(130.78deg, #fbefeb 18.024%, #fff8ef 80.416%);
}
.trial__inner {
  display: grid;
  grid-template-columns: 442px 662px;
  gap: 56px;
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
  align-items: start;
}
.trial__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}
.trial__content {
  display: flex;
  width: 471px;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}
.trial__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}
.trial__header .section-heading {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.trial__header .section-heading__eyebrow {
  margin: 0;
  color: #c79d45;
  line-height: 25px;
}
.trial__header .section-heading__title {
  color: #1f2d4a;
  line-height: 63px;
}
.trial__description {
  margin: 0;
  color: #6f7078;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 31px;
  white-space: nowrap;
}
.trial__schedule {
  display: flex;
  width: 441.59px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.trial__dates {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
  gap: 1px;
  color: #2f3340;
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.trial__dates div {
  display: grid;
  width: 100%;
  min-height: 59.39px;
  padding-right: 8px;
  border-bottom: 1px solid rgba(31, 45, 74, 0.12);
  grid-template-columns: 125px 1fr;
  align-items: center;
}
.trial__dates dt {
  font-weight: 700;
}
.trial__dates dd {
  margin: 0;
  justify-self: end;
}
.trial__duration {
  margin: 0;
  color: #6f7078;
  font-size: 18px;
  letter-spacing: 0.32px;
  line-height: 26px;
}
.trial__button {
  display: grid;
  width: 204.89px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: linear-gradient(90deg, #e8898d, #eea083);
  border-radius: 999px;
  box-shadow: 0 12px 13px rgba(232, 137, 141, 0.24);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 30.4px;
}
.trial__details {
  display: flex;
  width: 662px;
  min-height: 281px;
  margin: 0;
  padding: 32px;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 23px rgba(40, 48, 65, 0.09);
  letter-spacing: 0.32px;
}
.trial__details > div:not(.trial__detail-content) {
  display: grid;
  min-height: 63.39px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e2d7;
  grid-template-columns: 33px 1fr;
  gap: 87px;
  align-items: start;
}
.trial__details dt {
  color: #c79d45;
  font-size: 16px;
  font-weight: 700;
  line-height: 30.4px;
}
.trial__details dd {
  margin: 0;
  color: #2f3340;
  font-size: 18px;
  line-height: 30.4px;
}
.trial__detail-content {
  display: grid;
  min-height: 76px;
  padding-top: 15px;
  grid-template-columns: 65px 1fr;
  gap: 55px;
  align-items: center;
}
.trial__detail-content dt {
  white-space: nowrap;
}
.trial__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-top: 48px;
}
.trial__note {
  width: 100%;
  margin: 0;
  color: #2f3340;
  font-size: 16px;
  line-height: 28px;
}
.trial__note strong {
  color: #d92626;
}

@media (max-width: 1199px) {
  .trial__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .trial__content, .trial__schedule, .trial__details {
    width: 100%;
  }
  .trial__description {
    white-space: normal;
  }
  .trial__side {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .trial {
    padding: 64px 0;
  }
  .trial__inner {
    width: calc(100% - 32px);
  }
  .trial__header .section-heading__title {
    line-height: 50px;
  }
  .trial__details {
    height: auto;
    min-height: 0;
    padding: 24px 20px;
  }
  .trial__details > div:not(.trial__detail-content) {
    height: auto;
    min-height: 63px;
    grid-template-columns: 33px 1fr;
    gap: 32px;
  }
  .trial__details .trial__detail-content {
    height: auto;
    min-height: 76px;
    grid-template-columns: 65px 1fr;
    gap: 20px;
  }
  .trial__side {
    gap: 20px;
  }
}
.application {
  padding-block: 72px;
  background: #f7f6f1;
}
.application__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: min(100% - 48px, 900px);
  margin-inline: auto;
  text-align: center;
}
.application__lead, .application__note {
  width: 100%;
  margin: 0;
}
.application__lead {
  line-height: 1.9;
}
.application__note {
  color: #6f7078;
  font-size: 14px;
  line-height: 2;
}
.application__button {
  display: grid;
  width: 320px;
  min-height: 52px;
  place-items: center;
  color: #fff;
  background: linear-gradient(90deg, #e8898d, #eea083);
  border-radius: 999px;
  box-shadow: 0 12px 13px rgba(232, 137, 141, 0.24);
  font-weight: 700;
}

@media (max-width: 767px) {
  .application {
    padding-block: 64px;
  }
  .application__inner {
    width: calc(100% - 32px);
  }
  .application__button {
    width: min(100%, 320px);
  }
}

/*# sourceMappingURL=style.css.map */
