/* =========================================================
   STUDENT SEASON PASS LP
   Revised styles.css
========================================================= */

:root {
  --navy-950: #031326;
  --navy-900: #061d3c;
  --navy-850: #08264e;
  --navy-800: #0a315f;
  --navy-700: #0e4c82;

  --blue-600: #1476b8;
  --blue-500: #2696d4;
  --blue-300: #8fd1ef;
  --blue-100: #e7f6fd;

  --yellow-500: #ffd548;
  --yellow-400: #ffe36d;
  --yellow-300: #ffed9b;

  --white: #ffffff;
  --snow: #f7fbfe;
  --gray-050: #fafbfd;
  --gray-100: #f2f5f8;
  --gray-200: #e2e8ef;
  --gray-300: #cbd5e1;
  --gray-500: #718096;
  --gray-600: #536176;
  --gray-700: #354256;

  --text: #071c34;
  --text-muted: #617086;

  --shadow-sm: 0 8px 24px rgba(3, 19, 38, 0.08);
  --shadow-md: 0 18px 50px rgba(3, 19, 38, 0.12);
  --shadow-lg: 0 30px 90px rgba(3, 19, 38, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --header-height: 82px;
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);

  --font-jp:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;

  --font-en:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

::selection {
  color: var(--navy-950);
  background: var(--yellow-500);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-note {
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 4px;
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   Scroll progress / reveal
========================================================= */

.scroll-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.scroll-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow-500), var(--yellow-300));
  box-shadow: 0 0 16px rgba(255, 213, 72, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Header
========================================================= */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(3, 19, 38, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 11px;
}

.site-logo__symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--yellow-500);
}

