/* ===========================================================
   CRAFIT HOUSE ｜ いろいろ平屋相談会 LP
   ベース：中古リノベーションLP（crafithouse-renovation）の
   デザインシステムを継承（フォント／カラー／余白／ボタン／アニメーション）
   =========================================================== */

:root {
  --color-bg:        #ffffff;
  --color-bg-alt:    #e7e8ea;
  --color-offwhite:  #f7f7f6;
  --color-ink:       #000000;
  --color-ink-soft:  #555555;
  --color-line:      #d0d1d3;
  --color-line-soft: #e5e5e6;
  --color-warm:      #777777;
  --color-accent:    #c82536;   /* ブランドアクセント：フォーカス表示のみに使用 */
  --color-cream:     #f0f0f0;
  --color-label:     #717171;
  --color-dark:      #111111;
  --color-cta:       #242424;
  --color-brand:     #78bdb5;
  --color-brand-lg:  #78bdb5;
  --color-brand-soft:#78bdb5;

  --font-serif: "Zen Old Mincho", "Yu Mincho", serif;
  --font-sans:  "Josefin Sans", "Hiragino Kaku Gothic ProN", sans-serif;

  --container: 1120px;
  --fv-max:    1440px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* 手書きフォント「あんずもじ2020」（配布元：https://apricot.ciao.jp/）
   FVの見出し専用にサブセット化（ひらがな・カタカナ・半角英数記号・使用中の漢字のみ）。
   商用可・Webフォント変換可・再配布不可のフリーフォント。見出しの漢字を変える場合は
   fonts/anzumoji2020.woff2 を作り直す必要がある（README参照）。 */
@font-face {
  font-family: "Anzu Moji";
  src: url("../fonts/anzumoji2020.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* FVメインコピー用。商用利用可・改変再配布可のフリーフォント「851マカポップ」 */
@font-face {
  font-family: "851MkPOP";
  src: url("../fonts/851MkPOP.woff2?v=2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 見出し内の一部だけ手書き風に強調するハンコ的アクセント */
.accent-hand {
  font-family: "851MkPOP", var(--font-serif);
  font-size: 1.25em;
  color: var(--color-brand);
  letter-spacing: .04em;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--color-dark);
  font-size: 14px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 .6em;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
button { cursor: pointer; border: none; background: none; padding: 0; }
figure { margin: 0; }

.pc-only { display: inline; }
.sp-only { display: none; }

/* ---------- 動き過敏対応 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .reveal-fade, .reveal-clip, .reveal-wipe { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .fv-main-copy .tr > span { transform: none !important; }
}

/* ============================================================
   アニメーション（既存LPと同仕様＋clip reveal を追加）
   ============================================================ */
.js-anim .reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.js-anim .reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.js-anim .reveal-fade { opacity: 0; transition: opacity 1s ease; }
.js-anim .reveal-fade.is-visible { opacity: 1; }

.js-anim .reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.25s var(--ease);
}
.js-anim .reveal-clip.is-visible { clip-path: inset(0 0 0 0); }
/* 手描き風に左からなぞって現れるワイプ（851マカポップの装飾テキスト用） */
.js-anim .reveal-wipe {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--ease);
}
.js-anim .reveal-wipe.is-visible { clip-path: inset(0 0 0 0); }

.js-anim .reveal-clip img,
.js-anim .reveal-clip .ph {
  transform: scale(1.07);
  transition: transform 1.8s var(--ease);
}
.js-anim .reveal-clip.is-visible img,
.js-anim .reveal-clip.is-visible .ph { transform: scale(1); }

/* text reveal（FVメインコピー） */
.fv-main-copy .tr { display: block; overflow: hidden; }
.js-anim .fv-main-copy .tr > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s var(--ease);
}
.js-anim .fv-main-copy.is-visible .tr > span { transform: translateY(0); }
.js-anim .fv-main-copy .tr:nth-child(2) > span { transition-delay: .1s; }
.js-anim .fv-main-copy.reveal-wipe .tr > span {
  transform: none;
  transition: none;
}

/* ============================================================
   HEADER（既存LPと同仕様。FVが白基調のため初期から黒ロゴ）
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .3s, box-shadow .3s;
}
.header__inner {
  max-width: var(--fv-max); margin-inline: auto;
  height: 64px;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: block; }
.logo-img { height: 68px; width: auto; }

.gnav__list { display: flex; gap: clamp(16px, 1.4vw, 24px); }
.gnav__list a {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.1vw, 15px);
  color: var(--color-ink);
  letter-spacing: .08em;
  transition: opacity .2s;
}
.gnav__list a:hover { opacity: .5; }
.header__right { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }

.hamburger {
  width: 44px; height: 44px; margin-left: 8px;
  display: none; flex-direction: column; justify-content: center; gap: 7px;
  z-index: 210;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; height: 1px; width: 100%; background: var(--color-ink); transition: transform .3s, opacity .3s; }

.header.is-scrolled {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 14px rgba(0,0,0,.05);
}

/* ============================================================
   ボタン（既存LPのジオメトリを継承／配色のみチャコールに）
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .08em;
  border-radius: 999px; cursor: pointer;
  min-height: 44px;
  touch-action: manipulation;
  transition: background .25s ease, color .25s ease, transform .15s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-primary { background: var(--color-cta); color: #fff; padding: 10px 22px; font-size: 13px; }
.btn-primary:hover { background: #333333; }
.btn-outline { background: transparent; color: var(--color-ink); border: 1.5px solid var(--color-ink); padding: 14px 32px; font-size: 14px; }
.btn-outline:hover { background: var(--color-ink); color: #fff; }
.btn-large { padding: 18px 48px; font-size: 15px; }

.btn-text-pc { display: inline; }
.btn-text-mobile { display: none; }

/* ============================================================
   共通レイアウト
   ============================================================ */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section-head { margin-bottom: clamp(40px, 5.6vw, 72px); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-label);
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.6;
  letter-spacing: .04em;
  margin: 0;
}
section[id] { scroll-margin-top: 72px; }

/* 画像プレースホルダー */
.ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-offwhite);
  border: 1px solid var(--color-line-soft);
  display: flex; align-items: center; justify-content: center;
}
.ph span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--color-label);
}
.ph::after {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(0,0,0,.045);
}

