/*
Theme Name: Jumpath Athlete LP
Theme URI: https://example.com/jumpath-athlete-lp
Author: ChatGPT
Author URI: https://openai.com/
Description: Jumpath向けのアスリート専門ジャンプ特化パーソナルトレーニングLPテーマ。白を基調に黒・金を効かせた現代的な1ページ構成。Customizerから画像・動画・CTA・色を差し替え可能。
Version: 1.9.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: jumpath-athlete-lp
*/

:root {
    --jp-black: #0c0d10;
    --jp-ink: #15161a;
    --jp-ink-2: #2d3037;
    --jp-gray: #73777f;
    --jp-soft: #f6f2ea;
    --jp-cream: #f6f2ea;
    --jp-white: #fbfaf7;
    --jp-line: rgba(12, 13, 16, .12);
    --jp-gold: #be8f2d;
    --jp-gold-2: #e3bc55;
    --jp-accent: #8f5f28;
    --jp-green: #2d755b;
    --jp-blue: #25577c;
    --shadow: 0 24px 70px rgba(12, 13, 16, .14);
    --shadow-dark: 0 28px 90px rgba(0, 0, 0, .38);
    --radius: 26px;
    --container: 1160px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--jp-white);
    color: var(--jp-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
    font-feature-settings: "palt";
    line-height: 1.85;
    letter-spacing: .035em;
    overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--jp-gold); color: var(--jp-black); }
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    transform: translateY(-140%);
    background: var(--jp-black);
    color: #fff;
    padding: .7rem 1rem;
    border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.jp-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 999;
    background: transparent;
}
.jp-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--jp-gold), var(--jp-gold-2));
    box-shadow: 0 0 18px rgba(227, 188, 85, .6);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 18px clamp(18px, 3vw, 42px);
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(251, 250, 247, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(12, 13, 16, .08);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    font-size: 1.18rem;
    letter-spacing: .03em;
    color: var(--jp-ink);
}
.hero .brand { color: #fff; }
.brand-mark { width: 34px; height: 34px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.custom-logo { max-width: 180px; height: auto; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: .76rem;
    letter-spacing: .14em;
    font-weight: 760;
}
.site-nav a:not(.nav-cta) {
    position: relative;
    color: rgba(18, 19, 23, .82);
}
.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--jp-gold);
    transition: width .35s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--jp-black);
    color: #fff;
    box-shadow: 0 14px 34px rgba(12, 13, 16, .22);
}
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(12, 13, 16, .15);
    background: rgba(251, 250, 247, .88);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--jp-ink); transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section { padding: clamp(84px, 10vw, 140px) 0; }
.section-soft { padding: clamp(84px, 10vw, 140px) 0; background: var(--jp-soft); }
.section-dark {
    position: relative;
    padding: clamp(92px, 11vw, 150px) 0;
    background: var(--jp-black);
    color: #fff;
    overflow: hidden;
}
.section-inner {
    width: min(calc(100% - 36px), var(--container));
    margin-inline: auto;
    position: relative;
    z-index: 2;
}
.two-col {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}
.align-start { align-items: start; }
.section-heading { position: relative; }
.eyebrow {
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--jp-accent);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
    opacity: .8;
}
.eyebrow.gold { color: var(--jp-gold-2); }
.vertical-label {
    position: absolute;
    left: -76px;
    top: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 900;
    font-size: 3.1rem;
    line-height: 1;
    color: rgba(12, 13, 16, .065);
    letter-spacing: .05em;
    z-index: -1;
}
.vertical-label.light { color: rgba(255,255,255,.12); }
h1, h2, h3 { margin: 0; line-height: 1.18; letter-spacing: .02em; }
h1 {
    font-size: clamp(2.75rem, 7vw, 6.8rem);
    font-weight: 950;
    letter-spacing: -.045em;
}
h1 span { color: var(--jp-gold-2); }
h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 940;
    letter-spacing: -.04em;
}
h3 { font-size: clamp(1.12rem, 1.6vw, 1.42rem); font-weight: 890; }
p { margin: 0; }
.text-block p + p { margin-top: 1.1rem; }
.section-title-center {
    max-width: 820px;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);
}
.section-title-center .eyebrow { justify-content: center; }
.section-title-center p:last-child { margin-top: 18px; color: var(--jp-gray); }

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .05em;
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease;
}
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.48), transparent 34%);
    z-index: -1;
}
.button-primary {
    background: linear-gradient(135deg, var(--jp-gold), var(--jp-gold-2));
    color: var(--jp-black);
    box-shadow: 0 18px 38px rgba(190, 143, 45, .28);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(190, 143, 45, .33); }
.button span { font-size: 1.25em; }
.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-note { color: rgba(255,255,255,.78); font-size: .86rem; }
.section:not(.section-dark) .cta-note, .section-soft .cta-note { color: var(--jp-gray); }

.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 76px;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,13,16,.96), rgba(12,13,16,.54) 48%, rgba(12,13,16,.18));
}
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(12,13,16,.06), rgba(12,13,16,.78)),
        radial-gradient(circle at 18% 22%, rgba(190,143,45,.23), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 84px);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: clamp(32px, 6vw, 74px);
    align-items: end;
}
.hero-copy { max-width: 850px; }
.hero-lead {
    max-width: 760px;
    margin: 24px 0 34px;
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    color: rgba(255,255,255,.86);
}
.hero-panel {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    background: rgba(12, 13, 16, .45);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-dark);
}
.panel-title { font-size: .72rem; letter-spacing: .2em; color: var(--jp-gold-2); font-weight: 900; margin-bottom: 16px; }
.hero-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hero-panel li {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.11);
}
.hero-panel strong { display: block; font-size: 1rem; }
.hero-panel span { display: block; color: rgba(255,255,255,.67); font-size: .82rem; margin-top: 2px; }
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.11);
    background: rgba(12, 13, 16, .72);
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .22em;
    white-space: nowrap;
}
.hero-marquee span { display: inline-block; padding-right: 2rem; animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }

