@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Inter:wght@400;500;600;700&family=Alex+Brush&family=Inter:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Kaisei+Decol:wght@400;500;700&family=Alex+Brush&family=Inter:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");*/
/*@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Alex+Brush&family=Inter:wght@400;500;600;700&display=swap");*/

:root {
  --color-blue: #00c4f3;
  --color-pink: #ee86a1;
  --color-navy: #152f4f;
  --color-text: #333333;
  --color-muted: #717171;
  --color-bg: #ffffff;
  --color-border: #e0e0e0;
  --color-purple: #8b6eb0;
  --color-green: #8dc556;
  --color-orange: #f29838;
  --color-teal: #51bebb;
  --content-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --space-section: 100px;
  --header-height: 80px;
  --anchor-offset: 96px;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.04);
  --font-sans: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-heading: "Hina Mincho", "Yu Mincho","Hiragino Mincho ProN", serif;
  --font-heading2: "Kaisei Decol","Yu Mincho","Hiragino Mincho ProN", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid #005ead;
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}
.mt0  { margin-top: 0 !important; }
.mt5  { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }

.mr0  { margin-right: 0 !important; }
.mr5  { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr30 { margin-right: 30px !important; }
.mr40 { margin-right: 40px !important; }

.mb0  { margin-bottom: 0 !important; }
.mb5  { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }

.ml0  { margin-left: 0 !important; }
.ml5  { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml30 { margin-left: 30px !important; }
.ml40 { margin-left: 40px !important; }

.pt0  { padding-top: 0 !important; }
.pt5  { padding-top: 5px !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt30 { padding-top: 30px !important; }
.pt40 { padding-top: 40px !important; }

.pr0  { padding-right: 0 !important; }
.pr5  { padding-right: 5px !important; }
.pr10 { padding-right: 10px !important; }
.pr15 { padding-right: 15px !important; }
.pr20 { padding-right: 20px !important; }
.pr30 { padding-right: 30px !important; }
.pr40 { padding-right: 40px !important; }

.pb0  { padding-bottom: 0 !important; }
.pb5  { padding-bottom: 5px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb40 { padding-bottom: 40px !important; }

.pl0  { padding-left: 0 !important; }
.pl5  { padding-left: 5px !important; }
.pl10 { padding-left: 10px !important; }
.pl15 { padding-left: 15px !important; }
.pl20 { padding-left: 20px !important; }
.pl30 { padding-left: 30px !important; }
.pl40 { padding-left: 40px !important; }
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.site-logo img {
  width: 51px;
  height: 40px;
  object-fit: cover;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.global-nav__list a,
.header-actions__sub {
  transition: color 0.2s ease;
}

.global-nav__list a:hover,
.header-actions__sub:hover {
  color: var(--color-blue);
}

.global-nav__list .global-nav__diagnosis {
  color: #d76583;
  font-weight: 700;
  white-space: nowrap;
}

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

.header-actions__sub {
  color: var(--color-muted);
  font-size: 12px;
  white-space: nowrap;
}

.header-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 50px;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: filter 0.2s ease;
}

.header-action:hover {
  filter: brightness(0.94);
}

.header-action img {
  width: 26px;
  height: 26px;
}

.header-action--blue {
  width: 200px;
  background: var(--color-blue);
}

.header-action--pink {
  width: 130px;
  background: var(--color-pink);
}

.mobile-nav-actions,
.menu-toggle {
  display: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  height: 600px;
  padding: 0 0 24px 80px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url("../assets/images/hero-background.webp") center / cover no-repeat;
}

.hero__copy {
  display: flex;
  flex: 0 1 336px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  max-width: 336px;
}

.hero__label {
  width: 100%;
  padding: 4px 8px;
  color: #fff;
  background: var(--color-pink);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.hero__label-emphasis {
  display: inline-block;
  font-size: 27px;
  line-height: 1;
}

.hero__title {
  font-family: "Rounded Mplus 1c", "BIZ UDGothic", var(--font-sans);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.27;
  text-align: center;
}

.hero__title span {
  color: var(--color-pink);
  font-size: 55px;
}

.hero__fields {
  display: grid;
  grid-template-columns: repeat(2, 125px);
  gap: 4px 0;
  width: 250px;
  margin-top: 1px;
}

.hero__fields li {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
}

.hero__fields li::before {
  position: absolute;
  top: 3.5px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-pink);
  border-radius: 50%;
  content: "";
}

.hero__image {
  flex: 1 1 1000px;
  min-width: 0;
  height: 576px;
  overflow: hidden;
  border-bottom-left-radius: 320px;
}

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

@media (min-width: 1441px) {
  .hero {
    gap: clamp(24px, calc(2.4px + 1.5vw), 31.2px);
  }

  .hero__copy {
    align-self: flex-start;
    flex-basis: clamp(336px, calc(33.6px + 21vw), 436.8px);
    gap: clamp(16px, calc(1.6px + 1vw), 20.8px);
    max-width: clamp(336px, calc(33.6px + 21vw), 436.8px);
    margin-top: 125px;
  }

  .hero__label {
    padding-block: clamp(4px, calc(0.4px + 0.25vw), 5.2px);
    padding-inline: clamp(8px, calc(0.8px + 0.5vw), 10.4px);
    font-size: clamp(18px, calc(1.8px + 1.125vw), 23.4px);
    line-height: clamp(22px, calc(2.2px + 1.375vw), 28.6px);
  }

  .hero__label-emphasis {
    font-size: clamp(27px, calc(2.7px + 1.6875vw), 35.1px);
    line-height: 1;
  }

  .hero__title {
    font-size: clamp(40px, calc(4px + 2.5vw), 52px);
    line-height: clamp(50.8px, calc(5.08px + 3.175vw), 66.04px);
  }

  .hero__title span {
    font-size: clamp(55px, calc(5.5px + 3.4375vw), 71.5px);
    line-height: clamp(69.85px, calc(6.985px + 4.365625vw), 90.805px);
  }

  .hero__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(4px, calc(0.4px + 0.25vw), 5.2px);
    width: clamp(250px, calc(25px + 15.625vw), 325px);
    margin-top: clamp(1px, calc(0.1px + 0.0625vw), 1.3px);
  }

  .hero__fields li {
    padding-left: clamp(12px, calc(1.2px + 0.75vw), 15.6px);
    font-size: clamp(12px, calc(1.2px + 0.75vw), 15.6px);
    line-height: clamp(15px, calc(1.5px + 0.9375vw), 19.5px);
  }

  .hero__fields li::before {
    top: clamp(3.5px, calc(0.35px + 0.21875vw), 4.55px);
    width: clamp(8px, calc(0.8px + 0.5vw), 10.4px);
    height: clamp(8px, calc(0.8px + 0.5vw), 10.4px);
  }
}

.quick-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100px;
}

.quick-cta__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  height: 100px;
  padding: 15px 16px;
  overflow: hidden;
  color: #fff;
}

.quick-cta__item::before,
.bottom-cta__item::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.15;
  content: "";
}

