@charset "UTF-8";

:root {
  --ink: #171719;
  --cream: #f3f0e8;
  --paper: #fffdf7;
  --orange: #ff552f;
  --orange-dark: #b93119;
  --blue: #3155ff;
  --blue-dark: #1c2ec4;
  --line: rgba(23, 23, 25, .24);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --sans: "M PLUS 2", "Hiragino Sans", "Yu Gothic", sans-serif;
  --page: min(92vw, 1280px);
  --header-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main,
.statement-grid > *,
.section-heading > *,
.program-panel > *,
.session-intro > *,
.session-track > *,
.reason-head > *,
.reason-list > *,
.coach > *,
.price-grid > *,
.flow-title > *,
.flow-list > *,
.faq > *,
.site-footer > * {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
summary {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
li,
span,
a,
summary {
  word-break: normal;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 2.6vw;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: color .35s, background .35s, min-height .35s;
}

.site-header.is-scrolled {
  min-height: 68px;
  color: var(--ink);
  background: rgba(243, 240, 232, .94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
}

.brand-main {
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -.06em;
}

.brand-sub {
  padding-left: 16px;
  font-family: var(--display);
  font-size: .54rem;
  line-height: 1.2;
  letter-spacing: .12em;
  border-left: 1px solid currentColor;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  margin-right: 32px;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .04em;
}

.desktop-nav a {
  position: relative;
}

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

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

.header-cta {
  display: grid;
  min-width: 118px;
  padding: 11px 19px;
  color: var(--paper);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 999px;
  text-align: center;
  line-height: 1.05;
  transition: color .25s, background .25s;
}

.header-cta:hover {
  color: var(--orange);
  background: var(--paper);
}

.header-cta span {
  font-family: var(--display);
  font-size: .72rem;
}

.header-cta small {
  margin-top: 4px;
  font-size: .57rem;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s var(--ease);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 110px 7vw 40px;
  color: var(--cream);
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .35s, visibility .35s, transform .35s;
}

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

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

.mobile-menu a {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 10vw, 3.3rem);
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.mobile-menu a span {
  color: var(--orange);
  font-size: .7rem;
}

.mobile-menu p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .65);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  padding-top: var(--header-h);
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 13vh;
  right: 3vw;
  width: min(64vw, 980px);
  height: min(73vh, 730px);
  min-height: 560px;
  border-radius: 30px 30px 110px 30px;
  overflow: hidden;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(23, 23, 25, .28), transparent 38%), linear-gradient(0deg, rgba(23, 23, 25, .2), transparent 34%);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-vertical {
  position: absolute;
  z-index: 2;
  top: 24%;
  left: 2.6vw;
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}

.hero-title-wrap {
  position: absolute;
  z-index: 3;
  top: 24%;
  left: 7vw;
}

.hero-kicker {
  margin: 0 0 6px 10px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(.66rem, 1vw, .86rem);
  letter-spacing: .12em;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(5rem, 13.5vw, 13rem);
  line-height: .66;
  letter-spacing: -.095em;
  text-transform: uppercase;
  transform: skewY(-4deg);
}

.hero h1 span {
  display: block;
  width: max-content;
  text-shadow: 0 0 1px var(--ink), 2px 2px 0 var(--ink);
  animation: title-enter .9s var(--ease) backwards;
}

.hero h1 span:nth-child(2) {
  margin-left: 9vw;
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
  animation-delay: .12s;
}

.hero h1 span:nth-child(3) {
  margin-left: 2vw;
  color: var(--orange);
  animation-delay: .24s;
}

@keyframes title-enter {
  from { opacity: 0; transform: translateX(-10vw) scaleX(.65); }
}

.hero-copy {
  position: absolute;
  z-index: 4;
  right: 4.5vw;
  bottom: 8vh;
  width: min(390px, 36vw);
  padding: 26px 30px;
  color: var(--ink);
  background: rgba(243, 240, 232, .94);
  border-radius: 22px 22px 60px 22px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.hero-copy > p:not(.hero-ja) {
  font-size: .86rem;
  line-height: 1.8;
}

.hero-ja {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.55;
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 12px;
  font-size: .78rem;
  font-weight: 800;
  border-top: 1px solid var(--ink);
}

.arrow-link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  transition: transform .25s;
}

.arrow-link:hover span {
  transform: rotate(45deg);
}

.section-index {
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .1em;
}

.statement {
  position: relative;
  min-height: 820px;
  padding: 120px max(4vw, calc((100vw - 1280px) / 2));
  background: var(--cream);
  overflow: hidden;
}

.statement-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: start;
  margin-top: 85px;
}

.statement h2,
.section-heading h2,
.session h2,
.reason h2,
.coach h2,
.flow h2,
.faq h2,
.reserve h2 {
  font-size: clamp(2.55rem, 5.8vw, 6.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.07em;
}

.statement-grid > div > p {
  max-width: 520px;
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  font-weight: 600;
}

.mini-facts {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.mini-facts li {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 700;
}

.mini-facts b {
  color: var(--orange);
  font-family: var(--display);
  font-size: .75rem;
}

.statement-word {
  position: absolute;
  right: -3vw;
  bottom: -2vw;
  color: rgba(49, 85, 255, .12);
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 15rem);
  line-height: .7;
  letter-spacing: -.09em;
  white-space: nowrap;
  transform: skewY(-4deg);
}

.program {
  padding: 116px max(4vw, calc((100vw - 1280px) / 2)) 130px;
  color: var(--paper);
  background: var(--blue);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.1fr 1fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.section-heading > p:last-child {
  font-size: .9rem;
  font-weight: 600;
}

.program-selector {
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.program-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.program-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 82px;
  padding: 12px;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-right: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 2rem);
  cursor: pointer;
  transition: color .25s, background .25s;
}

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

.program-tabs button span {
  font-size: .6rem;
}

.program-tabs button[aria-selected="true"] {
  color: var(--paper);
  background: var(--orange);
}

.program-panel {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 580px;
  color: var(--ink);
  background: var(--paper);
  border-top: 2px solid var(--ink);
}

.program-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.program-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, transparent 55%, rgba(49, 85, 255, .5));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.program-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: opacity .3s, transform .7s var(--ease), filter .4s;
}