.site-header.is-scrolled .site-logo__symbol {
  color: var(--navy-800);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo__text small {
  margin-bottom: 4px;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.site-logo__text strong {
  font-family: var(--font-en);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 142px;
  min-height: 46px;
  padding: 10px 20px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(255, 213, 72, 0.24);
  transition: transform var(--transition), background var(--transition);
}

.header-cta:hover {
  background: var(--yellow-400);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition:
    top var(--transition),
    transform var(--transition),
    opacity var(--transition);
}

.menu-button span:nth-child(1) { top: 14px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 28px; }

.menu-button.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 24px;
  color: var(--white);
  background: rgba(3, 19, 38, 0.98);
  overflow-y: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  width: min(100%, 560px);
  margin: 0 auto;
}

.mobile-menu__nav > a {
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-menu__purchase {
  margin-top: 30px;
  padding: 19px 22px !important;
  color: var(--navy-950);
  background: var(--yellow-500);
  border: 0 !important;
  border-radius: 10px;
  text-align: center;
}

/* =========================================================
   Buttons
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 62px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.button--primary {
  color: var(--navy-950);
  background: var(--yellow-500);
  box-shadow: 0 16px 40px rgba(255, 213, 72, 0.24);
}

.button--primary:hover {
  background: var(--yellow-400);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(255, 213, 72, 0.32);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.button--large {
  min-height: 72px;
  padding: 18px 38px;
  font-size: 1.1rem;
}

/* =========================================================
   Hero
========================================================= */

.hero {
  position: relative;
  min-height: 860px;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(
      90deg,
      rgba(3, 19, 38, 0.78) 0%,
      rgba(3, 19, 38, 0.38) 48%,
      rgba(3, 19, 38, 0.12) 100%
    ),
    url("assets/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero__sky,
.hero__mountain {
  display: none;
}

.hero__snow {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(255,255,255,.65) 0 1px, transparent 1.5px);
  background-position: 0 0, 50px 75px;
  background-size: 130px 130px, 90px 90px;
  animation: snowFall 17s linear infinite;
}

@keyframes snowFall {
  from { background-position: 0 -140px, 50px -90px; }
  to { background-position: 50px 720px, 0 620px; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(3, 19, 38, 0.82) 0%,
      rgba(3, 19, 38, 0.47) 44%,
      rgba(3, 19, 38, 0.05) 78%
    ),
    linear-gradient(
      180deg,
      rgba(3, 19, 38, 0.22),
      rgba(3, 19, 38, 0.18)
    );
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 74px;
  min-height: calc(860px - var(--header-height));
  padding-top: 48px;
  padding-bottom: 90px;
}

.hero__content {
  max-width: 720px;
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero__title {
  margin: 0;
  line-height: 0.96;
}

.hero__title span,
.hero__title strong {
  display: block;
}

.hero__title span {
  margin-bottom: 10px;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero__title strong {
  font-size: clamp(3.7rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero__lead {
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.27rem);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__pass-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero__deadline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 30px 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__deadline::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--yellow-500);
}

.hero__deadline span {
  font-family: var(--font-en);
  font-size: 0.94rem;
  letter-spacing: 0.15em;
}

.hero-price {
  position: relative;
  padding: 14px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-price__top {
  padding: 17px 20px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 16px 16px 8px 8px;
  text-align: center;
}

.hero-price__top p {
  margin: 0;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.hero-price__top span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-price__body {
  padding: 28px 18px 24px;
  text-align: center;
}

.hero-price__regular {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-price__regular del {
  display: inline-block;
  margin-left: 6px;
  color: var(--gray-700);
}

.hero-price__saving {
  margin: 18px 0 20px;
  padding: 10px 12px;
  background: var(--yellow-500);
  border-radius: 8px;
}

.hero-price__saving span,
.hero-price__saving strong {
  display: block;
}

.hero-price__saving span {
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-price__saving strong {
  margin-top: 2px;
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-price__main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.hero-price__main > span {
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.hero-price__main strong {
  font-family: var(--font-en);
  font-size: clamp(4.4rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-price__main small {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-price__caption {
  margin: 18px 0 0;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.65;
}

.hero-price__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 13px 10px;
  background: var(--gray-100);
  border-radius: 7px 7px 16px 16px;
}

.hero-price__bottom span {
  padding: 4px 9px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero__scroll span {
  font-family: var(--font-en);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero__scroll i {
  position: relative;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

/* =========================================================
   Stats
========================================================= */

.stats-section {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stat-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 142px;
  padding: 24px 34px;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 0;
  bottom: 27px;
  width: 1px;
  background: var(--gray-200);
}

.stat-card__number {
  flex-shrink: 0;
  margin: 0;
  line-height: 0.85;
}

.stat-card__number strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-en);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stat-card__number span {
  display: block;
  margin-top: 9px;
  color: var(--blue-600);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.stat-card > p:last-child {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.65;
}

/* =========================================================
   Section headings
========================================================= */

.section-heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading__eyebrow {
  margin: 0 0 16px;
  color: var(--blue-600);
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.9;
}

.section-heading--light .section-heading__eyebrow {
  color: var(--yellow-500);
}

.section-heading--light h2,
.section-heading--light > p:last-child {
  color: var(--white);
}

.section-heading--side {
  margin: 0;
  text-align: left;
}

/* =========================================================
   Resort cards
========================================================= */

.resorts-section {
  padding-top: 138px;
  background: linear-gradient(180deg, var(--white), var(--gray-050));
}

.resort-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.resort-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  min-height: 440px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 42px rgba(3, 19, 38, 0.07);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.resort-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(3, 19, 38, 0.13);
}

.resort-card:nth-child(even) {
  grid-template-columns: 1.1fr minmax(320px, 0.9fr);
}

.resort-card:nth-child(even) .resort-card__image {
  order: 2;
}

.resort-card__image {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.resort-card--okutone .resort-card__image {
  background:
    linear-gradient(180deg, rgba(3,19,38,.04), rgba(3,19,38,.38)),
    url("assets/okutone.jpg") center center / cover no-repeat;
}

.resort-card--royalhill .resort-card__image {
  background:
    linear-gradient(180deg, rgba(3,19,38,.03), rgba(3,19,38,.42)),
    url("assets/royalhill.jpg") center center / cover no-repeat;
}

.resort-card--iwate .resort-card__image {
  background:
    linear-gradient(180deg, rgba(3,19,38,.03), rgba(3,19,38,.38)),
    url("assets/iwate.jpg") center center / cover no-repeat;
}

.resort-card__image::before,
.resort-card__image::after {
  display: none;
}

.resort-card__image-label {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  box-shadow: var(--shadow-sm);
}

.resort-card__content {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 24px;
  padding: 50px 58px;
}

.resort-card__number {
  grid-row: 1 / span 6;
  margin: 2px 0 0;
  color: var(--gray-200);
  font-family: var(--font-en);
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  writing-mode: vertical-rl;
}

.resort-card__prefecture {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.resort-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.resort-card__description {
  grid-column: 2;
  margin: 24px 0 0;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.95;
}

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

.resort-card__prices p {
  margin: 0;
  padding: 13px 14px;
  background: var(--gray-100);
  border-radius: 10px;
}

.resort-card__prices p:last-child {
  background: #fff4c3;
}

.resort-card__prices span,
.resort-card__prices strong {
  display: block;
}

.resort-card__prices span {
  color: var(--gray-600);
  font-size: 0.65rem;
  font-weight: 700;
}

.resort-card__prices strong {
  margin-top: 4px;
  color: var(--navy-900);
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 900;
}

.resort-card__features {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-top: 18px;
  list-style: none;
}

.resort-card__features li {
  padding: 6px 11px;
  color: var(--navy-800);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.resort-card__link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: 22px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 900;
}

.resort-card__link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.resort-card__link:hover span {
  background: var(--blue-600);
  transform: translateX(5px);
}

/* =========================================================
   Benefits
========================================================= */

.benefits-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(38,150,212,.2), transparent 26%),
    radial-gradient(circle at 94% 82%, rgba(38,150,212,.16), transparent 31%),
    var(--navy-950);
  overflow: hidden;
}

.benefits-section .container {
  position: relative;
  z-index: 2;
}

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

.benefit-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px;
  background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--transition), background var(--transition);
}

.benefit-card:hover {
  transform: translateY(-7px);
  background: linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 50%;
}

.benefit-card__icon svg {
  width: 43px;
  height: 43px;
}

.benefit-card__index {
  position: absolute;
  top: 32px;
  right: 28px;
  margin: 0;
  color: rgba(255,255,255,.28);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.benefit-card h3 {
  margin: 38px 0 16px;
  font-size: 1.27rem;
  font-weight: 900;
  line-height: 1.55;
}

.benefit-card > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .84rem;
  line-height: 1.9;
}

/* =========================================================
   Value section
========================================================= */

.value-section {
  background: var(--gray-050);
}

.value-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
  padding: 72px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 70px rgba(3,19,38,.08);
}

.value-panel__content h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -.045em;
}

.value-panel__lead {
  margin: 24px 0 0;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.95;
}

.value-panel__examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin-top: 32px;
  list-style: none;
}

.value-panel__examples li {
  padding: 16px 10px;
  background: var(--gray-100);
  border-radius: 12px;
  text-align: center;
}

.value-panel__examples span,
.value-panel__examples strong {
  display: block;
}

.value-panel__examples span {
  color: var(--gray-600);
  font-size: .72rem;
  font-weight: 700;
}

.value-panel__examples strong {
  margin-top: 5px;
  color: var(--navy-900);
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
}

.value-panel__summary {
  margin: 18px 0 0;
  color: var(--navy-800);
  font-size: .86rem;
  font-weight: 800;
  text-align: center;
}

.value-chart {
  padding: 38px;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.value-chart__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  font-weight: 700;
}

.value-chart__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value-chart__row {
  display: grid;
  grid-template-columns: 48px 1fr 105px;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,.62);
}

.value-chart__count {
  font-family: var(--font-en);
  font-size: .94rem;
  font-weight: 800;
}

.value-chart__track {
  height: 10px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}

.value-chart__track span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  border-radius: inherit;
}

.value-chart__row strong {
  font-size: .69rem;
  font-weight: 700;
  text-align: right;
}

.value-chart__row--active {
  color: var(--yellow-500);
}

.value-chart__row--active .value-chart__track span {
  background: var(--yellow-500);
  box-shadow: 0 0 16px rgba(255,213,72,.55);
}

.value-chart__row--over {
  color: var(--white);
}

.value-chart__note {
  margin: 28px 0 0;
  color: rgba(255,255,255,.45);
  font-size: .65rem;
  text-align: right;
}

/* =========================================================
   Purchase section
========================================================= */

.purchase-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-050), var(--blue-100));
  overflow: hidden;
}

.purchase-section__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.purchase-section__circle {
  position: absolute;
  border: 1px solid rgba(14,76,130,.14);
  border-radius: 50%;
}

.purchase-section__circle--one {
  top: -190px;
  left: -130px;
  width: 470px;
  height: 470px;
}

.purchase-section__circle--two {
  right: -210px;
  bottom: -250px;
  width: 610px;
  height: 610px;
}

.purchase-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 48px;
  min-height: 480px;
  padding: 58px 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(38,150,212,.3), transparent 28%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 100px rgba(3,19,38,.23);
  overflow: hidden;
}

.purchase-card__label {
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .24em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.purchase-card__content--wide {
  max-width: 920px;
}

.purchase-card__eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-500);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.purchase-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.04em;
}

.purchase-card__price {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-top: 28px;
}

.purchase-card__price > div > span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
}

.purchase-card__price > div > p {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 3px 0 0;
  line-height: 1;
}

.purchase-card__price > div strong {
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: clamp(3.7rem, 6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.purchase-card__price > div small {
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 700;
}

.purchase-card__price > p {
  margin: 0 0 8px;
  padding-left: 27px;
  border-left: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.66);
  font-size: .76rem;
  line-height: 1.7;
}

.purchase-card__price > p strong {
  color: var(--white);
  font-size: .94rem;
}

.purchase-card__resort-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  font-weight: 600;
}

.purchase-resort-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.purchase-resort-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 150px;
  padding: 20px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  transition: transform var(--transition), background var(--transition);
}

.purchase-resort-button:hover {
  transform: translateY(-4px);
  background: var(--yellow-400);
}

.purchase-resort-button span {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.55;
}

.purchase-resort-button small {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: .65rem;
  font-weight: 800;
}

.purchase-resort-button b {
  font-size: .76rem;
  font-weight: 900;
}

.purchase-card__deadline {
  margin: 20px 0 0;
  color: rgba(255,255,255,.63);
  font-size: .72rem;
}

.purchase-card__deadline strong {
  color: var(--white);
}

/* =========================================================
   Process
========================================================= */

.process-section {
  background: var(--white);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 75px;
  right: 11%;
  left: 11%;
  height: 1px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--gray-300),
      var(--gray-300) 6px,
      transparent 6px,
      transparent 13px
    );
}