.quick-cta__item--blue,
.bottom-cta__item--blue {
  background: var(--color-blue);
}

.quick-cta__item--blue::before,
.bottom-cta__item--blue::before {
  background-image: url("../assets/images/cta-open-campus.webp");
}

.quick-cta__item--pink,
.bottom-cta__item--pink {
  background: var(--color-pink);
}

.quick-cta__item--pink::before,
.bottom-cta__item--pink::before {
  background-image: url("../assets/images/cta-brochure.webp");
}

.quick-cta__photo,
.quick-cta__text,
.quick-cta__button {
  position: relative;
  z-index: 1;
}

.quick-cta__photo {
  flex: 0 0 120px;
  width: 120px;
  height: 70px;
  object-fit: cover;
}

.quick-cta__text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  gap: 4px;
}

.quick-cta__text strong {
  font-size: 20px;
  line-height: 24px;
}

.quick-cta__text small {
  color: #f0f0f0;
  font-size: 13px;
  line-height: 16px;
}

.quick-cta__button {
  display: flex;
  flex: 0 0 150px;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  padding: 9px 20px;
  border: 1px solid #fff;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.quick-cta__button--wide {
  flex-basis: 160px;
  width: 160px;
}

.quick-cta__button i,
.bottom-cta__content i {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading__en {
  color: rgba(0, 196, 243, 0.3);
  font-family: "Alex Brush",cursive;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.section-heading__en--plain {
  color: var(--color-blue);
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 29px;
}

.section-heading--compact {
  gap: 8px;
}

.search-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  height: 551px;
  padding: 100px 120px 0;
  overflow: hidden;
}

.search-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--content-width));
}