.program-visual.is-changing img {
  opacity: .25;
  transform: scale(1.08);
}

.program-number {
  position: absolute;
  z-index: 2;
  right: -3px;
  bottom: -32px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 14rem);
  line-height: .7;
  letter-spacing: -.1em;
  -webkit-text-stroke: 2px var(--ink);
}

.program-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 78px);
  border-left: 2px solid var(--ink);
}

.program-en {
  color: var(--blue);
  font-family: var(--display);
  font-size: .76rem;
  letter-spacing: .1em;
}

.program-copy h3 {
  margin: 20px 0 22px;
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.05em;
}

.program-copy > p:not(.program-en) {
  font-size: .94rem;
  font-weight: 600;
}

.program-meter {
  display: grid;
  gap: 13px;
  margin-top: 42px;
}

.program-meter > div {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
}

.program-meter dt {
  font-family: var(--display);
  font-size: .62rem;
}

.program-meter dd {
  height: 8px;
  margin: 0;
  background: #d9d5cc;
  border: 1px solid var(--ink);
  overflow: hidden;
}

.program-meter i {
  display: block;
  width: var(--meter);
  height: 100%;
  background: var(--orange);
  transition: width .7s var(--ease);
}

.session {
  padding: 120px max(4vw, calc((100vw - 1280px) / 2)) 140px;
  background: var(--cream);
}

.session-intro {
  display: grid;
  grid-template-columns: .65fr 1.5fr .85fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 70px;
}

.session-intro > p:last-child {
  font-size: .9rem;
  font-weight: 600;
}

