:root {
    --ink: #090b0f;
    --navy: #071629;
    --blue: #0b2340;
    --blue2: #102f54;
    --paper: #f0eee9;
    --muted: #a4a9b0;
    --line: rgba(255, 255, 255, .16);
    --darkline: rgba(9, 11, 15, .16);
    --serif: 'Noto Serif JP', serif;
    --display: 'Cormorant Garamond', serif;
    --sans: 'Oswald', sans-serif;
    --ease: cubic-bezier(.22, .75, .2, 1)
}
* {
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--serif);
    overflow-x: hidden
}
.site-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .035;
    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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E")
}
.loader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity .8s var(--ease), visibility .8s
}
.loader span {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 5rem);
    letter-spacing: .12em
}
.loader.hide {
    opacity: 0;
    visibility: hidden
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 90;
    color: #fff;
    mix-blend-mode: difference
}
.logo {
    font-family: var(--display);
    font-size: 28px;
    letter-spacing: .04em;
    color: inherit;
    text-decoration: none
}
.logo span {
    font-weight: 700
}
.header-meta {
    display: flex;
    gap: 34px;
    font: 11px var(--sans);
    letter-spacing: .18em
}
.header-cta {
    justify-self: end;
    color: inherit;
    text-decoration: none;
    font: 11px var(--sans);
    letter-spacing: .16em
}
.header-cta span {
    font-size: 16px;
    margin-left: 10px
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff
}
.section-dark {
    background: var(--ink);
    color: var(--paper)
}
.section-blue {
    background: var(--navy);
    color: var(--paper)
}
.section-light {
    background: var(--paper);
    color: var(--ink)
}
.hero {
    height: 100svh;
    min-height: 720px;
    position: relative;
    overflow: hidden
}
.hero-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .36) 50%, rgba(0, 0, 0, .55) 100%), linear-gradient(135deg, #151b23, #0b1119 45%, #10263e);
    transform: scale(1.04);
    transition: transform 1.4s var(--ease)
}
.hero:hover .hero-image {
    transform: scale(1.01)
}
.image-placeholder {
    position: relative;
    overflow: hidden
}
.image-placeholder:after {
    content: attr(data-label);
    position: absolute;
    left: 18px;
    bottom: 18px;
    font: 10px var(--sans);
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .45);
    border-left: 1px solid rgba(255, 255, 255, .35);
    padding-left: 10px
}
.hero-content {
    position: absolute;
    left: 9vw;
    top: 50%;
    transform: translateY(-40%);
    max-width: 850px
}
.eyebrow {
    font: 11px var(--sans);
    letter-spacing: .22em;
    margin: 0 0 24px;
    text-transform: uppercase
}
.hero h1 {
    /* 修正前: font-size: clamp(4rem, 9vw, 9rem); */
    /* 修正後: スマホなどの狭い画面で小さくなりすぎて意図せず折り返されないよう最小値を調整 */
    font-size: clamp(3rem, 9vw, 9rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: .03em;
    margin: 0;
    
    /* 追加：日本語の不自然な途中改行を防ぎ、単語単位での改行制御を有効化 */
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero h1 em {
    font-style: normal; /* 斜体を無効化して通常の立体にする */
    white-space: nowrap; /* 「再構築する。」の途中や最後の句点での改行を防ぐ */
}



/* 修正あり：行ごとにブロック化して確実に余白を調整できるように変更 */
.hero h1 .hero-line {
    display: block;
}
.hero h1 .hero-line:not(:last-child) {
    margin-bottom: 0.38em; /* ここで1行目と2行目の間のスペースを調整可能 */
}
/* 修正あり：漢字部分のスタイル定義 */
.hero h1 .kanji {
    font-size: 1em;
}

/* 修正あり：ひらがな・句読点部分を約4分の3（0.75em）に縮小 */
.hero h1 .kana {
    font-style: normal;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.02em;
}

/* 修正あり：em自体の斜体を消しつつ、内部の要素を制御 */
.hero h1 em {
    font-style: normal;
    white-space: nowrap;
}

.statement h2 em, .program-intro h2 em, .manifesto-text em, .reservation h2 em {
    font-style: normal;
    font-weight: 400
}
.hero-copy {
    margin: 34px 0 40px;
    font-size: 14px;
    line-height: 2;
    color: #d2d5d8
}
.line-link {
    display: inline-flex;
    gap: 30px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    padding-bottom: 12px;
    font: 11px var(--sans);
    letter-spacing: .2em
}
.line-link span {
    font-size: 15px
}
.hero-side-copy {
    position: absolute;
    right: 4vw;
    bottom: 60px;
    writing-mode: vertical-rl;
    font: 10px var(--sans);
    letter-spacing: .2em;
    color: #aeb3b8;
    line-height: 1.8
}
.hero-index {
    position: absolute;
    right: 4vw;
    top: 48%;
    font: 11px var(--sans);
    letter-spacing: .15em
}
.hero-index span {
    opacity: .35;
    margin: 0 7px
}
.statement {
    min-height: 850px;
    padding: 10vw 10vw;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}
.statement-vertical {
    position: absolute;
    left: 3vw;
    top: 50%;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    opacity: .08
}
.section-number {
    position: absolute;
    top: 80px;
    left: 10vw;
    font: 11px var(--sans);
    letter-spacing: .2em;
    opacity: .65
}
.statement-main {
    margin-left: 15%;
    max-width: 820px
}
.statement h2 {
    /* 修正前: font-size: clamp(2.7rem, 6vw, 6.5rem); */
    /* 修正後: 狭い画面での意図しない折り返しを防ぐため最小値を調整 */
    font-size: clamp(2.2rem, 6vw, 6.5rem);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.06em;
    margin: 0 0 48px;
    
    /* 追加：日本語の不自然な途中改行を防ぐ */
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 追加：行ごとにブロック化して余白を確実にコントロール */
.statement h2 .statement-line {
    display: block;
}
.statement h2 .statement-line:not(:last-child) {
    margin-bottom: 0.35em;
}

/* 追加：漢字以外の文字サイズを縮小（4分の3サイズに） */
.statement h2 .kanji {
    font-size: 1em;
}
.statement h2 .kana {
    font-style: normal;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.02em;
}

/* 追加：emタグの斜体を解除し、句読点などが意図せず落ちるのを防止 */
.statement h2 em {
    font-style: normal;
    white-space: nowrap;
}

.statement-main p {
    white-space: nowrap
}
.statement-main>p:last-child {
    font-size: 15px;
    line-height: 2.25
}
.statement-note {
    position: absolute;
    right: 9vw;
    bottom: 11vw;
    font: 10px var(--sans);
    letter-spacing: .14em;
    line-height: 2;
    color: #8190a1;
    text-align: right
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 90px
}
.section-head.light {
    color: #fff
}
.section-title-en {
    font: 11px var(--sans);
    letter-spacing: .2em;
    opacity: .5
}
.about, .program, .voices, .faq {
    padding: 10vw 9vw
}
.trainer-grid {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) 1.1fr;
    gap: 8vw
}
.trainer-image {
    min-height: 650px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
}
.trainer-name {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid var(--darkline);
    padding-bottom: 18px;
    margin-bottom: 36px
}
.trainer-name span {
    font: clamp(3.5rem, 8vw, 8rem) var(--display);
    letter-spacing: -.04em
}
.trainer-name small {
    font: 10px var(--sans);
    letter-spacing: .18em;
    padding-bottom: 13px
}
.trainer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--darkline);
    margin-bottom: 35px
}
.trainer-stats div {
    padding: 20px 0;
    border-right: 1px solid var(--darkline);
    display: flex;
    align-items: baseline;
    gap: 5px
}
.trainer-stats div:last-child {
    border: 0
}
.trainer-stats strong {
    font: clamp(2.5rem, 5vw, 4.5rem) var(--display);
    font-weight: 500
}
.trainer-stats span {
    font: 9px var(--sans);
    letter-spacing: .12em;
    opacity: .6
}
.trainer-content p {
    font-size: 14px;
    line-height: 2.15;
    max-width: 680px
}
.trainer-content .lead {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 28px
}
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 42px 0 20px
}
.credentials span {
    font: 9px var(--sans);
    letter-spacing: .12em;
    border: 1px solid #b5b2ac;
    padding: 9px 12px
}
.fiction-note {
    font-size: 10px !important;
    color: #7b7c7d !important;
    line-height: 1.7 !important
}
.manifesto {
    min-height: 720px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}
