/* ─────────────────────────────────────────
   color GYM FOR MEN — Stylesheet
   ───────────────────────────────────────── */

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --charcoal: #1b1b1b;
  --gold:     #c9a84c;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-faint: rgba(201,168,76,0.07);
  --white:    #f4f1eb;
  --muted:    #8ecccc;
  --green:    #5cba7d;
  --red:      #a85050;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--black);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  /* 単語・語句の途中での改行を防ぐ */
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

/* ─── CURSOR ─── */
.cur {
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
.cur-r {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.5); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .25s cubic-bezier(.23,1,.32,1), top .25s cubic-bezier(.23,1,.32,1);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  transition: background .4s, backdrop-filter .4s;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 6px; color: var(--gold); text-decoration: none;
}
.nav-logo em { color: var(--white); font-style: normal; }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 10px; letter-spacing: 3px; color: var(--muted);
  text-decoration: none; text-transform: uppercase; transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 10px; letter-spacing: 3px; color: var(--black);
  background: var(--gold); padding: 11px 24px;
  text-decoration: none; text-transform: uppercase; font-weight: 700; transition: background .3s;
}
.nav-cta:hover { background: #e8c97a; }

/* ─── SHARED ─── */
.inner   { max-width: 1160px; margin: 0 auto; }
.inner-m { max-width: 960px;  margin: 0 auto; }
.inner-s { max-width: 760px;  margin: 0 auto; }

.s-label {
  font-size: 9px; letter-spacing: 6px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 14px;
  word-break: keep-all;
}
.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4.5vw, 80px);
  line-height: .95; letter-spacing: 0; margin-bottom: 48px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.s-title .g { color: var(--gold); }

.sec { padding: 112px 52px; }
.sec-dark     { background: var(--dark); }
.sec-charcoal { background: var(--charcoal); }
.sec-black    { background: var(--black); }