.process-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-item__number {
  position: absolute;
  top: 0;
  left: calc(50% - 57px);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 900;
}

.process-item__icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(3,19,38,.08);
}

.process-item__icon svg {
  width: 58px;
  height: 58px;
}

.process-item h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 900;
}

.process-item > p:last-child {
  margin: 11px auto 0;
  max-width: 220px;
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.8;
}

.student-id-notice {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  max-width: 900px;
  margin: 70px auto 0;
  padding: 27px 32px;
  background: #fff9df;
  border: 1px solid #efd976;
  border-radius: var(--radius-md);
}

.student-id-notice__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 1.45rem;
  font-weight: 900;
}

.student-id-notice h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 900;
}

.student-id-notice p {
  margin: 7px 0 0;
  color: var(--gray-600);
  font-size: .76rem;
  line-height: 1.8;
}

/* =========================================================
   FAQ / notes
========================================================= */

.faq-section {
  background: var(--gray-050);
}

.faq-layout {
  display: grid;
  grid-template-columns: .4fr .6fr;
  align-items: start;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--gray-300);
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 92px;
  padding: 22px 4px;
  color: var(--navy-950);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question > span {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .93rem;
  font-weight: 800;
}

.faq-question i {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}

.faq-question b {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.faq-question b::before,
.faq-question b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--navy-900);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-question b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] b::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(0.22,1,.36,1);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 60px 28px;
  color: var(--gray-600);
  font-size: .82rem;
  line-height: 1.9;
}

.notes-section {
  padding: 76px 0;
  background: var(--white);
}

.notes-panel {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 54px;
  padding: 40px 44px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.notes-panel__heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.notes-panel__heading span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 900;
}

.notes-panel h2 {
  margin: 4px 0 0;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 900;
}

.notes-panel ul {
  padding-left: 1.2em;
  color: var(--gray-600);
  font-size: .74rem;
  line-height: 1.9;
}

.notes-panel li + li {
  margin-top: 5px;
}

/* =========================================================
   Final CTA / footer
========================================================= */

.final-cta {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 120px 0 140px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(3,19,38,.76) 0%,
      rgba(3,19,38,.42) 50%,
      rgba(3,19,38,.18) 100%
    ),
    url("assets/final-cta.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.final-cta__visual,
.final-cta::after {
  display: none;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.final-cta__eyebrow {
  margin: 0 0 18px;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.7vw, 5rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.055em;
}

.final-cta__inner > p:not(.final-cta__eyebrow) {
  margin: 24px 0 0;
  font-size: .95rem;
  font-weight: 600;
}

.final-cta .button {
  margin-top: 34px;
}

.final-cta small {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,.66);
  font-size: .7rem;
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 90px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.site-logo--footer {
  color: var(--white);
}

.site-footer__brand > p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.52);
  font-size: .74rem;
  line-height: 1.85;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__nav a {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
}

.site-footer__social > p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.48);
  font-size: .7rem;
}

.site-footer__social > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer__social a {
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 800;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,.4);
  font-family: var(--font-en);
  font-size: .64rem;
}

.back-to-top {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  cursor: pointer;
}