.search-card {
  display: flex;
  flex-direction: column;
  height: 180px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--color-pink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.search-card__body {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 24px;
  min-height: 0;
  padding: 24px;
}

.search-card__body > img {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.search-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.search-card__copy strong {
  color: var(--color-pink);
  font-size: 18px;
  line-height: 22px;
}

.search-card__copy small {
  font-size: 14px;
  line-height: 1.5;
}

.search-card__footer {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  background: var(--color-pink);
  font-size: 16px;
  font-weight: 700;
}

.search-card__footer img {
  width: 18px;
  height: 18px;
}

.search-section__decoration {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 1586px;
  color: rgba(220, 247, 255, 0.55);
  font-size: 111px;
  font-weight: 700;
  line-height: 106px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.diagnosis-promo {
  padding: 64px 120px;
 /* background:
    radial-gradient(circle at 10% 18%, rgba(238, 134, 161, 0.1) 0 88px, transparent 89px),
    radial-gradient(circle at 92% 84%, rgba(0, 196, 243, 0.1) 0 110px, transparent 111px),
    linear-gradient(120deg, #fff6f8 0%, #f8fdff 100%);*/
  border-block: 1px solid #edf2f4;
}

.diagnosis-promo__card {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce8ee;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(21, 47, 79, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.diagnosis-promo__card:hover,
.diagnosis-promo__card:focus-visible {
  border-color: var(--color-blue);
  box-shadow: 0 22px 58px rgba(21, 47, 79, 0.16);
}

.diagnosis-promo__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 48px 38px;
}

.diagnosis-promo__label {
  margin-bottom: 7px;
  color: var(--color-pink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.diagnosis-promo__lead {
  margin-bottom: 5px;
  color: #005ead;
  font-size: 15px;
  font-weight: 700;
}

.diagnosis-promo__content h2 {
  font-size: clamp(30px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.diagnosis-promo__description {
  max-width: 720px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.diagnosis-promo__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.diagnosis-promo__features span {
  padding: 7px 12px;
  color: var(--color-navy);
  background: #effaff;
  border: 1px solid #cceff8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.diagnosis-promo__features span::before {
  margin-right: 5px;
  color: var(--color-blue);
  content: "✓";
}

.diagnosis-promo__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 280px);
  min-height: 50px;
  margin-top: 20px;
  padding: 12px 16px 12px 24px;
  color: #fff;
 /* background: var(--color-navy);*/
  background: var(--color-pink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.diagnosis-promo__button i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-pink);
  background: #fff;
  border-radius: 50%;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
}

.diagnosis-promo__card:hover .diagnosis-promo__button,
.diagnosis-promo__card:focus-visible .diagnosis-promo__button {
  /*background: var(--color-pink);*/
  background: var(--color-navy);
}

.diagnosis-promo__card:hover .diagnosis-promo__button i,
.diagnosis-promo__card:focus-visible .diagnosis-promo__button i {
  color: var(--color-navy);
}

.reasons-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  min-height: 798px;
  padding: 100px 120px;
}

.reason-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, var(--content-width));
}

.reason-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 430px;
  padding: 23px 19px;
  overflow: hidden;
  color: var(--color-text);
  border: 1px solid var(--color-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.reason-card:hover,
.reason-card:focus-visible {
  box-shadow: 0 12px 28px rgba(21, 47, 79, 0.14);
  transform: translateY(-4px);
}

.reason-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-lg);
}

.reason-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.reason-card:hover .reason-card__image img,
.reason-card:focus-visible .reason-card__image img {
  transform: scale(1.03);
}

.reason-card__image span {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: #fff;
  border: 1px solid var(--color-text);
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.reason-card__image span small {
  font-size: 32px;
}

.reason-card h3 {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 22px;
}

.reason-card p {
  font-size: 14px;
  line-height: 1.5;
}

.reason-card__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-top: auto;
  padding: 8px 9px 8px 16px;
  color: #fff;
  background: var(--color-pink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.reason-card__button i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--color-pink);
  background: #fff;
  border-radius: 50%;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.reason-card--purple {
  background: rgba(139, 110, 176, 0.1);
}

.reason-card--purple h3 {
  color: var(--color-purple);
}

.reason-card--purple .reason-card__image span {
  background: rgba(139, 110, 176, 0.9);
}

.reason-card--green {
  background: rgba(141, 197, 86, 0.1);
}

.reason-card--green h3 {
  color: var(--color-green);
}

.reason-card--green .reason-card__image span {
  background: rgba(141, 197, 86, 0.9);
}

.reason-card--orange {
  background: rgba(242, 152, 56, 0.1);
}

.reason-card--orange h3 {
  color: var(--color-orange);
}

.reason-card--orange .reason-card__image span {
  background: rgba(242, 152, 56, 0.9);
}

.reason-card--pink {
  background: rgba(238, 134, 161, 0.1);
}

.reason-card--pink h3 {
  color: var(--color-pink);
}

.reason-card--pink .reason-card__image span {
  background: rgba(238, 134, 161, 0.9);
}

.reason-card:hover .reason-card__button,
.reason-card:focus-visible .reason-card__button {
  background: var(--color-navy);
}

.reason-card:hover .reason-card__button i,
.reason-card:focus-visible .reason-card__button i {
  color: var(--color-navy);
}

.video-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  height: 794px;
  padding: 100px 120px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    url("../assets/images/video-bg.webp") center / cover no-repeat;
}

.video-embed {
  display: block;
  width: min(800px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-border);
  border: 0;
  border-radius: var(--radius-md);
}

  .youtube-embed {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
  }

  .youtube-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
.play-icon {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}

.play-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.play-icon img + img {
  top: 11px;
  left: 11px;
  width: 27px;
  height: 27px;
}

.play-icon--large {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
}

.play-icon--large img + img {
  top: 23px;
  left: 23px;
  width: 54px;
  height: 54px;
}

.voice-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  height: 595px;
  padding: 78px 100px;
  background: #fff;
}

.carousel-shell {
  position: relative;
  width: min(1136px, calc(100% - 104px));
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 24px;
  width: 100%;
  padding: 4px;
  overflow: hidden;
}

.voice-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-lg);
}