.manifesto-number {
    position: absolute;
    left: 7vw;
    top: 8vw;
    font: 11px var(--sans);
    letter-spacing: .2em;
    color: #708097
}
.manifesto-text {
    text-align: center;
    font-size: clamp(3rem, 7.5vw, 8.5rem); /* 画面幅に応じて滑らかに変化（大きすぎて意図せず改行されるのを防ぐため調整） */
    line-height: 1.1;
    letter-spacing: .04em;
    font-weight: 500;
}

.manifesto-text .line {
    display: inline-block;
    white-space: nowrap;
    line-height:1.3;
}

.manifesto-text .kanji {
    font-size: 1em;
}

.manifesto-text .kana {
    font-style: normal;
    font-weight: 400;
    font-size: 0.75em; /* 漢字と比較して4分の3（75%）のサイズにする */
}
.manifesto-sub {
    position: absolute;
    right: 6vw;
    bottom: 8vw;
    font: 10px var(--sans);
    letter-spacing: .2em;
    line-height: 2;
    color: #63748a;
    text-align: right
}
.program-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 100px;
}

.program-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 100px;
}

.program-intro h2 {
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 1.12;
  font-weight: 200;
  letter-spacing: -0.06em;
  margin: 0;
  white-space: nowrap;
  line-height:1.3;
}