.intro { background: #fff; }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: clamp(42px, 6vw, 76px);
}
.pain-card {
    min-height: 250px;
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f8f5ef);
    border: 1px solid var(--jp-line);
    box-shadow: 0 16px 48px rgba(12, 13, 16, .06);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pain-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pain-card span { color: var(--jp-gold); font-weight: 940; letter-spacing: .18em; }
.pain-card h3 { margin-top: 54px; }
.pain-card p { margin-top: 12px; color: var(--jp-gray); }
.split-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(32px, 6vw, 76px);
    padding: clamp(32px, 5vw, 60px);
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(12,13,16,.1);
    box-shadow: 0 24px 70px rgba(12, 13, 16, .06);
}
.problem .split-card { background: #fff; }

.change-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.change-card {
    grid-column: span 2;
    min-height: 280px;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--jp-line);
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(12,13,16,.05);
}
.change-card:nth-child(4), .change-card:nth-child(5) { grid-column: span 3; }
.change-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    right: -50px;
    top: -50px;
    background: rgba(190,143,45,.14);
}
.change-card span {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--jp-black);
    color: #fff;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.change-card h3 { margin-top: 72px; }
.change-card p { margin-top: 12px; color: var(--jp-gray); }

.sports { padding-bottom: 110px; }
.sports::before {
    content: "SPORTS";
    position: absolute;
    right: -2vw;
    top: 7vw;
    font-size: clamp(5rem, 13vw, 14rem);
    line-height: .8;
    font-weight: 950;
    color: rgba(255,255,255,.04);
    letter-spacing: -.06em;
}
.sports-head p:last-child { color: rgba(255,255,255,.72); max-width: 520px; }
.sports-slider {
    width: min(calc(100% - 36px), 1320px);
    margin: 56px auto 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 330px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--jp-gold) rgba(255,255,255,.08);
}
.sport-card {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    background: #222;
    box-shadow: var(--shadow-dark);
}
.sport-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; transition: transform .7s var(--ease); }
.sport-card:hover img { transform: scale(1.06); }
.sport-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.78));
}
.sport-card div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 24px; }
.sport-card span { color: var(--jp-gold-2); font-size: .68rem; font-weight: 900; letter-spacing: .16em; }
.sport-card h3 { margin-top: 6px; color: #fff; }

.reason-list { display: grid; gap: 14px; max-width: 980px; }
.reason-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 24px;
    align-items: start;
    padding: 26px;
    border: 1px solid var(--jp-line);
    border-radius: 22px;
    background: #fff;
    transition: background .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}
.reason-item:hover { background: var(--jp-black); color: #fff; transform: translateX(8px); }
.reason-item:hover p { color: rgba(255,255,255,.72); }
.reason-num {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--jp-gold);
    color: var(--jp-black);
    font-weight: 950;
}
.reason-item p { margin-top: 10px; color: var(--jp-gray); }

.trainer-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(36px, 7vw, 88px);
    align-items: center;
}
.trainer-image {
    position: relative;
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    min-height: 580px;
    box-shadow: var(--shadow);
    background: #ddd;
}
.trainer-image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
}
.trainer-image img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.trainer-copy { position: relative; }
.trainer-copy p:not(.eyebrow):not(.vertical-label) { color: var(--jp-ink-2); margin-top: 18px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trainer-tags span {
    padding: 8px 13px;
    border: 1px solid rgba(12,13,16,.15);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 850;
    color: var(--jp-ink-2);
}

.results::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% 16%, rgba(190,143,45,.22), transparent 34%), repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 90px);
    pointer-events: none;
}
.results-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(34px, 6vw, 80px);
    align-items: start;
}
.results-copy { position: sticky; top: 110px; }
.results-img {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.results-box {
    padding: clamp(26px, 4vw, 42px);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(20px);
}
.results-box h3 { color: var(--jp-gold-2); margin: 8px 0 12px; }
.results-box h3:not(:first-child) { margin-top: 30px; }
.results-box ul { margin: 0; padding-left: 1.1em; color: rgba(255,255,255,.8); }
.results-box li + li { margin-top: 7px; }

.price-card {
    margin: 28px 0 24px;
    padding: 24px;
    border-radius: 22px;
    background: var(--jp-black);
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}
.price-card span { color: var(--jp-gold-2); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.price-card strong { font-size: 1.35rem; }
.flow-list { display: grid; gap: 16px; }
.flow-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--jp-line);
    box-shadow: 0 16px 44px rgba(12,13,16,.05);
}
.flow-item span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--jp-gold);
    color: var(--jp-black);
    font-weight: 950;
}
.flow-item p { color: var(--jp-gray); margin-top: 8px; }

.style-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.style-card {
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 56px rgba(12,13,16,.08);
}
.style-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.style-card div { padding: 28px; }
.style-card span { color: var(--jp-gold); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.style-card h3 { margin-top: 8px; }
.style-card p { margin-top: 12px; color: var(--jp-gray); }
.style-card ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 18px 0 0; }
.style-card li { padding: 7px 10px; border-radius: 999px; background: var(--jp-soft); font-size: .76rem; font-weight: 800; }