.session-track {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.2fr;
  min-height: 520px;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.session-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 44px);
  border-right: 2px solid var(--ink);
  overflow: hidden;
}

.session-step:last-child {
  border-right: 0;
}

.session-step.warm { background: var(--paper); }
.session-step.move { color: var(--paper); background: var(--blue); }
.session-step.reset { background: var(--orange); }

.session-step > span {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--display);
  font-size: .62rem;
  letter-spacing: .08em;
}

.session-step b {
  position: absolute;
  top: 25px;
  right: -8px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: .8;
  -webkit-text-stroke: 2px currentColor;
  opacity: .27;
}

.session-step h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 3.25rem);
  line-height: .95;
}

.session-step p {
  max-width: 310px;
  font-size: .84rem;
  font-weight: 600;
}

.reason {
  position: relative;
  padding: 130px max(4vw, calc((100vw - 1280px) / 2)) 145px;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.reason-side {
  position: absolute;
  top: 0;
  right: 1.4vw;
  color: var(--orange);
  font-family: var(--display);
  font-size: .65rem;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}

.reason-head {
  display: grid;
  grid-template-columns: .6fr 2fr;
  align-items: start;
  gap: 5vw;
  margin-bottom: 85px;
}

.reason-list {
  margin-left: 18vw;
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.reason-list article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 1fr 60px;
  gap: 30px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  transition: color .25s, padding .35s var(--ease);
}

.reason-list article:hover {
  padding-inline: 20px;
  color: var(--orange);
}

.reason-list article > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: .75rem;
}

.reason-list h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
}

.reason-list p {
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
  font-weight: 600;
}

.reason-list i {
  font-family: var(--display);
  font-size: 1.8rem;
  font-style: normal;
  text-align: right;
}

.coach {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 820px;
  background: var(--orange);
  overflow: hidden;
}

.coach-photo {
  position: relative;
  min-height: 820px;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.coach-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.92) contrast(1.04);
  transition: transform .8s var(--ease);
}

.coach-photo:hover img {
  transform: scale(1.035);
}

.coach-label {
  position: absolute;
  right: 6%;
  bottom: 5%;
  display: grid;
  padding: 16px 22px;
  color: var(--paper);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-4deg);
}

.coach-label span {
  font-family: var(--display);
  font-size: .58rem;
}

.coach-label b {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

.coach-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 100px 7vw 100px 4vw;
}