.program-intro h2 .jp-line {
  display: inline-block;
}

.program-intro h2 .emphasis {
  font-size: 0.9em;
}

.program-intro p {
  font-size: 14px;
  line-height: 2.1;
  margin: 0;
}


/* =========================
   Tablet
========================= */

@media (max-width: 900px) {
  .program-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }

  .program-intro h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .program-intro p {
    max-width: 600px;
  }
}


/* =========================
   Mobile
========================= */

@media (max-width: 600px) {
  .program-intro {
    gap: 30px;
    margin-bottom: 55px;
  }

  .program-intro h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: -0.055em;
  }

  .program-intro h2 .emphasis {
    font-size: 0.88em;
  }

  .program-intro p {
    font-size: 13px;
    line-height: 2;
  }
}


.program-list {
    border-top: 1px solid var(--darkline)
}
.program-card {
    display: grid;
    grid-template-columns: 60px 1fr 1.2fr 180px;
    gap: 30px;
    align-items: start;
    padding: 35px 0;
    border-bottom: 1px solid var(--darkline);
    transition: padding .4s var(--ease), background .4s
}
.program-card:hover {
    padding-left: 18px;
    background: rgba(10, 20, 30, .05)
}
.program-card>span {
    font: 11px var(--sans);
    letter-spacing: .1em;
    opacity: .45
}
.program-card h3 {
    font: clamp(1.6rem, 3vw, 3rem) var(--display);
    font-weight: 500;
    margin: 0
}
.program-card p {
    font-size: 13px;
    line-height: 1.9;
    margin: 0
}
.program-card b {
    font: 9px var(--sans);
    letter-spacing: .16em;
    font-weight: 400;
    opacity: .55
}
.results {
    position: relative;
    min-height: 700px;
    padding: 9vw;
    overflow: hidden
}
.results-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b1a2d, #172d44 55%, #070d14);
    opacity: .45
}
.results-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 21, .95), rgba(5, 12, 21, .55))
}
.results>*:not(.results-bg):not(.results-overlay) {
    position: relative;
    z-index: 2
}
.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 150px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}
.metric {
    padding: 35px 25px 30px 0;
    border-right: 1px solid var(--line)
}
.metric:not(:first-child) {
    padding-left: 30px
}
.metric:last-child {
    border: 0
}
.metric strong {
    display: block;
    font: clamp(4rem, 7vw, 7rem) var(--display);
    font-weight: 400;
    line-height: .9
}
.metric span {
    display: block;
    font: 9px var(--sans);
    letter-spacing: .16em;
    color: #aab5c2;
    margin-top: 18px
}
.results-caption {
    font: 9px var(--sans);
    letter-spacing: .12em;
    color: #65768a;
    margin-top: 22px
}
.voice-slider {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 30px
}
.voice-track {
    position: relative;
    min-height: 470px;
    overflow: hidden
}
.voice-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2vw;
    align-items: center;
    opacity: 0;
    transform: translateX(35px);
    pointer-events: none;
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}
.voice-slide.active {
    opacity: 1;
    transform: none;
    pointer-events: auto
}
.client-photo {
    height: 470px;
    overflow: hidden;
}

