:root {
  --navy: #072f63;
  --navy-dark: #052650;
  --ink: #18365c;
  --muted: #5d6d82;
  --line: #dce2ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --soft: #f7f9fc;
  --gold: #c99643;
  --orange: #e47f28;
  --orange-dark: #d96f19;
  --shadow: 0 10px 24px rgba(8, 39, 79, 0.08);
}

:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 38, 80, 0.98) 0%, rgba(7, 47, 99, 0.98) 58%, rgba(13, 64, 122, 0.98) 100%);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 1.8s var(--ease-out-quint),
    transform 1.8s var(--ease-out-quint),
    visibility 0s linear 1.8s;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
}

.page-loader::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderBottomBar 2s var(--ease-out-expo) 1.05s forwards;
}

.loader-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

.loader-logo {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  animation: loaderLogoIn 0.9s var(--ease-out-expo) 0.12s forwards;
}

.loader-school {
  display: block;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(18px);
  animation: loaderNameIn 1.1s var(--ease-out-expo) 0.28s forwards;
}

.loader-line {
  position: relative;
  width: min(280px, 58vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
  opacity: 0;
  transform: scaleX(0.72);
  animation: loaderLineIn 0.54s var(--ease-out-quart) 0.9s forwards;
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: translateX(-100%);
  animation: loaderProgress 2s var(--ease-out-quint) 1.05s forwards;
}

.loader-status {
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderStatusIn 0.6s var(--ease-out-quart) 1s forwards;
}

body.loader-done .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 24, 50, 0.24), rgba(3, 24, 50, 0.06) 42%, rgba(3, 24, 50, 0.32)),
    linear-gradient(135deg, rgba(5, 38, 80, 0.98) 0%, rgba(8, 55, 107, 0.97) 58%, rgba(14, 74, 128, 0.96) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.92s var(--ease-out-quint),
    transform 0.92s var(--ease-out-quint),
    visibility 0s linear 0.92s;
}

.language-gate::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.16) 48.5% 49.5%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 52px);
  opacity: 0.3;
  transform: rotate(-12deg) scale(1.15);
}

.language-gate::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
}

.language-gate-panel {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(680px, calc(100vw - 48px));
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 230, 0.96));
  color: var(--navy);
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 0.82s var(--ease-out-quart),
    transform 0.82s var(--ease-out-quart);
}

.language-gate-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(197, 135, 45, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-gate h2 {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  line-height: 1.28;
}

.language-gate h2 span:first-child {
  font-size: clamp(25px, 2.8vw, 34px);
}

.language-gate h2 span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
}