/* ============================================================
   SECTION 01 / FIRST VIEW
   ============================================================ */
/* Figmaフレーム（1440 × 1200）をそのまま縮尺するキャンバス。
   子要素は絶対配置で、位置・サイズは全てフレーム比のパーセントで指定する。
   ※ 数値はFigma実測値（node 69-49）。変更する場合は必ずFigmaと突き合わせること。 */
.fv {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}
.fv-inner {
  position: relative;
  width: 100%;
  max-width: var(--fv-max);   /* 1440px = Figmaフレーム幅 */
  margin: 0 auto;
  padding: 0;
  aspect-ratio: 1440 / 1000;  /* 元1200pxから上の余白200pxを詰めた（2026-09） */
}
.fv-inner > * { position: absolute; margin: 0; }
.fv-img { overflow: hidden; }
.fv-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FV 配置（Figma実測値をベースに、写真クラスターを15%拡大して左に寄せたバージョン）
     Bの右端（x1153＝英字ラベルの右揃え位置）と右カラム（本文+CTA）を固定点にして、
     そこからの距離を1.15倍にすることで「左に寄る」と「大きくなる」を同時に満たしている。
     元のFigma実測値（1:1版）は上の履歴コメントを参照。
     A 左上  x59   y297  642×428 (3:2)
     B 右上  x733  y329  420×382 (365:332)
     panel   x434  y642  474幅
     C 左下  x95   y754  438×292 (3:2)
     D 右下  x554  y827  552×276 (2:1)
   ============================================================ */
.fv-img--main { left: 4.10%;  top: 9.70%; width: 44.58%; aspect-ratio: 3 / 2; }
.fv-img--b    { left: 50.90%; top: 12.90%; width: 40%; aspect-ratio: 3 / 2; }
.fv-img--c    { left: 6.60%;  top: 55.40%; width: 30.42%; aspect-ratio: 3 / 2; }
.fv-img--d    { left: 38.47%; top: 56.20%; width: 37.33%; aspect-ratio: 3 / 2; }

/* 英字（Bの右端に右揃え：1153 / 1440 → right 19.93%。固定点なので変更なし） */
.fv-eyebrow {
  right: 8.10%;
  top: 10.00%;
  text-align: right;
  font-family: var(--font-sans);
  font-size: clamp(10px, .76vw, 11px);
  letter-spacing: .2em;
  color: var(--color-label);
}

/* コピーパネル（A/Bの継ぎ目に白背景で重ねる） */
.fv-copy-group {
  left: 29.56%;
  top: 44.50%;
  width: 34%;
  aspect-ratio: 3 / 1;
  z-index: 3;
  transform: scale(.82);
  transform-origin: center;
}
.fv-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2px, .2vw, 3px);
  text-align: center;
}
.fv-copy-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #D8D8D8;
  transform: translate(10px, 10px);
}
.fv-main-copy {
  font-family: "851MkPOP", var(--font-serif);    /* 手書きフォント「851マカポップ」 */
  font-size: clamp(36px, 5.2vw, 74px);           /* 手書き書体は視覚的に小さく見えるため拡大 */
  font-weight: 400;                              /* あんずもじは400のみ */
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
  margin: 0 0 clamp(4px, .4vw, 7px);
  color: var(--color-brand);
  transform: rotate(-4deg);
}
.fv-event {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .16em;
  padding: 0;
  border: 0;
  margin: 6px 0 0;
}

/* 右カラム（本文＋CTA）：位置は固定点。写真クラスターが下に伸びた分だけtopを調整 */
.fv-side {
  left: 77.57%;
  top: 56.5%;
  width: 20.2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
}
.fv-sub {
  font-size: clamp(12px, .97vw, 14px);
  line-height: 1.7;
  color: var(--color-ink-soft);
  letter-spacing: .04em;
  margin: 0;
  text-align: center;
}
.fv-side .btn { white-space: nowrap; }
.fv-sub--lead { order: 1; }
.fv-sub--support { order: 2; }
.fv-formula { order: 3; }
.fv-meta { order: 4; }
.fv-side .btn { order: 5; }
.fv-formula {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.fv-formula-items {
  font-size: clamp(10.5px, .82vw, 13px);
  line-height: 1.5;
  color: var(--color-ink-soft);
  letter-spacing: .02em;
  white-space: nowrap;
  margin: 0;
}
.fv-formula-x {
  font-size: clamp(11px, .9vw, 14px);
  line-height: 1.3;
  color: var(--color-ink-soft);
  margin: 0;
}
.fv-formula-result {
  font-family: "851MkPOP", var(--font-serif);
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .1em;
  color: var(--color-brand);
  margin: 0;
}
.fv-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.fv-meta li {
  padding: 5px 14px;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  color: var(--color-ink-soft);
  background: rgba(120, 189, 181, .08);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .1em;
}
/* 旧：スタイルタグ一覧（現在は非表示。HTML側のコメントと対で残す） */
.fv-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-line);
}
.fv-tags li {
  display: flex; align-items: baseline; gap: 9px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--color-line);
  font-size: 12.5px;
  letter-spacing: .06em;
  line-height: 1.4;
}
.fv-tags li:nth-child(2n+1) { border-right: 1px solid var(--color-line); padding-right: 14px; }
.fv-tags li:nth-child(2n)   { padding-left: 16px; }
.fv-tags-num {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--color-label);
}