.btn-g {
  background: var(--gold); color: var(--black);
  padding: 16px 44px; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none; display: inline-block;
  position: relative; overflow: hidden; transition: color .3s;
}
.btn-g::before {
  content: ''; position: absolute; inset: 0; background: var(--white);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.btn-g:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-g span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent; border: 1px solid rgba(201,168,76,.4); color: var(--gold);
  padding: 16px 40px; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700; text-decoration: none; transition: all .3s;
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 120px 52px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(201,168,76,.06) 0%, transparent 65%),
    linear-gradient(155deg, rgba(10,10,10,.75) 0%, rgba(19,15,2,.7) 50%, rgba(10,10,10,.75) 100%);
}
@keyframes heroFade {
  0%, 40%  { opacity: 1; }
  50%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-vline {
  position: absolute; left: 51px; top: 100px; bottom: 60px; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.3) 30%, rgba(201,168,76,.3) 70%, transparent);
}
.hero-ghost {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(140px, 26vw, 360px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.06);
  letter-spacing: -16px; user-select: none; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 1000px; padding-left: 28px; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 6px; color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
  animation: fadeUp .8s .2s both;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  /* 全角8文字が収まるよう vw を抑制。min(7vw, ...) で上限も制御 */
  font-size: clamp(24px, 7vw, 120px);
  line-height: .95; letter-spacing: 0;
  margin-bottom: 28px; animation: fadeUp .8s .35s both;
  word-break: keep-all; overflow-wrap: break-word;
}
.hero-h1 .g { color: var(--gold); }
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; font-weight: 300;
  color: var(--gold); line-height: 1.9; margin-bottom: 40px; max-width: 540px;
  animation: fadeUp .8s .5s both;
  word-break: keep-all; overflow-wrap: break-word;
}
.hero-btns { display: flex; gap: 20px; align-items: center; animation: fadeUp .8s .65s both; }
.btn-ghost {
  font-size: 10px; letter-spacing: 3px; color: var(--muted); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  text-transform: uppercase; transition: all .3s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

/* Hero trust pillars */
.hero-pillars {
  position: relative; z-index: 2; margin-top: 56px; padding-left: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 800px;
  animation: fadeUp .8s .8s both;
}
.hero-pillar {
  background: rgba(201,168,76,.06); border: 1px solid rgba(201,168,76,.15);
  padding: 24px 20px; position: relative; overflow: hidden;
}
.hero-pillar::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-pillar-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.hero-pillar-label { font-size: 12px; color: rgba(244,241,235,.7); line-height: 1.6; word-break: keep-all; }

/* Hero floating price */
.hero-price {
  position: absolute; right: 52px; bottom: 80px; z-index: 2; text-align: right;
  animation: fadeUp .8s 1s both;
}
.hero-price-from { font-size: 9px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; }
.hero-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 80px); line-height: 1; color: var(--white);
}
.hero-price-note { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-top: 6px; }
.hero-price-tags { display: flex; gap: 8px; justify-content: flex-end; margin-top: 10px; }
.p-tag {
  font-size: 9px; letter-spacing: 2px; padding: 5px 12px;
  border: 1px solid rgba(201,168,76,.3); color: var(--gold);
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 52px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase;
}
.scroll-line-anim {
  width: 48px; height: 1px; background: var(--gold);
  position: relative; overflow: hidden;
}
.scroll-line-anim::after {
  content: ''; position: absolute; inset: 0; background: var(--white);
  animation: scanline 1.8s ease-in-out infinite;
}
@keyframes scanline {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ─── STATS BAR ─── */
.stats {
  background: var(--gold); padding: 0 52px;
  display: flex; align-items: stretch;
}
.stat-item {
  flex: 1; padding: 26px 0; display: flex; align-items: center; gap: 16px;
  border-right: 1px solid rgba(10,10,10,.15);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 42px;
  color: var(--black); line-height: 1; padding-right: 16px;
}
.stat-label { font-size: 11px; font-weight: 700; color: rgba(10,10,10,.6); line-height: 1.5; word-break: keep-all; }
.stat-label strong { display: block; font-size: 13px; color: var(--black); }

/* ─── CAMPAIGN BANNER ─── */
.campaign {
  padding: 40px 52px;
  background: linear-gradient(90deg, #1a1200, #120e00, #1a1200);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.campaign-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.campaign-label {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.campaign-label::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.campaign-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 2px; color: var(--white);
  word-break: keep-all; overflow-wrap: break-word;
}
.campaign-title .g { color: var(--gold); }
.campaign-sub {
  font-size: 13px; color: rgba(244,241,235,.5); margin-top: 8px; line-height: 1.8;
  word-break: keep-all; overflow-wrap: break-word;
}
.campaign-cta { text-align: right; flex-shrink: 0; }

/* ─── PAIN ─── */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px;
}
.pain-card {
  background: var(--charcoal); padding: 32px;
  border-left: 3px solid transparent; transition: border-color .3s, background .3s;
  position: relative; overflow: hidden;
}
.pain-card:hover { background: #202020; border-color: var(--gold); }
.pain-card-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: rgba(201,168,76,.12); line-height: 1; position: absolute; top: 16px; right: 20px;
}
.pain-card strong {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.5;
  word-break: keep-all; overflow-wrap: break-word;
}
.pain-card p {
  font-size: 12px; color: var(--muted); line-height: 1.8;
  word-break: keep-all; overflow-wrap: break-word;
}

/* Pain → solution bridge */
.pain-bridge {
  margin-top: 60px; padding: 52px; background: var(--dark);
  border: 1px solid rgba(201,168,76,.15); position: relative; text-align: center;
}
.pain-bridge::before {
  content: 'SOLUTION'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 6px; color: var(--gold);
  background: var(--charcoal); padding: 0 16px;
}
.pain-bridge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 56px); letter-spacing: 2px; margin-bottom: 16px;
  word-break: keep-all; overflow-wrap: break-word;
}
.pain-bridge-title .g { color: var(--gold); }
.pain-bridge-sub {
  font-size: 14px; color: rgba(244,241,235,.6); line-height: 2;
  word-break: keep-all; overflow-wrap: break-word;
}

/* ─── WHY CHEAP ─── */
.reason-list { display: flex; flex-direction: column; gap: 2px; margin-top: 56px; }
.reason-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 32px; align-items: center;
  background: var(--dark); padding: 36px 40px;
  border-left: 3px solid transparent; transition: border-color .4s, background .4s;
}
.reason-row:hover { background: #161616; border-color: var(--gold); }
.reason-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  color: rgba(201,168,76,.18); line-height: 1;
}
.reason-body {
  min-width: 0; /* グリッド内でテキストが溢れないよう */
}
.reason-body strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px;
  word-break: keep-all; overflow-wrap: break-word;
}
.reason-body p {
  font-size: 13px; color: rgba(244,241,235,.6); line-height: 2; max-width: 620px;
  word-break: keep-all; overflow-wrap: break-word;
}
.reason-badge {
  text-align: center; flex-shrink: 0;
}
.reason-badge-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold); line-height: 1;
}
.reason-badge-l { font-size: 10px; color: var(--muted); letter-spacing: 2px; }