.coach-copy h2 {
  margin: 52px 0 25px;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

.coach-role {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: .75rem;
  letter-spacing: .08em;
}

.coach-copy > p:not(.section-index, .coach-role) {
  max-width: 520px;
  font-weight: 600;
}

.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.coach-tags span {
  padding: 7px 15px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.coach-big {
  position: absolute;
  right: -1.5vw;
  bottom: -2vw;
  z-index: 1;
  color: rgba(23, 23, 25, .13);
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: .72;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.price {
  padding: 130px max(4vw, calc((100vw - 1280px) / 2));
  color: var(--cream);
  background: var(--ink);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: clamp(28px, 3vw, 48px);
  color: var(--ink);
  border: 2px solid var(--cream);
  border-radius: 0 0 70px 0;
  transition: transform .35s var(--ease), border-radius .35s;
}

.price-card:hover {
  border-radius: 70px 0 0 0;
  transform: translateY(-10px);
}

.price-card.trial { background: var(--cream); }
.price-card.standard { background: var(--orange); }
.price-card.active { color: var(--paper); background: var(--blue); }

.price-card > p {
  margin-bottom: 50px;
  font-family: var(--display);
  font-size: .65rem;
  letter-spacing: .08em;
}

.price-card h3 {
  min-height: 65px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.25;
}

.price-card strong {
  display: block;
  margin: 28px 0 40px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.price-card strong small {
  display: block;
  margin-bottom: 10px;
  font-size: .6rem;
  letter-spacing: .08em;
}

.price-card strong span {
  margin-left: 3px;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: 0;
}

.price-card ul {
  border-top: 1px solid currentColor;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: .76rem;
  font-weight: 700;
}

.price-card a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 25px;
  font-size: .78rem;
  font-weight: 900;
}

.price-card a span {
  font-size: 1.3rem;
  transition: transform .25s;
}

.price-card a:hover span {
  transform: rotate(45deg);
}

.price-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, .6);
  font-size: .72rem;
  text-align: right;
}

.flow {
  padding: 130px max(4vw, calc((100vw - 1280px) / 2));
  color: var(--paper);
  background: var(--blue);
}

.flow-title {
  display: grid;
  grid-template-columns: .7fr 2fr;
  gap: 5vw;
  margin-bottom: 75px;
}

.flow-list {
  margin-left: 15vw;
  border-top: 2px solid var(--paper);
}

.flow-list li {
  display: grid;
  grid-template-columns: 100px 1fr 90px;
  gap: 30px;
  align-items: center;
  min-height: 130px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.flow-list b {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.6rem;
}

.flow-list h3 {
  margin-bottom: 4px;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 900;
}

.flow-list p {
  max-width: 520px;
  font-size: .82rem;
  font-weight: 600;
}

.flow-list > li > span {
  font-family: var(--display);
  font-size: .65rem;
  text-align: right;
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 7vw;
  padding: 130px max(4vw, calc((100vw - 1280px) / 2));
  background: var(--cream);
}

.faq-head h2 {
  margin-top: 50px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 105px;
  padding: 20px 54px 20px 0;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  right: 8px;
  content: "+";
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.7rem;
  transition: transform .3s;
}

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

.faq summary span {
  color: var(--blue);
  font-family: var(--display);
  font-size: .66rem;
}

.faq details p {
  padding: 0 54px 28px 70px;
  color: rgba(23, 23, 25, .72);
  font-size: .86rem;
  font-weight: 600;
}

.reserve {
  position: relative;
  min-height: 720px;
  padding: 130px max(4vw, calc((100vw - 1280px) / 2)) 170px;
  background: var(--orange);
  overflow: hidden;
}

.reserve::before {
  position: absolute;
  top: -30px;
  right: -50px;
  width: 250px;
  height: 250px;
  content: "";
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.reserve-ghost {
  position: absolute;
  top: 23%;
  left: -3vw;
  color: rgba(23, 23, 25, .13);
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 15rem);
  line-height: .7;
  letter-spacing: -.09em;
  white-space: nowrap;
  transform: rotate(-5deg);
}

.reserve-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 75%);
}

.reserve-copy h2 {
  margin: 50px 0 25px;
}

.reserve-copy > p:last-child {
  max-width: 600px;
  font-weight: 700;
}

.reserve-actions {
  position: relative;
  z-index: 3;
  width: min(620px, 80%);
  margin: 70px 0 0 auto;
}

.reserve-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 130px;
  padding: 24px 32px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 70px;
  box-shadow: 9px 9px 0 var(--blue);
  transition: color .25s, background .25s, box-shadow .25s;
}

.reserve-main:hover {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--blue);
}