.scroll-indicator {
  position: absolute;
  top: 32.1%; right: 4.5%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span {
  font-size: 9px; letter-spacing: .3em;
  color: var(--color-label);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: var(--color-line);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: #8d8d8f;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 150%; }
}

/* ============================================================
   SECTION 02 / INTRODUCTION（WHY HIRAYA）
   ============================================================ */
.why { padding: clamp(88px, 12vw, 160px) 0 0; position: relative; }
.why-scroll-indicator {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.why-scroll-indicator span {
  font-size: 9px; letter-spacing: .3em;
  color: var(--color-label);
  writing-mode: vertical-rl;
}
.why-head .eyebrow { margin-bottom: -8px; }
.why-head-cols {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 80px);
}
.why-head-cols h2 {
  flex: 0 0 40%;
  white-space: nowrap;
}
.fv-copy-break { display: none; }
.why-head-body { flex: 1; }
.why-head-body p {
  font-size: 14.5px;
  line-height: 2.15;
  color: var(--color-ink-soft);
  letter-spacing: .04em;
}
.why-head-body p:last-child { margin-bottom: 0; }

.why-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 52px);
}
.why-reasons li {
  border-top: 1px solid var(--color-line);
  padding-top: 22px;
}
.why-reasons-num {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--color-label);
  margin: 0 0 16px;
}
.why-reasons h3 {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
  letter-spacing: .04em;
  margin: 0 0 14px;
}
.why-reasons p {
  font-size: 13px;
  line-height: 2.05;
  color: var(--color-ink-soft);
  margin: 0;
}

.why-band {
  margin-top: clamp(64px, 9vw, 124px);
  overflow: hidden;
}
.why-band-img {
  position: relative;
  height: clamp(240px, 44vh, 520px);
  overflow: hidden;
}
.why-band-img img {
  position: absolute;
  top: -13%; left: 0;
  width: 100%;
  height: 126%;
  object-fit: cover;
  object-position: center 45%;
  will-change: transform;
}

.why-turn {
  padding: clamp(64px, 9vw, 130px) 0 clamp(40px, 5vw, 70px);
  text-align: center;
}
.why-turn-deco {
  font-family: "851MkPOP", var(--font-serif);
  font-size: clamp(48px, 8.5vw, 128px);
  line-height: 1;
  letter-spacing: .04em;
  color: var(--color-brand-soft);
  transform: rotate(-6deg);
  margin: clamp(48px, 7vw, 100px) 0 0;
}
.why-turn-lead {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 2.1;
  letter-spacing: .06em;
  color: var(--color-ink-soft);
  margin: 0 0 clamp(22px, 3vw, 38px);
}
.why-turn-q {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(23px, 3.4vw, 44px);
  line-height: 1.6;
  letter-spacing: .05em;
  margin: 0;
}

/* ============================================================
   SECTION 03 / HIRAYA STYLE
   ============================================================ */
.style { padding: clamp(24px, 4vw, 56px) 0 0; }
.style-head-cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(24px, 3.2vw, 40px);
}
.style-head .eyebrow { margin-bottom: -8px; }
.style-head h2 { margin: 0 0 clamp(18px, 2.4vw, 26px); }
.style-head-lead {
  font-size: 14.5px;
  line-height: 2.15;
  letter-spacing: .04em;
  color: var(--color-ink-soft);
  max-width: 460px;
  text-align: left;
  margin: 0;
}
.style-head-illust {
  width: clamp(270px, 27vw, 400px);
  flex-shrink: 0;
  position: relative;
  left: -150px;
  margin-top: -70px;
  margin-bottom: -130px;
}
.style-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-line);
  margin-top: clamp(28px, 4vw, 48px);
}
.style-index li { border-bottom: 1px solid var(--color-line); }
.style-index a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 16px 6px;
  font-size: 12.5px;
  letter-spacing: .05em;
  transition: opacity .2s;
}
.style-index a:hover { opacity: .45; }
.style-index span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--color-label);
}
.style-index li + li a { border-left: 1px solid var(--color-line); padding-left: 18px; }

.style-item { padding: clamp(64px, 9vw, 132px) 0; }
.style-item:first-of-type { padding-top: 0; }
.style-item + .style-item { border-top: 1px solid var(--color-line-soft); }
.style-item-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(24px, 3vw, 48px);
}
.style-col {
  grid-column: 1 / 5;
  grid-row: 1;
  position: sticky;
  top: clamp(92px, 12vh, 132px);
  align-self: start;
}
.style-media {
  grid-column: 6 / 13;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2vw, 28px);
  row-gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.style-item--rev .style-col   { grid-column: 9 / 13; }
.style-item--rev .style-media { grid-column: 1 / 8; }
.style-media-strip { display: contents; }
.style-media-next { display: none; }

.style-num {
  font-family: "851MkPOP", var(--font-sans);
  font-weight: 400;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--color-brand-lg);
  margin: 0 0 12px;
}
.style-en {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-label);
  margin: 0 0 16px;
}
.style-label {
  font-size: clamp(18px, 1.9vw, 23px);
  letter-spacing: .06em;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}
.style-x {
  font-family: var(--font-sans);
  font-weight: 300;
  color: #8d8d8f;
  padding: 0 .45em;
}
.style-note {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--color-label);
  margin: 14px 0 0;
}
.style-copy {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.6;
  letter-spacing: .04em;
  margin: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 34px);
}
.style-talk-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--color-label);
  margin: 0 0 8px;
}
.style-talk ul li {
  border-top: 1px solid var(--color-line-soft);
  padding: 14px 0;
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: .03em;
  color: var(--color-ink-soft);
}
.style-talk ul li:last-child { border-bottom: 1px solid var(--color-line-soft); }

/* スタッフコメント（既存LP work-staff の構成を踏襲。
   参考LPは吹き出しに青系#E0E4EEを使用していたが、
   本LPのパレット（白〜オフホワイト／黒〜チャコール）に合わせてオフホワイト＋細罫に統一） */
.style-staff {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
}
.style-staff-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-line);
}
.style-staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.style-staff-body {
  background: var(--color-offwhite);
  border: 1px solid var(--color-line-soft);
  border-radius: 3px;
  padding: 14px 16px;
  flex: 1;
}
.style-staff-role {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--color-label);
  margin: 0 0 6px;
}
.style-staff-comment {
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: .03em;
  color: var(--color-ink-soft);
  margin: 0;
}