.mobile-fixed-cta {
  display: none;
  position: fixed;
  z-index: 900;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 9px 9px 18px;
  color: var(--white);
  background: rgba(3,19,38,.94);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(3,19,38,.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(140%);
  transition: transform 400ms cubic-bezier(0.22,1,.36,1);
}

.mobile-fixed-cta.is-visible {
  transform: translateY(0);
}

.mobile-fixed-cta > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-fixed-cta > div span {
  color: rgba(255,255,255,.62);
  font-size: .63rem;
  font-weight: 700;
}

.mobile-fixed-cta > div strong {
  margin-top: 2px;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 900;
}

.mobile-fixed-cta > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 140px;
  min-height: 48px;
  padding: 10px 17px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 900;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
    gap: 42px;
  }

  .resort-card__content {
    padding: 44px 38px;
  }

  .value-panel {
    gap: 45px;
    padding: 54px;
  }

  .purchase-card {
    padding-inline: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 36px, 760px);
  }

  .section {
    padding: 92px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 95px;
    padding-bottom: 125px;
  }

  .hero-price {
    width: min(100%, 470px);
    transform: rotate(0);
  }

  .hero__scroll {
    display: none;
  }

  .stats-section {
    margin-top: -45px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    justify-content: flex-start;
    min-height: 115px;
  }

  .stat-card:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: 0;
    left: 24px;
    width: auto;
    height: 1px;
  }

  .resort-card,
  .resort-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .resort-card:nth-child(even) .resort-card__image {
    order: initial;
  }

  .resort-card__image {
    min-height: 330px;
  }

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

  .value-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .purchase-card {
    grid-template-columns: 50px 1fr;
  }

  .purchase-resort-buttons {
    grid-template-columns: 1fr;
  }

  .purchase-resort-button {
    min-height: auto;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
  }

  .process-list::before {
    display: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading--side {
    text-align: center;
    margin-inline: auto;
  }

  .notes-panel {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 24px, 560px);
  }

  .section {
    padding: 72px 0;
  }

  .site-logo__symbol {
    width: 35px;
    height: 35px;
  }

  .site-logo__text small {
    font-size: .56rem;
  }

  .site-logo__text strong {
    font-size: .91rem;
  }

  .hero__inner {
    padding-top: 62px;
    padding-bottom: 100px;
  }

  .hero__title span {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero__title strong {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .hero__lead {
    margin-top: 26px;
    font-size: .93rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-price__main strong {
    font-size: clamp(4rem, 20vw, 5.2rem);
  }

  .stats-section {
    margin-top: -32px;
  }

  .stat-card {
    gap: 18px;
    min-height: 105px;
    padding: 21px 23px;
  }

  .stat-card__number strong {
    font-size: 3.25rem;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .resort-card {
    min-height: auto;
    border-radius: 21px;
  }

  .resort-card__image {
    min-height: 250px;
  }

  .resort-card__content {
    grid-template-columns: 46px 1fr;
    column-gap: 13px;
    padding: 31px 23px 35px;
  }

  .resort-card__number {
    font-size: 3.55rem;
  }

  .resort-card h3 {
    font-size: 1.85rem;
  }

  .resort-card__prices {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .value-panel {
    gap: 38px;
    padding: 35px 22px;
    border-radius: 24px;
  }

  .value-chart {
    padding: 26px 17px;
  }

  .value-chart__row {
    grid-template-columns: 40px 1fr 78px;
    gap: 9px;
  }

  .purchase-section {
    padding: 72px 0;
  }

  .purchase-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding: 38px 23px;
    border-radius: 25px;
  }

  .purchase-card__label {
    writing-mode: initial;
    transform: none;
  }

  .purchase-card__price {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .purchase-card__price > p {
    margin: 0;
    padding: 0;
    border-left: 0;
  }

  .purchase-resort-buttons {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .student-id-notice {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    margin-top: 52px;
    padding: 22px 18px;
  }

  .faq-question {
    min-height: 84px;
    padding-block: 19px;
  }

  .faq-question > span {
    gap: 12px;
    font-size: .82rem;
  }

  .faq-answer p {
    padding: 0 10px 24px 44px;
    font-size: .75rem;
  }

  .notes-panel {
    padding: 27px 22px;
  }

  .final-cta {
    min-height: 590px;
    padding: 95px 0 125px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .mobile-fixed-cta {
    display: flex;
  }
}

/* =========================================================
   ヒーロー価格カード：通常価格と学割価格の比較
========================================================= */

.hero-price__comparison {
  margin-top: 2px;
  padding: 18px 14px 14px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
}

.hero-price__comparison-regular {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  color: var(--gray-600);
}

.hero-price__comparison-regular span {
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-price__comparison-regular del {
  color: var(--gray-700);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.hero-price__comparison-arrow {
  margin: 5px 0 2px;
  color: var(--navy-800);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-price__comparison-student > span {
  display: block;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-price__comparison-student p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  margin: 3px 0 0;
  color: var(--navy-950);
  line-height: 1;
  white-space: nowrap;
}

.hero-price__comparison-student small {
  margin-bottom: 9px;
  font-size: 0.62rem;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.hero-price__comparison-student strong {
  font-family: var(--font-en);
  font-size: clamp(3.8rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-price__comparison-student b {
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-price__discount {
  margin-top: 13px;
  padding: 10px 12px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 16px rgba(255, 213, 72, 0.22);
}



/* =========================================================
   Student Perks
========================================================= */

.student-perks {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 14% 16%,
      rgba(45, 126, 216, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 76%,
      rgba(255, 211, 46, 0.12),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #020c1c 0%,
      #041b38 48%,
      #082c54 100%
    );
}


/* 背景 */

.student-perks__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.student-perks__background::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%
    );
}

.student-perks__background::after {
  position: absolute;
  right: -10%;
  bottom: -34%;
  width: 70%;
  height: 66%;
  content: "";
  opacity: 0.24;
  background:
    linear-gradient(
      145deg,
      transparent 45%,
      rgba(255, 255, 255, 0.2) 46%,
      rgba(255, 255, 255, 0.03) 62%,
      transparent 63%
    );
  transform: skewX(-12deg);
}

.student-perks__background-text {
  position: absolute;
  top: 58px;
  left: 50%;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-en);
  font-size: clamp(7rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.05em;
  white-space: nowrap;
  transform: translateX(-50%);
}


/* 雪粒 */

.student-perks__snow {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    40px 48px rgba(255, 255, 255, 0.2),
    96px -20px rgba(255, 255, 255, 0.3),
    142px 72px rgba(255, 255, 255, 0.18),
    205px 16px rgba(255, 255, 255, 0.32);
}

.student-perks__snow--01 {
  top: 13%;
  left: 7%;
  width: 4px;
  height: 4px;
}

.student-perks__snow--02 {
  top: 27%;
  right: 18%;
  width: 5px;
  height: 5px;
}

.student-perks__snow--03 {
  bottom: 20%;
  left: 16%;
  width: 3px;
  height: 3px;
}

.student-perks__snow--04 {
  right: 8%;
  bottom: 34%;
  width: 4px;
  height: 4px;
}

.student-perks__snow--05 {
  top: 48%;
  left: 48%;
  width: 3px;
  height: 3px;
}


/* 全体 */

.student-perks__inner {
  position: relative;
  z-index: 1;
}

.student-perks__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 60px);
}

.student-perks__eyebrow {
  margin: 0 0 10px;
  color: var(--yellow-400);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.student-perks__heading h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.student-perks__heading-text {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.8rem, 1.25vw, 0.98rem);
  font-weight: 600;
  line-height: 1.9;
}


/* 特典行 */

.student-perk {
  position: relative;
  display: grid;
  min-height: 310px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.student-perk:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.student-perk--meal {
  grid-template-columns:
    minmax(80px, 0.16fr)
    minmax(240px, 0.72fr)
    minmax(330px, 1.12fr);
}

.student-perk--wear {
  grid-template-columns:
    minmax(80px, 0.16fr)
    minmax(390px, 1.15fr)
    minmax(280px, 0.85fr);
}


/* 番号 */

.student-perk__index {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 18px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.student-perk__index small {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-en);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
}

.student-perk__index strong {
  color: var(--yellow-400);
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}


/* テキスト */

.student-perk__content {
  position: relative;
  z-index: 3;
  align-self: center;
  min-width: 0;
  padding: 34px clamp(28px, 4vw, 64px);
}

.student-perk__tag {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 11px;
  color: var(--navy-950);
  font-size: 0.66rem;
  font-weight: 900;
  background: var(--white);
}

.student-perk h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.student-perk h3 strong {
  display: inline-block;
  color: var(--yellow-400);
  font-size: 1.1em;
}

.student-perk--meal h3 {
  color: var(--yellow-400);
}

.student-perk__lead {
  margin: 18px 0 0;
  font-size: clamp(1.03rem, 1.65vw, 1.45rem);
  font-weight: 900;
  line-height: 1.55;
}

.student-perk__description {
  max-width: 600px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.85;
}

.student-perk__note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.6;
}


/* ビジュアル共通 */

.student-perk__visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

.student-perk__large-word {
  position: absolute;
  right: 1%;
  bottom: -0.18em;
  z-index: 0;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-en);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  pointer-events: none;
}


/* 学盛りビジュアル */

.student-perk__visual--meal {
  display: grid;
  min-height: 310px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.student-perk__meal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(
      circle,
      rgba(255, 211, 46, 0.26),
      rgba(255, 211, 46, 0.06) 45%,
      transparent 72%
    );
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.student-perk__bowl {
  position: relative;
  width: 200px;
  height: 180px;
}

.student-perk__bowl-body {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  display: grid;
  width: 190px;
  height: 90px;
  margin: auto;
  place-items: center;
  color: var(--navy-950);
  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #e7eef5
    );
  border-radius: 12px 12px 95px 95px;
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.25),
    inset 0 -10px 18px rgba(6, 29, 60, 0.1);
}

.student-perk__bowl-body::before {
  position: absolute;
  top: -12px;
  left: -7px;
  width: calc(100% + 14px);
  height: 27px;
  content: "";
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 -7px 0 rgba(6, 29, 60, 0.11);
}

.student-perk__bowl-body span {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 900;
}

.student-perk__steam {
  position: absolute;
  bottom: 111px;
  width: 17px;
  height: 57px;
  border-left: 6px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  transform: rotate(14deg);
}

.student-perk__steam--01 {
  left: 50px;
}

.student-perk__steam--02 {
  left: 94px;
  height: 70px;
}

.student-perk__steam--03 {
  left: 137px;
  height: 53px;
}

.student-perk__visual--meal > p {
  position: absolute;
  right: 18px;
  bottom: 20px;
  margin: 0;
  color: var(--yellow-400);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-align: right;
}


/* ウェア一覧 */

.student-perk__wear-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.student-perk__wear-items li {
  display: flex;
  min-width: 158px;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.student-perk__wear-items li > span:last-child {
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
}

.student-perk__wear-items small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-en);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.student-perk__wear-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--yellow-400);
}

.student-perk__wear-icon svg {
  width: 32px;
  height: 32px;
}


/* 無料表示 */

.student-perk__visual--wear {
  display: grid;
  min-height: 310px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(42, 116, 196, 0.36),
      transparent 60%
    );
}

.student-perk__free-label {
  position: absolute;
  top: 25px;
  right: 25px;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--font-en);
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-align: right;
}

.student-perk__free-price {
  position: relative;
  z-index: 2;
  text-align: center;
}

.student-perk__free-price > span {
  display: block;
  margin-bottom: -6px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.student-perk__free-price p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  color: var(--yellow-400);
  font-family: var(--font-en);
  line-height: 1;
}

.student-perk__free-price small {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 900;
}

.student-perk__free-price strong {
  font-size: clamp(6rem, 10vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.student-perk__free-price b {
  display: inline-flex;
  margin-top: -3px;
  padding: 5px 10px;
  color: var(--navy-950);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  background: var(--yellow-400);
}

.student-perk__wear-line {
  position: absolute;
  right: -30%;
  bottom: 38px;
  width: 140%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(-12deg);
}


/* タブレット */

@media (max-width: 980px) {
  .student-perks__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .student-perks__heading-text {
    max-width: 580px;
  }

  .student-perk--meal {
    grid-template-columns: 70px 0.75fr 1.25fr;
  }

  .student-perk--wear {
    grid-template-columns: 70px 1.2fr 0.8fr;
  }

  .student-perk__content {
    padding-right: 28px;
    padding-left: 28px;
  }
}


/* スマートフォン */

@media (max-width: 700px) {
  .student-perks {
    padding: 70px 0;
  }

  .student-perks__background-text {
    top: 60px;
    left: 20px;
    font-size: 6rem;
    white-space: normal;
    transform: none;
  }

  .student-perks__heading {
    margin-bottom: 30px;
  }

  .student-perks__heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .student-perks__heading-text br {
    display: none;
  }

  .student-perk,
  .student-perk--meal,
  .student-perk--wear {
    display: grid;
    min-height: auto;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .student-perk__index {
    grid-row: 1 / span 2;
    min-height: 100%;
    padding: 22px 8px 22px 0;
  }

  .student-perk__index strong {
    font-size: 2.25rem;
  }

  .student-perk__visual {
    grid-column: 2;
    min-height: 190px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .student-perk__content {
    grid-column: 2;
    padding: 26px 0 34px 22px;
  }

  .student-perk--wear .student-perk__content {
    grid-row: 1;
  }

  .student-perk--wear .student-perk__visual {
    grid-row: 2;
  }

.student-perk--meal .student-perk__content {
  grid-row: 1;
}

.student-perk--meal .student-perk__visual {
  grid-row: 2;
}

  .student-perk h3 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .student-perk__lead {
    font-size: 1.05rem;
  }

  .student-perk__description {
    padding-right: 16px;
    font-size: 0.77rem;
  }

  .student-perk__note {
    padding-right: 16px;
  }

  .student-perk__visual--meal {
    min-height: 200px;
  }

  .student-perk__bowl {
    width: 160px;
    height: 145px;
  }

  .student-perk__bowl-body {
    width: 150px;
    height: 72px;
  }

  .student-perk__steam {
    bottom: 90px;
    height: 44px;
  }

  .student-perk__steam--01 {
    left: 40px;
  }

  .student-perk__steam--02 {
    left: 75px;
    height: 57px;
  }

  .student-perk__steam--03 {
    left: 110px;
  }

  .student-perk__visual--meal > p {
    right: 10px;
    bottom: 12px;
  }

  .student-perk__visual--wear {
    min-height: 220px;
  }

  .student-perk__free-price strong {
    font-size: 7rem;
  }

  .student-perk__free-price small {
    margin-top: 16px;
    font-size: 1.35rem;
  }

  .student-perk__free-label {
    top: 16px;
    right: 14px;
  }

  .student-perk__wear-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 16px;
  }

  .student-perk__wear-items li {
    min-width: 0;
    padding: 8px;
  }

  .student-perk__wear-icon {
    width: 31px;
    height: 31px;
  }

  .student-perk__wear-icon svg {
    width: 27px;
    height: 27px;
  }

  .student-perk__large-word {
    display: none;
  }
}


/* 小さいスマートフォン */

@media (max-width: 400px) {
  .student-perk,
  .student-perk--meal,
  .student-perk--wear {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .student-perk__content {
    padding-left: 16px;
  }

  .student-perk__wear-items {
    grid-template-columns: 1fr;
  }
}






/* =========================================================
   Student Perks — Refined Design
========================================================= */

/* セクション全体を少しコンパクトに */

.student-perks {
  padding: clamp(62px, 6vw, 88px) 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(45, 126, 216, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #020c1c 0%,
      #041a35 54%,
      #082943 100%
    );
}

.student-perks__heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}


/* 背景グリッドを弱くする */

.student-perks__background::before {
  opacity: 0.09;
  background-size: 90px 90px;
}

.student-perks__background::after {
  opacity: 0.14;
}


/* 各特典を少し低くする */

.student-perk {
  min-height: 270px;
}

.student-perk--meal {
  grid-template-columns:
    74px
    minmax(220px, 0.7fr)
    minmax(330px, 1.3fr);
}

.student-perk--wear {
  grid-template-columns:
    74px
    minmax(400px, 1.18fr)
    minmax(260px, 0.82fr);
}


/* 写真背景 */

.student-perk__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 後から生成する湯気画像 */
.student-perk__photo--meal {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 12, 28, 0.88) 0%,
      rgba(2, 18, 40, 0.8) 45%,
      rgba(2, 18, 40, 0.72) 100%
    ),
    url("assets/gakumori-steam.jpg");

  opacity: 0.12;
  filter: blur(2px);
  transform: scale(1.03);
}

/* 所有しているレンタルウェア写真 */
.student-perk__photo--wear {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 14, 31, 0.96) 0%,
      rgba(3, 24, 48, 0.87) 54%,
      rgba(5, 34, 59, 0.68) 100%
    ),
    url("assets/rental-gear.jpg");

  opacity: 0.42;
  background-position: center 60%;
}

/*
画像名が違う場合は、

url("assets/rental-gear.jpg")

の部分だけ、実際のファイル名に変更してください。
*/


/* 余計な縦線を整理 */

.student-perk__index {
  border-right: 0;
}

.student-perk__visual--meal {
  border-right: 0;
}

.student-perk__visual--wear {
  border-left: 0;
}

.student-perk::after {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 74px;
  z-index: 1;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}


/* コンテンツの高さ・余白を圧縮 */

.student-perk__content {
  padding-top: 27px;
  padding-bottom: 27px;
}

.student-perk__tag {
  margin-bottom: 10px;
}

.student-perk__lead {
  margin-top: 13px;
}

.student-perk__description {
  max-width: 540px;
  margin-top: 10px;
  line-height: 1.75;
}

.student-perk__note {
  margin-top: 10px;
}


@media (max-width: 700px) {
  .student-perk--wear h3 {
    font-size: clamp(2.35rem, 11.5vw, 3.8rem);
    letter-spacing: -0.035em;
  }
}





/* 学盛り */

.student-perk__visual--meal {
  min-height: 270px;
}

.student-perk__meal-glow {
  width: 210px;
  height: 210px;
}

.student-perk__bowl {
  width: 175px;
  height: 155px;
}

.student-perk__bowl-body {
  width: 165px;
  height: 78px;
}

.student-perk__steam {
  bottom: 98px;
}

.student-perk__steam--01 {
  left: 43px;
}

.student-perk__steam--02 {
  left: 82px;
}

.student-perk__steam--03 {
  left: 120px;
}




/* ウェアの無料表示 */

.student-perk__visual--wear {
  min-height: 270px;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 55% 48%,
      rgba(48, 129, 210, 0.34),
      transparent 60%
    );
}

.student-perk__free-background {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--font-en);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.student-perk__free-price {
  transform: scale(1.08);
}

.student-perk__free-price > span {
  margin-bottom: -10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
}

.student-perk__free-price strong {
  font-size: clamp(7rem, 11vw, 10.5rem);
  text-shadow:
    0 12px 40px rgba(255, 211, 46, 0.14);
}

.student-perk__free-price b {
  padding: 6px 13px;
}


/* ウェアの2項目もコンパクトに */

.student-perk__wear-items {
  margin-top: 14px;
}

.student-perk__wear-items li {
  min-width: 138px;
  padding: 7px 11px 7px 8px;
}

.student-perk__wear-items li > span:last-child {
  font-size: 0.72rem;
}


/* 大型背景文字を少し弱く */

.student-perk__large-word {
  color: rgba(255, 255, 255, 0.025);
}


/* タブレット */

@media (max-width: 980px) {
  .student-perk--meal {
    grid-template-columns:
      64px
      minmax(210px, 0.72fr)
      minmax(300px, 1.28fr);
  }

  .student-perk--wear {
    grid-template-columns:
      64px
      minmax(350px, 1.15fr)
      minmax(230px, 0.85fr);
  }

  .student-perk::after {
    left: 64px;
  }
}


/* スマートフォン */

@media (max-width: 700px) {
  .student-perks {
    padding: 56px 0;
  }

  .student-perk,
  .student-perk--meal,
  .student-perk--wear {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .student-perk::after {
    top: 14px;
    bottom: 14px;
    left: 44px;
  }

  .student-perk__visual {
    min-height: 165px;
  }

  .student-perk__visual--meal {
    min-height: 175px;
  }

  .student-perk__visual--wear {
    min-height: 190px;
  }

  .student-perk__content {
    padding:
      22px
      14px
      28px
      18px;
  }

  .student-perk__photo--meal {
    opacity: 0.48;
    background-position: 60center;
  }

  .student-perk__photo--wear {
    opacity: 0.11;
    background-position: 60% center;
  }

  .student-perk__free-background {
    font-size: clamp(5.5rem, 29vw, 8rem);
  }

  .student-perk__free-price {
    transform: scale(0.94);
  }

  .student-perk__free-price strong {
    font-size: 7rem;
  }

  .student-perk__wear-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-perk__wear-items li {
    min-width: 0;
    justify-content: center;
  }

  .student-perk__description {
    padding-right: 0;
  }

  .student-perk__note {
    padding-right: 0;
  }
}


/* 小さいスマートフォン */

@media (max-width: 400px) {
  .student-perk,
  .student-perk--meal,
  .student-perk--wear {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .student-perk::after {
    left: 38px;
  }

  .student-perk__wear-items {
    gap: 7px;
  }

  .student-perk__wear-items li {
    padding: 7px 5px;
  }
}

.student-perk__title-line {
  display: block;
  white-space: nowrap;
}

.student-perk--wear h3 {
  word-break: keep-all;
  overflow-wrap: normal;
}





/* 写真レイヤー共通 */
.student-perk__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
}


/* 学盛り：湯気写真 */
.student-perk__photo--meal {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 12, 28, 0.48) 0%,
      rgba(2, 18, 40, 0.66) 48%,
      rgba(2, 18, 40, 0.82) 100%
    ),
    url("assets/gakumori-steam.jpg");

  background-position: left center;
  opacity: 0.55;
  filter: blur(1px);
  transform: scale(1.02);
}