.voice-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  padding: 0;
  background: var(--color-border);
  border: 0;
  cursor: pointer;
}

.voice-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 79px;
  padding: 12px 16px 14px;
}

.voice-card__content span {
  align-self: flex-start;
  padding: 3px 8px;
  border: 1px solid var(--color-text);
  border-radius: 100px;
  font-size: 12px;
  line-height: 15px;
}

.voice-card__content h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  white-space: nowrap;
}

.carousel-button,
.column-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.carousel-button--prev {
  left: -52px;
}

.carousel-button--next {
  right: -52px;
}

.news-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  height: 813px;
  padding: 100px 120px;
  background: rgba(254, 127, 161, 0.05);
}

.section-heading--pink .section-heading__en {
  color: rgba(238, 134, 161, 0.3);
}

.news-layout {
  display: grid;
  grid-template-columns: 474px 726px;
  width: min(100%, var(--content-width));
}

.news-layout__image {
  position: relative;
  height: 558px;
}

.news-layout__image img {
  position: absolute;
  top: -6px;
  right: 0;
  width: 554px;
  max-width: none;
  height: 558px;
  object-fit: cover;
  border-top-right-radius: 90px;
}

.news-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-height: 114px;
  padding: 16px;
  border-top: 1px solid var(--color-border);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.news-item__meta time {
  color: #666;
}

.news-item__meta span {
  padding: 4px 10px;
  color: #fff;
  background: var(--color-pink);
  border-radius: 2px;
}

.news-item > a {
  font-size: 14px;
  line-height: 1.5;
}

.pill-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 208px;
  min-height: 54px;
  padding: 15px 40px;
  background: #fff;
  border: 1px solid var(--color-text);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.pill-button span {
  font-size: 20px;
  line-height: 1;
}

.news-list__button {
  margin-top: 16px;
}