.language-gate p {
  margin: 14px auto 0;
  max-width: 520px;
  color: #2f4967;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.language-gate-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.language-gate-options button {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 86px;
  padding: 16px 14px;
  border: 1px solid rgba(7, 47, 99, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.language-gate-option-code {
  display: block;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.language-gate-option-text {
  display: block;
  color: #49627c;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.language-gate-options button:hover,
.language-gate-options button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(228, 127, 40, 0.24);
  transform: translateY(-1px);
}

.language-gate-options button:hover .language-gate-option-text,
.language-gate-options button.is-active .language-gate-option-text {
  color: rgba(255, 255, 255, 0.88);
}

.language-gate-options button:disabled {
  cursor: default;
  transform: none;
}

.language-gate-message {
  min-height: 1.7em;
}

body.language-gate-pending {
  overflow: hidden;
}

body.loader-done.language-gate-pending .language-gate {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.24s, 0.24s, 0s;
}

body.loader-done.language-gate-pending .language-gate::after {
  animation: languageGateBar 1.1s var(--ease-out-expo) 0.5s forwards;
}

body.loader-done.language-gate-pending .language-gate-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.44s;
}

body.language-choice-confirmed .language-gate-panel {
  transform: translate3d(0, -4px, 0) scale(0.995);
}

body.language-gate-complete .language-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
  transition-duration: 0.76s;
  transition-delay: 0s, 0s, 0.76s;
}

body.language-gate-pending .lp-shell,
body.language-gate-pending .site-header,
body.language-gate-pending .hero-photo,
body.language-gate-pending .hero-filter,
body.language-gate-pending .hero-inner > * {
  animation: none;
}

body.language-gate-pending .lp-shell {
  opacity: 0;
  pointer-events: none;
}

body.language-gate-pending .site-header,
body.language-gate-pending .hero-filter,
body.language-gate-pending .hero-inner > * {
  opacity: 0;
}

body.language-gate-pending .site-header {
  transform: translateY(-14px);
}

body.language-gate-pending .hero-photo {
  transform: scale(1.045);
}

body.language-gate-pending .hero-inner > * {
  transform: translateY(26px);
}

body.language-gate-pending .hero-inner > .title-rule {
  transform: translateY(16px) scaleX(0);
}

body.language-gate-complete .lp-shell {
  opacity: 0;
  pointer-events: auto;
  animation: shellRevealLoaded 1s var(--ease-out-quint) 0.18s forwards;
}

body.language-gate-complete .site-header {
  opacity: 0;
  transform: translateY(-14px);
  animation: headerDropLoaded 0.7s var(--ease-out-quint) 0.36s forwards;
}

body.language-gate-complete .hero-photo {
  transform: scale(1.045);
  animation: heroPhotoSettleLoaded 1.1s var(--ease-out-expo) 0.46s forwards;
}

body.language-gate-complete .hero-filter {
  opacity: 0;
  animation: heroFilterInLoaded 0.95s var(--ease-out-quart) 0.48s forwards;
}

body.language-gate-complete .hero-inner > .language-switcher {
  opacity: 0;
  transform: translateY(22px);
  animation: heroCopyInLoaded 0.62s var(--ease-out-quint) 0.72s forwards;
}

body.language-gate-complete .hero-inner > h1 {
  animation-delay: 0.84s;
}

body.language-gate-complete .hero-inner > .title-rule {
  animation-delay: 0.96s;
}

body.language-gate-complete .hero-inner > p {
  animation-delay: 1.08s;
}

body.language-gate-complete .hero-inner > .hero-actions {
  animation-delay: 1.2s;
}

body.loader-done.language-gate-pending .lp-shell,
body.loader-done.language-gate-pending .site-header,
body.loader-done.language-gate-pending .hero-photo,
body.loader-done.language-gate-pending .hero-filter,
body.loader-done.language-gate-pending .hero-inner > * {
  animation: none;
}

body.loader-done.language-gate-pending .lp-shell {
  opacity: 0;
  pointer-events: none;
}

body.loader-done.language-gate-pending .site-header,
body.loader-done.language-gate-pending .hero-filter,
body.loader-done.language-gate-pending .hero-inner > * {
  opacity: 0;
}

body.loader-done.language-gate-complete .lp-shell {
  opacity: 0;
  pointer-events: auto;
  animation: shellRevealLoaded 1s var(--ease-out-quint) 0.18s forwards;
}

body.loader-done.language-gate-complete .site-header {
  opacity: 0;
  transform: translateY(-14px);
  animation: headerDropLoaded 0.7s var(--ease-out-quint) 0.36s forwards;
}

body.loader-done.language-gate-complete .hero-photo {
  transform: scale(1.045);
  animation: heroPhotoSettleLoaded 1.1s var(--ease-out-expo) 0.46s forwards;
}

body.loader-done.language-gate-complete .hero-filter {
  opacity: 0;
  animation: heroFilterInLoaded 0.95s var(--ease-out-quart) 0.48s forwards;
}

body.loader-done.language-gate-complete .hero-inner > .language-switcher {
  opacity: 0;
  transform: translateY(22px);
  animation: heroCopyInLoaded 0.62s var(--ease-out-quint) 0.72s forwards;
}

body.loader-done.language-gate-complete .hero-inner > h1 {
  animation-delay: 0.84s;
}

body.loader-done.language-gate-complete .hero-inner > .title-rule {
  animation-delay: 0.96s;
}

body.loader-done.language-gate-complete .hero-inner > p {
  animation-delay: 1.08s;
}

body.loader-done.language-gate-complete .hero-inner > .hero-actions {
  animation-delay: 1.2s;
}

.lp-shell {
  opacity: 0;
  animation: shellReveal 1.45s var(--ease-out-quint) 5.85s forwards;
}

body.loader-done .lp-shell {
  animation: shellRevealLoaded 1s var(--ease-out-quint) 1.55s forwards;
}

.site-header {
  opacity: 0;
  transform: translateY(-14px);
  animation: headerDrop 0.9s var(--ease-out-quint) 6.05s forwards;
}

body.loader-done .site-header {
  animation: headerDropLoaded 0.7s var(--ease-out-quint) 1.7s forwards;
}

.hero-photo {
  transform: scale(1.045);
  animation: heroPhotoSettle 1.6s var(--ease-out-expo) 6.05s forwards;
}

body.loader-done .hero-photo {
  animation: heroPhotoSettleLoaded 1.1s var(--ease-out-expo) 1.7s forwards;
}

.hero-filter {
  opacity: 0;
  animation: heroFilterIn 1.35s var(--ease-out-quart) 6.05s forwards;
}

body.loader-done .hero-filter {
  animation: heroFilterInLoaded 0.95s var(--ease-out-quart) 1.7s forwards;
}

.hero-inner > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroCopyIn 0.82s var(--ease-out-quint) forwards;
}