.client-photo img {
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
}
.voice-copy {
    max-width: 670px
}
.voice-index {
    font: 10px var(--sans);
    letter-spacing: .16em;
    color: #7b7d80
}
.voice-copy h3 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -.04em;
    margin: 25px 0 30px
}
.voice-copy>p:not(.voice-index) {
    font-size: 14px;
    line-height: 2.1;
    color: #3e4145
}
.client-meta {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid var(--darkline);
    font: 10px var(--sans);
    letter-spacing: .12em
}
.client-meta span {
    opacity: .5
}
.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--darkline);
    background: none;
    color: inherit;
    font-size: 17px;
    cursor: pointer;
    transition: .3s
}
.slider-btn:hover {
    background: var(--ink);
    color: #fff
}
.center {
    text-align: center;
    margin-top: 40px
}
.price {
    padding: 10vw 9vw
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 10px
}
.price-card {
    background: var(--ink);
    padding: 55px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative
}
.price-card.featured {
    background: var(--blue)
}
.price-card .tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    background: #d8d3c8;
    color: #111;
    font: 9px var(--sans);
    letter-spacing: .15em
}
.price-card p {
    font: 11px var(--sans);
    letter-spacing: .18em;
    margin: 0 0 auto;
    color: #9ca6b2
}
.price-card strong {
    font: clamp(3.5rem, 6vw, 6rem) var(--display);
    font-weight: 400;
    line-height: 1
}
.price-card span {
    font: 10px var(--sans);
    letter-spacing: .13em;
    color: #8f98a4;
    margin-top: 15px
}
.price-card a {
    color: #fff;
    text-decoration: none;
    font: 10px var(--sans);
    letter-spacing: .18em;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-top: 55px;
    width: max-content
}
.complete-plan {
    margin-top: 1px;
    border: 1px solid var(--line);
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr 180px;
    gap: 40px;
    align-items: center
}
.complete-plan span {
    font: 10px var(--sans);
    letter-spacing: .18em;
    color: #8493a5
}
.complete-plan h3 {
    font: clamp(1.3rem, 2.3vw, 2.3rem);
    font-weight: 500;
    margin: 10px 0 0
}
.complete-plan p {
    font-size: 13px;
    line-height: 1.9;
    color: #b1b6bd
}
.complete-plan>strong {
    font: 9px var(--sans);
    letter-spacing: .14em
}
.faq-list {
    border-top: 1px solid var(--darkline)
}
details {
    border-bottom: 1px solid var(--darkline)
}
summary {
    list-style: none;
    display: grid;
    grid-template-columns: 70px 1fr 30px;
    align-items: center;
    gap: 25px;
    padding: 28px 0;
    cursor: pointer
}
summary::-webkit-details-marker {
    display: none
}
summary span {
    font: 10px var(--sans);
    opacity: .45
}
summary strong {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500
}
summary i {
    font: normal 24px var(--display);
    transition: transform .3s
}
details[open] summary i {
    transform: rotate(45deg)
}
.faq-answer {
    padding: 0 60px 32px 95px;
    font-size: 13px;
    line-height: 2;
    color: #5c6065;
    max-width: 850px
}
.reservation {
    min-height: 780px;
    padding: 11vw 12vw;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}
