:root {
  --red: #D20A0A;
  --black: #070707;
  --black-2: #111111;
  --white: #ffffff;
  --soft: #f3f3f3;
  --line: rgba(17, 17, 17, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.66);
  --font-en: "Inter", Arial, sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --header-h: 80px;
  --container: 1240px;
  --container-wide: 1500px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-ja);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

[lang="en"] {
  font-family: var(--font-en);
}

body[data-lang="ja"] [lang="en"],
body[data-lang="en"] [lang="ja"] {
  display: none !important;
}

body[data-lang="en"] [lang="en"] {
  display: inline;
}

body[data-lang="en"] p[lang="en"],
body[data-lang="en"] span[lang="en"],
body[data-lang="en"] div[lang="en"] {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.container-wide {
  width: min(calc(100% - 48px), var(--container-wide));
}

.container--narrow {
  width: min(calc(100% - 48px), 980px);
}

.section {
  position: relative;
  padding: clamp(92px, 9vw, 150px) 0;
}

.section--dark {
  color: var(--white);
  background: var(--black);
}

.section--soft {
  background: var(--soft);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 78px);
}

.section-heading h2,
.booking-heading h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(46px, 5.7vw, 88px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.06em;
  text-wrap: balance;
}

body[data-lang="ja"] .section-heading h2,
body[data-lang="ja"] .booking-heading h2 {
  font-family: var(--font-ja);
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 1.08;
  letter-spacing: -.055em;
  line-break: strict;
  word-break: normal;
}

.section-heading > p,
.section-heading > div + p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.section-heading--light > p,
.section-heading--light > div + p {
  color: rgba(255, 255, 255, .68);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.button--red {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button--red:hover {
  background: #b90707;
  border-color: #b90707;
}

.button--ghost {
  color: var(--white);
  background: rgba(0, 0, 0, .18);
  border-color: rgba(255, 255, 255, .45);
}

.button--ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button--large {
  min-height: 64px;
  padding-inline: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: var(--white);
  background: rgba(7, 7, 7, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, .985);
}

.header-inner {
  height: 100%;
  width: min(calc(100% - 40px), 1500px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 220px;
}

.site-brand img {
  width: 116px;
  height: auto;
}

.site-brand__club {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .28);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .28em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  margin-left: auto;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--red);
}

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

.header-program-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.header-program-link:hover,
.header-program-link:focus-visible {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255, 255, 255, .03);
}

.lang-switch,
.header-cta {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: transparent;
  color: var(--white);
  padding: 0 16px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}

.lang-switch__active {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  border-color: var(--red);
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  background: var(--white);
  margin: 5px 0;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 990;
  padding: 32px 24px;
  background: var(--black);
  color: var(--white);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s var(--ease), visibility .35s;
}

.mobile-menu.is-open {
  transform: none;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .06em;
}

.mobile-menu nav a.mobile-menu__main-link {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: var(--red);
}

.mobile-menu__contact {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .72);
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero__video,
.hero__shade,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .26) 72%, rgba(0, 0, 0, .46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, .72));
}

.hero__grid {
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.9), transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: min(920px, 100svh);
  padding-top: calc(var(--header-h) + clamp(80px, 12vh, 150px));
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero__cross {
  color: var(--red);
}

.hero__title {
  max-width: 1100px;
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(58px, 8.1vw, 126px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 760px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero__status span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(0, 0, 0, .2);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero__side-note {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  color: rgba(255, 255, 255, .44);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero__scroll span {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--red) 0 50%, rgba(255, 255, 255, .4) 50% 100%);
}

.about {
  overflow: hidden;
}

.about::before {
  content: "HYROX";
  position: absolute;
  inset: 50% auto auto 40%;
  transform: translateY(-50%);
  color: rgba(17, 17, 17, .035);
  font-family: var(--font-en);
  font-size: clamp(160px, 26vw, 420px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: 1;
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: center;
}

.about-title {
  min-width: 0;
}

.about-title h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-ja);
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.065em;
  line-break: strict;
  word-break: normal;
}

body[data-lang="en"] .about-title h2 {
  font-family: var(--font-en);
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: .96;
}

.about-title__desktop { display: inline; }
.about-title__mobile { display: none; }