.column-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  height: 693px;
  padding: 120px 0 120px 120px;
  overflow: hidden;
  background: #e2f7ff;
}

.column-layout {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 40px;
  width: min(1320px, 100%);
}

.column-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 327px;
}

.section-heading--left {
  align-items: flex-start;
  text-align: left;
}

.column-controls {
  display: flex;
  gap: 16px;
}

.column-controls button {
  width: 56px;
  height: 56px;
  font-size: 24px;
}

.column-cards {
  display: flex;
  gap: 24px;
  width: 1128px;
  overflow: hidden;
}

.column-card {
  display: flex;
  flex: 0 0 360px;
  flex-direction: column;
  gap: 16px;
  height: 327px;
  padding-bottom: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-md);
}

.column-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.column-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 16px;
}

.column-card__content time {
  padding: 4px 16px;
  color: #fff;
  background: var(--color-blue);
  border: 1px solid var(--color-text);
  border-radius: 100px;
  font-size: 12px;
  line-height: 15px;
}

.column-card__content strong {
  font-size: 14px;
  line-height: 22px;
}

.column-section__button {
  margin-right: 120px;
}

.schools-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  min-height: 1512px;
  padding: 100px 120px;
}

.school-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  width: min(100%, var(--content-width));
}

.school-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
}

.school-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.school-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.school-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.school-card__header {
  display: flex;
  flex: 0 0 80px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
  color: #fff;
}

.school-card__header h3 {
  font-size: 18px;
  line-height: 22px;
}

.school-card__header p {
  font-size: 14px;
  line-height: 21px;
}

.school-card__header--purple {
  background: var(--color-purple);
}

.school-card__header--green {
  background: var(--color-green);
}

.school-card__header--orange {
  background: var(--color-orange);
}

.school-card__header--pink {
  background: var(--color-pink);
}

.school-card__header--teal {
  background: var(--color-teal);
}

.school-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.school-card__fields {
  min-height: 46px;
  padding: 8px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 15px;
}

.school-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
}

.school-card__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
}

.school-card__actions > span {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.school-card__official {
  background: #005ead;
}

.school-card__request {
  background: var(--color-pink);
}

.school-card__open {
  background: var(--color-blue);
}

.bottom-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 260px;
}

.bottom-cta__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 0;
  padding: 40px;
  overflow: hidden;
  color: #fff;
}

.bottom-cta__item > img,
.bottom-cta__content {
  position: relative;
  z-index: 1;
}

.bottom-cta__item > img {
  flex: 1 1 0;
  width: 0;
  height: 180px;
  object-fit: cover;
}

.bottom-cta__item--pink > img {
  flex: 0 0 220px;
  width: 220px;
}

.bottom-cta__content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bottom-cta__content small {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}

.bottom-cta__content strong {
  font-size: 23px;
  line-height: 28px;
}

.bottom-cta__content em {
  height: 19px;
  color: #f0f0f0;
  font-size: 16px;
  font-style: normal;
  line-height: 19px;
  white-space: nowrap;
}

.bottom-cta__content > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin-top: 8px;
  padding: 15px 32px;
  color: var(--color-blue);
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.bottom-cta__item--pink .bottom-cta__content > span {
  color: var(--color-pink);
}

.site-footer {
  min-height: 384px;
  padding: 60px;
  color: #fff;
  background: var(--color-navy);
}

