/* =====================================================
   福井日花人 | PRO PERFORMER  —  STAGE / SPOTLIGHT
   rerise.co型：フルスクリーン・パネルが左右交互にスライドイン
   （スマホ / reduced-motion は通常の縦スクロールにフォールバック）
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #f5f2ec;   /* 温かみのある白 */
  --bg-2:    #ffffff;
  --bg-3:    #ece7dd;
  --ink:     #1a1712;   /* 近黒（本文） */
  --ink-dim: #6f685c;   /* 補助テキスト */
  --line:    rgba(26, 22, 16, .14);
  --gold:    #b0812f;   /* 白地でも読める深めゴールド */
  --gold-2:  #d8b25a;   /* 明るめゴールド（動画上・アクセント） */
  --hero-ink: #f6f3ec;  /* ヒーロー動画上の白文字 */
  --hero-dim: rgba(246, 243, 236, .68);
  --ease:    cubic-bezier(.19, 1, .22, 1);
  --bp-md: 768px;
  --bp-lg: 1024px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Archivo", sans-serif;
  line-height: 1.75;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: auto-phrase;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.2; font-weight: 700; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: #000; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }

/* ===== プレースホルダ（写真差し替え用） ===== */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.025) 0 14px, rgba(0,0,0,0) 14px 28px),
    linear-gradient(150deg, #e8e3d8, #d9d3c6 70%);
  display: grid; place-items: center;
}
.ph span {
  font-family: "Archivo", sans-serif; font-weight: 800; letter-spacing: .3em;
  font-size: clamp(11px, 1.4vw, 14px); color: rgba(26,22,16,.4);
  border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px;
}

/* ===== フィルムグレイン ===== */
.grain {
  position: fixed; inset: -50%; z-index: 9998; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)} 40%{transform:translate(3%,-4%)}
  60%{transform:translate(-3%,-3%)} 80%{transform:translate(4%,4%)}
}

/* ===== スポットライト ===== */
.spotlight {
  position: fixed; inset: 0; z-index: 8; pointer-events: none;
  background: radial-gradient(circle 420px at var(--mx, 50%) var(--my, 30%),
              rgba(216,178,90,.10), rgba(216,178,90,.03) 40%, transparent 62%);
}