.reserve-main > span {
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.reserve-main small {
  grid-column: 1;
  margin-top: 4px;
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .08em;
}

.reserve-main i {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: var(--display);
  font-size: 2.4rem;
  font-style: normal;
  transition: transform .25s;
}

.reserve-main:hover i {
  transform: rotate(45deg);
}

.reserve-actions > p {
  margin-top: 18px;
  font-size: .75rem;
  font-weight: 800;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr;
  gap: 50px;
  padding: 80px max(4vw, calc((100vw - 1280px) / 2)) 35px;
  color: var(--cream);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand b {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-style: italic;
  line-height: .9;
  letter-spacing: -.07em;
}

.footer-brand span {
  margin-top: 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .1em;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, .64);
  font-size: .74rem;
  font-style: normal;
  font-weight: 600;
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links a {
  padding: 6px 0;
  font-family: var(--display);
  font-size: .72rem;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 40px;
  color: rgba(255, 255, 255, .4);
  font-family: var(--display);
  font-size: .55rem;
  letter-spacing: .08em;
}

body.menu-open .site-header {
  color: var(--cream);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .18);
  backdrop-filter: none;
}

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

  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 10px; padding-inline: 4vw; }
  .header-cta { min-width: 100px; }
  .menu-button { display: block; }

  .hero-photo { width: 72vw; right: -3vw; }
  .hero-title-wrap { left: 5vw; }
  .hero-copy { right: 3vw; width: min(360px, 42vw); }

  .statement-grid { gap: 5vw; }
  .section-heading { grid-template-columns: .7fr 1.8fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .session-intro { grid-template-columns: .6fr 1.5fr; }
  .session-intro > p:last-child { grid-column: 2; }
  .reason-list { margin-left: 8vw; }
  .coach { grid-template-columns: 1fr 1fr; }
  .price-grid { gap: 10px; }
  .price-card { padding: 30px 24px; }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; }

  body { font-size: 15px; line-height: 1.75; padding-bottom: 72px; }
  h1, h2, h3, p, li, span, a, summary { word-break: normal; word-break: auto-phrase; }
  .site-header { min-height: var(--header-h); }
  .site-header.is-scrolled { min-height: var(--header-h); }
  .brand { gap: 9px; }
  .brand-main { font-size: 1rem; }
  .brand-sub { max-width: 95px; padding-left: 9px; font-size: .42rem; }
  .header-cta { display: none; }
  .menu-button { width: 44px; height: 44px; }

  .hero { min-height: 860px; }
  .hero-photo { top: 86px; right: 5vw; left: 5vw; width: auto; height: 54vh; min-height: 430px; border-radius: 18px 18px 55px; }
  .hero-photo img { object-position: 56% center; }
  .hero-vertical { display: none; }
  .hero-title-wrap { top: 49vh; left: 4vw; }
  .hero-kicker { margin-left: 4px; }
  .hero h1 { font-size: clamp(4.4rem, 23vw, 7.5rem); line-height: .69; }
  .hero h1 span:nth-child(2) { margin-left: 14vw; -webkit-text-stroke-width: 1px; }
  .hero h1 span:nth-child(3) { margin-left: 3vw; }
  .hero-copy { right: 5vw; bottom: 75px; width: 62vw; padding: 19px 20px; border-radius: 15px 15px 34px; }
  .hero-copy > p:not(.hero-ja) { display: none; }
  .hero-ja { margin: 0; font-size: 1rem; }
  .arrow-link { margin-top: 12px; font-size: .68rem; }
  .arrow-link span { width: 29px; height: 29px; }
  .statement,
  .program,
  .session,
  .reason,
  .price,
  .flow,
  .faq,
  .reserve { padding-inline: 5vw; }

  .statement { min-height: 720px; padding-top: 85px; padding-bottom: 100px; }
  .statement-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 50px; }
  .statement h2,
  .section-heading h2,
  .session h2,
  .reason h2,
  .coach h2,
  .flow h2,
  .faq h2,
  .reserve h2 { font-size: clamp(2.35rem, 12.5vw, 4.2rem); line-height: 1.06; }
  .statement-grid > div > p { font-size: .9rem; }
  .statement-word { bottom: 5px; font-size: 23vw; }

  .program { padding-top: 85px; padding-bottom: 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .section-heading > p:last-child { grid-column: 1; max-width: 500px; }
  .program-selector { box-shadow: 6px 6px 0 var(--ink); }
  .program-tabs button { min-height: 60px; gap: 7px; padding: 8px 4px; font-size: .82rem; }
  .program-tabs button span { font-size: .45rem; }
  .program-panel { grid-template-columns: 1fr; min-height: 0; }
  .program-visual { min-height: 310px; }
  .program-number { font-size: 31vw; }
  .program-copy { min-height: 390px; padding: 35px 24px; border-top: 2px solid var(--ink); border-left: 0; }
  .program-copy h3 { font-size: clamp(1.8rem, 8vw, 2.7rem); }
  .program-copy > p:not(.program-en) { font-size: .82rem; }
  .program-meter { margin-top: 30px; }

  .session { padding-top: 85px; padding-bottom: 100px; }
  .session-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .session-intro > p:last-child { grid-column: 1; }
  .session-track { grid-template-columns: 1fr; min-height: 0; box-shadow: 6px 6px 0 var(--ink); }
  .session-step { min-height: 260px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .session-step:last-child { border-bottom: 0; }
  .session-step b { font-size: 30vw; }

  .reason { padding-top: 90px; padding-bottom: 100px; }
  .reason-head { grid-template-columns: 1fr; gap: 35px; margin-bottom: 55px; }
  .reason-list { margin-left: 0; }
  .reason-list article { grid-template-columns: 48px 1fr 35px; gap: 12px; min-height: 150px; padding-block: 22px; }
  .reason-list article > p { grid-column: 2; }
  .reason-list article > i { grid-row: 1 / span 2; grid-column: 3; }
  .reason-list article:hover { padding-inline: 8px; }

  .coach { grid-template-columns: 1fr; min-height: 0; }
  .coach-photo { min-height: 590px; clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%); }
  .coach-photo img { object-position: center top; }
  .coach-copy { padding: 65px 5vw 125px; }
  .coach-copy h2 { margin-top: 38px; }
  .coach-big { bottom: 10px; font-size: 20vw; }

  .price { padding-top: 90px; padding-bottom: 100px; }
  .price-grid { grid-template-columns: 1fr; gap: 18px; }
  .price-card { min-height: 500px; border-radius: 0 0 48px; }
  .price-card > p { margin-bottom: 35px; }
  .price-card h3 { min-height: 0; }
  .price-note { text-align: left; }

  .flow { padding-top: 90px; padding-bottom: 100px; }
  .flow-title { grid-template-columns: 1fr; gap: 35px; margin-bottom: 55px; }
  .flow-list { margin-left: 0; }
  .flow-list li { grid-template-columns: 54px 1fr; gap: 14px; min-height: 132px; padding-block: 18px; }
  .flow-list b { font-size: 1.9rem; }
  .flow-list > li > span { grid-column: 2; text-align: left; }

  .faq { grid-template-columns: 1fr; gap: 60px; padding-top: 90px; padding-bottom: 100px; }
  .faq-head h2 { margin-top: 35px; }
  .faq summary { grid-template-columns: 38px 1fr; min-height: 95px; padding-right: 36px; font-size: .9rem; }
  .faq details p { padding: 0 35px 24px 56px; font-size: .8rem; }

  .reserve { min-height: 700px; padding-top: 90px; padding-bottom: 150px; }
  .reserve::before { top: -55px; right: -70px; width: 180px; height: 180px; }
  .reserve-copy { width: 100%; }
  .reserve-copy h2 { margin-top: 38px; }
  .reserve-ghost { top: 41%; font-size: 25vw; }
  .reserve-actions { width: 100%; margin-top: 70px; }
  .reserve-main { min-height: 108px; padding: 20px 24px; border-radius: 55px; box-shadow: 6px 6px 0 var(--blue); }
  .reserve-main > span { font-size: .92rem; }
  .reserve-main i { font-size: 1.8rem; }
  .reserve-actions > p { text-align: center; }
  .site-footer { grid-template-columns: 1fr; gap: 32px; padding: 65px 5vw 25px; }
  .footer-brand b { font-size: 13vw; }
  .copyright { grid-column: 1; margin-top: 20px; }

}

