@charset "UTF-8";
/* =============================================================
   LUCENA ブランドサイト スタイルシート
   - 設計: 制作/01_デザイン仕様書.md に忠実
   - モバイル(375px)で基本を組み、@mediaで広い画面へ拡張
   - 色・余白・角丸・影・フォントはすべて :root 変数から参照
   ============================================================= */

/* ---------- 1. デザイントークン（色・フォント・余白・影） ---------- */
:root {
  /* ── ベース（地色・面） ── */
  --color-bg:          #FDFCF9; /* 温かいアイボリー。写真の白壁と馴染む地色 */
  --color-bg-tint:     #F7F4EC; /* 一段沈めた背景。帯・カード裏で階層を作る */
  --color-surface:     #FFFFFF; /* ギャラリーカードの面。写真を額装ぎみに持ち上げる */
  --color-border:      #E7DFD0; /* 温かいグレージュの罫線 */
  --color-border-soft: #F0E9DC; /* さらに薄い区切り線 */

  /* ── 締め色（インク＝ロゴの海を深くした深ティール） ── */
  --color-ink:         #123F49;
  --color-ink-2:       #1A505C;
  --color-navy-deep:   #0E2A33;

  /* ── テキスト ── */
  --color-text:        #2A2620;
  --color-text-muted:  #6B6459;
  --color-text-inv:    #F7F2E9;
  --color-text-inv-mut:#BFD9DC;

  /* ── 金（光＝シャンパンゴールド） ── */
  --color-gold:        #C4A265; /* 線・面・アイコン用（小さい文字には使わない） */
  --color-gold-lite:   #E3CC93;
  --color-gold-deep:   #A07C3A;
  --color-gold-text:   #8A6A2C; /* 文字に使う金（コントラストAA確保） */

  /* ── 水色（海＝アクア/ターコイズ） ── */
  --color-aqua:        #3FA7BD;
  --color-aqua-lite:   #BFE4EA;
  --color-aqua-text:   #1C5A66; /* 文字に使う水色 */

  /* ── 光・影のための半透明 ── */
  --glow-gold:  rgba(227, 204, 147, 0.55);
  --glow-aqua:  rgba(63, 167, 189, 0.35);

  /* ── フォント ── */
  --font-wordmark: 'Cinzel', 'Cormorant Garamond', serif;
  --font-en:       'Cormorant Garamond', 'Times New Roman', serif;
  --font-jp-head:  'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  --font-jp-body:  'Shippori Mincho', 'Hiragino Mincho ProN', serif;

  /* ── 文字サイズ（375px基準・clampでPCまで滑らかに拡大） ── */
  --fs-caption:  0.75rem;
  --fs-small:    0.875rem;
  --fs-body:     1rem;
  --fs-body-lg:  1.125rem;
  --fs-h4:       clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-h3:       clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-h2:       clamp(1.875rem, 1.4rem + 2.2vw, 2.75rem);
  --fs-display:  clamp(2.75rem, 2rem + 4vw, 4.5rem);

  --lh-tight: 1.2;
  --lh-snug:  1.5;
  --lh-body:  2.05;
  --ls-wide:  0.12em;
  --ls-jp:    0.10em;  /* 見出しは一字ずつ置く（MIKIMOTO型） */

  /* ── 余白（4の倍数） ── */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --section-y: clamp(80px, 14vw, 144px); /* 余白は装飾（原則7） */
  --gutter:    clamp(20px, 5vw, 40px);

  /* ── コンテナ幅 ── */
  --container:      1120px;
  --container-wide: 1280px;
  --measure:        680px;

  /* ── 角丸・影・遷移 ── */
  --radius-sm: 6px;  --radius-md: 12px;  --radius-lg: 20px;
  --radius-pill: 999px;
  --radius-arch: 260px 260px var(--radius-lg) var(--radius-lg);
  --shadow-card:  0 8px 30px rgba(42, 38, 32, 0.10);
  --shadow-float: 0 18px 50px rgba(14, 42, 51, 0.22);
  --shadow-glow:  0 0 60px var(--glow-gold);
  --ease: cubic-bezier(0.22, 1, 0.36, 1); /* ゆっくり入って静かに止まる */
  --dur: 1s;

  --header-h: 60px; /* SPのヘッダー高さ。PCで上書き */
}