/* ─── VALUE (additional) ─── */
.value-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px;
}
.value-card {
  background: var(--dark); padding: 44px;
  position: relative; overflow: hidden; transition: background .4s;
}
.value-card:hover { background: #161616; }
.value-card-accent {
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .5s cubic-bezier(.23,1,.32,1);
}
.value-card:hover .value-card-accent { width: 100%; }
.value-card-num {
  position: absolute; top: 16px; right: 24px;
  font-family: 'Bebas Neue', sans-serif; font-size: 64px;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.1); line-height: 1;
}
.value-icon { width: 48px; height: 48px; margin-bottom: 24px; opacity: .75; }
.value-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px;
  color: var(--gold); margin-bottom: 10px; line-height: 1.2;
  word-break: keep-all; overflow-wrap: break-word;
}
.value-body {
  font-size: 13px; color: rgba(244,241,235,.6); line-height: 2;
  word-break: keep-all; overflow-wrap: break-word;
}

/* ─── TESTIMONIALS ─── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px;
}

.testimonial-card {
  background: var(--dark); padding: 40px; transition: background .3s;
  overflow: hidden;
}

.testimonial-card:hover { background: #161616; }
.testimonial-persona {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.07);
}

.testimonial-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #5a3f08);
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--black);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.testimonial-meta strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-meta span { font-size: 11px; color: var(--muted); }
.testimonial-result-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.testimonial-result-label { font-size: 10px; color: var(--muted); letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 13px; line-height: 2.1; color: rgba(244,241,235,.7);
  word-break: keep-all; overflow-wrap: break-word;
}
.testimonial-text::before {
  content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 48px;
  color: rgba(201,168,76,.25); display: block; line-height: .7; margin-bottom: 12px;
}

/* ─── VS COMPARISON ─── */
.compare-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px;
}
.compare-point {
  background: var(--dark); padding: 36px 10px;
  display: grid; grid-template-columns: 44px 1fr; gap: 5px; align-items: start;
}
.compare-check {
  width: 40px; height: 40px; border: 1px solid rgba(201,168,76,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px;
}
.compare-check svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.compare-point > div {
  min-width: 0; /* グリッド内テキスト溢れ防止 */
}
.compare-point strong {
  display: block; font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--white);
  word-break: keep-all; overflow-wrap: break-word;
}
.compare-point p {
  font-size: 13px; color: var(--muted); line-height: 1.8;
  word-break: keep-all; overflow-wrap: break-word;
}