.site-footer__inner {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.site-footer h2 {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 24px;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 32px;
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 16px;
}

.site-footer a {
  opacity: 0.7;
}

.site-footer a:hover {
  opacity: 1;
}

.site-footer__copyright {
  margin-top: 30px;
  font-size: 12px;
  text-align: right;
  opacity: 0.4;
}

@media (max-width: 1199px) {
  :root {
    --space-section: 80px;
  }

  .hero {
    height: 540px;
    padding-left: 40px;
  }

  .hero__image {
    height: 516px;
    border-bottom-left-radius: 220px;
  }

  .quick-cta__photo {
    display: none;
  }

  .search-section,
  .reasons-section,
  .video-section,
  .voice-section,
  .news-section,
  .schools-section {
    height: auto;
    padding-inline: 40px;
  }

  .search-section {
    min-height: 520px;
  }

  .diagnosis-promo {
    padding: 56px 40px;
  }

  .diagnosis-promo__content {
    padding: 34px 40px 38px;
  }

  .reason-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .reason-card {
    height: 430px;
  }

  .reason-card__image {
    aspect-ratio: 1.25;
  }

  .voice-cards {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .voice-cards::-webkit-scrollbar,
  .column-cards::-webkit-scrollbar {
    display: none;
  }

  .voice-card,
  .column-card {
    scroll-snap-align: start;
  }

  .news-layout {
    grid-template-columns: minmax(320px, 40%) minmax(0, 60%);
  }

  .column-section {
    height: auto;
    padding-left: 40px;
  }

  .column-layout {
    width: 100%;
  }

  .column-cards {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .column-section__button {
    margin-right: 40px;
  }

  .school-cards {
    grid-template-columns: repeat(2, minmax(0, 384px));
    justify-content: center;
  }

  .school-card,
  .school-card:nth-child(4),
  .school-card:nth-child(5) {
    grid-column: auto;
  }

  .school-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 384px;
  }

  .bottom-cta__item {
    gap: 24px;
    padding: 30px;
  }

  .bottom-cta__item > img {
    display: none;
  }
}

@media (min-width: 1201px) and (max-width: 1300px) {
  .site-header {
    padding-inline: 20px;
  }

  .global-nav__list {
    gap: 16px;
    font-size: 13px;
  }

  .global-nav__list a,
  .header-actions__sub {
    line-height: 1.35;
    text-align: center;
  }

  .header-compact-line {
    display: block;
  }

  .global-nav__list .global-nav__diagnosis {
    width: 120px;
    white-space: normal;
  }

  .global-nav__search {
    width: 130px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions__sub {
    flex: 0 0 88px;
    white-space: normal;
  }

  .header-action--blue {
    width: 160px;
  }

  .header-action--pink {
    width: 116px;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-height: 72px;
    --anchor-offset: 88px;
  }

  .site-header {
    height: 72px;
    padding-inline: 20px;
  }

  .site-logo img {
    width: 46px;
    height: 36px;
  }

  .site-logo span {
    font-size: 16px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    font-size: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

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

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

  .global-nav {
    position: fixed;
    inset: 72px 0 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .global-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 16px;
  }

  .global-nav__list a {
    display: block;
    min-height: 52px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-nav-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .mobile-nav-actions__sub {
    min-height: 48px;
    padding: 12px;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
  }

  .mobile-nav-actions .header-action {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
    height: auto;
    min-height: 500px;
    padding: 40px 0 40px 32px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__title span {
    font-size: 44px;
  }

  .hero__image {
    width: 100%;
    height: 420px;
    border-bottom-left-radius: 160px;
  }

  .quick-cta__item {
    gap: 12px;
  }

  .quick-cta__button {
    flex-basis: 42px;
    width: 42px;
    padding-inline: 12px;
    font-size: 0;
  }

  .quick-cta__button i {
    font-size: 20px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .search-section {
    min-height: 0;
    padding-block: 80px;
  }

  .search-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .search-section__decoration {
    display: none;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-layout__image {
    width: 100%;
    height: 320px;
  }

  .news-layout__image img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0 70px 0 0;
  }

  .column-layout {
    grid-template-columns: 1fr;
  }

  .column-intro {
    flex-direction: row;
    align-items: flex-end;
    height: auto;
  }

  .column-cards {
    padding-right: 40px;
  }

  .school-cards {
    grid-template-columns: minmax(0, 384px);
  }

  .school-card:nth-child(5) {
    grid-column: auto;
    width: auto;
  }

  .bottom-cta {
    height: auto;
  }

  .bottom-cta__item {
    min-height: 260px;
  }

  .bottom-cta__content em {
    height: auto;
    white-space: normal;
  }
}

@media (max-width: 700px) {
  :root {
    --space-section: 64px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 0 0;
  }

  .hero__copy {
    flex-basis: auto;
    width: calc(100% - 40px);
    max-width: 360px;
  }

  .hero__image {
    flex: 0 0 auto;
    height: auto;
    aspect-ratio: 1.45;
    border-bottom-left-radius: 100px;
  }

  .quick-cta,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .quick-cta__item {
    height: auto;
    min-height: 104px;
    padding: 16px 20px;
  }

  .quick-cta__photo {
    display: block;
    flex-basis: 96px;
    width: 96px;
    height: 64px;
  }

  .search-section,
  .reasons-section,
  .video-section,
  .voice-section,
  .news-section,
  .schools-section {
    padding: 64px 20px;
  }

  .section-heading__en {
    font-size: 52px;
    line-height: 52px;
  }

  .section-heading__en--plain {
    font-size: 20px;
    line-height: 24px;
  }

  .section-heading h2 {
    font-size: 27px;
    line-height: 1.4;
  }

  .search-section {
    gap: 32px;
  }

  .diagnosis-promo {
    padding: 48px 20px;
  }

  .diagnosis-promo__card {
    max-width: 600px;
  }

  .diagnosis-promo__content {
    padding: 28px 26px 32px;
  }

  .diagnosis-promo__content h2 {
    font-size: 28px;
  }

  .search-card {
    height: auto;
    min-height: 180px;
  }

  .search-card__body {
    gap: 16px;
    padding: 20px 16px;
  }

  .search-card__body > img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .reason-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .reason-card__image {
    aspect-ratio: 1.2;
  }

  .video-section {
    min-height: 560px;
  }

  .voice-section {
    gap: 32px;
    overflow: hidden;
  }

  .carousel-shell {
    width: calc(100% - 48px);
  }

  .voice-cards {
    grid-template-columns: repeat(3, min(360px, 86vw));
  }

  .voice-card__content h3 {
    white-space: normal;
  }

  .carousel-button {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .carousel-button--prev {
    left: -24px;
  }

  .carousel-button--next {
    right: -24px;
  }

  .news-section {
    gap: 40px;
  }

  .news-layout__image {
    height: auto;
    aspect-ratio: 1.2;
  }

  .news-item {
    min-height: 0;
    padding: 20px 0;
  }

  .news-item__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-list__button {
    align-self: center;
    margin-top: 24px;
  }

  .column-section {
    gap: 32px;
    padding: 64px 0 64px 20px;
  }

  .column-layout {
    gap: 32px;
  }

  .column-intro {
    padding-right: 20px;
  }

  .column-controls button {
    width: 48px;
    height: 48px;
  }

  .column-cards {
    gap: 16px;
    padding-right: 20px;
  }

  .column-card {
    flex-basis: min(360px, 86vw);
  }

  .column-section__button {
    margin-right: 20px;
  }

  .schools-section {
    gap: 40px;
  }

  .school-card {
    height: auto;
    min-height: 560px;
  }

  .school-card__header {
    flex-basis: auto;
    min-height: 80px;
  }

  .school-card__body {
    gap: 8px;
  }

  .school-card__actions {
    margin-top: 16px;
  }

  .bottom-cta__item {
    min-height: 260px;
    padding: 32px 24px;
  }

  .bottom-cta__content small {
    font-size: 14px;
  }

  .bottom-cta__content strong {
    font-size: 22px;
  }

  .bottom-cta__content em {
    font-size: 14px;
  }

  .site-footer {
    padding: 48px 24px;
  }

  .site-footer ul {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
  }

  .site-footer__copyright {
    line-height: 1.5;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 16px;
  }

  .site-logo {
    gap: 8px;
  }

  .site-logo img {
    width: 41px;
    height: 32px;
  }

  .site-logo span {
    font-size: 15px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__title span {
    font-size: 43px;
  }

  .hero__image {
    border-bottom-left-radius: 72px;
  }

  .quick-cta__photo {
    flex-basis: 84px;
    width: 84px;
    height: 60px;
  }

  .quick-cta__text strong {
    font-size: 17px;
  }

  .quick-cta__text small {
    font-size: 11px;
  }

  .quick-cta__button {
    display: none;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .search-card__copy strong {
    font-size: 16px;
  }

  .search-card__copy small {
    font-size: 13px;
  }

  .reason-card__image span {
    width: 68px;
    height: 68px;
    font-size: 40px;
  }

  .reason-card__image span small {
    font-size: 26px;
  }

  .column-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .school-card__header h3 {
    font-size: 16px;
  }

  .school-card__actions a {
    padding-inline: 8px;
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