.hero-inner > h1 {
  animation-delay: 6.3s;
}

.hero-inner > .title-rule {
  transform: translateY(16px) scaleX(0);
  transform-origin: left;
  animation-name: heroRuleIn;
  animation-delay: 6.42s;
}

.hero-inner > p {
  animation-delay: 6.54s;
}

.hero-inner > .hero-actions {
  animation-delay: 6.66s;
}

body.loader-done .hero-inner > h1 {
  animation-name: heroCopyInLoaded;
  animation-duration: 0.62s;
  animation-delay: 1.88s;
}

body.loader-done .hero-inner > .title-rule {
  animation-name: heroRuleInLoaded;
  animation-duration: 0.62s;
  animation-delay: 1.98s;
}

body.loader-done .hero-inner > p {
  animation-name: heroCopyInLoaded;
  animation-duration: 0.62s;
  animation-delay: 2.08s;
}

body.loader-done .hero-inner > .hero-actions {
  animation-name: heroCopyInLoaded;
  animation-duration: 0.62s;
  animation-delay: 2.18s;
}

.motion-reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.76s var(--ease-out-quart),
    filter 0.76s var(--ease-out-quart),
    transform 0.76s var(--ease-out-quart);
  transition-delay: calc(var(--motion-order, 0) * 70ms);
}

.motion-reveal.is-inview {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.career-card.motion-reveal,
.mind-grid article.motion-reveal,
.faq-grid details.motion-reveal {
  transform: translate3d(0, 26px, 0) scale(0.985);
}

.about-text.motion-reveal,
.portal-copy.motion-reveal,
.access-copy.motion-reveal {
  transform: translate3d(-20px, 0, 0);
}

.portal-photo.motion-reveal,
.map-frame.motion-reveal {
  transform: translate3d(20px, 0, 0);
}

.benefit-item.motion-reveal {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.btn,
.outline-btn,
.text-link,
.cta-button,
.header-contact,
.support-tabs button,
.career-card,
.benefit-item,
.mind-grid article,
.faq-grid details {
  transition:
    transform 0.24s var(--ease-out-quart),
    box-shadow 0.24s var(--ease-out-quart),
    background 0.24s var(--ease-out-quart),
    border-color 0.24s var(--ease-out-quart),
    color 0.24s var(--ease-out-quart),
    opacity 0.24s var(--ease-out-quart);
}

.btn,
.outline-btn,
.cta-button,
.header-contact {
  position: relative;
  overflow: hidden;
}

.btn::after,
.outline-btn::after,
.cta-button::after,
.header-contact::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -45%;
  width: 34%;
  height: 240%;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(0) rotate(18deg);
  transition: transform 0.58s var(--ease-out-quint);
}

.btn:hover::after,
.outline-btn:hover::after,
.cta-button:hover::after,
.header-contact:hover::after {
  transform: translateX(430%) rotate(18deg);
}

.btn:active,
.outline-btn:active,
.text-link:active,
.cta-button:active,
.header-contact:active,
.support-tabs button:active {
  transform: translateY(0) scale(0.98);
}

.career-card:hover,
.mind-grid article:hover,
.faq-grid details:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(8, 39, 79, 0.14);
}

.career-card:hover figure img,
.support-photo:hover img {
  transform: scale(1.045);
}

.career-card figure img,
.main-course figure img,
.portal-photo img,
.support-photo img {
  transition: transform 0.72s var(--ease-out-quart);
}

.benefit-item:hover .icon-ring,
.mind-grid article:hover .gold-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--gold);
}

.icon-ring,
.gold-icon {
  transition:
    transform 0.24s var(--ease-out-quart),
    border-color 0.24s var(--ease-out-quart),
    color 0.24s var(--ease-out-quart);
}

.support-tabs button:hover {
  background: rgba(7, 47, 99, 0.08);
}

.support-tabs button.active:hover {
  background: var(--navy);
}

.support-content.is-switching {
  animation: tabPanelSwitch 0.38s var(--ease-out-quart) both;
}

.faq-grid summary::after {
  transition: transform 0.24s var(--ease-out-quart);
}

.faq-grid details[open] {
  box-shadow: 0 14px 28px rgba(8, 39, 79, 0.1);
}

.faq-grid details[open] summary::after {
  transform: rotate(45deg);
}

.faq-grid details[open] p {
  animation: faqAnswerIn 0.32s var(--ease-out-quart) both;
}