/* ウェア：レンタルショップ写真 */
.student-perk__photo--wear {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 14, 31, 0.9) 0%,
      rgba(3, 24, 48, 0.7) 52%,
      rgba(5, 34, 59, 0.42) 100%
    ),
    url("assets/rental-gear.jpg");

  background-position: center;
  opacity: 0.5;
}







/* =========================================================
   Footer Group Facilities
========================================================= */

.footer-facilities {
  min-width: 0;
}

.footer-facilities__eyebrow {
  margin: 0;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer-facilities__title {
  margin: 7px 0 22px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

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

.footer-facilities__category {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.footer-facilities__list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-facilities__list li {
  min-width: 0;
}

.footer-facilities__list a {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 7px 5px;
  border-radius: 7px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.footer-facilities__list a:hover {
  color: var(--yellow-400);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
}

.footer-facility-number {
  display: grid;
  width: 29px;
  height: 27px;
  place-items: center;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  background: var(--blue-600);
  clip-path: polygon(13% 0, 87% 0, 100% 100%, 0 100%);
}

/* スキー場 */

.footer-facility-number--nanae {
  background: #079eb7;
}

.footer-facility-number--iwate {
  background: #f1b900;
}

.footer-facility-number--jxj {
  background: #0879c9;
}

.footer-facility-number--okutone {
  background: #079949;
}

.footer-facility-number--akakura {
  background: #1976c9;
}

.footer-facility-number--royalhill {
  background: #ff8500;
}

/* ホテル・水族館 */

.footer-facility-number--aki {
  background: #e97613;
  clip-path: none;
  border-radius: 2px;
}

.footer-facility-number--infinito {
  background: #67b8cd;
  clip-path: none;
  border-radius: 2px;
}

.footer-facility-number--kinkouroh {
  background: #a86624;
  clip-path: none;
  border-radius: 2px;
}

.footer-facility-number--mihama {
  background: #079bc9;
  clip-path: none;
  border-radius: 2px;
}

.footer-facility-number--kushimoto {
  background: #109ddd;
  clip-path: none;
  border-radius: 50%;
}

.footer-facility-name {
  display: block;
  min-width: 0;
  line-height: 1.25;
}

.footer-facility-name strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.67rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-facility-name small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.54rem;
  font-weight: 700;
}

.footer-facility-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-facilities__list a:hover .footer-facility-arrow {
  color: var(--yellow-400);
}

.footer-facilities__note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.55rem;
  font-weight: 600;
}




.site-footer__inner {
  display: grid;
  grid-template-columns:
    minmax(190px, 0.7fr)
    minmax(130px, 0.4fr)
    minmax(560px, 1.7fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}






@media (max-width: 1050px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-facilities {
    grid-column: 1 / -1;
    margin-top: 16px;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-facilities {
    grid-column: auto;
    margin-top: 0;
  }

  .footer-facilities__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-facilities__list a {
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    min-height: 50px;
    padding: 8px 5px;
  }

  .footer-facility-number {
    width: 32px;
    height: 30px;
  }

  .footer-facility-name strong {
    font-size: 0.75rem;
    white-space: normal;
  }
}

/* =========================================================
   Break-even section
   Replaces the former six-card benefits / value sections
========================================================= */

.break-even-section {
  position: relative;
  padding: 132px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(38, 150, 212, 0.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255, 213, 72, 0.11), transparent 26%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 56%, #082a52 100%);
  overflow: hidden;
}

.break-even-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
  pointer-events: none;
}

.break-even-section__glow {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255,255,255,.025),
    0 0 0 180px rgba(255,255,255,.018);
  pointer-events: none;
}

.break-even-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.break-even-panel__eyebrow {
  margin: 0 0 20px;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.break-even-panel__intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -.045em;
}

.break-even-panel__intro h2 strong {
  display: inline-block;
  position: relative;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: 1.3em;
  letter-spacing: -.035em;
}

.break-even-panel__intro h2 strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .04em;
  left: 0;
  z-index: -1;
  height: .12em;
  background: var(--yellow-500);
  opacity: .32;
}

.break-even-panel__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  font-weight: 700;
}