.style-fig { position: relative; overflow: hidden; }
/* 写真は常に絶対配置でフィギュアいっぱいに敷く。
   比率は img ではなく必ず figure 側の aspect-ratio で決める（下記）。
   ※ 以前は img 側にも個別の aspect-ratio（4/3 等）が付いており、
     figure だけ is-portrait で縦比率にしても img は横比率のまま縮んで
     枠の下に空白ができるバグがあった（実際に発生）。img 側の比率指定は
     二度と増やさないこと。 */
.style-fig img {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
#style-04 .style-fig--lg img,
.js-anim #style-04 .reveal-clip.is-visible.style-fig--lg img { transform: scale(1.3); }

/* ①引き（カラム全幅）／②中／③小（段差）
   grid-row を明示しないと、反転ブロック（--rev）で③が次の行に落ちて余白が空く */
.style-fig--lg { grid-column: 1 / 13; grid-row: 1; aspect-ratio: 16 / 10; }
.style-fig--sm { grid-column: 1 / 7; grid-row: 2; aspect-ratio: 4 / 3; }
.style-fig--sm.is-portrait { aspect-ratio: 3 / 4; }
.style-fig--dt {
  /* ③は横写真前提の 4/3 が既定（3:2の素材から幅11%だけのトリミング）。
     縦素材の枠だけ .is-portrait、トリミングを最小にしたい超横長素材は .is-wide */
  grid-column: 7 / 13;
  grid-row: 2;
  margin-top: clamp(32px, 5vw, 88px);
  aspect-ratio: 4 / 3;
}
.style-fig--dt.is-portrait { aspect-ratio: 3 / 4; }
.style-fig--dt.is-wide     { aspect-ratio: 16 / 9; }
.style-fig--dt img {
  /* パララックス用にわずかにオーバースキャン（JSの translate 分の余白） */
  top: -10%;
  height: 120%;
  will-change: transform;
}
.style-item--rev .style-fig--sm { grid-column: 6 / 13; }
.style-item--rev .style-fig--dt { grid-column: 1 / 6; }

/* ②も縦にする場合（03ヌックなど）：.style-fig--sm に is-portrait を付ける
   （比率は上の .style-fig--sm.is-portrait で指定済み）。
   ②③が両方縦のときは幅6:6に揃えて「縦2枚並び」のバランスを取る。
   ※ モバイルは .style-media 自体が repeat(6,1fr) に変わるため、
     このカラム指定（12分割前提）は必ず min-width:861px でスコープすること。
     一度これを外して mobile 側の grid-column: 1/7 を丸ごと踏み潰す事故が起きた。 */
@media (min-width: 861px) {
  .style-media:has(.style-fig--sm.is-portrait) .style-fig--sm { grid-column: 1 / 7; }
  .style-media:has(.style-fig--sm.is-portrait) .style-fig--dt { grid-column: 7 / 13; }
  .style-item--rev .style-media:has(.style-fig--sm.is-portrait) .style-fig--sm { grid-column: 7 / 13; }
  .style-item--rev .style-media:has(.style-fig--sm.is-portrait) .style-fig--dt { grid-column: 1 / 7; }
}
.style-fig figcaption {
  font-size: 11.5px;
  line-height: 1.9;
  letter-spacing: .05em;
  color: var(--color-label);
  margin-top: 14px;
}

/* ============================================================
   SECTION 04 / REFERENCE PRICE
   ============================================================ */
.price {
  background: var(--color-cream);
  padding: clamp(80px, 11vw, 150px) 0;
}

/* 見出し＋坪数バッジ（円形） */
.price-title-row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 40px);
}
.price-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.price-badge--mobile { display: flex; }
.price-badge-circle {
  width: clamp(84px, 8vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--color-brand-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.price-badge-num {
  font-family: var(--font-sans);  /* 「3,320」と同じフォント */
  font-weight: 700;
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--color-brand);
}
.price-badge-unit {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--color-brand);
}
.price-badge-cap {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--color-label);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.price-label-en {
  font-size: 9.5px;
  letter-spacing: .26em;
  color: var(--color-label);
  text-transform: uppercase;
}

/* 価格（黒ラベル＋大きな数字） */
.price-main {
  border-top: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  padding: clamp(40px, 5.6vw, 68px) 0;
  margin-top: clamp(40px, 5vw, 64px);
}
.price-main-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(20px, 2.4vw, 30px);
}
.price-label-chip {
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .18em;
  padding: 9px 18px;
  border-radius: 999px;
}
.price-main-value { display: flex; align-items: center; gap: 28px; margin: 0; }
.price-amount { display: flex; align-items: baseline; }
.price-num {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--color-brand);
}
.price-num--lg {
  font-weight: 700;
  font-size: clamp(72px, 11.4vw, 168px);
  letter-spacing: -.01em;
}
.price-unit {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 21px);
  letter-spacing: .06em;
  margin-left: .35em;
}
.price-tax {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--color-label);
  margin-left: .7em;
}
.price-note {
  font-size: 11.5px;
  line-height: 2;
  letter-spacing: .04em;
  color: var(--color-label);
  margin: clamp(20px, 2.6vw, 32px) 0 0;
}

/* ============================================================
   SECTION 05 / WHAT YOU CAN DO
   ============================================================ */
.cando { padding: clamp(88px, 12vw, 160px) 0; }
.cando-list {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 124px);
}
.cando-item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.cando-item:nth-child(odd) .cando-text  { grid-column: 1 / 5; grid-row: 1; }
.cando-item:nth-child(odd) .cando-media { grid-column: 6 / 13; grid-row: 1; }
.cando-item:nth-child(even) .cando-text  { grid-column: 9 / 13; grid-row: 1; }
.cando-item:nth-child(even) .cando-media { grid-column: 1 / 8; grid-row: 1; }
.cando-media { overflow: hidden; }
.cando-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cando-text .cando-num {
  font-family: "851MkPOP", var(--font-sans);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--color-brand-lg);
  margin: 0 0 20px;
}
.cando-text h3 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.6;
  letter-spacing: .04em;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}