/* ===== カスタムカーソル ===== */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor { width: 8px; height: 8px; background: #fff; transform: translate(-50%, -50%); }
.cursor-ring { width: 40px; height: 40px; border: 1px solid rgba(244,241,234,.5); transform: translate(-50%, -50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s; }
.cursor-ring.is-hover { width: 68px; height: 68px; background: rgba(216,178,90,.14); border-color: transparent; }
@media (hover: none) { .cursor, .cursor-ring, .spotlight { display: none; } body { cursor: auto; } }

/* ===== オープニング・イントロ ===== */
.intro { position: fixed; inset: 0; z-index: 9997; background: #0a0a0b; display: grid; place-items: center; overflow: hidden; }
.intro__words { position: relative; display: grid; place-items: center; height: 1.1em; }
.intro__words span { grid-area: 1/1; font-family: "Anton", sans-serif; font-size: clamp(40px, 11vw, 140px); letter-spacing: .04em; color: var(--gold-2); opacity: 0; text-transform: uppercase; }
.intro__name { position: absolute; bottom: 12vh; font-size: clamp(13px, 1.5vw, 16px); letter-spacing: .6em; color: rgba(246,243,236,.5); opacity: 0; }
.intro.is-done { opacity: 0; visibility: hidden; transition: opacity .8s var(--ease), visibility .8s; }
body.is-loading { overflow: hidden; height: 100vh; }

/* ===== ヘッダー ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 900; display: flex; align-items: center; justify-content: space-between; padding: clamp(18px, 3vw, 34px) clamp(20px, 5vw, 72px); mix-blend-mode: difference; }
.header__logo { font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: .02em; color: #fff; }
.header__logo span { color: var(--gold); }
.nav-toggle { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: transparent; position: relative; z-index: 950; display: grid; place-content: center; gap: 6px; cursor: none; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: #fff; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ===== ナビ ===== */
.nav { position: fixed; inset: 0; z-index: 940; background: var(--bg); display: flex; flex-direction: column; justify-content: center; padding: clamp(80px, 12vh, 140px) clamp(24px, 8vw, 120px) 40px; clip-path: circle(0% at calc(100% - 48px) 48px); transition: clip-path .8s var(--ease); pointer-events: none; }
.nav.is-open { clip-path: circle(150% at calc(100% - 48px) 48px); pointer-events: auto; }
.nav__list { list-style: none; }
.nav__list li { overflow: hidden; }
.nav__list a { display: inline-flex; align-items: baseline; gap: clamp(10px, 2vw, 24px); font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(30px, 7vw, 78px); line-height: 1.24; color: var(--ink); transform: translate(-40px, 60px); opacity: 0; transition: transform .7s var(--ease), color .3s; }
.nav.is-open .nav__list a { transform: translate(0, 0); opacity: 1; }
.nav.is-open .nav__list li:nth-child(1) a { transition-delay: .18s; }
.nav.is-open .nav__list li:nth-child(2) a { transition-delay: .26s; }
.nav.is-open .nav__list li:nth-child(3) a { transition-delay: .34s; }
.nav.is-open .nav__list li:nth-child(4) a { transition-delay: .42s; }
.nav.is-open .nav__list li:nth-child(5) a { transition-delay: .50s; }
.nav.is-open .nav__list li:nth-child(6) a { transition-delay: .58s; }
.nav__list a:hover { color: var(--gold); }
.nav__list a::before { content: attr(data-num); font-size: clamp(11px, 1.2vw, 14px); font-weight: 600; color: var(--gold); letter-spacing: .1em; }
.nav__list a em { font-family: "Zen Kaku Gothic New"; font-style: normal; font-size: clamp(11px, 1.3vw, 14px); font-weight: 500; color: var(--ink-dim); letter-spacing: .12em; }
.nav__foot { margin-top: clamp(32px, 5vh, 60px); display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; border-top: 1px solid var(--line); padding-top: 28px; }
.nav__foot p { color: var(--ink-dim); font-size: 14px; }
.nav__cta { border: 1px solid var(--gold); color: var(--gold); padding: 12px 28px; border-radius: 999px; font-size: 14px; transition: background .3s, color .3s; }
.nav__cta:hover { background: var(--gold); color: #000; }

/* =====================================================
   ステージ／パネル
   ===================================================== */
.stage { position: relative; z-index: 2; }
.panel { position: relative; background: var(--bg); overflow: hidden; }
.panel--dark { background: var(--bg); }
.panel--darker { background: var(--bg-2); }
.panel__inner { position: relative; z-index: 3; width: 100%; }

/* ===== パネルごとの色味（ダークグラデーション＋漂う光） ===== */
.panel::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  will-change: transform; animation: glowDrift 16s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); }
  to   { transform: translate3d(3%, -3%, 0) scale(1.12); }
}
.panel--hero::before { content: none; } /* ヒーローは動画なので除外 */

#service { background: linear-gradient(158deg, #faf1dd 0%, #f5f2ec 60%); }
#service::before { background: radial-gradient(58% 52% at 16% 22%, rgba(200,150,52,.20), transparent 62%); }

#about { background: linear-gradient(158deg, #f1eafb 0%, #f4f1ee 60%); }
#about::before { background: radial-gradient(58% 52% at 84% 24%, rgba(150,96,210,.18), transparent 62%); animation-delay: -3s; }

#why { background: linear-gradient(158deg, #e6f1fb 0%, #f0f3f5 60%); }
#why::before { background: radial-gradient(58% 54% at 20% 82%, rgba(52,144,200,.18), transparent 62%); animation-delay: -6s; }

#works { background: linear-gradient(158deg, #fceceb 0%, #f6efee 60%); }
#works::before { background: radial-gradient(56% 52% at 82% 20%, rgba(214,88,88,.17), transparent 62%); animation-delay: -9s; }

#flow { background: linear-gradient(158deg, #e6f6ee 0%, #eff4f0 60%); }
#flow::before { background: radial-gradient(56% 54% at 26% 26%, rgba(48,176,124,.17), transparent 62%); animation-delay: -12s; }

#contact { background: linear-gradient(158deg, #fbefd6 0%, #f5f2ec 62%); }
#contact::before { background: radial-gradient(60% 55% at 50% 30%, rgba(200,150,52,.16), transparent 60%); }

/* 通常フロー時（スマホ／JS無効／reduced-motion）のセクション余白 */
.panel__inner:not(.hero__inner):not(.cta__inner) { padding-top: clamp(72px, 12vw, 130px); padding-bottom: clamp(72px, 12vw, 130px); }

/* --- パネルモード（デスクトップ）--- */
.scroll-track { display: none; }
.progress { display: none; }

html.js-panels { scroll-snap-type: y mandatory; }
html.js-panels .stage { position: fixed; inset: 0; z-index: 5; }
html.js-panels .panel {
  position: absolute; inset: 0; height: 100svh; width: 100%;
  display: flex; align-items: center;
  will-change: transform; backface-visibility: hidden;
}
html.js-panels .panel__inner:not(.hero__inner):not(.cta__inner) { padding-top: clamp(96px, 13vh, 130px); padding-bottom: clamp(40px, 6vh, 70px); }
html.js-panels .panel__dim { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; z-index: 4; }

html.js-panels .scroll-track { display: block; position: relative; z-index: 1; }
html.js-panels .scroll-track .slot { height: 100svh; scroll-snap-align: start; }

html.js-panels .progress { display: block; position: fixed; left: clamp(20px,5vw,72px); right: clamp(20px,5vw,72px); bottom: 22px; height: 1px; background: var(--line); z-index: 920; mix-blend-mode: difference; }
html.js-panels .progress span { display: block; height: 100%; width: 0; background: var(--gold); transition: width .2s linear; }

/* ===== ヒーロー ===== */
.panel--hero { background: var(--bg-3); }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.32) 40%, rgba(8,8,10,.94) 100%); z-index: 1; }
.hero__ph-tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: "Archivo"; font-size: 10px; letter-spacing: .2em; color: rgba(244,241,234,.5); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }
.hero__inner { position: relative; z-index: 3; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); align-self: flex-end; padding-bottom: clamp(70px, 12vh, 120px); color: var(--hero-ink); }
.hero__inner .btn-magnet { color: var(--hero-ink); border-color: var(--gold-2); }
.panel--hero { align-items: stretch; }
.hero__label { font-family: "Archivo"; font-size: clamp(11px, 1.3vw, 14px); letter-spacing: .28em; color: var(--gold-2); margin-bottom: clamp(18px, 3vw, 30px); }
.hero__title { font-size: clamp(42px, 9.5vw, 132px); line-height: 1.02; letter-spacing: -.01em; font-weight: 900; }
.hero__title--single { font-size: clamp(30px, 10.2vw, 112px); }
.hero__title--single .line { white-space: nowrap; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line i { display: block; font-style: normal; transform: translateY(105%); transition: transform 1s var(--ease); }
.hero__en { font-family: "Archivo"; font-weight: 600; letter-spacing: .18em; font-size: clamp(11px, 1.5vw, 15px); color: var(--hero-dim); margin-top: clamp(20px, 3vw, 34px); }
.hero__lead { margin-top: 20px; max-width: 46ch; color: rgba(246,243,236,.82); font-size: clamp(14px, 1.6vw, 17px); }
.hero__lead br { display: none; }
.hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span { font-family: "Archivo"; font-size: 10px; letter-spacing: .3em; color: var(--hero-dim); }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold-2), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -46px; left: 0; width: 1px; height: 46px; background: linear-gradient(transparent, var(--hero-ink)); animation: scrollLine 1.8s var(--ease) infinite; }
@keyframes scrollLine { 0%{transform:translateY(0)} 100%{transform:translateY(92px)} }
.hero__vertical { position: absolute; right: clamp(16px, 3vw, 40px); top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; font-family: "Archivo"; font-weight: 600; letter-spacing: .3em; font-size: 12px; color: var(--hero-dim); z-index: 3; }