.recommend-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 7vw, 92px); align-items: start; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li {
    position: relative;
    padding: 16px 18px 16px 54px;
    background: #fff;
    border: 1px solid var(--jp-line);
    border-radius: 18px;
    font-weight: 780;
    box-shadow: 0 10px 30px rgba(12,13,16,.04);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--jp-gold);
    color: var(--jp-black);
    font-size: .85rem;
    font-weight: 950;
}

.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
    border: 1px solid var(--jp-line);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}
.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    font-weight: 850;
}
.faq-item button span { color: var(--jp-gold); font-weight: 950; }
.faq-item button i { font-style: normal; font-size: 1.2rem; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 20px 20px 66px; color: var(--jp-gray); }
.faq-item.is-open .faq-answer { max-height: 240px; }
.faq-item.is-open button i { transform: rotate(45deg); }

.final-cta { padding-bottom: 130px; }
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(12,13,16,.4), rgba(190,143,45,.18)), repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 88px);
}
.final-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 480px); gap: clamp(36px, 6vw, 82px); align-items: center; }
.final-copy p:not(.eyebrow):not(.cta-note):not(.contact-line) { margin: 24px 0 32px; color: rgba(255,255,255,.82); max-width: 700px; }
.contact-line { margin-top: 14px; color: rgba(255,255,255,.66); font-size: .9rem; }
.video-card {
    position: relative;
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    background: #222;
    box-shadow: var(--shadow-dark);
}
.video-card img, .video-card video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.play-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: var(--jp-black);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .18em;
}

.site-footer {
    background: #08090b;
    color: rgba(255,255,255,.68);
    padding: 56px 0 84px;
}
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 42px; align-items: start; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-size: 1.2rem; font-weight: 900; }
.footer-brand img { border-radius: 12px; }
.footer-grid p { margin-top: 14px; max-width: 420px; font-size: .88rem; }
.footer-links { display: grid; gap: 8px; font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
.footer-note { text-align: right; }

.floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 850;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--jp-gold), var(--jp-gold-2));
    color: var(--jp-black);
    font-weight: 950;
    box-shadow: 0 16px 38px rgba(190,143,45,.36);
}
.floating-cta strong { font-size: .68rem; letter-spacing: .08em; opacity: .78; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1040px) {
    .site-nav { gap: 18px; }
    .hero-grid, .results-grid { grid-template-columns: 1fr; }
    .hero-panel { max-width: 560px; }
    .results-copy { position: relative; top: auto; }
    .change-grid { grid-template-columns: repeat(2, 1fr); }
    .change-card, .change-card:nth-child(4), .change-card:nth-child(5) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-note { text-align: left; }
}

@media (max-width: 860px) {
    :root { --radius: 22px; }
    body { line-height: 1.78; }
    .site-header { padding: 12px 16px; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        inset: 70px 16px auto 16px;
        display: grid;
        gap: 0;
        padding: 12px;
        border-radius: 24px;
        background: rgba(251,250,247,.96);
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: .3s var(--ease);
    }
    .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .site-nav a { padding: 14px 16px; border-radius: 14px; }
    .site-nav a:not(.nav-cta)::after { display: none; }
    .nav-cta { text-align: center; margin-top: 8px; }
    .hero { min-height: auto; padding-top: 132px; }
    .hero-bg::after { background: linear-gradient(180deg, rgba(12,13,16,.72), rgba(12,13,16,.94)); }
    .hero-grid, .two-col, .split-card, .trainer-grid, .recommend-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; }
    .hero-panel { padding: 22px; }
    .vertical-label { position: static; writing-mode: initial; font-size: .78rem; color: var(--jp-gold); margin-bottom: 10px; letter-spacing: .2em; }
    .vertical-label.light { color: var(--jp-gold-2); }
    .pain-grid, .style-grid { grid-template-columns: 1fr; }
    .change-grid { grid-template-columns: 1fr; }
    .sports-slider { grid-auto-columns: minmax(250px, 78vw); }
    .reason-item { grid-template-columns: 1fr; gap: 14px; }
    .reason-item:hover { transform: translateY(-4px); }
    .trainer-image, .trainer-image img { min-height: 440px; }
    .flow-item { grid-template-columns: 1fr; }
    .faq-answer p { padding-left: 20px; }
    .floating-cta { display: flex; left: 18px; right: 18px; bottom: 14px; }
    .site-footer { padding-bottom: 110px; }
}