@media (max-width: 390px) {
  .brand-sub { display: none; }
  .hero-copy { width: 69vw; }
  .hero h1 { font-size: 22vw; }
  .program-tabs button span { display: none; }
  .reserve-main { padding-inline: 20px; }
}

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

/* =========================================================
   10 / WORKOUT CLOCK MOTION SYSTEM
   08・09と重なるフェード、マルキー、パララックスを使わず、
   60分の残り時間と区間の切り替えでページ全体を動かす。
   ========================================================= */

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

.opening-countdown {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--ink);
  background: var(--ink);
  pointer-events: none;
}

.opening-countdown.is-finished {
  display: none;
}

.opening-slab {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 2px solid var(--ink);
  overflow: hidden;
  animation: countdown-open .68s var(--ease) forwards;
}

.opening-slab span {
  font-family: var(--display);
  font-size: clamp(3.4rem, 10vw, 10rem);
  line-height: .8;
  letter-spacing: -.08em;
  writing-mode: vertical-rl;
}

.opening-slab small {
  margin-top: 28px;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}

.opening-ready {
  background: var(--cream);
  animation-delay: .58s;
}

.opening-set {
  color: var(--paper);
  background: var(--blue);
  animation-delay: .82s;
}

.opening-move {
  background: var(--orange);
  animation-delay: 1.06s;
}