.flow-list.is-inview li span {
  animation: stepPulse 0.62s var(--ease-out-quart) both;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderNameIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderLineIn {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes loaderProgress {
  to {
    transform: translateX(0);
  }
}

@keyframes loaderStatusIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderBottomBar {
  to {
    transform: scaleX(1);
  }
}

@keyframes loaderExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
  }
}

@keyframes languageGateBar {
  to {
    transform: scaleX(1);
  }
}

@keyframes shellReveal {
  to {
    opacity: 1;
  }
}

@keyframes shellRevealLoaded {
  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerDropLoaded {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPhotoSettle {
  to {
    transform: scale(1);
  }
}

@keyframes heroPhotoSettleLoaded {
  to {
    transform: scale(1);
  }
}

@keyframes heroFilterIn {
  to {
    opacity: 1;
  }
}

@keyframes heroFilterInLoaded {
  to {
    opacity: 1;
  }
}

@keyframes heroCopyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyInLoaded {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRuleIn {
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes heroRuleInLoaded {
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes tabPanelSwitch {
  from {
    opacity: 0.45;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepPulse {
  0% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    display: none;
  }

  .lp-shell,
  .site-header,
  .hero-photo,
  .hero-filter,
  .hero-inner > *,
  .motion-reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
summary {
  cursor: pointer;
}

.lp-shell {
  min-height: 100vh;
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(7, 47, 99, 0.12);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-family: Georgia, "Yu Mincho", serif;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand {
  font-size: 24px;
}

.brand-icon,
.footer-brand img {
  width: 28px;
  height: 28px;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 24px;
  color: #102b4e;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.global-nav a {
  padding: 6px 0;
}

.header-contact {
  height: 38px;
  min-width: 128px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 900;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: max-content;
  margin-bottom: 18px;
  padding: 3px;
  border: 1px solid rgba(7, 47, 99, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.language-switcher button {
  min-width: 46px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--navy);
  color: var(--white);
}

body[data-language="en"] .global-nav {
  gap: 14px;
  font-size: 12px;
}

body[data-language="en"] .header-contact {
  min-width: 108px;
  padding-inline: 14px;
}

body[data-language="en"] .hero h1 {
  max-width: 620px;
  font-size: clamp(38px, 4.6vw, 60px);
}

.mail-mark {
  display: inline-block;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 446px;
  overflow: hidden;
  background: #edf1f5;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-filter {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 28%, rgba(255, 253, 248, 0.42) 50%, rgba(255, 253, 248, 0.03) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 96px));
  min-height: 446px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(42px, 5.1vw, 66px);
  line-height: 1.26;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.68);
}

.title-rule {
  width: 48px;
  height: 3px;
  margin: 22px 0 18px;
  background: var(--gold);
}

.hero p {
  margin: 0 0 27px;
  color: #2f4967;
  font-size: 17px;
  font-weight: 800;
}

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

.btn,
.outline-btn,
.text-link,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.outline-btn:hover,
.text-link:hover,
.cta-button:hover,
.header-contact:hover {
  transform: translateY(-1px);
}

.btn {
  min-width: 170px;
  height: 46px;
  padding: 0 26px;
  border-radius: 3px;
  font-size: 14px;
}

.hero-actions .btn {
  min-height: 46px;
  height: auto;
  padding: 10px 24px;
  line-height: 1.35;
  text-align: center;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(228, 127, 40, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid var(--gold);
}

.section {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  padding: 38px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.section-head h2,
.about-text h2,
.portal-copy h2,
.trust-title h2,
.access-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 31px;
  line-height: 1.35;
  font-weight: 800;
}

.section-head p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.side-line {
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.career-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.career-card,
.benefit-icons,
.main-course,
.support-board,
.trust-box,
.mind-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.career-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 21px;
}

.career-card figure {
  height: 164px;
  margin: 0;
  overflow: hidden;
}

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

.floating-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: -28px auto 10px;
  color: var(--white);
  background: var(--navy);
  border: 4px solid var(--white);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.career-body {
  padding: 0 26px;
  text-align: center;
}

.career-body h3,
.course-copy h3,
.support-copy h3,
.mind-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 800;
}

.career-body p {
  min-height: 58px;
  margin: 9px 0 10px;
  color: #596b82;
  font-size: 13px;
  font-weight: 700;
}

.career-body a,
.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.about-block {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(220, 226, 234, 0.7);
}

.about-text p {
  margin: 13px 0 0;
  color: #40536e;
  font-size: 14px;
  font-weight: 700;
}

.benefit-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-shadow: none;
}

.benefit-item {
  min-height: 116px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-item:last-child {
  border-right: 0;
}

.icon-ring,
.gold-icon,
.building-icon {
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 2px solid #d4dce7;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.icon-ring {
  width: 44px;
  height: 44px;
  font-size: 20px;
}

.benefit-item strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.benefit-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.course-section {
  padding-top: 28px;
}

.course-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -6px 0 22px;
  color: #51647b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.course-lead p {
  max-width: 720px;
  margin: 0;
}

.course-lineup {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.course-card-link {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(8, 39, 79, 0.08);
  flex-direction: column;
}

.course-card-link figure {
  height: 212px;
  margin: 0;
  overflow: hidden;
  background: #f5f7fa;
}

.course-card-link figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.course-card-link:first-child figure img {
  object-fit: contain;
}

.course-card-link .course-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.course-label {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: #6b4510;
  background: #f3d98c;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.course-card-link .price {
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 11px 0 10px;
}

.course-card-link .price span {
  font-size: 15px;
}

.course-card-link .price strong {
  font-size: 28px;
}

.course-points {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.course-points li {
  position: relative;
  padding-left: 18px;
  color: #2f4967;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.course-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.course-card-link .outline-btn {
  align-self: flex-start;
  margin-top: auto;
}

.course-info-page .lp-shell,
.course-info-page .site-header {
  opacity: 1;
  transform: none;
  animation: none;
}

.course-info-main {
  padding: 38px 0 68px;
}

.course-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.course-info-hero,
.course-info-section,
.course-cta-panel {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.course-info-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 22px 0 32px;
}

.course-info-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.22;
}

.course-title-stack span {
  display: block;
}

.course-info-hero-copy p {
  margin: 16px 0 0;
  max-width: 680px;
  color: #405b79;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.course-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.course-tag-list li {
  padding: 6px 10px;
  color: var(--navy);
  background: #eef3f8;
  border: 1px solid #d9e3ee;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.course-info-hero figure {
  margin: 0;
  overflow: hidden;
  background: #f5f7fa;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
}

.course-info-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.course-info-hero figure.contain-image img {
  object-fit: contain;
}

.course-info-section {
  padding: 34px 0;
  border-top: 1px solid rgba(7, 47, 99, 0.12);
}

.course-info-section h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 30px;
  line-height: 1.35;
}

.course-info-section > p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #405b79;
  font-weight: 800;
  line-height: 1.9;
}

.course-info-grid,
.course-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.course-price-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-info-card,
.course-price-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.course-info-card strong,
.course-price-panel h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.course-info-card p,
.course-price-panel p,
.course-price-panel li {
  margin: 0;
  color: #405b79;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
}

.course-price-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.course-price-panel .price {
  margin: 8px 0 10px;
}

.course-flow {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-flow li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 47, 99, 0.1);
}

.course-flow li:last-child {
  border-bottom: 0;
}

.course-flow span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.course-flow strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.course-flow small {
  display: block;
  margin-top: 4px;
  color: #405b79;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.course-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.course-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.course-table th,
.course-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.course-table th {
  color: var(--navy);
  background: #f0f4f8;
  font-size: 13px;
  font-weight: 900;
}

.course-table td {
  color: #405b79;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.course-table tr:last-child td {
  border-bottom: 0;
}

.course-note {
  margin-top: 16px;
  padding: 16px 18px;
  color: #3e4f65;
  background: #fff8e4;
  border-left: 4px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
}

.course-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.course-cta-panel h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 28px;
  line-height: 1.35;
}

.course-cta-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.course-cta-panel .outline-btn {
  flex: 0 0 auto;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.7);
}

.main-course {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 224px;
  padding: 22px 34px 22px 22px;
  box-shadow: none;
}

.main-course figure {
  height: 190px;
  margin: 0;
  overflow: hidden;
  background: #f5f7fa;
  border-radius: 5px;
}

.main-course figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 9px 0 8px;
  color: var(--navy);
}

.price span {
  font-size: 22px;
  font-weight: 900;
}

.price strong {
  font-size: 34px;
  line-height: 1;
}

.price small {
  font-weight: 800;
}

.course-copy > p:not(.price) {
  margin: 0 0 16px;
  color: #51647b;
  font-size: 14px;
  font-weight: 700;
}

.outline-btn {
  min-width: 176px;
  height: 38px;
  padding: 0 20px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #b8a06f;
  border-radius: 2px;
  font-size: 13px;
}

.support-section {
  padding-top: 18px;
}

.support-board {
  overflow: hidden;
  box-shadow: none;
}

.support-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f3f5f8;
  border-bottom: 1px solid var(--line);
}

.support-tabs button {
  height: 48px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
}

.support-tabs button:last-child {
  border-right: 0;
}

.support-tabs button.active {
  color: var(--white);
  background: var(--navy);
}

.support-content {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  padding: 22px;
}

.support-copy {
  padding: 16px 12px 12px;
}

.support-copy p {
  margin: 8px 0 12px;
  color: #4c5e74;
  font-size: 14px;
  font-weight: 700;
}

.support-copy ul {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.support-copy li {
  position: relative;
  padding-left: 22px;
  color: #44566d;
  font-size: 13px;
  font-weight: 800;
}

.support-copy li::before {
  content: "○";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.support-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.support-photo img {
  width: 100%;
  height: 242px;
  object-fit: cover;
}

.flow-section {
  padding-top: 24px;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
}

.flow-list::before {
  content: "";
  position: absolute;
  top: 57px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: #c4ccd9;
  transform: scaleX(0);
  transform-origin: left center;
}

.flow-list.is-inview::before {
  animation: flowLineDraw 1.65s ease-out 0.12s both;
}

.flow-list li {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 156px;
  padding: 0 4px;
  text-align: center;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(22px) scale(0.94);
}

.flow-list.is-inview li {
  animation: flowStepFloat 0.72s var(--ease-out-quart) both;
}

.flow-list.is-inview li:nth-child(1) { animation-delay: 0.08s; }
.flow-list.is-inview li:nth-child(2) { animation-delay: 0.28s; }
.flow-list.is-inview li:nth-child(3) { animation-delay: 0.48s; }
.flow-list.is-inview li:nth-child(4) { animation-delay: 0.68s; }
.flow-list.is-inview li:nth-child(5) { animation-delay: 0.88s; }
.flow-list.is-inview li:nth-child(6) { animation-delay: 1.08s; }
.flow-list.is-inview li:nth-child(7) { animation-delay: 1.28s; }

.flow-list.is-inview li:nth-child(1) span { animation-delay: 0.16s; }
.flow-list.is-inview li:nth-child(2) span { animation-delay: 0.36s; }
.flow-list.is-inview li:nth-child(3) span { animation-delay: 0.56s; }
.flow-list.is-inview li:nth-child(4) span { animation-delay: 0.76s; }
.flow-list.is-inview li:nth-child(5) span { animation-delay: 0.96s; }
.flow-list.is-inview li:nth-child(6) span { animation-delay: 1.16s; }
.flow-list.is-inview li:nth-child(7) span { animation-delay: 1.36s; }

.flow-list span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #d5b777;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--paper);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}

.flow-list strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.flow-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}

@keyframes flowLineDraw {
  to {
    transform: scaleX(1);
  }
}

@keyframes flowStepFloat {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(22px) scale(0.94);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.portal-section {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
  min-width: 0;
  padding-top: 26px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(220, 226, 234, 0.7);
}

.portal-copy,
.portal-photo,
.portal-feature-grid,
.portal-feature-grid article {
  min-width: 0;
}

.portal-copy p {
  margin: 14px 0 18px;
  color: #4a5e75;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.portal-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.portal-feature-grid article {
  min-height: 118px;
  padding: 16px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.portal-feature-grid strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.portal-feature-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 5px;
  margin: 0 0 17px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #243f64;
  font-size: 13px;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 900;
}

.portal-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.portal-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.trust-section {
  padding-top: 18px;
  padding-bottom: 42px;
}

.trust-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px 34px;
  align-items: start;
  min-height: 260px;
  padding: 34px 38px;
  box-shadow: none;
}

.trust-title {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.building-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 34px;
}

.trust-title h2 {
  font-size: 24px;
}

.trust-copy p {
  margin: 0;
  color: #44586f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.trust-copy p + p {
  margin-top: 14px;
}

.trust-copy strong {
  color: var(--navy);
  font-weight: 900;
}

.trust-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-notes article {
  min-height: 138px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.trust-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 800;
}

.trust-notes strong {
  display: block;
  margin-top: 11px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 900;
}

.trust-notes p {
  margin: 8px 0 0;
  color: #4d6178;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.mind-section {
  padding-top: 18px;
}

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

.mind-grid article {
  min-height: 178px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: none;
}

.gold-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  color: var(--gold);
  border-color: #d8bd82;
  font-size: 28px;
}

.mind-grid h3 {
  font-size: 17px;
}

.mind-grid p {
  margin: 8px 0 0;
  color: #5a6d83;
  font-size: 12px;
  font-weight: 700;
}

.faq-section {
  padding-top: 14px;
  padding-bottom: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}

.faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.faq-grid summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "⌄";
  color: var(--navy);
}

.faq-grid p {
  margin: 0;
  padding: 0 16px 14px;
  color: #5b6d82;
  font-size: 12px;
  font-weight: 700;
}

.cta-band {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 26px;
  background: var(--paper);
}

.cta-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 66px;
  border-left: 1px solid #d9c08b;
}