@media (max-width: 520px) {
    .section, .section-soft, .section-dark { padding-top: 72px; padding-bottom: 72px; }
    .hero { padding-top: 118px; padding-bottom: 70px; }
    .section-inner { width: min(calc(100% - 28px), var(--container)); }
    h1 { font-size: clamp(2.45rem, 15vw, 4rem); }
    h2 { font-size: clamp(1.8rem, 10vw, 2.65rem); }
    .hero-lead { margin: 20px 0 28px; }
    .button { width: 100%; min-height: 56px; padding-inline: 18px; }
    .cta-stack { width: 100%; }
    .cta-note { font-size: .78rem; }
    .pain-card, .change-card, .split-card, .reason-item, .flow-item { padding: 22px; }
    .pain-card h3 { margin-top: 42px; }
    .sport-card, .sport-card img { min-height: 380px; }
    .style-card div { padding: 22px; }
    .faq-item button { grid-template-columns: auto 1fr auto; gap: 10px; padding: 16px; }
    .faq-answer p { padding: 0 16px 18px 16px; }
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta) { color: rgba(255,255,255,.92); }
.site-header:not(.is-scrolled) .nav-cta { background: rgba(255,255,255,.92); color: var(--jp-black); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.site-header:not(.is-scrolled) .nav-toggle { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
@media (max-width: 860px) {
  .site-header:not(.is-scrolled) .site-nav a:not(.nav-cta) { color: rgba(18,19,23,.86); }
}

/* ===== Jumpath v1.1 visual update: provided key visual + refined typography ===== */
:root {
    --jp-font-ja: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
    --jp-font-en: "Outfit", "Inter", "Segoe UI", sans-serif;
    --jp-gold-deep: #a67614;
    --jp-gold-bright: #e8b92e;
}
body {
    font-family: var(--jp-font-ja);
    letter-spacing: .018em;
    color: #111318;
}
.eyebrow,
.site-nav,
.button,
.panel-title,
.change-card span,
.sport-card span,
.hero-marquee,
.nav-cta,
.floating-cta,
.reason-num,
.footer-links,
.trainer-tags span {
    font-family: var(--jp-font-en), var(--jp-font-ja);
}
h1, h2, h3 {
    font-family: var(--jp-font-ja);
    font-weight: 900;
    letter-spacing: -.035em;
}
.section-heading h2,
.section-title-center h2,
.trainer-copy h2,
.results-copy h2,
.first-copy h2,
.final-copy h2,
.hero-action h2 {
    position: relative;
    display: inline-block;
}
.section-heading h2::after,
.section-title-center h2::after,
.trainer-copy h2::after,
.results-copy h2::after,
.first-copy h2::after,
.final-copy h2::after,
.hero-action h2::after {
    content: "";
    display: block;
    width: 74px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--jp-gold-deep), var(--jp-gold-bright), transparent);
}
.section-title-center h2::after { margin-inline: auto; }
.text-dot {
    position: relative;
    color: var(--jp-gold-deep);
    text-decoration: underline;
    text-decoration-color: rgba(232,185,46,.42);
    text-decoration-thickness: .18em;
    text-underline-offset: -.06em;
}
.text-dot::before {
    content: "";
    position: absolute;
    width: .33em;
    height: .33em;
    border-radius: 999px;
    background: var(--jp-gold-bright);
    right: -.48em;
    top: .15em;
    box-shadow: 0 0 0 6px rgba(232,185,46,.16);
}
.brand-logo {
    width: clamp(132px, 15vw, 184px);
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(255,255,255,.5));
}
.custom-logo { max-height: 54px; width: auto; }
.site-header:not(.is-scrolled) .nav-cta {
    background: linear-gradient(135deg, var(--jp-black), #25272d);
    border: 1px solid rgba(190,143,45,.25);
}
.site-header.is-scrolled .brand-logo { filter: none; }
.hero.hero-art {
    min-height: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    background: #fff;
    color: var(--jp-ink);
}
.hero-art-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    line-height: 0;
}
.hero-art-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 18%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.55));
}
.hero-art-media picture,
.hero-art-media img,
.hero-art-media video {
    display: block;
    width: 100%;
    height: auto;
}
.hero-art-media video {
    min-height: 64svh;
    object-fit: cover;
}
.hero-action {
    position: relative;
    padding: clamp(54px, 7vw, 96px) 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(232,185,46,.16), transparent 26%),
        linear-gradient(135deg, #fff 0%, #fff 58%, #f8f2e5 100%);
    overflow: hidden;
}
.hero-action::before {
    content: "";
    position: absolute;
    width: 42vw;
    height: 160%;
    right: -20vw;
    top: -30%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(190,143,45,.16), transparent);
}
.hero-action-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    align-items: center;
    gap: clamp(28px, 6vw, 76px);
}
.hero-action-lead {
    max-width: 660px;
    margin-top: 24px;
    color: var(--jp-ink-2);
    font-weight: 600;
}
.hero-action-card {
    position: relative;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(190,143,45,.28);
    border-radius: 32px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 24px 70px rgba(12,13,16,.12);
    backdrop-filter: blur(14px);
}
.hero-action-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(190,143,45,.16);
    border-radius: 24px;
    pointer-events: none;
}
.hero-action-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.hero-action-card li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(12,13,16,.1);
}
.hero-action-card strong {
    color: var(--jp-gold-deep);
    font-weight: 900;
}
.hero-action-card span { color: var(--jp-gray); }
.hero-action-card .cta-stack { position: relative; z-index: 1; }
.hero-action-card .button-primary {
    width: 100%;
    min-height: 64px;
    color: #111;
}
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.pain-card,
.change-card,
.reason-item,
.split-card,
.first-step,
.faq-item,
.plan-card {
    border-color: rgba(190,143,45,.16);
}
.pain-card h3,
.change-card h3,
.reason-item h3,
.first-step h3,
.faq-item button {
    color: #111318;
}
.pain-card span,
.reason-num,
.first-step span {
    color: #111318;
}
.footer-brand { align-items: flex-start; }
.footer-logo-img {
    width: min(190px, 56vw);
    height: auto;
    filter: invert(1) brightness(8);
}
.site-footer .footer-brand span { display: none; }
@media (min-width: 768px) {
    .hero-art-media img { min-height: 540px; object-fit: cover; }
}
@media (max-width: 980px) {
    .hero-action-grid { grid-template-columns: 1fr; }
    .hero-action-card li { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 767px) {
    .brand-logo { width: 138px; }
    .hero.hero-art { padding-top: 0; }
    .hero-art-media img { width: 100%; height: auto; }
    .hero-action { padding-top: 48px; }
    .hero-action h2 { font-size: clamp(2rem, 9vw, 3rem); }
    .site-header:not(.is-scrolled) {
        background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,0));
    }
}