.about-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-left: clamp(20px, 3vw, 54px);
  border-left: 1px solid var(--line);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.05;
}

.workouts-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 4.5vw, 74px);
  align-items: start;
}

.workouts-visual__sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.workouts-visual__media {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--black-2);
}

.workouts-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.workouts-visual__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42) 58%, rgba(0, 0, 0, .88));
}

.workouts-visual__copy {
  position: absolute;
  inset: auto 28px 28px;
}

.workouts-visual__copy > span {
  color: rgba(255, 255, 255, .64);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.workouts-visual__copy strong {
  display: block;
  margin-top: 16px;
  font-family: var(--font-en);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.06em;
}

.workouts-visual__copy p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.85;
}

.workouts-visual__tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
  border: 1px solid var(--line-dark);
  border-right: 0;
}

.workouts-visual__tags span {
  padding: 13px 10px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

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

.workout-card {
  min-width: 0;
  border: 1px solid var(--line-dark);
  background: var(--black-2);
}

.workout-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 1px solid var(--line-dark);
}

.workout-card__body {
  padding: 22px 22px 24px;
}

.workout-card__num,
.workout-card__label {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.workout-card__label {
  margin: 14px 0 10px;
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
}

.workout-card h3 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.045em;
}

.workout-card__jp {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  letter-spacing: .05em;
}

.workout-card__equipment {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.7;
}

.workout-card__equipment b {
  display: inline-block;
  margin-right: 8px;
  color: var(--white);
  font-size: 11px;
}

.merits {
  overflow: hidden;
}

.merit-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.merit-panel {
  position: relative;
  min-height: 430px;
  padding: clamp(32px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.merit-panel--light {
  background: var(--white);
}

.merit-panel--dark {
  color: var(--white);
  background: var(--black);
}

.merit-panel__ghost {
  position: absolute;
  right: -12px;
  bottom: -34px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, .08);
  font-family: var(--font-en);
  font-size: 190px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.merit-panel--dark .merit-panel__ghost {
  -webkit-text-stroke-color: rgba(255, 255, 255, .1);
}

.merit-panel__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.merit-panel--dark .merit-panel__top {
  border-color: var(--line-dark);
}

.merit-panel__top span {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.merit-panel__top p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.merit-panel h3 {
  position: relative;
  z-index: 1;
  margin: 34px 0 22px;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.32;
  letter-spacing: -.04em;
}

body[data-lang="en"] .merit-panel h3 {
  font-family: var(--font-en);
  line-height: 1.05;
}

.merit-panel > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.merit-panel--dark > p {
  color: rgba(255, 255, 255, .68);
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-bottom: 26px;
}

.schedule-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.legend {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.legend--hyrox {
  background: var(--red);
}

.legend--fitness {
  background: var(--black);
}

.legend--open {
  background: #d8d8d8;
  border: 1px solid rgba(17, 17, 17, .2);
}

.schedule-accordion {
  border-top: 1px solid var(--black);
}

.schedule-day {
  border-bottom: 1px solid var(--black);
  background: var(--white);
}

.schedule-day summary {
  display: grid;
  grid-template-columns: 220px 160px 1fr 52px;
  align-items: center;
  min-height: 96px;
  padding: 0 0 0 28px;
  list-style: none;
  cursor: pointer;
}

.schedule-day summary::-webkit-details-marker {
  display: none;
}

.schedule-day__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.schedule-day__name b {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: .06em;
}

.schedule-day__name small {
  color: var(--muted);
  font-size: 12px;
}

.schedule-day__hours,
.schedule-day__summary {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.schedule-day__summary {
  color: var(--muted);
}

.schedule-day__summary b {
  color: var(--red);
}

.schedule-day__icon {
  position: relative;
  width: 52px;
  height: 96px;
  border-left: 1px solid var(--black);
}

.schedule-day__icon::before,
.schedule-day__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--black);
  transform: translate(-50%, -50%);
}

.schedule-day__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.schedule-day[open] .schedule-day__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.schedule-day--hyrox summary {
  color: var(--white);
  background: var(--red);
}

.schedule-day--hyrox .schedule-day__name small,
.schedule-day--hyrox .schedule-day__summary,
.schedule-day--hyrox .schedule-day__summary b {
  color: rgba(255, 255, 255, .86);
}

.schedule-day--hyrox .schedule-day__icon {
  border-color: rgba(255, 255, 255, .6);
}

.schedule-day--hyrox .schedule-day__icon::before,
.schedule-day--hyrox .schedule-day__icon::after {
  background: var(--white);
}

.schedule-day__body {
  border-top: 1px solid var(--black);
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 120px minmax(0, 1fr) 160px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(17, 17, 17, .2);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row time,
.schedule-row > span,
.schedule-row strong,
.schedule-row em {
  padding: 18px 22px;
}

.schedule-row time,
.schedule-row > span {
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, .25);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.schedule-row strong {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: .025em;
}

.schedule-row em {
  font-style: normal;
  text-align: right;
  font-size: 13px;
}

.schedule-row--fitness {
  color: var(--white);
  background: var(--black);
}

.schedule-row--hyrox {
  color: var(--white);
  background: var(--red);
}

.schedule-row--open {
  color: var(--text);
  background: #dedede;
}

.schedule-row--open time,
.schedule-row--open > span {
  border-color: rgba(17, 17, 17, .2);
}

.schedule-row--open strong {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 700;
}

.schedule-note {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, .55);
  font-size: 11px;
  line-height: 1.8;
}

.membership {
  background: var(--black);
  color: var(--white);
}

.membership-hero {
  position: relative;
  height: 360px;
  background-image: url("assets/membership-banner.jpg?v=20260806-ogikubo-v4");
  background-size: cover;
  background-position: center 42%;
}

.membership-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.32) 55%, rgba(0,0,0,.65));
}