/* ---------- 2. リセットと土台 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* 固定ヘッダーに隠れないよう、アンカー移動時に上部余白を確保 */
:target { scroll-margin-top: calc(var(--header-h) + 12px); }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-jp-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-aqua-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-jp-head); line-height: var(--lh-tight); letter-spacing: var(--ls-jp); font-weight: 500; }

p { margin: 0; }

strong { font-weight: 500; }  /* 強調は太字でなく行間・色で（原則5） */

/* 見出しの日本語を語のまとまり単位で折り返すためのユーティリティ（文節ごとに<span class="nb">で囲む） */
.nb { display: inline-block; }

/* すべての操作要素にフォーカス枠（キーボード操作の可視化） */
:focus-visible { outline: 2px solid var(--color-aqua); outline-offset: 3px; border-radius: 2px; }

/* 本文へスキップ（ふだんは画面外、フォーカスで出現） */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--color-ink); color: var(--color-text-inv);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-family: var(--font-jp-body); text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 3. 共通レイアウト部品 ---------- */
.container      { width: 100%; max-width: var(--container);      margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }
.measure        { max-width: var(--measure); margin-inline: auto; }

.section { padding-block: var(--section-y); }

/* 各セクションの2段見出し（英字ラベル＋和文見出し） */
.eyebrow {
  font-family: var(--font-wordmark);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: var(--sp-3);
}
.eyebrow-inv { color: var(--color-gold-lite); }

.section-title { font-size: var(--fs-h2); }
.section-title-inv { color: var(--color-text-inv); }

.section-head { margin-bottom: var(--sp-8); }

.section-lead {
  margin-top: var(--sp-6);
  color: var(--color-text-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-snug);
}
.section-lead-inv { color: var(--color-text-inv-mut); }

/* 文中の強調（金・水色の下線マーカー） */
.mark-gold { color: var(--color-gold-text); }
.mark-aqua { color: var(--color-aqua-text); }

/* ---------- 4. ボタン ---------- */
.btn {
  min-height: 48px;
  padding: 14px 34px;
  border-radius: 2px; /* 高級ブランドの角: 丸めない */
  font-family: var(--font-jp-head);
  font-weight: 500;
  font-size: var(--fs-body);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.btn-sm { min-height: 44px; padding: 10px 20px; font-size: var(--fs-small); }
.btn-lg { min-height: 56px; padding: 18px 36px; font-size: var(--fs-body-lg); }
/* 375px幅でボタン文言が途中で折り返さないよう、小画面ではひと回り締める */
@media (max-width: 480px) {
  .btn-lg { padding: 16px 22px; font-size: var(--fs-body); }
}

.btn-primary {
  background: transparent;
  border: 1px solid var(--color-gold-deep);
  color: var(--color-text);
}
.btn-primary:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-text-inv);
}
/* ダーク帯の上では輪郭と文字を淡い光に */
.commitment .btn-primary, .contact .btn-primary, .mobile-menu .btn-primary, .site-footer .btn-primary {
  border-color: rgba(227, 204, 147, 0.75);
  color: var(--color-text-inv);
}
.commitment .btn-primary:hover, .contact .btn-primary:hover, .mobile-menu .btn-primary:hover, .site-footer .btn-primary:hover {
  background: var(--color-gold-lite);
  border-color: var(--color-gold-lite);
  color: var(--color-navy-deep);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-text);
}
.btn-outline:hover {
  background: rgba(196, 162, 101, 0.10);
  text-decoration: underline;
}