.break-even-panel__price strong {
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.break-even-panel__features {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.break-even-panel__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  font-weight: 700;
}

.break-even-panel__features span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 900;
}

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

.break-even-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  color: var(--navy-950);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  overflow: hidden;
}

.break-even-card--night {
  background:
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(231,246,253,.97));
}

.break-even-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--yellow-500);
}

.break-even-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy-900);
  background: var(--gray-100);
  border-radius: 50%;
}

.break-even-card--night .break-even-card__icon {
  color: var(--white);
  background: var(--navy-900);
}

.break-even-card__icon svg {
  width: 28px;
  height: 28px;
}

.break-even-card__content {
  margin-top: 22px;
}

.break-even-card__label {
  min-height: 3em;
  margin: 0;
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.5;
}

.break-even-card__number {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin: 8px 0 0;
  color: var(--navy-900);
  line-height: .88;
  white-space: nowrap;
}

.break-even-card__number small {
  margin-bottom: 9px;
  font-size: .78rem;
  font-weight: 900;
}

.break-even-card__number strong {
  font-family: var(--font-en);
  font-size: clamp(4.4rem, 7vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -.07em;
}

.break-even-card__number span {
  margin-bottom: 8px;
  font-size: 1.28rem;
  font-weight: 900;
}

.break-even-card__result {
  margin: 12px 0 0;
  font-size: 1rem;
  font-weight: 900;
}

.break-even-card__basis {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 5px 10px;
  color: var(--navy-800);
  background: var(--yellow-300);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 800;
}

.break-even-card__prices {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--gray-200);
}