.membership-hero__title {
  position: absolute;
  inset: auto auto 70px max(24px, calc((100% - var(--container)) / 2));
  font-family: var(--font-en);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.065em;
}

.membership-body {
  padding: 0 0 clamp(90px, 9vw, 145px);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 2;
  margin-top: -56px;
  border: 1px solid rgba(255, 255, 255, .36);
}

.plan {
  display: grid;
  grid-template-rows: minmax(190px, auto) 1fr;
  min-width: 0;
  background: var(--white);
  color: var(--black);
  border-right: 1px solid rgba(145, 145, 145, .72);
}

.plan:last-child {
  border-right: 0;
}

.plan-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 190px;
  padding: 28px 30px 34px;
  color: var(--white);
  background: #171717;
  text-align: center;
}

.plan--ultimate .plan-top {
  background: var(--red);
}

.plan-name {
  min-height: 0;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 34px;
  font-family: var(--font-en);
  white-space: nowrap;
}

.plan-price span {
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 900;
}

.plan-price strong {
  font-size: clamp(42px, 3.65vw, 58px);
  line-height: .88;
  letter-spacing: -.045em;
}

.plan-bottom {
  display: block;
  background: var(--white);
}

.plan-bottom > div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 22px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.plan-bottom > div:last-child {
  border-bottom: 0;
}

.plan-bottom small {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .05em;
}

.plan-bottom b {
  display: block;
  margin-top: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.plan-note {
  display: block;
  margin-top: 6px;
  color: rgba(0, 0, 0, .62);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
  text-wrap: balance;
}

.membership-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 52px;
  text-align: center;
}