/* ===== Jumpath v1.2 manuscript update ===== */
:root {
    --jp-font-ja: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
    --jp-font-en: "Outfit", "Inter", "Segoe UI", sans-serif;
    --jp-gold-deep: #a67614;
    --jp-gold-bright: #e8b92e;
}
body {
    font-family: var(--jp-font-ja);
    letter-spacing: .014em;
    background:
        radial-gradient(circle at 92% 8%, rgba(232,185,46,.11), transparent 30%),
        var(--jp-white);
}
.site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(255,255,255,.93), rgba(255,255,255,.62), transparent);
}
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta) { color: rgba(10,11,14,.9); }
.site-header:not(.is-scrolled) .nav-toggle { background: rgba(255,255,255,.86); border-color: rgba(12,13,16,.16); }
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--jp-ink); }
.brand-logo,
.custom-logo {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: none;
}
.site-header.is-scrolled .brand-logo { filter: none; }
.hero-art-media::after { display: none; }
.hero-art-media img,
.hero-art-media video {
    width: 100%;
    height: auto;
    object-fit: contain;
}
@media (min-width: 768px) {
    .hero-art-media img { min-height: 0 !important; object-fit: contain !important; }
}
.achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.achievement-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(190,143,45,.26);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 12px 24px rgba(12,13,16,.06);
    color: #191a20;
    font-size: .82rem;
    font-weight: 800;
}
.achievement-badges span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--jp-gold-bright);
    box-shadow: 0 0 0 4px rgba(232,185,46,.18);
}
.text-underline {
    background: linear-gradient(transparent 62%, rgba(232,185,46,.36) 62%);
    padding-inline: .04em;
}
.lead-text {
    margin-top: 24px;
    color: var(--jp-ink-2);
    font-weight: 600;
}
.metric-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}
.metric-strip span {
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-weight: 900;
    letter-spacing: .08em;
    padding: 14px 18px;
    border: 1px solid rgba(190,143,45,.28);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(12,13,16,.06);
}
.centered-note {
    max-width: 760px;
    text-align: center;
    margin-top: 24px;
    color: var(--jp-ink-2);
    font-weight: 700;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.value-card {
    position: relative;
    min-height: 260px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 30px;
    border: 1px solid rgba(190,143,45,.2);
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,243,235,.8));
    box-shadow: 0 24px 70px rgba(12,13,16,.08);
    overflow: hidden;
}
.value-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    border: 22px solid rgba(190,143,45,.1);
}
.value-card > span {
    display: inline-flex;
    margin-bottom: 24px;
    font-family: var(--jp-font-en);
    font-size: .86rem;
    font-weight: 900;
    color: var(--jp-gold-deep);
}
.value-card h3 { font-size: clamp(1.25rem, 2vw, 1.62rem); }
.value-card p { margin-top: 14px; color: var(--jp-gray); font-weight: 600; }
.evaluation-box {
    margin-top: 24px;
    padding: clamp(22px, 3vw, 32px);
    border-left: 5px solid var(--jp-gold);
    border-radius: 24px;
    background: var(--jp-black);
    color: #fff;
    box-shadow: var(--shadow-dark);
}
.evaluation-box strong {
    color: var(--jp-gold-bright);
    background: linear-gradient(transparent 64%, rgba(232,185,46,.22) 64%);
}
.reason.section-dark .reason-item {
    background: rgba(255,255,255,.965);
    color: var(--jp-ink);
    border-color: rgba(190,143,45,.24);
}
.reason.section-dark .reason-item p { color: #5d626b; }
.reason.section-dark .reason-item:hover {
    background: linear-gradient(135deg, #ffffff, #f8f0dd);
    color: var(--jp-ink);
    transform: translateX(8px);
}
.reason.section-dark .reason-item:hover p { color: #4e535b; }
.sports.section-soft .sport-card {
    box-shadow: 0 24px 70px rgba(12,13,16,.1);
}
.price-card small {
    display: block;
    margin-top: 12px;
    color: var(--jp-gray);
    font-weight: 700;
    font-size: .85rem;
    line-height: 1.7;
}
.results-lead {
    margin-top: 22px;
    color: rgba(255,255,255,.76);
    font-weight: 600;
}
.style-section { background: #fff; }
.style-card h3 {
    position: relative;
    display: inline-block;
}
.style-card h3::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--jp-gold);
}
.style-card p { color: #3d4149; font-weight: 700; }
.style-card li {
    border-radius: 14px;
    background: #f7f3eb;
    color: #22242a;
}
.final-copy p + p { margin-top: 12px; }
.footer-logo-img { filter: none; background: #fff; border-radius: 12px; padding: 6px; }
@media (max-width: 980px) {
    .value-grid { grid-template-columns: 1fr; }
    .achievement-badges span { width: 100%; }
    .reason.section-dark .reason-item:hover { transform: translateY(-4px); }
}
@media (max-width: 767px) {
    .site-header:not(.is-scrolled) { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82), rgba(255,255,255,0)); }
    .brand-logo { max-height: 48px; width: auto; }
    .hero-action h2 br { display: none; }
    .metric-strip { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .metric-strip span { white-space: nowrap; }
    .value-card { min-height: auto; }
}


/* ===== Jumpath v1.3 readability + sports update ===== */
.eyebrow {
    font-size: clamp(1rem, 1.05vw, 1.16rem);
    letter-spacing: .16em;
    line-height: 1.45;
    gap: 14px;
    margin-bottom: 18px;
}
.eyebrow::before {
    width: 48px;
    height: 2px;
}
.section-title-center .eyebrow,
.section-heading .eyebrow,
.trainer-copy .eyebrow,
.results-copy .eyebrow,
.final-copy .eyebrow {
    font-weight: 950;
}
.section-heading h2,
.section-title-center h2,
.trainer-copy h2,
.results-copy h2,
.final-copy h2,
.hero-action h2 {
    line-height: 1.18;
}
.vertical-label {
    font-size: clamp(3.2rem, 5.6vw, 5.4rem);
    opacity: .9;
}
.hero-action-card strong,
.hero-action-card span,
.text-block,
.lead-text,
.style-card p,
.faq-answer p,
.results-box li,
.flow-item p,
.check-list li {
    font-size: clamp(1rem, .98vw, 1.08rem);
}
.achievement-badges span,
.trainer-tags span,
.style-card li,
.metric-strip span,
.price-card span,
.price-card small,
.cta-note {
    font-size: clamp(.92rem, .9vw, 1rem);
    line-height: 1.6;
}
.value-card > span,
.pain-card span,
.sport-card span,
.style-card span,
.flow-item span,
.faq-item button span,
.reason-num {
    font-size: clamp(.95rem, .95vw, 1.05rem);
}
.reason-num,
.flow-item span {
    width: 74px;
    height: 74px;
}
.reason-item {
    grid-template-columns: 104px 1fr;
}
.reason-item p,
.value-card p,
.pain-card p,
.style-card p,
.results-lead,
.centered-note {
    font-size: clamp(1rem, 1vw, 1.08rem);
}
.sports-head p:last-child {
    color: #3d4149;
    font-size: clamp(1rem, 1vw, 1.08rem);
    font-weight: 700;
}
.sports-slider {
    grid-auto-columns: minmax(280px, 340px);
    padding-inline: max(18px, calc((100vw - 1320px) / 2 + 18px));
    width: 100%;
    scroll-padding-left: max(18px, calc((100vw - 1320px) / 2 + 18px));
}
.sport-card div {
    left: 26px;
    right: 26px;
    bottom: 28px;
}
.sport-card h3 {
    font-size: clamp(1.35rem, 1.55vw, 1.72rem);
    letter-spacing: .02em;
}
.style-card span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--jp-gold-deep);
}
.style-card span::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}
.faq-item button {
    font-size: clamp(1rem, 1vw, 1.08rem);
}
.site-nav {
    font-size: clamp(.82rem, .74vw, .92rem);
}
@media (max-width: 980px) {
    .reason-item {
        grid-template-columns: 1fr;
    }
    .reason-num,
    .flow-item span {
        width: 64px;
        height: 64px;
    }
}
@media (max-width: 767px) {
    .eyebrow {
        font-size: .95rem;
        letter-spacing: .12em;
        gap: 10px;
    }
    .eyebrow::before { width: 34px; }
    .vertical-label {
        font-size: 1rem;
        font-weight: 950;
        opacity: 1;
    }
    .sports-slider {
        grid-auto-columns: minmax(270px, 82vw);
        padding-inline: 14px;
        scroll-padding-left: 14px;
    }
    .sport-card h3 { font-size: 1.42rem; }
}