.break-even-card__prices > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}

.break-even-card__prices dt,
.break-even-card__prices dd {
  margin: 0;
}

.break-even-card__prices dt {
  color: var(--gray-600);
  font-size: .72rem;
  font-weight: 700;
}

.break-even-card__prices dd {
  color: var(--navy-900);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
}

.break-even-panel__note {
  grid-column: 1 / -1;
  margin: -24px 0 0;
  padding-top: 28px;
  color: rgba(255,255,255,.62);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.85;
}

@media (max-width: 1000px) {
  .break-even-panel {
    grid-template-columns: 1fr;
  }

  .break-even-panel__intro {
    max-width: 720px;
  }

  .break-even-panel__note {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .break-even-section {
    padding: 88px 0;
  }

  .break-even-panel {
    gap: 38px;
  }

  .break-even-panel__intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .break-even-panel__comparison {
    grid-template-columns: 1fr;
  }

  .break-even-card {
    padding: 26px 24px;
  }

  .break-even-card__label {
    min-height: auto;
  }

  .break-even-card__number strong {
    font-size: clamp(4.7rem, 24vw, 6.3rem);
  }

  .break-even-panel__note {
    padding-top: 22px;
  }
}



/* =========================================================
   Break-even section — layout refinement
   Keeps the section aligned with the LP's existing rhythm
========================================================= */

.break-even-panel {
  display: block;
}

.break-even-panel__intro {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}

.break-even-panel__intro h2 {
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  line-height: 1.22;
}

.break-even-panel__price {
  justify-content: center;
  margin-top: 24px;
}

.break-even-panel__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
}

.break-even-panel__comparison {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.break-even-card {
  display: grid;
  grid-template-columns: minmax(185px, .78fr) minmax(190px, 1fr);
  grid-template-areas:
    "icon prices"
    "content prices";
  column-gap: 28px;
  align-items: start;
  min-height: 320px;
  padding: 34px 36px;
}

.break-even-card__icon {
  grid-area: icon;
}

.break-even-card__content {
  grid-area: content;
  margin-top: 20px;
}

.break-even-card__prices {
  grid-area: prices;
  align-self: stretch;
  align-content: center;
  margin: 0;
  padding: 0 0 0 28px;
  border-top: 0;
  border-left: 1px solid var(--gray-200);
}

.break-even-card__prices > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
}

.break-even-card__prices > div:last-child {
  border-bottom: 0;
}

.break-even-card__label {
  min-height: auto;
}

.break-even-card__number strong {
  font-size: clamp(4.7rem, 7vw, 6.6rem);
}

.break-even-panel__note {
  margin: 30px 0 0;
  padding: 22px 26px;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .break-even-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "content"
      "prices";
    min-height: auto;
  }

  .break-even-card__prices {
    margin-top: 26px;
    padding: 18px 0 0;
    border-top: 1px solid var(--gray-200);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .break-even-panel__intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .break-even-panel__price {
    justify-content: flex-start;
  }

  .break-even-panel__features {
    display: grid;
    justify-content: stretch;
    gap: 12px;
  }

  .break-even-panel__comparison {
    grid-template-columns: 1fr;
  }

  .break-even-card {
    padding: 28px 24px;
  }

  .break-even-panel__note {
    text-align: left;
  }
}


/* Keep 「6〜7回滑れば」 on one line */
.break-even-heading-nowrap {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .break-even-heading-break {
    display: none;
  }
}


/* =========================================================
   Break-even section — compact single-card version
========================================================= */