/* ===== 磁石ボタン ===== */
.btn-magnet { display: inline-flex; align-items: center; gap: 12px; margin-top: clamp(28px, 4vw, 42px); padding: clamp(15px, 2vw, 20px) clamp(28px, 4vw, 40px); border: 1px solid var(--gold); border-radius: 999px; color: var(--ink); font-weight: 700; font-size: clamp(14px, 1.5vw, 16px); position: relative; overflow: hidden; transition: color .4s; will-change: transform; }
.btn-magnet span, .btn-magnet svg { position: relative; z-index: 2; transition: transform .4s var(--ease); }
.btn-magnet::before { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translate(-101%, 101%); transition: transform .5s var(--ease); z-index: 1; }
.btn-magnet:hover { color: #000; }
.btn-magnet:hover::before { transform: translate(0, 0); }
.btn-magnet:hover svg { transform: translateX(5px); }
.btn-line { display: inline-flex; align-items: center; margin-top: clamp(28px, 4vw, 42px); padding: clamp(15px, 2vw, 20px) clamp(28px, 4vw, 40px); border-radius: 999px; border: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: clamp(14px, 1.5vw, 16px); transition: border-color .3s, background .3s; }
.btn-line:hover { border-color: var(--ink); background: rgba(26,22,16,.05); }

/* ===== セクション見出し ===== */
.sec-head { text-align: center; margin-bottom: clamp(30px, 5vw, 56px); }
.sec-head--left { text-align: left; margin-bottom: clamp(22px, 3.5vw, 40px); }
.sec-head__num { display: inline-block; font-family: "Archivo"; font-weight: 800; font-size: 13px; letter-spacing: .2em; color: var(--gold); margin-bottom: 12px; }
.sec-head__num::before { content: "("; } .sec-head__num::after { content: ")"; }
.sec-head__title { font-family: "Anton", sans-serif; font-weight: 400; font-size: clamp(40px, 9vw, 120px); line-height: .9; letter-spacing: .01em; text-transform: uppercase; }
.sec-head__title span { display: inline-block; overflow: hidden; }
.sec-head__title i { display: inline-block; font-style: normal; transform: translateY(110%); transition: transform 1s var(--ease); }
.sec-head__ja { margin-top: 12px; font-size: clamp(13px, 1.6vw, 16px); letter-spacing: .18em; color: var(--ink-dim); }
.sec-head__ja em { font-style: normal; font-size: 11px; letter-spacing: .1em; color: rgba(139,135,126,.7); margin-left: 8px; }

/* ===== 登場アニメ ===== */
/* 通常モード：IntersectionObserverが .in を付与 */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.hero__title.in .line i, .sec-head__title span.in i { transform: none; }
.hero__title.in .line:nth-child(2) i { transition-delay: .12s; }
/* パネルモード：アクティブなパネルの子だけ表示 */
html.js-panels [data-reveal] { transition-delay: 0s; }
html.js-panels .panel.is-active [data-reveal] { opacity: 1; transform: none; }
html.js-panels .panel.is-active .hero__title .line i,
html.js-panels .panel.is-active .sec-head__title i { transform: none; }
html.js-panels .panel.is-active .service__list [data-reveal]:nth-child(2) { transition-delay: .08s; }
html.js-panels .panel.is-active .service__list [data-reveal]:nth-child(3) { transition-delay: .16s; }
html.js-panels .panel.is-active [data-reveal] { transition-delay: .12s; }

/* ===== SERVICE ===== */
.service__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(16px, 2vw, 28px); }
.svc { position: relative; border: 1px solid var(--line); border-radius: 4px; padding: clamp(26px, 3vw, 40px); overflow: hidden; transition: border-color .4s, transform .5s var(--ease); background: var(--bg-2); }
.svc:hover { border-color: rgba(216,178,90,.5); transform: translateY(-6px); }
.svc__no { font-family: "Archivo"; font-weight: 800; font-size: 13px; letter-spacing: .2em; color: var(--gold); }
.svc__title { margin: 16px 0 12px; font-size: clamp(21px, 2.6vw, 28px); }
.svc__title em { display: block; font-family: "Archivo"; font-style: normal; font-weight: 600; font-size: clamp(11px, 1.3vw, 13px); letter-spacing: .16em; color: var(--ink-dim); margin-top: 6px; }
.svc p { color: rgba(26,22,16,.62); font-size: clamp(14px, 1.5vw, 15px); }