.cando-text p {
  font-size: 13.5px;
  line-height: 2.1;
  letter-spacing: .03em;
  color: var(--color-ink-soft);
  margin: 0;
}
.cando-item:nth-child(2) .cando-media img,
.cando-item:nth-child(2) .ph { aspect-ratio: 16 / 10; }
.cando-item:nth-child(3) .cando-media img,
.cando-item:nth-child(3) .ph { aspect-ratio: 3 / 2; }

/* ============================================================
   SECTION 06 / MESSAGE
   ============================================================ */
.message {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(96px, 14vw, 190px) 0;
  background: #111;
  overflow: hidden;
}
.message-bg { position: absolute; inset: 0; }
.message-bg img {
  position: absolute;
  top: -10%; left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.message-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,8,8,.52) 0%, rgba(8,8,8,.3) 62%, rgba(8,8,8,.26) 100%),
    linear-gradient(to bottom, rgba(8,8,8,.2) 0%, rgba(8,8,8,.34) 100%);
}
.message-inner { position: relative; z-index: 2; width: 100%; }
.message .eyebrow { color: rgba(255,255,255,.6); }
.message-heading {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 50px);
  line-height: 1.6;
  letter-spacing: .04em;
  margin: 0 0 clamp(28px, 4vw, 46px);
}
.message-body { max-width: 620px; }
.message-body p {
  font-size: 14.5px;
  line-height: 2.2;
  letter-spacing: .05em;
  color: rgba(255,255,255,.88);
}
.message-list {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 19px) !important;
  line-height: 2.3 !important;
  color: #fff !important;
  border-left: 1px solid rgba(255,255,255,.3);
  padding-left: 22px;
  margin-bottom: 1.6em;
}
.message-close {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(19px, 2.4vw, 30px);
  line-height: 1.7;
  letter-spacing: .05em;
  margin: clamp(28px, 4vw, 50px) 0 0;
}

/* ============================================================
   SECTION 07 / EVENT
   ============================================================ */
.event {
  padding: clamp(88px, 12vw, 160px) 0;
  background: #f5f7f6;
}
.event-head { margin-bottom: clamp(30px, 4vw, 52px); }
.event-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding: clamp(26px, 4vw, 56px);
  background: var(--color-bg);
  border: 1px solid var(--color-line-soft);
}
.event-list {
  border-top: 1px solid var(--color-line);
}
.event-photo { overflow: hidden; }
.event-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.event-status {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
}
.event-status span {
  padding: 5px 14px;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  color: var(--color-ink-soft);
  background: rgba(120, 189, 181, .08);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .1em;
}
.event-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid var(--color-line);
}
.event-row dt {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .12em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.event-en {
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-label);
}
.event-row dd {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: .06em;
}
.event-row:first-child dd {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
}
.event-row dd.tbd {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--color-label);
}
.event-note {
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--color-label);
  margin: 20px 0 0;
}
/* ============================================================
   SECTION 08 / FINAL CTA
   ============================================================ */
.final { padding: clamp(90px, 11vw, 150px) 0; text-align: center; }
.final-inner { max-width: 780px; }
.final-heading {
  font-size: clamp(26px, 4.2vw, 54px);
  line-height: 1.55;
  letter-spacing: .05em;
  margin: 0 0 clamp(32px, 4.4vw, 54px);
}
.final-body p {
  font-size: 14.5px;
  line-height: 2.2;
  letter-spacing: .05em;
  color: var(--color-ink-soft);
}
.final-body p:last-child { margin-bottom: 0; }
.final-cta { margin-top: clamp(36px, 5vw, 60px); }
.final-sub {
  font-size: 11.5px;
  line-height: 2;
  letter-spacing: .04em;
  color: var(--color-label);
  margin: 26px 0 0;
}

/* ============================================================
   FOOTER（既存LPと同仕様）
   ============================================================ */
.site-footer {
  background: #3d3d3d;
  padding: 40px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-inner .logo img { height: 56px; }
.footer-bottom {
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.68);
  margin: 0;
}

/* ============================================================
   写真の拡大表示（ライトボックス）
   ============================================================ */
.style-fig[data-lb] { cursor: zoom-in; }

.fig-zoom {
  /* 写真の上端を基準にする（figcaption を含む figure の下端に置くと文字に重なる） */
  position: absolute;
  right: 12px; top: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .3s ease, transform .3s var(--ease), background .2s ease;
}
.style-fig:hover .fig-zoom,
.fig-zoom:focus-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 860px) {
  .fig-zoom { right: 8px; top: 8px; width: 44px; height: 44px; }
}
.fig-zoom:hover { background: #fff; }
.fig-zoom::before, .fig-zoom::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--color-ink);
}
.fig-zoom::before { width: 11px; height: 1px; transform: translate(-50%, -50%); }
.fig-zoom::after  { width: 1px; height: 11px; transform: translate(-50%, -50%); }
@media (hover: none) {
  .fig-zoom { opacity: 1; transform: none; }
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  width: 100%; max-width: 100vw;
  height: 100%; max-height: 100vh;
  margin: 0; padding: 0; border: 0;
  background: rgba(8,8,8,.95);
  overflow: hidden;
}
.lb[hidden] { display: none; }
body.lb-open { overflow: hidden; }

.lb-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 72px);
}
.lb-figure {
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  max-width: 100%;
}
.lb-img {
  display: block;
  max-width: min(92vw, 1400px);
  max-height: 76vh;
  width: auto; height: auto;
  object-fit: contain;
  will-change: transform;
}
.lb-cap {
  display: flex; align-items: baseline; gap: 18px;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
}
.lb-count {
  font-family: var(--font-sans);
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
}
.lb-close {
  position: absolute;
  top: clamp(12px, 2.4vw, 28px); right: clamp(12px, 2.4vw, 28px);
  width: 44px; height: 44px;
  z-index: 3;
}
.lb-close span {
  position: absolute;
  left: 11px; top: 21px;
  width: 22px; height: 1px;
  background: #fff;
  transition: opacity .2s;
}
.lb-close span:nth-child(1) { transform: rotate(45deg); }
.lb-close span:nth-child(2) { transform: rotate(-45deg); }
.lb-close:hover span { opacity: .6; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  z-index: 3;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 30px;
  line-height: 1;
  opacity: .55;
  transition: opacity .2s;
}
.lb-nav:hover { opacity: 1; }
.lb-prev { left: clamp(4px, 1.6vw, 24px); }
.lb-next { right: clamp(4px, 1.6vw, 24px); }