/* ─── STORE PHOTOS ─── */
.store-section { padding: 0; overflow: hidden; background: var(--charcoal); }
.store-header { padding: 80px 52px 48px; }
.store-photos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.store-photo {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.store-photo img {
  width: 100%; height: auto;
  display: block;
}
.store-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1200 0%, #0d0900 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.store-photo-placeholder svg { width: 40px; height: 40px; stroke: rgba(201,168,76,.3); fill: none; stroke-width: 1; }
.store-photo-placeholder span { font-size: 10px; letter-spacing: 3px; color: rgba(201,168,76,.3); text-transform: uppercase; }

/* ─── CTA BLOCK ─── */
.cta-block {
  padding: 72px 52px;
  background: linear-gradient(90deg, #0d0900, #111100, #0d0900);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.cta-block-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.cta-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.5vw, 52px); letter-spacing: 2px; color: var(--white); margin-bottom: 12px;
  word-break: keep-all; overflow-wrap: break-word;
}
.cta-block-title .g { color: var(--gold); }
.cta-block-sub {
  font-size: 13px; color: var(--muted); line-height: 2;
  word-break: keep-all; overflow-wrap: break-word;
}
.cta-block-right { text-align: right; flex-shrink: 0; }
.tel-link {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 3px; color: var(--gold);
  text-decoration: none; margin-bottom: 12px; transition: color .3s;
}
.tel-link:hover { color: var(--white); }
.tel-hours { font-size: 10px; color: var(--muted); letter-spacing: 2px; line-height: 1.8; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 28px 0; cursor: pointer; gap: 24px; transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-text { font-size: 15px; font-weight: 400; line-height: 1.7; padding-top: 2px; word-break: keep-all; overflow-wrap: break-word; flex: 1; min-width: 0; }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px;
  border: 1px solid rgba(201,168,76,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: border-color .3s;
}
.faq-icon svg {
  width: 12px; height: 12px; stroke: var(--gold); fill: none;
  stroke-width: 2; transition: transform .35s;
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-item.open .faq-icon { border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.23,1,.32,1); }
.faq-a-inner { padding: 0 0 28px; font-size: 13px; line-height: 2.2; color: var(--muted); word-break: keep-all; overflow-wrap: break-word; }
.faq-item.open .faq-a { max-height: 300px; }

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 100px 52px; background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.final-cta-bg-word {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 28vw;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.04);
  white-space: nowrap; user-select: none; letter-spacing: -20px;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.final-cta-eye { font-size: 10px; letter-spacing: 6px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.final-cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 7vw, 100px); line-height: .95; letter-spacing: 0;
  margin-bottom: 24px;
  word-break: keep-all; overflow-wrap: break-word;
}
.final-cta-h .g { color: var(--gold); }
.final-cta-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: rgba(244,241,235,.5); line-height: 1.9; margin-bottom: 48px;
  word-break: keep-all; overflow-wrap: break-word;
}
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.final-cta-note { font-size: 11px; color: var(--muted); letter-spacing: 2px; }
.final-cta-note span { color: rgba(201,168,76,.7); }

/* ─── CONTACT FORM ─── */
.contact { padding: 112px 52px; background: var(--charcoal); }
.contact-inner { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; background: var(--dark); border: 1px solid rgba(201,168,76,.15);
  color: var(--white); padding: 14px 18px; font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif; outline: none;
  transition: border-color .3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.8; }

/* ─── SNS ─── */
.sns { padding: 72px 52px; background: var(--dark); text-align: center; }
.sns-inner { max-width: 480px; margin: 0 auto; }
.sns-label { font-size: 10px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.sns-links { display: flex; justify-content: center; gap: 20px; }
.sns-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 32px; border: 1px solid rgba(201,168,76,.25);
  color: var(--white); text-decoration: none; font-size: 12px; letter-spacing: 2px;
  transition: all .3s;
}
.sns-btn:hover { border-color: var(--gold); color: var(--gold); }
.sns-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); padding: 64px 52px 36px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.f-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 6px;
  color: var(--gold); margin-bottom: 14px;
}
.f-logo em { color: var(--white); font-style: normal; }
.f-desc { font-size: 12px; line-height: 2; color: var(--muted); max-width: 300px; word-break: keep-all; overflow-wrap: break-word; }
.f-col-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .3s; }
.f-links a:hover { color: var(--white); }
.f-store { margin-bottom: 16px; }
.f-store-name { font-size: 13px; color: var(--white); font-weight: 700; margin-bottom: 3px; word-break: keep-all; }
.f-store-info { font-size: 11px; color: var(--muted); line-height: 1.7; word-break: keep-all; }
.footer-bottom {
  max-width: 1160px; margin: 28px auto 0;
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(104,104,104,.4); letter-spacing: 2px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scanline {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ══════════════════════════════════════════════
   HAMBURGER
   ══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   SP DRAWER
   ══════════════════════════════════════════════ */
.sp-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(320px, 85vw);
  background: #0d0d0d;
  border-left: 1px solid rgba(201,168,76,.15);
  display: flex; flex-direction: column;
  padding: 88px 32px 48px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.sp-drawer.open { transform: translateX(0); }

.sp-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.7);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.sp-overlay.open { opacity: 1; pointer-events: all; }

.sp-drawer-nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
.sp-nav-link {
  display: block; padding: 18px 0;
  font-size: 11px; letter-spacing: 4px; color: rgba(244,241,235,.5);
  text-decoration: none; text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: color .3s;
}
.sp-nav-link:first-child { border-top: 1px solid rgba(201,168,76,.08); }
.sp-nav-link:hover { color: var(--gold); }
.sp-drawer-cta { margin-top: 36px; text-align: center; }

/* タッチ端末でカスタムカーソル非表示 */
@media (hover: none) {
  body { cursor: auto; }
  .cur, .cur-r { display: none; }
}

/* ══════════════════════════════════════════════
   TABLET  ≤ 1280px
   ══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .store-photos  { grid-template-columns: 1fr; }
  nav            { padding: 18px 40px; }
  .sec           { padding: 96px 40px; }
  .hero          { padding: 110px 40px 72px; }
  .hero-content  { padding-left: 16px; }
  .hero-pillars  { padding-left: 16px; }
  .hero-price    { right: 40px; }
  .stats         { padding: 0 40px; }
  .campaign      { padding: 36px 40px; }
  .store-header  { padding: 72px 40px 44px; }
  .cta-block     { padding: 56px 40px; }
  .final-cta     { padding: 120px 40px; }
  .contact       { padding: 96px 40px; }
  .sns           { padding: 60px 40px; }
  footer         { padding: 56px 40px 32px; }
}

/* ══════════════════════════════════════════════
   MOBILE  ≤ 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ─── OVERFLOW GLOBAL FIX ─── */
  /* グリッド・フレックス子要素の min-width:auto によるはみ出し防止 */
  .inner, .inner-m, .inner-s {
    max-width: 100%;
    overflow: hidden;
  }

  /* word-break: keep-all はSPでは長文を折り返せないため上書き */
  body, .pain-card strong, .pain-card p,
  .reason-body strong, .reason-body p,
  .compare-point strong, .compare-point p,
  .faq-q-text, .faq-a-inner,
  .value-title, .value-body,
  .testimonial-text, .campaign-title, .campaign-sub,
  .cta-block-title, .cta-block-sub,
  .final-cta-h, .final-cta-sub,
  .pain-bridge-title, .pain-bridge-sub,
  .s-title {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  /* グリッド子要素に min-width:0 を付与してはみ出しを防止 */
  .reason-body, .reason-badge {
    min-width: 0;
  }
  .compare-point > div {
    min-width: 0;
    overflow: hidden;
  }
  .faq-q {
    overflow: hidden;
  }
  .faq-q-text {
    min-width: 0;
    flex: 1;
  }

  /* 各カード・ロー自体もはみ出さない */
  .pain-card, .reason-row, .compare-point,
  .value-card, .testimonial-card, .campaign-inner {
    max-width: 100%;
    overflow: hidden;
  }

  /* --- NAV --- */
  nav               { padding: 14px 20px; }
  .nav-links        { display: none; }
  .nav-cta          { display: none; }
  .nav-hamburger    { display: flex; }

  /* --- SECTION PADDING --- */
  .sec           { padding: 64px 20px; }
  .campaign      { padding: 28px 20px; }
  .store-header  { padding: 56px 20px 32px; }
  .cta-block     { padding: 44px 20px; }
  .final-cta     { padding: 80px 20px; }
  .contact       { padding: 64px 20px; }
  .sns           { padding: 48px 20px; }
  footer         { padding: 48px 20px 28px; }

  /* --- HERO --- */
  .hero            { padding: 84px 20px 52px; min-height: 100svh; }
  .hero-ghost      { display: none; }
  .hero-vline      { display: none; }
  .hero-price      { display: none; }
  .hero-content    { padding-left: 0; max-width: 100%; }
  .hero-h1         { font-size: clamp(36px, 9vw, 64px); line-height: 1.0; }
  .hero-desc       { font-size: 15px; max-width: 100%; }
  .hero-btns       { flex-wrap: wrap; gap: 12px; }
  .scroll-hint     { left: 20px; }

  .hero-pillars {
    padding-left: 0; max-width: 100%; margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .hero-pillar {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 20px;
  }
  .hero-pillar::before {
    width: 2px; height: auto;
    top: 0; bottom: 0; right: auto; left: 0;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }
  .hero-pillar-n     { font-size: 28px; margin-bottom: 0; flex-shrink: 0; white-space: nowrap; }
  .hero-pillar-label { font-size: 11px; line-height: 1.5; }

  /* --- STATS --- */
  .stats         { padding: 0; flex-wrap: wrap; }
  .stat-item     { min-width: 50%; padding: 20px 16px; border-right: none; border-bottom: 1px solid rgba(10,10,10,.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(10,10,10,.15); }
  .stat-n        { font-size: 32px; padding-right: 10px; }
  .stat-label    { font-size: 10px; }
  .stat-label strong { font-size: 12px; }

  /* --- CAMPAIGN --- */
  .campaign-inner    { flex-direction: column; gap: 20px; text-align: center; }
  .campaign-label    { justify-content: center; }
  .campaign-title    { font-size: clamp(20px, 5vw, 28px); }
  .campaign-sub      { font-size: 12px; }
  .campaign-cta      { text-align: center; }

  /* --- SECTION HEADINGS --- */
  .s-title { font-size: clamp(26px, 6vw, 44px); margin-bottom: 36px; }

  /* --- PAIN --- */
  .pain-grid    { grid-template-columns: 1fr; gap: 2px; }
  .pain-bridge  { padding: 36px 24px; }
  .pain-bridge-title { font-size: clamp(18px, 5vw, 26px); letter-spacing: 0; }
  .pain-bridge-sub   { font-size: 13px; }

  /* --- REASON --- */
  .reason-row  {
    grid-template-columns: 52px 1fr;
    gap: 14px; padding: 24px 20px;
  }
  .reason-badge  { display: none; }
  .reason-n      { font-size: 36px; }
  .reason-body strong { font-size: 17px; }
  .reason-body p      { font-size: 13px; max-width: 100%; }

  /* --- VALUE --- */
  .value-grid   { grid-template-columns: 1fr; }
  .value-card   { padding: 32px 24px; }
  .value-title  { font-size: 22px; }

  /* --- TESTIMONIAL --- */
  .testimonial-grid  { grid-template-columns: 1fr; }

  /* --- COMPARE --- */
  .compare-grid  { grid-template-columns: 1fr; }
  .compare-point { padding: 24px 20px; gap: 12px; }

  /* --- STORE --- */
  .store-photos { grid-template-columns: 1fr; }

  /* --- CTA BLOCK --- */
  .cta-block-inner {
    grid-template-columns: 1fr;
    text-align: center; gap: 28px;
  }
  .cta-block-right   { text-align: center; }
  .cta-block-title   { font-size: clamp(20px, 5vw, 36px); letter-spacing: 0; }
  .tel-link          { font-size: 28px; letter-spacing: 1px; }
  .tel-hours         { font-size: 10px; }

  /* --- FAQ --- */
  .inner-s        { max-width: 100%; }
  .faq-q-text     { font-size: 14px; }
  .faq-a-inner    { font-size: 13px; }

  /* --- FINAL CTA --- */
  .final-cta-h   { font-size: clamp(28px, 8vw, 52px); }
  .final-cta-sub { font-size: 15px; }
  .final-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .final-cta-note { font-size: 10px; letter-spacing: 1px; }

  /* --- BUTTONS --- */
  .btn-g     { padding: 14px 28px; font-size: 11px; letter-spacing: 3px; }
  .btn-outline { padding: 14px 28px; font-size: 11px; letter-spacing: 3px; }

  /* --- CONTACT FORM --- */
  .form-input, .form-textarea { font-size: 16px; } /* iOS ズーム防止 */

  /* --- SNS --- */
  .sns-links { flex-direction: column; align-items: stretch; }
  .sns-btn   { justify-content: center; }

  /* --- FOOTER --- */
  .footer-inner  { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ══════════════════════════════════════════════
   SMALL  ≤ 390px
   ══════════════════════════════════════════════ */
@media (max-width: 390px) {
  /* 390px以下でも同様にoverflow防止 */
  .inner, .inner-m, .inner-s { overflow: hidden; max-width: 100%; }
  .reason-body, .reason-badge, .compare-point > div, .faq-q-text { min-width: 0; }
  body { word-break: break-all; overflow-wrap: anywhere; }

  .hero-h1        { font-size: 32px; }
  .s-title        { font-size: 24px; }
  .stat-n         { font-size: 26px; }
  .hero-pillar-n  { font-size: 22px; }
  .sec            { padding: 52px 16px; }
  nav             { padding: 14px 16px; }
  .campaign       { padding: 24px 16px; }
  .cta-block      { padding: 36px 16px; }
  .final-cta      { padding: 64px 16px; }
  .contact        { padding: 52px 16px; }
  footer          { padding: 40px 16px 24px; }
}