.cta-text {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: center;
}

.mail-large {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.cta-text h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 29px;
  font-weight: 800;
}

.cta-text p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cta-button {
  min-width: 316px;
  height: 52px;
  color: var(--white);
  background: var(--orange);
  border-radius: 3px;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-actions .cta-button {
  min-width: 220px;
  padding: 0 22px;
}

.cta-button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--gold);
}

.cta-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.contact-section {
  padding-top: 24px;
  padding-bottom: 54px;
}

.contact-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 40px;
  align-items: start;
  padding: 42px;
  background: var(--paper);
  border: 1px solid #d9c08b;
  box-shadow: var(--shadow);
}

.contact-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 32px;
  line-height: 1.36;
}

.contact-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.contact-mode-button[data-contact-mode="orientation"] {
  grid-column: 1 / -1;
}

.contact-mode-button {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #d8c08a;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.contact-mode-button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.contact-panel,
.contact-form {
  min-width: 0;
}

.contact-panel[hidden] {
  display: none;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.secure-note {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 16px 18px;
  color: #27435f;
  background: #f4f8fc;
  border: 1px solid #cfdae7;
  border-radius: 5px;
}

.secure-note strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.secure-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.consent-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.form-consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.completion-card {
  padding: 28px;
  background: #eef9f3;
  border: 1px solid #b9e6cc;
  border-radius: 5px;
}

.completion-card h3 {
  margin: 0;
  color: #15533a;
  font-size: 24px;
}

.completion-card p {
  margin: 10px 0 0;
  color: #2b6f50;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.admission-section {
  padding-top: 24px;
  padding-bottom: 62px;
}

.admission-access-page {
  min-height: 100vh;
  opacity: 1;
  animation: none;
}

.admission-access-page .site-header {
  opacity: 1;
  transform: none;
  animation: none;
}

.admission-access-section {
  padding-top: 54px;
}

.admission-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admission-copy {
  position: sticky;
  top: 92px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admission-copy h1,
.admission-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: 32px;
  line-height: 1.35;
}

.admission-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.admission-form {
  min-width: 0;
}

.admission-steps {
  min-width: 0;
}

.admission-step[hidden],
.completion-card[hidden] {
  display: none;
}

.admission-guide-document {
  display: grid;
  gap: 24px;
  margin: 0 0 18px;
  padding: 28px;
  color: #2e4965;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.admission-guide-block {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dbe4ee;
}

.admission-guide-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.admission-guide-block h4 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.admission-guide-block p {
  margin: 0;
}

.step-panel {
  min-width: 0;
}

.step-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.step-panel h2,
.step-panel h3,
.form-section-title h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.45;
}

.step-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.paper-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: #314a63;
  background: #f4f8fc;
  border: 1px solid #cfdae7;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.document-scroll {
  max-height: 560px;
  overflow: auto;
  overscroll-behavior: contain;
  background: #f5f7fa;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.document-scroll[data-reached-end="true"] {
  border-color: var(--gold);
}