.membership-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.campaign-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.campaign-heading h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.campaign-heading p {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

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

.campaign-grid article {
  min-width: 0;
  background: transparent;
}

.campaign-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.booking {
  background: var(--white);
}

.booking-heading {
  text-align: center;
  margin-bottom: 38px;
}

.booking-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.booking-step {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.booking-step > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-step > div span {
  padding: 5px 8px;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.booking-step > div strong {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .1em;
}

.booking-step p {
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.booking-widget {
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.booking-widget iframe {
  width: 100%;
  min-height: 1120px;
  border: 0;
}

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

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

.faq-item summary {
  position: relative;
  min-height: 70px;
  padding: 22px 60px 22px 20px;
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-item summary i,
.company-details summary i {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.faq-item summary i::before,
.faq-item summary i::after,
.company-details summary i::before,
.company-details summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--black);
  transform: translate(-50%, -50%);
}

.faq-item summary i::after,
.company-details summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after,
.company-details[open] summary i::after {
  transform: translate(-50%, -50%);
}

.faq-item > div {
  padding: 0 60px 28px 20px;
}

.faq-item > div p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.access-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 520px;
  border: 1px solid var(--line);
}

.access-info {
  padding: clamp(28px, 4vw, 54px);
  color: var(--white);
  background: var(--black);
}

.access-info dl {
  margin: 0;
}

.access-info dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.access-info dt {
  color: var(--red);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.access-info dd {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.8;
}

.access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1);
}

.company-details {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.company-details summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding-right: 56px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .05em;
}

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

.company-table {
  padding-bottom: 20px;
}

.company-table > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: var(--black);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr .8fr;
  gap: 50px;
  align-items: start;
}

.site-footer__brand img {
  width: 120px;
  height: auto;
}

.site-footer__brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.8;
}

.site-footer__links,
.site-footer__contact {
  display: grid;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.site-footer__contact {
  color: rgba(255, 255, 255, .72);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .42);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: .06em;
}

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --header-h: 72px;
  }

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

  .menu-toggle {
    display: block;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 54px;
  }

  .about-title h2 {
    font-size: clamp(46px, 4.8vw, 62px);
  }

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

  .workouts-visual__sticky {
    position: relative;
    top: 0;
  }

  .workouts-visual__media {
    min-height: 660px;
  }

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

  .plan:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(145, 145, 145, .72);
  }

  .schedule-day summary {
    grid-template-columns: 190px 140px 1fr 52px;
  }
}