/* 暗背景の上で使うゴースト文字リンク */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  color: var(--color-text);
  font-family: var(--font-jp-head);
  text-decoration: none;
  position: relative;
}
.btn-ghost::after {
  content: ""; position: absolute; left: 0; bottom: 8px;
  width: 100%; height: 1px; background: var(--color-gold);
  transition: background-color .25s var(--ease);
}
.btn-ghost:hover::after { background: var(--color-gold-deep); }

.ig-icon { flex: none; }

/* ---------- 5. ヘッダー / ナビゲーション ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header-inner {
  width: 100%; max-width: var(--container-wide);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}

/* ワードマーク（ロゴ画像＋社名。ヒーローが明るいので常時ダーク文字） */
.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: var(--ls-wide);
  color: var(--color-text);
  text-decoration: none;
  transition: color .3s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  outline: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(42, 38, 32, 0.12);
}

/* スクロールでヘッダーをアイボリー半透明に切替（JSで .is-scrolled 付与） */
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.site-header.is-scrolled .wordmark { color: var(--color-text); }
.site-header.is-scrolled .nav-list a { color: var(--color-text); }
.site-header.is-scrolled .hamburger span { background: var(--color-text); }

.nav-desktop { display: none; align-items: center; gap: var(--sp-6); }
.nav-list { display: flex; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
.nav-list a {
  color: var(--color-text);
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color .3s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--color-gold);
  transition: width .25s var(--ease);
}
.nav-list a:hover::after { width: 100%; }

/* ハンバーガー（スマホ・44×44px） */
.hamburger {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background-color .3s var(--ease);
}
.hamburger.is-open span { background: var(--color-text-inv); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* スマホ用オーバーレイメニュー */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
  /* ヘッダー高さぶん上に余白を取り、先頭項目がロゴ・×ボタンと重ならないようにする */
  padding: calc(72px + var(--sp-4)) var(--gutter) var(--gutter);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu[hidden] { display: flex; } /* JSで開閉制御するため hidden でも配置は保持 */
.mobile-menu nav { text-align: center; width: 100%; max-width: 360px; }
.mobile-menu ul { list-style: none; margin: 0 0 var(--sp-7); padding: 0; }
.mobile-menu li { border-bottom: 1px solid rgba(196, 162, 101, 0.25); }
.mobile-menu li a {
  display: block; padding: var(--sp-5) 0;
  color: var(--color-text-inv);
  font-family: var(--font-en);
  font-size: 1.6rem; letter-spacing: .06em;
  text-decoration: none;
}
.mobile-menu li a span {
  display: block;
  font-family: var(--font-jp-head);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-jp);
  color: var(--color-text-inv-mut);
  margin-top: 2px;
}
.mobile-menu .btn { width: 100%; }

/* ---------- 6. ① ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 100svh;               /* IGアプリ内バーを考慮し svh を使用 */
  display: flex; align-items: center;
  padding-block: calc(var(--header-h) + var(--sp-7)) var(--sp-8);
  /* ロゴの世界: 白地に朝の光と水彩の海 */
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F2 45%, #EAF4F5 100%);
  overflow: hidden;
}
/* CSSで描く光と海の装飾レイヤー */
.hero-fx { position: absolute; inset: 0; pointer-events: none; }
.fx-spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 8%, rgba(227, 204, 147, 0.40), transparent 55%);
}
.fx-wave {
  position: absolute; width: 60vw; height: 60vw; max-width: 620px; max-height: 620px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(63, 167, 189, 0.28), transparent 70%);
}
.fx-wave-1 { left: -10vw; bottom: -10vw; }
.fx-wave-2 { right: -12vw; top: 20%; opacity: .7; }
.fx-sparkles i {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px var(--glow-gold);
  opacity: .5; /* 静かな光の粒（点滅はさせない） */
}
/* 光の粒を10個以内で散らす */
.fx-sparkles i:nth-child(1){ left: 18%; top: 22%; animation-delay: .2s; }
.fx-sparkles i:nth-child(2){ left: 32%; top: 40%; animation-delay: 1.1s; }
.fx-sparkles i:nth-child(3){ left: 46%; top: 16%; animation-delay: 2s; }
.fx-sparkles i:nth-child(4){ left: 62%; top: 30%; animation-delay: .6s; }
.fx-sparkles i:nth-child(5){ left: 74%; top: 50%; animation-delay: 1.6s; }
.fx-sparkles i:nth-child(6){ left: 24%; top: 62%; animation-delay: 2.4s; }
.fx-sparkles i:nth-child(7){ left: 55%; top: 68%; animation-delay: .9s; }
.fx-sparkles i:nth-child(8){ left: 82%; top: 24%; animation-delay: 3s; }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-7);
  text-align: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