@keyframes countdown-open {
  0% { transform: translateY(0); }
  100% { transform: translateY(-105%); }
}

.workout-progress {
  position: fixed;
  z-index: 60;
  top: 110px;
  bottom: 26px;
  left: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 42px;
  padding: 12px 4px;
  color: var(--ink);
  background: rgba(243, 240, 232, .94);
  border: 1px solid var(--ink);
  border-left: 0;
  border-radius: 0 0 36px 36px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
  transition: opacity .2s, transform .45s var(--ease);
  backdrop-filter: blur(10px);
}

.workout-progress.is-running {
  opacity: 1;
  transform: none;
}

.workout-time {
  display: grid;
  justify-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}

.workout-time strong {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: .85;
  letter-spacing: -.08em;
}

.workout-time span,
.workout-phase span {
  font-family: var(--display);
  font-size: .36rem;
  letter-spacing: .08em;
}

.workout-phase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 0;
  padding-block: 14px;
  writing-mode: vertical-rl;
}

.workout-phase i {
  color: var(--orange);
  font-family: var(--display);
  font-size: .6rem;
  font-style: normal;
}

.workout-line {
  width: 100%;
  height: 4px;
  background: rgba(23, 23, 25, .18);
  overflow: hidden;
}

.workout-line b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.photo-shutter {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 34%;
  border-right: 2px solid var(--ink);
  transform: translateY(0);
  transition: transform .72s var(--ease);
}

.shutter-one {
  left: 0;
  background: var(--cream);
  transition-delay: .1s;
}

.shutter-two {
  left: 33%;
  background: var(--blue);
  transition-delay: .24s;
}

.shutter-three {
  right: 0;
  background: var(--orange);
  transition-delay: .38s;
}

body.is-ready .photo-shutter {
  transform: translateY(-105%);
}

.hero-photo {
  transform: none;
}

.hero-photo img {
  animation: none;
  transform: none;
}

.hero h1 span {
  animation: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .8s var(--ease);
}

body.is-ready .hero h1 span {
  clip-path: inset(0 0 0 0);
}

body.is-ready .hero h1 span:nth-child(1) { transition-delay: .15s; }
body.is-ready .hero h1 span:nth-child(2) { transition-delay: .28s; }
body.is-ready .hero h1 span:nth-child(3) { transition-delay: .41s; }

.hero-timecode {
  position: absolute;
  z-index: 5;
  top: 14vh;
  right: 4vw;
  display: grid;
  width: 145px;
  padding: 15px 16px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--cream);
  box-shadow: 6px 6px 0 var(--orange);
  line-height: 1;
}

.hero-timecode span,
.hero-timecode small {
  font-family: var(--display);
  font-size: .5rem;
  letter-spacing: .08em;
}