.reservation-vertical {
    position: absolute;
    left: 3vw;
    top: 50%;
    writing-mode: vertical-rl;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 900;
    opacity: .05;
    transform: translateY(-50%)
}

.reservation h2 {
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.06em;
    margin: 0 0 35px
}
.reservation-content>p:not(.eyebrow) {
    font-size: 14px;
    line-height: 2.1;
    color: #b7c0ca;
    max-width: 620px
}
.big-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 620px);
    color: #fff;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding: 22px 0;
    margin: 50px 0 20px;
    font: 12px var(--sans);
    letter-spacing: .2em
}
.big-cta span {
    font-size: 20px
}
.reservation-content small {
    font: 9px var(--sans);
    letter-spacing: .14em;
    color: #8190a1
}
.reservation-mark {
    position: absolute;
    right: 5vw;
    bottom: 5vw;
    font: clamp(6rem, 15vw, 15rem) var(--display);
    line-height: .7;
    font-weight: 700;
    opacity: .035
}
.footer {
    padding: 6vw 5vw 25px
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
    border-bottom: 1px solid var(--line);
    padding-bottom: 70px
}
.logo.large {
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: .7
}
.footer-top p {
    font: 10px var(--sans);
    letter-spacing: .18em;
    line-height: 2;
    color: #738196
}
.back-top {
    justify-self: end;
    color: #fff;
    text-decoration: none;
    font: 10px var(--sans);
    letter-spacing: .18em
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    font: 9px var(--sans);
    letter-spacing: .13em;
    color: #5d6876
}
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 80;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15vw;
    gap: 25px;
    transform: translateY(-100%);
    transition: transform .7s var(--ease)
}
.mobile-menu.open {
    transform: none
}
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font: clamp(2.5rem, 10vw, 5rem) var(--display);
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px
}
.reveal, .reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}
.hero .reveal {
    opacity: 1;
    transform: translateY(-40%);
    transition-delay: .5s
}
.reveal-section.is-visible {
    opacity: 1;
    transform: none
}
@media(max-width:900px) {
    .header {
        grid-template-columns: 1fr auto;
        height: 70px
    }
    .header-meta, .header-cta {
        display: none
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        justify-self: end
    }
    .menu-toggle span {
        display: block;
        width: 28px;
        height: 1px;
        background: #fff;
        transition: .3s
    }
    .header.open .menu-toggle span:first-child {
        transform: translateY(3.5px) rotate(45deg)
    }
    .header.open .menu-toggle span:last-child {
        transform: translateY(-3.5px) rotate(-45deg)
    }
    .hero {
        min-height: 680px
    }
    .hero-content {
        left: 7vw;
        right: 7vw
    }
    .hero-side-copy {
        display: none
    }
    .statement {
        padding: 130px 9vw;
        min-height: 700px
    }
    .statement-main {
        margin-left: 0
    }
    .statement-main p {
        white-space: normal
    }
    .statement-vertical {
        left: auto;
        right: 5vw;
        opacity: .06
    }
    .statement-note {
        position: static;
        margin-top: 80px
    }
    .about, .program, .voices, .faq, .price {
        padding: 100px 7vw
    }
    .section-head {
        margin-bottom: 55px
    }
    .trainer-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }
    .trainer-image {
        min-height: 520px
    }
    .program-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 60px
    }
    .program-list .program-card {
        grid-template-columns: 35px 1fr;
        gap: 15px
    }
    .program-card p, .program-card b {
        grid-column: 2
    }
    .metrics {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 90px
    }
    .metric:nth-child(2) {
        border-right: 0
    }
    .metric:nth-child(3), .metric:nth-child(4) {
        border-top: 1px solid var(--line)
    }
    .voice-slider {
        grid-template-columns: 40px 1fr 40px;
        gap: 8px
    }
    .voice-slide {
        grid-template-columns: 1fr;
        gap: 30px
    }
    .voice-track {
        min-height: 760px
    }