/* ===== Jumpath v1.4 requested refinements ===== */
/* Header: always white, no overlap with the first-view image */
.site-header,
.site-header:not(.is-scrolled),
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(12, 13, 16, .08);
    padding-top: 10px;
    padding-bottom: 10px;
}
body.admin-bar .site-header { top: 32px; }
.site-main { padding-top: 88px; }
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a:not(.nav-cta),
.site-header .site-nav a:not(.nav-cta) {
    color: rgba(10, 11, 14, .9) !important;
}
.site-header:not(.is-scrolled) .nav-toggle,
.site-header .nav-toggle {
    background: rgba(255,255,255,.92) !important;
    border-color: rgba(12,13,16,.16) !important;
}
.site-header:not(.is-scrolled) .nav-toggle span,
.site-header .nav-toggle span { background: var(--jp-ink) !important; }
.nav-cta,
.site-header:not(.is-scrolled) .nav-cta,
.site-header.is-scrolled .nav-cta {
    background: linear-gradient(135deg, #b47f16 0%, #e8b92e 58%, #f6d978 100%) !important;
    color: #111318 !important;
    border: 1px solid rgba(166,118,20,.28) !important;
    box-shadow: 0 16px 34px rgba(190,143,45,.32) !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(190,143,45,.42) !important;
}
.brand-logo,
.custom-logo {
    max-height: 58px;
    background: #fff;
    border-radius: 10px;
}
.hero.hero-art { margin-top: 0; }

/* Problem section: place metric banners and explanation inside the white card */
.problem .problem-card {
    row-gap: clamp(22px, 3vw, 34px);
    padding-bottom: clamp(34px, 4.5vw, 56px);
}
.metric-area {
    grid-column: 1 / -1;
    position: relative;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 0%, rgba(232,185,46,.22), transparent 28%),
        linear-gradient(135deg, #fffaf0 0%, #ffffff 45%, #f5eddd 100%);
    border: 1px solid rgba(190,143,45,.22);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 18px 48px rgba(12,13,16,.06);
    overflow: hidden;
}
.metric-area::before {
    content: "MEASUREMENT";
    position: absolute;
    right: clamp(18px, 3vw, 32px);
    top: 12px;
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-size: clamp(1.8rem, 4vw, 4.5rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.04em;
    color: rgba(190,143,45,.07);
    pointer-events: none;
}
.metric-area .metric-strip {
    position: relative;
    z-index: 1;
    margin: 0;
    justify-content: center;
    gap: 12px;
}
.metric-area .metric-strip span {
    min-width: 178px;
    min-height: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 17px 18px 15px;
    border-radius: 18px;
    background: linear-gradient(135deg, #101116 0%, #24262c 100%);
    border: 1px solid rgba(232,185,46,.36);
    color: #fff;
    box-shadow: 0 18px 38px rgba(12,13,16,.16);
    overflow: hidden;
    white-space: normal;
}
.metric-area .metric-strip span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #a67614, #e8b92e, #fff0a4);
}
.metric-area .metric-strip strong {
    font-size: clamp(1.02rem, 1.15vw, 1.18rem);
    line-height: 1.2;
    letter-spacing: .04em;
}
.metric-area .metric-strip small {
    font-family: var(--jp-font-ja);
    font-size: .78rem;
    line-height: 1.45;
    color: rgba(255,255,255,.76);
    letter-spacing: .04em;
    font-weight: 800;
    text-align: center;
}
.metric-area .centered-note {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-top: 20px;
    color: #2b2f36;
    font-weight: 850;
}

/* Concept cards: stronger banner-like treatment */
.pain-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(232,185,46,.18), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #fff8ea 100%);
    border: 1px solid rgba(190,143,45,.24);
    box-shadow: 0 22px 58px rgba(12,13,16,.08);
}
.pain-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 9px;
    background: linear-gradient(90deg, #0f1014 0%, #a67614 45%, #e8b92e 100%);
}
.pain-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    border: 26px solid rgba(190,143,45,.11);
    pointer-events: none;
}
.pain-card span {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #b47f16, #e8b92e);
    color: #111318 !important;
    box-shadow: 0 14px 28px rgba(190,143,45,.28);
    letter-spacing: .06em;
}
.pain-card h3 {
    margin-top: 44px;
}
.pain-card p {
    color: #50545c;
    font-weight: 700;
}