/* ===== ABOUT ===== */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.about__photo { position: relative; }
.ph--portrait { aspect-ratio: 3/4; max-height: 62svh; border-radius: 4px; }
.about__cap { position: absolute; bottom: -12px; right: -8px; font-family: "Archivo"; font-weight: 800; letter-spacing: .1em; font-size: clamp(18px, 2.6vw, 30px); color: var(--gold); background: var(--bg-2); padding: 6px 14px; }
.about__catch { font-size: clamp(24px, 3.4vw, 42px); font-weight: 900; line-height: 1.35; margin: clamp(16px, 3vw, 26px) 0; }
.about__text { color: rgba(26,22,16,.66); font-size: clamp(14px, 1.6vw, 16px); }
.about__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(20px, 3vw, 30px); }
.about__tags li { border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: clamp(12px, 1.4vw, 13px); color: var(--ink-dim); }

/* ===== WHY ===== */
.why__list { border-top: 1px solid var(--line); }
.why__row { display: grid; grid-template-columns: 70px 1.05fr 1.9fr; gap: clamp(16px, 4vw, 50px); align-items: center; padding: clamp(22px, 3vw, 40px) 0; border-bottom: 1px solid var(--line); transition: background .4s; }
.why__row:hover { background: rgba(26,22,16,.03); }
.why__no { font-family: "Archivo"; font-weight: 800; font-size: clamp(16px, 2vw, 20px); color: var(--gold); letter-spacing: .1em; }
.why__row h3 { font-size: clamp(19px, 2.6vw, 30px); line-height: 1.25; }
.why__row p { color: rgba(26,22,16,.64); font-size: clamp(14px, 1.6vw, 16px); }