/* ヒーローの正式ロゴ（円形・そっと浮かぶ） */
.hero-logo {
  width: clamp(104px, 26vw, 148px); height: auto;
  border-radius: 50%;
  outline: 1px solid rgba(196, 162, 101, 0.5);
  outline-offset: 3px;
  /* 黒×金ロゴに合わせ、光は金のみ（水色の光は外す） */
  box-shadow: 0 10px 30px rgba(42, 38, 32, 0.28), 0 0 44px var(--glow-gold);
}
.hero-catch {
  font-family: var(--font-jp-head); font-weight: 500;
  font-size: var(--fs-h2);
  color: var(--color-text);
}
.hero-lead {
  color: var(--color-text-muted);
  max-width: 34em; line-height: var(--lh-body);
  font-size: var(--fs-body);
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); margin-top: var(--sp-3); }

/* 読み込み時に一度だけ、ゆっくり幕が上がる */
@keyframes riseIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: riseIn 1.1s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: .15s; }
.hero-copy > *:nth-child(2) { animation-delay: .3s; }
.hero-copy > *:nth-child(3) { animation-delay: .45s; }
.hero-copy > *:nth-child(4) { animation-delay: .6s; }
.hero-figure { animation: riseIn 1.2s var(--ease) .5s both; }

/* アーチ額縁に入れた代表作 */
.hero-figure { width: 78%; max-width: 320px; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(14, 42, 51, 0.18), 0 0 46px rgba(227, 204, 147, 0.4);
  outline: 1px solid rgba(196, 162, 101, 0.6);
  outline-offset: -1px;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

/* スクロールを促す細い金の縦線 */
.scroll-hint {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 1px; height: 46px; overflow: hidden; z-index: 1;
}
.scroll-hint span {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(var(--color-gold-deep), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---------- 7. ② ブランドストーリー ---------- */
.about { text-align: center; }
.name-figure {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
  color: var(--color-text);
  margin: var(--sp-6) 0 var(--sp-7);
  line-height: 1.1;
}
.np { position: relative; padding-bottom: 28px; display: inline-block; }
.np small {
  /* ラベルが2行に折り返すと下線と重なるため、中央寄せ＋折り返し禁止にする */
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 2px;
  white-space: nowrap;
  font-family: var(--font-jp-body);
  font-size: var(--fs-small); letter-spacing: var(--ls-jp);
  color: var(--color-text-muted);
}
.np-line { position: absolute; left: 0; right: 0; bottom: 22px; height: 2px; }
.np-line-gold { background: var(--color-gold); }
.np-line-aqua { background: var(--color-aqua); }

.about-body { text-align: left; }
.about-body p + p { margin-top: var(--sp-5); }

.values {
  list-style: none; margin: var(--sp-7) 0 0; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
  font-family: var(--font-jp-head); font-size: var(--fs-h4);
  color: var(--color-text);
}
.values li { position: relative; padding-bottom: var(--sp-4); width: 100%; }
.values li:not(:last-child)::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 40px; height: 1px; background: var(--color-gold);
}

/* ---------- 8. ③ コレクション ---------- */
.collection { background: var(--color-bg); }
.gallery { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }

.card {
  background: var(--color-surface);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 2px 18px rgba(42, 38, 32, 0.06); /* 額装: 影は薄く、枠で見せる */
  display: flex; flex-direction: column;
}
/* PCのホバー: 写真がゆっくり寄る。それ以上の演出はしない */
@media (hover: hover) {
  .card .card-media { overflow: hidden; }
  .card .card-media img { transition: transform 0.8s var(--ease); }
  .card:hover .card-media img { transform: scale(1.03); }
}
.card-media { position: relative; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .5s var(--ease);
}
.chip {
  position: absolute; left: var(--sp-3); top: var(--sp-3); z-index: 1;
  padding: 3px 12px; border-radius: 2px;
  font-family: var(--font-jp-body);
  font-size: 0.72rem; letter-spacing: .18em;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 162, 101, 0.55);
  color: var(--color-gold-text);
}
.card-caption {
  display: flex; flex-direction: column; gap: var(--sp-1);
  padding: var(--sp-5);
}
.card-name { font-family: var(--font-jp-head); font-weight: 500; font-size: var(--fs-h4); }
.card-cat  { font-family: var(--font-en); font-style: italic; font-size: var(--fs-small); letter-spacing: .08em; color: var(--color-gold-text); }
.card-desc { font-size: var(--fs-small); line-height: 1.8; color: var(--color-text-muted); margin-top: var(--sp-2); }

/* 末尾：Instagram導線カード（金グラデ地） */
.card-ig {
  text-decoration: none; color: var(--color-ink);
  background: linear-gradient(150deg, #E3CC93, #C4A265);
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card-ig:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.card-ig-inner { text-align: center; padding: var(--sp-7) var(--sp-5); display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.card-ig-title { font-family: var(--font-jp-head); font-weight: 500; font-size: var(--fs-h3); line-height: 1.35; }
.card-ig-text  { font-size: var(--fs-small); line-height: 1.9; color: #3a2f18; }
.card-ig-cta   { font-family: var(--font-en); font-style: italic; font-size: var(--fs-body-lg); margin-top: var(--sp-2); }
.ig-icon-lg { color: var(--color-ink); }

/* 手仕事のディテール帯（装飾・キャプションなし） */
.detail-strip {
  margin-top: var(--sp-7);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
}
.detail-strip img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.detail-strip img:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }

/* ---------- 9. ④ サービス ---------- */
.service { background: var(--color-bg-tint); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.svc-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
}
/* ②のカードだけ金線で強め、"駆け込み寺"の入口として目立たせる */
.svc-card-featured { border: 1px solid var(--color-gold); box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.10); }
.svc-flag {
  position: absolute; top: -13px; left: var(--sp-6);
  background: linear-gradient(135deg, #E3CC93, #C4A265);
  color: var(--color-ink);
  font-family: var(--font-jp-head); font-weight: 500;
  font-size: var(--fs-caption); letter-spacing: .06em;
  padding: 5px 14px; border-radius: var(--radius-pill);
}
.svc-num {
  font-family: var(--font-en); font-size: 3rem; line-height: 1;
  color: var(--color-gold); display: block; margin-bottom: var(--sp-3);
}
.svc-title { font-size: var(--fs-h4); margin-bottom: var(--sp-4); }
.svc-en {
  display: block; font-family: var(--font-en); font-style: italic; font-weight: 500;
  font-size: var(--fs-small); letter-spacing: .08em; color: var(--color-gold-text);
  margin-top: 2px;
}
.svc-card p { font-size: var(--fs-small); line-height: 1.9; color: var(--color-text-muted); }

/* ---------- 10. ⑤ オーダーの流れ（縦タイムライン→PCで横） ---------- */
.flow { background: var(--color-bg); }
.steps { list-style: none; margin: 0; padding: 0; position: relative; }
.step {
  position: relative;
  display: grid; grid-template-columns: 40px 1fr; gap: var(--sp-4);
  padding-bottom: var(--sp-7);
}
/* SP：ノードを結ぶ金の縦線 */
.step:not(:last-child)::before {
  content: ""; position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--color-gold);
}
.step-node {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 1.25rem;
  color: var(--color-gold-text); position: relative; z-index: 1;
}
.step-title { font-size: var(--fs-h4); }
.step-en {
  display: block; font-family: var(--font-en); font-style: italic; font-weight: 500;
  font-size: var(--fs-small); letter-spacing: .08em; color: var(--color-gold-text); margin-top: 2px;
}
.step-body p { margin-top: var(--sp-3); font-size: var(--fs-small); line-height: 1.9; color: var(--color-text-muted); }

/* 安心コールアウト（水色地）＋早めの相談の注記（金枠） */
.flow-callout {
  margin-top: var(--sp-6);
  background: var(--color-aqua-lite);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
}
.callout-main { font-family: var(--font-jp-head); font-weight: 500; font-size: var(--fs-body-lg); color: var(--color-aqua-text); }
.callout-note {
  margin-top: var(--sp-3); padding-top: var(--sp-3);
  border-top: 1px solid rgba(28, 90, 102, 0.25);
  font-size: var(--fs-small); color: var(--color-aqua-text);
}
.flow-more { margin-top: var(--sp-7); text-align: center; }
.flow-more p { color: var(--color-text-muted); margin-bottom: var(--sp-5); }

/* ---------- 11. ⑥ お約束（ダーク帯） ---------- */
.commitment { background: var(--color-ink); }
.commit-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.commit-card {
  background: var(--color-ink-2);
  border: 1px solid rgba(196, 162, 101, 0.28);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.commit-title {
  font-size: var(--fs-h4); color: var(--color-gold-lite);
  padding-bottom: var(--sp-4); margin-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(196, 162, 101, 0.28);
  line-height: 1.45;
}
.commit-card p { font-size: var(--fs-small); line-height: 1.95; color: var(--color-text-inv-mut); }
.commit-card strong { color: var(--color-text-inv); }

/* ---------- 12. ⑦ 会社概要 ---------- */
.company-list { margin: 0; }
.company-row { padding: var(--sp-4) 0; border-bottom: 1px solid var(--color-border-soft); }
.company-row dt {
  font-family: var(--font-jp-head); font-weight: 500;
  font-size: var(--fs-small); color: var(--color-text);
  margin-bottom: 4px;
}
.company-row dd { margin: 0; font-size: var(--fs-small); color: var(--color-text); line-height: 1.8; }
.company-row dd.tbd { color: var(--color-text-muted); } /* 未確定項目は薄く表示 */

/* ---------- 13. ⑧ お問い合わせ（ダーク帯） ---------- */
.contact { background: linear-gradient(160deg, #1A505C, #123F49); text-align: center; }
.contact-lead { margin: var(--sp-5) auto var(--sp-7); color: var(--color-text-inv-mut); line-height: var(--lh-body); }
.contact-sub { margin-top: var(--sp-5); color: var(--color-text-inv-mut); font-size: var(--fs-small); }
.contact-note { margin-top: var(--sp-6); color: var(--color-text-inv-mut); font-size: var(--fs-small); line-height: 1.9; }

/* ---------- 14. ⑨ フッター ---------- */
.site-footer { background: var(--color-ink); color: var(--color-text-inv); text-align: center; padding-block: var(--sp-8); }
.footer-logo {
  width: 84px; height: 84px; border-radius: 50%;
  margin-inline: auto;
  outline: 1px solid rgba(227, 204, 147, 0.45);
  outline-offset: 3px;
  box-shadow: 0 0 34px rgba(227, 204, 147, 0.25);
  margin-bottom: var(--sp-4);
}
.footer-wordmark {
  font-family: var(--font-wordmark); font-weight: 600;
  font-size: 2rem; letter-spacing: var(--ls-wide);
  color: var(--color-gold-lite);
  display: inline-block; padding-bottom: 8px;
  border-bottom: 1px solid var(--color-gold);
  margin: 0 0 var(--sp-5);
}
.footer-tagline { font-family: var(--font-jp-head); color: var(--color-text-inv); margin-bottom: var(--sp-5); }
.footer-ig {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  color: var(--color-text-inv); text-decoration: none;
  font-family: var(--font-en); letter-spacing: .06em;
}
.footer-ig:hover { color: var(--color-gold-lite); }
.footer-note { max-width: 34em; margin: var(--sp-5) auto 0; color: var(--color-text-inv-mut); font-size: var(--fs-small); line-height: 1.9; }
.footer-copy { margin-top: var(--sp-6); color: var(--color-text-inv-mut); font-size: var(--fs-caption); font-family: var(--font-en); letter-spacing: .08em; }

/* ---------- 15. スクロール・フェードイン ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- 16. アニメーション定義 ---------- */
@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: .7; }
  50%      { transform: translate(30px, -24px); opacity: 1; }
}
@keyframes twinkle {
  0%, 100% { opacity: .2; }
  50%      { opacity: .9; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* =============================================================
   17. レスポンシブ（375pxを基本に、広い画面で上書き）
   ============================================================= */

/* 大きめスマホ / 縦タブレット：ギャラリー2カラム */
@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; }
}

/* タブレット：サービス横並び・ステッパー・詳細帯を調整 */
@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .commit-grid  { grid-template-columns: repeat(2, 1fr); }
  .detail-strip { grid-template-columns: repeat(3, 1fr); }
  .detail-strip img:last-child { grid-column: auto; aspect-ratio: 3 / 4; }

  /* オーダーの流れを横並びステッパーに */
  .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-5); }
  .step {
    grid-template-columns: 1fr; text-align: center;
    padding-bottom: 0; padding-top: 56px;
  }
  .step-node { position: absolute; left: 50%; top: 0; transform: translateX(-50%); }
  /* 横の金線：ノード中心（上から20px）に合わせる */
  .step:not(:last-child)::before {
    left: 50%; right: auto; top: 19px; bottom: auto;
    width: calc(100% + var(--sp-5)); height: 2px;
  }
  .step-body { margin-top: var(--sp-2); }
  .step-body p { text-align: left; }
}

/* PC：ヒーロー左右分割・ギャラリー3カラム・ナビ表示 */
@media (min-width: 1024px) {
  :root { --header-h: 76px; }

  .nav-desktop { display: flex; }
  .hamburger { display: none; }

  .hero-inner { flex-direction: row; text-align: left; justify-content: space-between; gap: var(--sp-8); }
  .hero-copy { align-items: flex-start; flex: 1; }
  .hero-catch { font-size: clamp(2.25rem, 1.5rem + 2.4vw, 3.25rem); }
  .hero-lead { font-size: var(--fs-body-lg); }
  .hero-actions { flex-direction: row; margin-top: var(--sp-5); }
  .hero-figure { width: 40%; max-width: 380px; flex: none; }

  .about { text-align: center; }
  .about-body { text-align: left; }
  .values { flex-direction: row; justify-content: center; gap: 0; }
  .values li { width: auto; padding: 0 var(--sp-7); }
  .values li:not(:last-child)::after {
    left: auto; right: 0; bottom: 50%; transform: translateY(50%);
    width: 1px; height: 24px;
  }

  .gallery { grid-template-columns: repeat(3, 1fr); }

  /* ホバーで写真を少し拡大＋キャプションを持ち上げ */
  .card:hover .card-media img { transform: scale(1.04); }
}

/* 大画面：写真をより大きく */
@media (min-width: 1280px) {
  .hero-figure { max-width: 420px; }
}

/* =============================================================
   18. 動きを減らす設定（アクセシビリティ）
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy > *, .hero-figure { animation: none; }
  html { scroll-behavior: auto; }
}