/* Fine tune the gold dot on emphasized Japanese text */
.text-dot::before {
    right: .04em;
    top: .06em;
    transform: translateX(-58%);
}

@media (max-width: 980px) {
    .site-main { padding-top: 78px; }
    .metric-area .metric-strip { justify-content: flex-start; }
    .metric-area .metric-strip span { min-width: 168px; }
}
@media (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
}
@media (max-width: 767px) {
    .site-main { padding-top: 72px; }
    .site-header,
    .site-header:not(.is-scrolled),
    .site-header.is-scrolled {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .brand-logo,
    .custom-logo { max-height: 46px; }
    .metric-area { padding: 18px; }
    .metric-area::before { font-size: 2.2rem; right: 14px; top: 10px; }
    .metric-area .metric-strip {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        justify-content: flex-start;
    }
    .metric-area .metric-strip span {
        min-width: 158px;
        min-height: 82px;
    }
}

/* v1.5 refinements: balance problem section text and separate metric gold bars */
@media (min-width: 981px) {
    .problem .problem-card > .text-block {
        align-self: center;
        transform: translateY(18px);
    }
}
.metric-area .metric-strip {
    gap: clamp(14px, 1.5vw, 18px);
}
.metric-area .metric-strip span {
    position: relative;
    isolation: isolate;
}
.metric-area .metric-strip span::before {
    left: 16px;
    right: 16px;
    width: auto;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a67614 0%, #e8b92e 52%, #fff0a4 100%);
}
@media (max-width: 767px) {
    .metric-area .metric-strip { gap: 12px; }
    .metric-area .metric-strip span::before { left: 14px; right: 14px; }
}


/* ===== Jumpath v1.6 micro layout fixes ===== */
/* Remove the tiny space between the fixed white header and the first-view image */
.site-main { padding-top: 78px !important; }
@media (max-width: 980px) {
    .site-main { padding-top: 78px !important; }
}
@media (max-width: 767px) {
    .site-main { padding-top: 62px !important; }
}

/* Place the gold dot exactly between 「ま」 and 「で」 */
.text-dot::before {
    left: calc(100% + .10em) !important;
    right: auto !important;
    top: .08em !important;
    transform: translateX(-50%) !important;
}
@media (max-width: 767px) {
    .text-dot::before {
        left: calc(100% + .08em) !important;
        top: .06em !important;
    }
}


/* ===== Jumpath v1.8 manuscript refresh: mission and voice sections ===== */
.mission {
    background:
        radial-gradient(circle at 8% 10%, rgba(232,185,46,.14), transparent 30%),
        #fff;
}
.mission-card {
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,243,235,.88));
    border-color: rgba(190,143,45,.24);
}
.mission-card .text-block p {
    color: #2e333b;
    font-weight: 600;
}
.mission-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.mission-tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: #111318;
    color: #fff;
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 12px 26px rgba(12,13,16,.13);
}
.mission-tags span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--jp-gold-bright);
    box-shadow: 0 0 0 4px rgba(232,185,46,.18);
}
.voice {
    background:
        radial-gradient(circle at 92% 18%, rgba(232,185,46,.13), transparent 28%),
        linear-gradient(180deg, #fff, #f7f3eb);
}
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.voice-card {
    position: relative;
    min-height: 230px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 30px;
    border: 1px solid rgba(190,143,45,.22);
    background: rgba(255,255,255,.86);
    box-shadow: 0 24px 70px rgba(12,13,16,.08);
    overflow: hidden;
}
.voice-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #111318, #a67614, #e8b92e);
}
.voice-card::after {
    content: "CASE";
    position: absolute;
    right: 22px;
    bottom: 12px;
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-size: 3rem;
    line-height: 1;
    font-weight: 950;
    color: rgba(190,143,45,.08);
}
.voice-card > span {
    display: inline-flex;
    margin-bottom: 28px;
    font-family: var(--jp-font-en), var(--jp-font-ja);
    color: var(--jp-gold-deep);
    font-size: .96rem;
    font-weight: 950;
    letter-spacing: .12em;
}
.voice-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.56rem);
}
.voice-card p {
    margin-top: 14px;
    color: var(--jp-gray);
    font-weight: 700;
}
@media (max-width: 980px) {
    .voice-grid { grid-template-columns: 1fr; }
}