/* ===== WORKS ===== */
.works__scroller { margin-top: clamp(18px, 3vw, 34px); overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 0 clamp(20px, 5vw, 72px); scroll-snap-type: x mandatory; cursor: grab; }
.works__scroller::-webkit-scrollbar { display: none; }
.works__scroller.is-drag { cursor: grabbing; }
.works__track { display: flex; gap: clamp(16px, 2vw, 28px); width: max-content; padding-bottom: 4px; }
.work { flex: 0 0 clamp(240px, 30vw, 380px); scroll-snap-align: start; }
.ph--work { aspect-ratio: 3/4; max-height: 56svh; border-radius: 4px; transition: transform .6s var(--ease); }
.work:hover .ph--work { transform: scale(.98); }
.work h3 { margin-top: 16px; font-size: clamp(17px, 2vw, 22px); }
.work p { color: var(--ink-dim); font-size: clamp(12px, 1.4vw, 14px); margin-top: 4px; }

/* ===== FLOW ===== */
.flow__list { list-style: none; max-width: 860px; margin: 0 auto; }
.flow__item { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 44px); padding: clamp(18px, 2.6vw, 30px) 0; border-top: 1px solid var(--line); align-items: baseline; }
.flow__item:last-child { border-bottom: 1px solid var(--line); }
.flow__no { font-family: "Anton", sans-serif; font-size: clamp(30px, 5vw, 60px); color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; }
.flow__item h3 { font-size: clamp(18px, 2.2vw, 25px); margin-bottom: 6px; }
.flow__item p { color: rgba(26,22,16,.64); font-size: clamp(14px, 1.6vw, 16px); }

/* ===== CONTACT ===== */
.panel--last { background: var(--bg-3); text-align: center; }
.panel--last .ph--cta { position: absolute; inset: -10% 0; height: 120%; z-index: 0; }
.panel--last .ph--cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(245,242,236,.6), rgba(245,242,236,.94)); }
.cta__inner { position: relative; z-index: 3; width: 100%; max-width: 900px; margin: 0 auto; padding: clamp(60px,10vh,90px) clamp(20px, 5vw, 72px); }
.cta__label { font-family: "Archivo"; letter-spacing: .3em; font-size: 13px; color: var(--gold); margin-bottom: 18px; }
.cta__title { font-size: clamp(30px, 6.5vw, 78px); font-weight: 900; line-height: 1.14; }
.cta__title i { font-style: normal; }
.cta__lead { margin: clamp(20px, 3vw, 30px) auto 0; max-width: 44ch; color: rgba(26,22,16,.68); font-size: clamp(15px, 1.7vw, 18px); }
.cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer__nav { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; margin-top: clamp(40px, 6vh, 64px); padding-top: 28px; border-top: 1px solid var(--line); }
.footer__nav a { font-family: "Archivo"; font-weight: 600; font-size: 13px; letter-spacing: .1em; color: var(--ink-dim); transition: color .3s; }
.footer__nav a:hover { color: var(--gold); }
.footer__c { margin-top: 22px; color: var(--ink-dim); font-size: 11px; letter-spacing: .1em; }

/* ===== レスポンシブ ===== */
@media (max-width: 1023px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; }
  .why__row { grid-template-columns: 54px 1fr; }
  .why__row p { grid-column: 2; }
}
@media (max-width: 767px) {
  body { line-height: 1.7; }
  .hero__inner { padding-bottom: clamp(80px, 14vh, 120px); }
  .hero__lead br { display: inline; }
  .hero__vertical { display: none; }
  .nav__list a { font-size: clamp(28px, 9vw, 44px); }
  .why__row { grid-template-columns: 1fr; gap: 8px; }
  .why__no { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .line i, .sec-head__title i { transform: none !important; }
}