.hero-timecode strong {
  margin: 9px 0;
  font-family: var(--display);
  font-size: 1.85rem;
  letter-spacing: -.06em;
}

.js .scene h2 {
  transform: none;
  transition: none;
}

.statement-word,
.coach-big,
.reserve-ghost {
  transform: none;
}

.program-panel {
  position: relative;
  isolation: isolate;
}

.program-shutter {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: block;
  background: var(--orange);
  border-inline: 2px solid var(--ink);
  transform: translateX(-102%);
  pointer-events: none;
}

.program-panel.is-switching .program-shutter {
  animation: program-shutter .65s var(--ease) both;
}

@keyframes program-shutter {
  0% { transform: translateX(-102%); }
  46%, 54% { transform: translateX(0); }
  100% { transform: translateX(102%); }
}

.program-visual img,
.program-visual.is-changing img {
  opacity: 1;
  filter: none;
  transform: none;
  transition: object-position .45s var(--ease);
}

.session-step,
.reason-list article,
.flow-list li {
  transition: opacity .24s, box-shadow .24s, color .24s, background .24s;
}

.session-step:not(.is-current, .is-passed),
.reason-list article:not(.is-current, .is-passed),
.flow-list li:not(.is-current, .is-passed) {
  opacity: .7;
}

.session-step.is-current {
  box-shadow: inset 0 -12px 0 var(--orange);
}

.session-step.is-current b {
  opacity: .7;
}

.reason-list article:hover {
  padding-inline: 0;
}

.reason-list article.is-current {
  color: var(--orange);
}

.reason-list article.is-passed,
.flow-list li.is-passed {
  opacity: .86;
}

.flow-list li.is-current {
  background: rgba(255, 255, 255, .12);
}

.js .coach-photo {
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.coach-photo img,
.coach-photo:hover img {
  transform: none;
  transition: none;
}

.price-card,
.price-card:hover {
  border-radius: 0 0 70px 0;
  transform: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .opening-countdown {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .opening-slab {
    grid-template-columns: 1fr auto;
    align-content: center;
    justify-items: start;
    padding-inline: 8vw;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    animation-name: countdown-open-mobile;
  }

  .opening-slab span,
  .opening-slab small {
    writing-mode: horizontal-tb;
  }

  .opening-slab span {
    font-size: 18vw;
  }

  .opening-slab small {
    align-self: end;
    margin: 0 0 9px;
    font-size: .55rem;
  }

  @keyframes countdown-open-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(105%); }
  }

  .workout-progress {
    top: var(--header-h);
    right: 0;
    bottom: auto;
    left: 0;
    grid-template-columns: auto 1fr;
    grid-template-rows: 34px 3px;
    width: auto;
    height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 0;
    transform: translateY(-120%);
  }

  .workout-progress.is-running {
    transform: none;
  }

  .workout-time {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px 0 0;
    border: 0;
    border-right: 1px solid var(--ink);
  }

  .workout-time strong {
    font-size: 1.2rem;
  }

  .workout-phase {
    flex-direction: row;
    justify-content: flex-end;
    gap: 7px;
    padding: 0;
    writing-mode: horizontal-tb;
  }

  .workout-line {
    grid-column: 1 / -1;
    height: 3px;
  }

  .hero-timecode {
    top: 40vh;
    right: 5vw;
    width: 105px;
    padding: 10px;
    box-shadow: 4px 4px 0 var(--orange);
  }

  .hero-timecode strong {
    font-size: 1.25rem;
  }

  .js .coach-photo {
    clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
  }

  .price-card,
  .price-card:hover {
    border-radius: 0 0 48px;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .workout-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-countdown {
    display: none;
  }

  .photo-shutter {
    display: none;
  }

  .hero h1 span {
    clip-path: none;
  }

  .js .scene h2 {
    transform: none;
  }

  .js .coach-photo {
    clip-path: none;
  }
}