.pdf-viewer {
  display: block;
  width: 100%;
  height: 920px;
  border: 0;
  background: var(--white);
}

.document-bottom {
  margin: 0;
  padding: 16px;
  color: var(--navy);
  background: #fff8e8;
  border-top: 1px solid #ead6aa;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.doc-check input:disabled + span {
  color: #8796a8;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.form-section-title {
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field,
.option-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span,
.option-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-field em,
.option-field em {
  margin-left: 4px;
  color: var(--orange-dark);
  font-style: normal;
  font-size: 11px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
}

.form-field textarea {
  resize: vertical;
  line-height: 1.7;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(201, 150, 67, 0.22);
}

.option-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-grid label,
.form-consent {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.option-grid input,
.form-consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.form-consent {
  margin-top: 18px;
}

.form-submit-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.admission-submit,
.contact-submit,
.orientation-submit {
  border: 0;
  cursor: pointer;
}

.admission-submit:disabled,
.contact-submit:disabled,
.orientation-submit:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.form-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.form-status[data-status="loading"] {
  color: var(--navy);
  background: #eef4fb;
  border: 1px solid #cdddf0;
}

.form-status[data-status="success"] {
  color: #15533a;
  background: #eef9f3;
  border: 1px solid #b9e6cc;
}

.form-status[data-status="error"] {
  color: #8d2f1b;
  background: #fff4ef;
  border: 1px solid #f0c9b8;
}

.access-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: end;
  padding-top: 2px;
  padding-bottom: 28px;
}

.access-copy h3 {
  margin: 15px 0 5px;
  color: var(--navy);
  font-size: 18px;
}

.access-copy p {
  margin: 2px 0;
  color: #334a66;
  font-weight: 800;
}

.map-link {
  margin-top: 14px;
}

.map-frame {
  height: 156px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #e9eef5;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(0.95);
}

.site-footer {
  min-height: 66px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  padding: 0 56px;
  color: var(--white);
  background: var(--navy-dark);
}

.footer-brand {
  color: var(--white);
  font-size: 18px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .global-nav {
    gap: 12px;
    font-size: 12px;
  }

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

  .course-info-hero,
  .course-info-grid,
  .course-price-grid,
  .course-price-grid.two-col {
    grid-template-columns: 1fr;
  }

  .about-block,
  .main-course,
  .support-content,
  .portal-section,
  .trust-box,
  .contact-card,
  .access-section {
    grid-template-columns: 1fr;
  }

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

  .benefit-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 56px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 25px;
    height: 25px;
  }

  .global-nav,
  .header-contact {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-photo {
    object-position: 62% center;
  }

  .hero-filter {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.78) 38%, rgba(255, 253, 248, 0.18) 100%);
  }

  .hero-inner {
    width: calc(100% - 36px);
    justify-content: flex-start;
    padding-top: 74px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    flex: 1 1 150px;
    min-width: 0;
  }

  .section,
  .cta-band,
  .contact-section {
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 32px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2,
  .about-text h2,
  .portal-copy h2,
  .trust-title h2,
  .access-copy h2 {
    font-size: 26px;
  }

  .side-line {
    width: 24px;
  }

  .career-cards,
  .benefit-icons,
  .portal-feature-grid,
  .mind-grid,
  .trust-notes,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-text.motion-reveal,
  .portal-copy.motion-reveal,
  .access-copy.motion-reveal,
  .portal-photo.motion-reveal,
  .map-frame.motion-reveal {
    transform: translate3d(0, 24px, 0);
  }

  .portal-section {
    gap: 24px;
  }

  .portal-copy h2,
  .portal-copy p,
  .portal-feature-grid strong,
  .portal-feature-grid span {
    overflow-wrap: anywhere;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .course-lead {
    display: grid;
    margin-top: -2px;
  }

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

  .course-card-link figure {
    height: 190px;
  }

  .course-card-link .course-copy {
    padding: 18px;
  }

  .course-card-link .price strong {
    font-size: 25px;
  }

  .course-info-main {
    padding-top: 18px;
  }

  .course-info-hero,
  .course-info-section,
  .course-cta-panel {
    width: calc(100% - 32px);
  }

  .course-info-hero {
    gap: 22px;
    padding-bottom: 24px;
  }

  .course-info-hero-copy h1 {
    font-size: 34px;
  }

  .course-info-hero-copy p {
    font-size: 14px;
  }

  .course-info-section h2 {
    font-size: 25px;
  }

  .course-info-hero figure {
    aspect-ratio: 4 / 3;
  }

  .course-cta-panel {
    display: grid;
    padding: 22px;
  }

  .course-cta-panel .outline-btn {
    width: 100%;
  }

  .main-course,
  .support-content,
  .trust-box,
  .access-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-box {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .support-tabs {
    grid-template-columns: 1fr;
  }

  .support-tabs button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 0;
  }

  .flow-list::before {
    top: 38px;
    bottom: 38px;
    left: 37px;
    right: auto;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .flow-list.is-inview::before {
    animation-name: flowLineDrawVertical;
  }

  .flow-list li {
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    justify-items: start;
    align-items: start;
    min-height: auto;
    text-align: left;
  }

  .flow-list li span {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .flow-list li strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .flow-list li small {
    grid-column: 2;
    grid-row: 2;
    max-width: 24em;
  }

  .flow-list small br {
    display: none;
  }

  @keyframes flowLineDrawVertical {
    to {
      transform: scaleY(1);
    }
  }

  .portal-photo img {
    height: auto;
  }

  .trust-title {
    grid-template-columns: 52px 1fr;
  }

  .building-icon {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .cta-inner,
  .cta-text {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px 18px;
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .admission-section {
    padding-top: 16px;
    padding-bottom: 42px;
  }

  .contact-card {
    gap: 24px;
    padding: 28px 18px;
  }

  .contact-intro {
    text-align: center;
  }

  .contact-intro h2 {
    font-size: 26px;
  }

  .contact-mode-tabs {
    grid-template-columns: 1fr;
  }

  .admission-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 18px;
  }

  .admission-copy {
    position: static;
    text-align: center;
  }

  .admission-copy h1,
  .admission-copy h2 {
    font-size: 26px;
  }

  .admission-guide-document {
    padding: 22px 18px;
  }

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

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-note {
    text-align: center;
  }

  .map-frame {
    height: 230px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    white-space: normal;
  }
}