@media (max-width: 900px) {
  .container,
  .container-wide,
  .container--narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-heading,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .merit-triptych {
    grid-template-columns: 1fr;
  }

  .merit-panel {
    min-height: 0;
  }

  .schedule-day summary {
    grid-template-columns: 1fr auto 52px;
    min-height: 88px;
    padding-left: 20px;
  }

  .schedule-day__hours {
    display: none;
  }

  .schedule-day__summary {
    text-align: right;
  }

  .schedule-day__icon {
    height: 88px;
  }

  .schedule-row {
    grid-template-columns: 88px 92px minmax(0, 1fr) 110px;
  }

  .schedule-row time,
  .schedule-row > span,
  .schedule-row strong,
  .schedule-row em {
    padding: 15px 14px;
  }


  .booking-steps {
    grid-template-columns: 1fr;
  }

  .booking-step {
    min-height: 0;
  }

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

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 64px;
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .site-brand {
    min-width: 0;
    gap: 10px;
  }

  .site-brand img {
    width: 88px;
  }

  .site-brand__club {
    padding-left: 10px;
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .lang-switch {
    height: 38px;
    padding-inline: 11px;
  }

  .menu-toggle {
    width: 40px;
    height: 38px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .booking-heading h2,
  body[data-lang="ja"] .section-heading h2,
  body[data-lang="ja"] .booking-heading h2 {
    font-size: clamp(34px, 10.2vw, 50px);
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    min-height: 760px;
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero__eyebrow {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 9px;
  }

  .hero__title {
    font-size: clamp(50px, 16vw, 70px);
    line-height: .92;
  }

  .hero__lead {
    font-size: 13px;
    line-height: 1.8;
  }

  .hero__actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero__side-note {
    display: none;
  }

  .about-title h2,
  body[data-lang="en"] .about-title h2 {
    font-size: clamp(38px, 10.8vw, 52px);
    line-height: 1.08;
    letter-spacing: -.055em;
  }



  body[data-lang="ja"] .about-title h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.12;
    letter-spacing: -.065em;
  }

  .about-title__desktop { display: none; }
  .about-title__mobile { display: block; }

  .about-title__mobile > span {
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .workouts-visual__media {
    min-height: 540px;
  }

  .workouts-visual__copy {
    inset: auto 18px 18px;
  }

  .workouts-visual__copy strong {
    font-size: 46px;
  }

  .workouts-visual__copy p {
    font-size: 12px;
  }

  .workout-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .workout-card__body {
    padding: 18px;
  }

  .workout-card h3 {
    font-size: 34px;
  }

  .merit-panel {
    padding: 26px 22px;
  }

  .merit-panel__ghost {
    font-size: 130px;
  }

  .merit-panel h3 {
    margin-top: 26px;
    font-size: 24px;
  }

  .schedule-legend {
    display: grid;
    gap: 10px;
  }

  .schedule-day summary {
    grid-template-columns: 1fr 44px;
    padding-left: 16px;
  }

  .schedule-day__summary {
    grid-column: 1;
    grid-row: 2;
    padding-bottom: 14px;
    text-align: left;
    font-size: 10px;
  }

  .schedule-day__icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 44px;
    height: 100%;
    min-height: 88px;
  }

  .schedule-day__name {
    padding-top: 14px;
  }

  .schedule-day__name b {
    font-size: 16px;
  }

  .schedule-row {
    grid-template-columns: 70px 76px 1fr;
    min-height: 0;
  }

  .schedule-row em {
    grid-column: 3;
    padding-top: 0;
    text-align: left;
    color: inherit;
    opacity: .72;
  }

  .schedule-row time,
  .schedule-row > span,
  .schedule-row strong,
  .schedule-row em {
    padding-left: 10px;
    padding-right: 10px;
  }

  .schedule-row strong {
    font-size: 13px;
  }

  .schedule-row--open {
    grid-template-columns: 70px 76px 1fr;
  }

  .schedule-row--open em {
    display: none;
  }

  .membership-hero {
    height: 250px;
  }

  .membership-hero__title {
    left: 16px;
    bottom: 38px;
    font-size: clamp(46px, 14vw, 64px);
  }

  .plan-grid {
    margin-top: -34px;
  }

  .plan {
    grid-template-rows: minmax(132px, auto) 1fr;
  }

  .plan-top {
    min-height: 132px;
    padding: 17px 13px 20px;
  }

  .plan-name {
    font-size: 11px;
  }

  .plan-price {
    gap: 4px;
    margin-top: 22px;
  }

  .plan-price span {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .plan-price strong {
    font-size: 29px;
  }

  .plan-bottom > div {
    min-height: 92px;
    padding: 15px 8px;
  }

  .plan-bottom small {
    font-size: 8px;
  }

  .plan-bottom b {
    margin-top: 9px;
    font-size: 16px;
  }

  .plan-note {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.35;
  }

  .membership-cta {
    margin-top: 34px;
  }

  .campaign-heading {
    display: block;
    margin-top: 50px;
    padding-top: 22px;
  }

  .campaign-heading h2 {
    margin-top: 10px;
    font-size: 34px;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .booking-step {
    padding: 20px;
  }

  .booking-widget iframe {
    min-height: 820px;
  }

  .access-info dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access-map iframe {
    min-height: 360px;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

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

  .site-footer__bottom {
    flex-direction: column;
  }

  .mobile-bottom-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 950;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    color: var(--white);
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .mobile-bottom-cta a {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-right: 1px solid rgba(255, 255, 255, .18);
  }

  .mobile-bottom-cta a:last-child {
    background: var(--red);
    border-right: 0;
  }

  .mobile-bottom-cta span {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .mobile-bottom-cta strong {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .08em;
  }
}

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

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


/* Ogikubo five-plan membership layout */
.plan-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.plan-grid--five .plan-top { padding-left: 18px; padding-right: 18px; }
.plan-grid--five .plan-price strong { font-size: clamp(34px, 3vw, 52px); }
.plan-top__note { margin-top: 14px; font-size: 9px; line-height: 1.35; letter-spacing: .08em; }
@media (max-width: 1180px) { .plan-grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); } .plan-grid--five .plan:last-child { grid-column: 1 / -1; } }
@media (max-width: 680px) {
  .plan-grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-grid--five .plan { border-right: 1px solid rgba(145,145,145,.72); border-bottom: 1px solid rgba(145,145,145,.72); }
  .plan-grid--five .plan:nth-child(2n) { border-right: 0; }
  .plan-grid--five .plan:last-child {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
    border-left: 1px solid rgba(145,145,145,.72);
    border-right: 1px solid rgba(145,145,145,.72);
  }
  .plan-grid--five .plan-price strong { font-size: clamp(25px, 8vw, 31px); }
}

.membership-notes { margin: 34px 0 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.8; text-align: center; }
.membership-notes p { margin: 5px 0; }

@media (max-width: 350px) {
  body[data-lang="ja"] .about-title h2 {
    font-size: 27px;
    letter-spacing: -.075em;
  }
}