/* ===== Jumpath v1.9 testimonial section ===== */
.voice-single-wrap {
    margin-top: clamp(28px, 5vw, 54px);
}
.voice-single {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(0px, 3vw, 42px);
    border: 1px solid rgba(190,143,45,.28);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,243,235,.92));
    box-shadow: 0 30px 90px rgba(12,13,16,.12);
    overflow: hidden;
    isolation: isolate;
}
.voice-single::before {
    content: "VOICE";
    position: absolute;
    right: -10px;
    top: -12px;
    z-index: -1;
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-size: clamp(4.8rem, 12vw, 12rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: .06em;
    color: rgba(190,143,45,.07);
}
.voice-single::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(190,143,45,.18), transparent 24%),
        radial-gradient(circle at 78% 18%, rgba(232,185,46,.18), transparent 30%);
}
.voice-photo {
    position: relative;
    min-height: 100%;
    background: #0e1014;
    overflow: hidden;
}
.voice-photo img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: 48% 50%;
    transform: scale(1.02);
}
.voice-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(7,8,11,.7)),
        linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,0));
}
.voice-photo-label {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    color: #fff;
    background: rgba(12,13,16,.72);
    backdrop-filter: blur(12px);
}
.voice-photo-label span {
    color: var(--jp-gold-bright);
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-size: .8rem;
    font-weight: 950;
    letter-spacing: .16em;
}
.voice-photo-label strong {
    font-size: .96rem;
    font-weight: 900;
    text-align: right;
}
.voice-copy {
    position: relative;
    z-index: 1;
    padding: clamp(30px, 4.6vw, 58px) clamp(26px, 4.4vw, 56px);
}
.voice-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #111318;
    color: #fff;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .06em;
}
.voice-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--jp-gold-bright);
    box-shadow: 0 0 0 4px rgba(232,185,46,.18);
}
.voice-copy h3 {
    margin: 0;
    font-size: clamp(1.86rem, 4.2vw, 3.35rem);
    line-height: 1.22;
    letter-spacing: .015em;
}
.voice-copy h3::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    margin-top: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--jp-gold-deep), var(--jp-gold-bright), rgba(255,255,255,.1));
}
.voice-athlete {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 16px;
    margin-top: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(12,13,16,.1);
}
.voice-athlete strong {
    font-size: 1.22rem;
    font-weight: 950;
}
.voice-athlete span {
    color: var(--jp-gold-deep);
    font-weight: 900;
}
.voice-copy blockquote {
    position: relative;
    margin: 26px 0 0;
    padding: 0;
}
.voice-copy blockquote::before {
    content: "“";
    position: absolute;
    left: -18px;
    top: -38px;
    font-family: Georgia, serif;
    font-size: 7rem;
    color: rgba(190,143,45,.12);
    line-height: 1;
}
.voice-copy blockquote p {
    margin: 0 0 1.08rem;
    color: #303640;
    font-weight: 650;
    line-height: 2.05;
}
.voice-recommend {
    margin-top: 28px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(190,143,45,.11);
    border: 1px solid rgba(190,143,45,.22);
}
.voice-recommend span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--jp-gold-deep);
    font-family: var(--jp-font-en), var(--jp-font-ja);
    font-size: .84rem;
    font-weight: 950;
    letter-spacing: .16em;
}
.voice-recommend p {
    margin: 0;
    font-weight: 900;
    line-height: 1.85;
}
.voice-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.voice-points li {
    position: relative;
    padding: 12px 13px 12px 33px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(12,13,16,.09);
    box-shadow: 0 10px 28px rgba(12,13,16,.05);
    font-size: .88rem;
    font-weight: 900;
    line-height: 1.45;
}
.voice-points li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jp-gold-deep);
    font-weight: 950;
}
@media (max-width: 980px) {
    .voice-single {
        grid-template-columns: 1fr;
    }
    .voice-photo img {
        min-height: 420px;
        max-height: 560px;
    }
}
@media (max-width: 767px) {
    .voice-single {
        border-radius: 26px;
    }
    .voice-photo img {
        min-height: 330px;
        max-height: 420px;
    }
    .voice-photo-label {
        left: 14px;
        right: 14px;
        bottom: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
    .voice-photo-label strong { text-align: left; }
    .voice-copy { padding: 28px 22px 30px; }
    .voice-points { grid-template-columns: 1fr; }
    .voice-copy blockquote::before { left: -8px; }
}