@media (max-width: 860px) {
  .lb-stage { padding: 56px 16px 40px; }
  .lb-img { max-height: 66vh; max-width: 100%; }
  .lb-nav { top: auto; bottom: calc(16px + env(safe-area-inset-bottom)); transform: none; width: 48px; height: 48px; }
  .lb-cap { font-size: 11px; gap: 12px; flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .fig-zoom { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE 固定CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-line);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn {
  width: 100%;
  padding: 15px 0;
  font-size: 14px;
}

/* ============================================================
   RESPONSIVE ― タブレット
   ============================================================ */
@media (max-width: 1024px) and (min-width: 861px) {
  .style-col { grid-column: 1 / 5; }
  .style-media { grid-column: 5 / 13; }
  .style-item--rev .style-col { grid-column: 9 / 13; }
  .style-item--rev .style-media { grid-column: 1 / 9; }
  .style-fig--sm { grid-column: 1 / 9; }
  .style-item--rev .style-fig--sm { grid-column: 5 / 13; }
  .style-fig--dt { grid-column: 9 / 13; }
  .style-item--rev .style-fig--dt { grid-column: 1 / 5; }
  .cando-item:nth-child(odd) .cando-text { grid-column: 1 / 6; }
  .cando-item:nth-child(even) .cando-text { grid-column: 8 / 13; }
}

/* ============================================================
   RESPONSIVE ― モバイル（375〜430px を基準に最適化）
   ============================================================ */
@media (max-width: 860px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  /* 広告流入の初期表示では、FVをアニメーション待ちで白くしない */
  .js-anim .fv .reveal-up,
  .js-anim .fv .reveal-fade,
  .js-anim .fv .reveal-clip {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
  .js-anim .fv .reveal-clip img,
  .js-anim .fv-main-copy .tr > span {
    transform: none;
    transition: none;
  }

  body { font-size: 16px; line-height: 1.75; }
  .section-inner { padding: 0 20px; }
  .section-head { margin-bottom: 32px; }
  .eyebrow { font-size: 10px; letter-spacing: .22em; margin-bottom: 14px; }
  h2 { font-size: clamp(21px, 6vw, 27px); line-height: 1.65; }

  /* ---------- HEADER ---------- */
  .logo-img { height: 46px; }
  .header__inner { height: 58px; padding-inline: 16px; }
  .header__right { gap: 4px; }
  .header__right .btn { min-height: 44px; font-size: 12px; padding: 9px 16px; }
  .btn-text-pc { display: none !important; }
  .btn-text-mobile { display: inline !important; }
  .btn-large { padding: 16px 32px; font-size: 14px; }

  /* ---------- FV ----------
     モバイルはFigmaに専用デザインが無いため、PCの絶対配置を解除して
     4枚を2×2で隙間なく並べ、中央に小さなコピーパネルを重ねる */
  .fv { padding: 74px 0 48px; }
  .fv-inner {
    position: static;
    aspect-ratio: auto;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 0;
    row-gap: 0;
    padding: 0 10px;
    overflow: hidden;
  }
  .fv-inner > * {
    position: static;
    left: auto; right: auto; top: auto;
    width: auto;
  }
  .fv-eyebrow   { display: none; }
  .fv-img--main { grid-column: 1 / 4; grid-row: 1; aspect-ratio: 3 / 2; }
  .fv-img--b    { grid-column: 4 / 7; grid-row: 1; aspect-ratio: 3 / 2; }
  .fv-img--c    { grid-column: 1 / 4; grid-row: 2; aspect-ratio: 3 / 2; }
  .fv-img--d    { grid-column: 4 / 7; grid-row: 2; aspect-ratio: 3 / 2; }
  .fv-inner > .fv-copy-group {
    position: relative;
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    place-self: center;
    width: clamp(128px, 37vw, 148px);
    min-height: 128px;
    aspect-ratio: auto;
    margin: 0;
    transform: none;
    z-index: 3;
  }
  .fv-copy-group .fv-copy {
    position: relative;
    inset: auto;
    min-height: 128px;
    padding: 14px 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .fv-copy-group .fv-copy-shadow { transform: translate(5px, 5px); }
  .fv-side      { grid-column: 1 / 7; grid-row: 3; margin: 32px 10px 0; gap: 12px; }
  .fv-side .btn { width: 100%; }
  .fv-sub--lead { order: 1; }
  .fv-sub--support { order: 2; margin-bottom: 4px; }
  .fv-formula { order: 3; margin-top: 0; }
  .fv-meta { order: 4; }
  .fv-side .btn { order: 5; margin-top: 4px; }

  .fv-eyebrow { font-size: 10px; letter-spacing: .18em; }
  .fv-main-copy { font-size: clamp(32px, 8.6vw, 37px); line-height: 1.26; margin-bottom: 7px; white-space: normal; }
  .fv-copy-break { display: block; }
  .fv-event { font-size: clamp(10px, 2.65vw, 11.5px); line-height: 1.5; letter-spacing: .01em; white-space: nowrap; }
  .fv-sub { font-size: 15px; line-height: 1.8; }
  .fv-formula {
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    width: 100%;
  }
  .fv-formula-items {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .025em;
    white-space: nowrap;
    text-align: center;
  }
  .fv-formula-x {
    font-size: 15px;
    line-height: 1.4;
  }
  .fv-formula-result {
    flex: 0 0 auto;
    font-size: 26px;
    line-height: 1.25;
    white-space: nowrap;
  }
  .fv-meta { gap: 6px; }
  .fv-meta li { padding: 5px 14px; font-size: 11px; }
  .fv-tags li { font-size: 11.5px; padding: 12px 2px; gap: 7px; }
  .fv-tags li:nth-child(2n+1) { padding-right: 10px; }
  .fv-tags li:nth-child(2n) { padding-left: 12px; }
  .scroll-indicator { display: none; }

  /* ---------- WHY ---------- */
  .why { padding: 104px 0 0; }
  .why-head-cols { flex-direction: column; gap: 18px; }
  .why-head-cols h2 { flex: none; }
  .why-head-body p { font-size: 15px; line-height: 1.9; }
  .why-reasons { grid-template-columns: 1fr; gap: 0; }
  .why-reasons li { padding: 20px 0; }
  .why-reasons li:last-child { border-bottom: 1px solid var(--color-line); }
  .why-reasons-num { margin-bottom: 10px; font-size: 11px; }
  .why-reasons h3 { font-size: 17px; margin-bottom: 10px; }
  .why-reasons h3 br { display: none; }
  .why-reasons p { font-size: 15px; line-height: 1.85; }
  .why-band { margin-top: 48px; }
  .why-band-img { height: 240px; }
  .why-turn { padding: 56px 0 64px; }
  .why-turn-lead { font-size: 15px; line-height: 1.9; margin-bottom: 20px; }
  .why-turn-q { font-size: clamp(22px, 6.4vw, 30px); }

  /* ---------- HIRAYA STYLE ---------- */
  .style { padding: 16px 0 0; }
  .style-head-cols { display: block; margin-bottom: 24px; }
  .style-head-lead { font-size: 15px; line-height: 1.9; }
  .style-head-illust { width: 190px; left: auto; margin: -24px 0 -28px auto; }
  .style-index { grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .style-index a { min-height: 48px; font-size: 13px; padding: 13px 4px; gap: 8px; }
  .style-index li + li a { border-left: none; padding-left: 4px; }
  .style-index li:nth-child(2n) a { border-left: 1px solid var(--color-line); padding-left: 14px; }

  .style-item { padding: 48px 0 56px; }
  .style-item-inner { display: flex; flex-direction: column; gap: 0; }
  .style-col { display: contents; }
  .style-hd { order: 1; }
  .style-media {
    order: 2;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 12px;
    row-gap: 16px;
    margin-top: 24px;
  }
  .style-text { order: 3; margin-top: -16px; }

  .style-num { font-size: 54px; margin-bottom: 8px; }
  .style-en { font-size: 11px; margin-bottom: 12px; }
  .style-label { font-size: 17px; padding-bottom: 14px; }
  .style-note { font-size: 13px; margin-top: 10px; }
  .style-copy { font-size: clamp(26px, 7.2vw, 32px); margin: 28px 0 22px; }
  .style-talk ul li { font-size: 15px; line-height: 1.8; padding: 14px 0; }
  .style-staff { gap: 12px; margin-top: 18px; padding-top: 18px; }
  .style-staff-avatar { width: 42px; height: 42px; }
  .style-staff-body { padding: 12px 14px; }
  .style-staff-role { font-size: 11px; color: var(--color-ink-soft); }
  .style-staff-comment { font-size: 14px; line-height: 1.8; }
  .style-fig--lg,
  .style-item--rev .style-fig--lg { grid-column: 1 / 7; grid-row: 1; margin-right: -20px; aspect-ratio: 4 / 3; }
  .style-media-strip {
    grid-column: 1 / 7;
    grid-row: 2;
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .style-media-strip::-webkit-scrollbar { display: none; }
  .style-media-next {
    grid-column: 1 / 7;
    grid-row: 3;
    align-self: start;
    justify-self: end;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 96px;
    min-height: 44px;
    margin: 0 10px 0 0;
    position: relative;
    padding: 0 12px;
    border: 0;
    color: var(--color-ink-soft);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 10px;
    line-height: 1;
    letter-spacing: .14em;
    cursor: pointer;
  }
  .style-media-next::before {
    content: '';
    position: absolute;
    inset: 6px 0;
    z-index: 0;
    border: 1px solid var(--color-brand);
    border-radius: 999px;
    background: rgba(120, 189, 181, .08);
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .style-media-next > span { position: relative; z-index: 1; }
  .style-media-next-arrow { font-size: 15px; letter-spacing: 0; }
  .style-fig--sm,
  .style-item--rev .style-fig--sm { grid-column: 1 / 7; grid-row: 2; width: 82%; aspect-ratio: 3 / 2; }
  .style-fig--sm.is-portrait { aspect-ratio: 4 / 5; }
  .style-fig--dt,
  .style-item--rev .style-fig--dt {
    grid-column: 1 / 7;
    grid-row: 3;
    width: 60%;
    margin-left: auto;
    margin-top: 18px;
    aspect-ratio: 3 / 2;
  }
  .style-fig--dt { display: none; }
  .style-media-strip .style-fig--sm,
  .style-media-strip .style-fig--dt,
  .style-item--rev .style-media-strip .style-fig--sm,
  .style-item--rev .style-media-strip .style-fig--dt {
    display: block;
    flex: 0 0 82%;
    width: auto;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .style-fig--dt.is-portrait { aspect-ratio: 4 / 5; }
  .style-fig--dt.is-wide     { aspect-ratio: 16 / 9; }
  .style-fig figcaption { font-size: 10.5px; margin-top: 9px; line-height: 1.7; }

  /* ---------- PRICE ---------- */
  .price { padding: 64px 0 72px; }
  .price-title-row { gap: 8px; }
  .price-badge--desktop { display: none; }
  .price-badge--mobile {
    display: flex;
    flex: 0 0 78px;
    gap: 10px;
    align-self: flex-start;
    margin-top: -14px;
  }
  .price-badge-circle { width: 76px; }
  .price-badge-num { font-size: 34px; }
  .price-badge-unit { font-size: 17px; }
  .price-badge-cap { font-size: 11px; }
  .price-main { padding: 26px 0 28px; margin-top: 28px; }
  .price-main-label { gap: 10px; margin-bottom: 16px; }
  .price-label-chip { font-size: 11px; padding: 7px 14px; }
  .price-num { font-size: 44px; }
  .price-num--lg { font-size: clamp(68px, 21vw, 96px); }
  .price-unit { font-size: 15px; }
  .price-tax { font-size: 12px; display: block; margin: 6px 0 0 0; }
  .price-main-value {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .price-amount { flex-wrap: wrap; min-width: 0; }
  .price-amount .price-tax { flex-basis: 100%; }
  .price-note { font-size: 12px; line-height: 1.8; margin-top: 18px; }

  /* ---------- WHAT YOU CAN DO ---------- */
  .cando { padding: 64px 0 72px; }
  .cando-list { gap: 48px; }
  .cando-item { display: flex; flex-direction: column; align-items: stretch; gap: 22px; }
  .cando-media { order: 2; margin-right: -20px; }
  .cando-item:nth-child(even) .cando-media { margin-right: 0; margin-left: -20px; }
  .cando-num { font-size: 44px; margin-bottom: 14px; }
  .cando-text h3 { font-size: 20px; margin-bottom: 14px; padding-bottom: 14px; }
  .cando-text p { font-size: 15px; line-height: 1.85; }
  .cando-item:nth-child(2) .cando-media img,
  .cando-item:nth-child(3) .cando-media img,
  .cando-item:nth-child(2) .ph,
  .cando-item:nth-child(3) .ph { aspect-ratio: 4 / 3; }

  /* ---------- MESSAGE ---------- */
  .message { padding: 80px 0; min-height: 0; }
  .message-heading { font-size: clamp(23px, 6.6vw, 30px); margin-bottom: 26px; }
  .message-body { max-width: none; }
  .message-body p { font-size: 13px; line-height: 2.1; }
  .message-list { font-size: 14px !important; line-height: 2.2 !important; padding-left: 16px; }
  .message-close { font-size: clamp(19px, 5.6vw, 24px); margin-top: 30px; }

  /* ---------- EVENT ---------- */
  .event { padding: 64px 0 72px; }
  .event-head { margin-bottom: 28px; }
  .event-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .event-visual { order: -1; }
  .event-photo { margin: -20px -20px 0; }
  .event-status { margin-top: 14px; }
  .event-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 2px;
  }
  .event-row dt { font-size: 14px; letter-spacing: .1em; }
  .event-en { font-size: 9px; }
  .event-row dd { font-size: 16px; }
  .event-row dd.tbd { font-size: 12.5px; }
  /* ---------- FINAL ---------- */
  .final { padding: 80px 0 88px; }
  .final-heading { font-size: clamp(24px, 7vw, 32px); margin-bottom: 28px; }
  .final-body p { font-size: 15px; line-height: 1.9; }
  .final-cta { margin-top: 32px; }
  .final-cta .btn { width: 100%; }
  .final-sub { font-size: 13px; line-height: 1.8; margin-top: 20px; }

  /* ---------- FOOTER ---------- */
  .site-footer { padding: 36px 0 calc(32px + 68px); }
  .footer-inner .logo img { height: 46px; }

  /* ---------- 固定CTA ---------- */
  .sticky-cta { display: block; }
}

/* ============================================================
   RESPONSIVE ― ナビゲーション（ドロワー）
   ============================================================ */
@media (max-width: 767px) {
  body.nav-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }
  body.nav-open .header,
  body.nav-open .header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(0,0,0,.36);
  }
  .hamburger { display: flex; }
  .gnav {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 320px);
    background: var(--color-dark);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s ease, visibility 0s linear .35s;
    display: flex; align-items: center;
    z-index: 205;
  }
  .gnav.is-open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
  .gnav__list { flex-direction: column; gap: 28px; padding-inline: 44px; }
  .gnav__list a { color: #fff !important; font-size: 1.05rem; letter-spacing: .1em; }
  body.nav-open .hamburger span { background: #fff; }
  body.nav-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
  body.nav-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================================
   RESPONSIVE ― 小さめスマートフォン（〜390px）
   ============================================================ */
@media (max-width: 390px) {
  .fv-main-copy { font-size: 32px; }
  .fv-tags li { font-size: 11px; letter-spacing: .03em; }
  .style-num { font-size: 48px; }
  .price-num--lg { font-size: 50px; }
  .btn-large { padding: 15px 24px; font-size: 14px; }
}

/* ============================================================
   MOBILE FV MOTION
   PC版と同じ、上からのクリップ表示＋緩やかなズームで見せる。
   ============================================================ */
@keyframes fv-mobile-clip-in {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes fv-image-settle {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
@keyframes fv-panel-in {
  from { opacity: 0; transform: translateY(6px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 860px) and (prefers-reduced-motion: no-preference) {
  .js-anim .fv .fv-img {
    animation: fv-mobile-clip-in 1.25s var(--ease) both;
  }
  .js-anim .fv .fv-img img {
    animation: fv-image-settle 1.8s var(--ease) both;
  }
  .js-anim .fv .fv-img--main {
    animation-delay: 0s;
  }
  .js-anim .fv .fv-img--b {
    animation-delay: .1s;
  }
  .js-anim .fv .fv-img--c {
    animation-delay: .2s;
  }
  .js-anim .fv .fv-img--d {
    animation-delay: .3s;
  }
  .js-anim .fv .fv-img--main img { animation-delay: 0s; }
  .js-anim .fv .fv-img--b img { animation-delay: .1s; }
  .js-anim .fv .fv-img--c img { animation-delay: .2s; }
  .js-anim .fv .fv-img--d img { animation-delay: .3s; }

  .js-anim .fv .fv-copy-group {
    animation: fv-panel-in .65s cubic-bezier(.16, 1, .3, 1) .35s both;
  }

  .js-anim .fv .fv-side.reveal-up {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease-out, transform .5s ease-out;
  }
  .js-anim .fv .fv-side.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