.client-photo {
    width: 280px; /* 画像エリアの幅を固定して右側テキストを圧迫させない */
    height: 340px;
    flex-shrink: 0;
    overflow: hidden;
}


    .voice-copy h3 {
        margin: 15px 0 20px
    }
    .price-grid {
        grid-template-columns: 1fr
    }
    .price-card {
        min-height: 330px
    }
    .complete-plan {

        grid-template-columns: 1fr;
        padding: 30px
    }
    .reservation {
        padding: 120px 9vw;
        min-height: 700px
    }
    .reservation-vertical {
        display: none
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px
    }

/* 予約セクションのタイトル */
.reservation-title {
    text-align: left;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1.1;
    font-weight: 200;
    letter-spacing: -0.06em;
    margin: 0 0 35px;
    white-space: normal;
}

.reservation-title .line {
    display: block;
    white-space: nowrap;
}

.reservation-title .kanji {
    font-size: 1em;
}

.reservation-title .kana {
    font-style: normal;
    font-weight: 200;
    font-size: 0.75em;
}

    .back-top {
        justify-self: start
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px
    }
}
@media(max-width:600px) {
    .reservation-title {
        font-size: clamp(2.8rem, 10.5vw, 4.5rem);
    }

    .hero h1 {
        font-size: clamp(3.6rem, 16vw, 6rem)
    }
    .hero-copy {
        font-size: 12px
    }
    .hero-index {
        top: auto;
        bottom: 28px
    }
    .section-head {
        display: block
    }
    .section-title-en {
        display: block;
        margin-top: 10px
    }
    .statement h2 {
        font-size: clamp(2.6rem, 11vw, 4.5rem)
    }
    .trainer-image {
        min-height: 440px
    }
    .trainer-name {
        display: block
    }
    .trainer-name small {
        display: block;
        margin-top: 8px
    }
    .trainer-stats strong {
        font-size: 2.8rem
    }
    .manifesto {
        min-height: 580px;
        padding: 30px
    }
    .manifesto-text {
        font-size: 17vw
    }
    .manifesto-sub {
        font-size: 8px;
        right: 6vw
    }
    .results {
        padding: 100px 7vw
    }
    .metric {
        padding: 28px 10px 25px 0 !important
    }
    .metric strong {
        font-size: 3.5rem
    }
    .metric span {
        font-size: 8px
    }
    .voice-slider {
        grid-template-columns: 30px 1fr 30px
    }
    .slider-btn {
        width: 38px;
        height: 38px
    }
    .voice-track {
        min-height: 750px
    }
    .client-photo {
        height: 290px
    }
    .voice-copy h3 {
        font-size: 2rem
    }
    .client-meta {
        display: block;
        line-height: 2
    }
    .client-meta span {
        display: block
    }
    .faq-answer {
        padding: 0 0 28px 40px
    }
    .summary {
        grid-template-columns: 40px 1fr 25px;
        gap: 10px
    }
    .reservation h2 {
        font-size: clamp(3rem, 13vw, 5rem)
    }
    .big-cta {
        font-size: 10px
    }
    .footer {
        padding: 80px 7vw 20px
    }
    .footer-bottom {
        font-size: 8px
    }
}