.break-even-section {
  position: relative;
  padding: 92px 0;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.break-even-section__image,
.break-even-section__overlay {
  position: absolute;
  inset: 0;
}

.break-even-section__image {
  /*
    背景画像を使う場合は assets/break-even-night.jpg を配置してください。
    画像がない場合もグラデーションだけで成立します。
  */
  background:
    linear-gradient(135deg, rgba(3,19,38,.3), rgba(14,76,130,.22)),
    url("assets/break-even-night.jpg") center 48% / cover no-repeat;
  opacity: .22;
  filter: saturate(.72) contrast(1.05);
  transform: scale(1.02);
}

.break-even-section__overlay {
  background:
    linear-gradient(180deg, rgba(3,19,38,.80), rgba(6,29,60,.88)),
    radial-gradient(circle at 78% 14%, rgba(38,150,212,.24), transparent 35%);
}

.break-even-compact {
  position: relative;
  z-index: 1;
}

.break-even-compact__header {
  margin-bottom: 34px;
  text-align: center;
}

.break-even-compact__eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.break-even-compact__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.break-even-compact__header h2 strong {
  position: relative;
  display: inline-block;
  color: var(--yellow-500);
  font-family: var(--font-en);
  font-size: 1.22em;
  letter-spacing: -.035em;
}

.break-even-compact__header h2 strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.02em;
  left: 0;
  height: .11em;
  background: var(--yellow-500);
  opacity: .35;
}

.break-even-compact__price {
  margin: 14px 0 0;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 700;
}

.break-even-compact__price strong {
  margin-left: 8px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 900;
}

.break-even-compact__card {
  padding: 34px 38px 24px;
  color: var(--navy-950);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 72px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.break-even-compact__summary {
  display: grid;
  grid-template-columns: minmax(0,1fr) 1px minmax(0,1fr);
  align-items: center;
  gap: 34px;
  max-width: 860px;
  margin: 0 auto 26px;
}

.break-even-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.break-even-summary__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  color: var(--navy-900);
  background: var(--yellow-300);
  border-radius: 50%;
}

.break-even-summary--night .break-even-summary__icon {
  color: var(--white);
  background: var(--navy-900);
}

.break-even-summary__icon svg {
  width: 32px;
  height: 32px;
}

.break-even-summary p {
  margin: 0 0 2px;
  color: var(--gray-600);
  font-size: .76rem;
  font-weight: 800;
}

.break-even-summary strong {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  color: var(--navy-900);
  font-family: var(--font-en);
  font-size: clamp(3.7rem, 6vw, 5.25rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.06em;
}

.break-even-summary strong small {
  margin-bottom: 7px;
  font-family: var(--font-jp);
  font-size: .72rem;
  letter-spacing: 0;
}

.break-even-summary strong span {
  margin-bottom: 6px;
  font-family: var(--font-jp);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.break-even-summary b {
  display: inline-flex;
  margin-top: 9px;
  padding: 5px 10px;
  color: var(--navy-900);
  background: var(--yellow-300);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 900;
}

.break-even-compact__divider {
  width: 1px;
  height: 120px;
  background: var(--gray-200);
}

.break-even-compact__table-wrap {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}

.break-even-compact__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.break-even-compact__table th,
.break-even-compact__table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-200);
}

.break-even-compact__table thead th {
  color: var(--gray-600);
  background: var(--gray-050);
  font-size: .7rem;
  font-weight: 800;
  text-align: right;
}

.break-even-compact__table thead th:first-child {
  text-align: left;
}

.break-even-compact__table tbody tr:last-child th,
.break-even-compact__table tbody tr:last-child td {
  border-bottom: 0;
}

.break-even-compact__table tbody th {
  width: 50%;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 800;
  text-align: left;
}

.break-even-compact__table tbody td {
  color: var(--navy-900);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
  text-align: right;
}

.break-even-compact__note {
  margin: 18px 0 0;
  color: var(--gray-600);
  font-size: .64rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 700px) {
  .break-even-section {
    padding: 70px 0;
  }

  .break-even-compact__header {
    margin-bottom: 24px;
  }

  .break-even-compact__header h2 {
    /*
      スマホでも1行を維持するため、画面幅に応じて縮小します。
      320px幅でも収まりやすい設定です。
    */
    font-size: clamp(.92rem, 4.55vw, 1.45rem);
    letter-spacing: -.055em;
  }

  .break-even-compact__price {
    margin-top: 10px;
    font-size: .68rem;
  }

  .break-even-compact__price strong {
    font-size: 1.05rem;
  }

  .break-even-compact__card {
    padding: 24px 18px 18px;
    border-radius: 20px;
  }

  .break-even-compact__summary {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .break-even-compact__divider {
    display: none;
  }

  .break-even-summary {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .break-even-summary__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .break-even-summary__icon svg {
    width: 21px;
    height: 21px;
  }

  .break-even-summary p {
    min-height: 2.7em;
    font-size: .61rem;
    line-height: 1.35;
  }

  .break-even-summary strong {
    font-size: clamp(2.55rem, 13vw, 3.4rem);
  }

  .break-even-summary strong small {
    margin-bottom: 4px;
    font-size: .56rem;
  }

  .break-even-summary strong span {
    margin-bottom: 4px;
    font-size: .78rem;
  }

  .break-even-summary b {
    margin-top: 7px;
    padding: 4px 7px;
    font-size: .52rem;
  }

  .break-even-compact__table th,
  .break-even-compact__table td {
    padding: 11px 9px;
  }

  .break-even-compact__table thead th {
    font-size: .56rem;
  }

  .break-even-compact__table tbody th {
    font-size: .61rem;
    line-height: 1.45;
  }

  .break-even-compact__table tbody td {
    font-size: .77rem;
  }

  .break-even-compact__note {
    margin-top: 14px;
    font-size: .54rem;
    text-align: left;
  }
}


/* =========================================================
   Student benefit 02 — Ski / Snowboard rental
   Flyer-aligned overrides
========================================================= */

.student-perk__wear-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.student-perk__wear-items li {
  min-width: 0;
}

.student-perk--wear h3 {
  font-size: clamp(2.5rem, 4.4vw, 4.7rem);
  line-height: 1.02;
}

@media (max-width: 980px) {
  .student-perk__wear-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .student-perk__wear-items {
    grid-template-columns: 1fr;
  }

  .student-perk--wear h3 {
    font-size: clamp(2.1rem, 10vw, 3.5rem);
  }
}


/* =========================================================
   Application form / terms document buttons
========================================================= */
.document-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.document-action {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.document-action:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 118, 184, 0.35);
}

.document-action--download:hover {
  background: #fffbee;
  border-color: rgba(255, 213, 72, 0.75);
}

.document-action__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.document-action--download .document-action__icon {
  color: var(--navy-950);
  background: var(--yellow-500);
  font-size: 1.7rem;
}

.document-action__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.document-action__text small {
  color: var(--blue-600);
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.document-action__text strong {
  margin-top: 3px;
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.45;
}

.document-action__text b {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.document-action__arrow {
  color: var(--navy-800);
  font-size: 1.35rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .document-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .document-action {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 13px;
    min-height: 100px;
    padding: 18px;
  }

  .document-action__icon {
    width: 48px;
    height: 48px;
    font-size: 0.75rem;
  }

  .document-action--download .document-action__icon {
    font-size: 1.4rem;
  }

  .document-action__text strong {
    font-size: 0.95rem;
  }
}
