/* ========================================
   GOMRIFLE.JP ブランドサイト v2
   css/style.css
   ======================================== */

/* Google Fonts — @import は必ずファイル先頭に */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Shippori+Mincho:wght@400;500;600&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ========================================
   01. デザイントークン
   ======================================== */

:root {
  /* ブランドカラー（変更不可） */
  --brand:        #003136;
  --brand-deep:   #001f22;

  /* ライト基調ベース */
  --bg:           #f4f1ea;
  --bg-alt:       #ebe6da;
  --surface:      #ffffff;

  /* テキスト */
  --text:         #1a2422;
  --text-muted:   #5e6b66;
  --text-on-dark: #f4f1ea;

  /* アクセント・罫線 */
  --accent:       #b8935a;
  --line:         #d8d2c4;

  /* フォント */
  --font-en:      'Cormorant Garamond', serif;
  --font-ja:      'Shippori Mincho', serif;
  --font-body:    'Noto Sans JP', sans-serif;

  /* スペーシング */
  --section-py:   clamp(100px, 15vh, 200px);
  --container-w:  1200px;
  --gutter:       clamp(24px, 5vw, 80px);

  /* アニメーション */
  --ease:         0.4s ease;
}

/* ========================================
   02. リセット・ベース
   ======================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* position: fixed の .nav 分のオフセット（アンカーリンク用） */
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2.0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ========================================
   03. ユーティリティ
   ======================================== */

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* 小ラベル（英字・大文字） */
.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.label--muted {
  color: var(--text-muted);
}

.label--on-dark {
  color: rgba(244, 241, 234, 0.5);
}

/* セクション見出し */
.section-heading {
  margin-bottom: clamp(48px, 8vh, 96px);
}

.section-heading--center {
  text-align: center;
}

.section-heading__sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-heading__title {
  font-family: var(--font-ja);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.section-heading--on-dark .section-heading__sub {
  color: rgba(244, 241, 234, 0.45);
}

.section-heading--on-dark .section-heading__title {
  color: var(--text-on-dark);
}

/* スクロールフェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }

/* ========================================
   04. ボタン
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
  border: 1px solid transparent;
}

/* ライト背景用 */
.btn--outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.btn--outline:hover {
  background: var(--brand);
  color: var(--text-on-dark);
}

.btn--solid {
  background: var(--brand);
  color: var(--text-on-dark);
  border-color: var(--brand);
}
.btn--solid:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

/* ダーク背景用 */
.btn--outline-light {
  background: transparent;
  border-color: rgba(244, 241, 234, 0.45);
  color: var(--text-on-dark);
}
.btn--outline-light:hover {
  border-color: var(--text-on-dark);
  background: rgba(244, 241, 234, 0.08);
}

.btn--solid-light {
  background: var(--text-on-dark);
  color: var(--brand-deep);
  border-color: var(--text-on-dark);
}
.btn--solid-light:hover {
  background: #ffffff;
  border-color: #ffffff;
}

/* LINE用 */
.btn--line {
  background: #06c755;
  color: #ffffff;
  border-color: #06c755;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn--line:hover {
  background: #05a348;
  border-color: #05a348;
  color: #ffffff;
}

/* ========================================
   05. ナビゲーション
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--gutter);
  transition: background-color var(--ease), box-shadow var(--ease), padding var(--ease);
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--ease);
}

.nav.scrolled .nav__logo-img {
  filter: none;
}

.nav__logo-text {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--ease);
}

.nav__links a:hover {
  color: #ffffff;
}

.nav.scrolled .nav__links a {
  color: var(--text-muted);
}

.nav.scrolled .nav__links a:hover {
  color: var(--brand);
}

/* モバイルメニュートグル */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 201;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: background-color var(--ease), transform var(--ease), opacity var(--ease);
}

.nav.scrolled .nav__toggle span {
  background-color: var(--text);
}

/* メニュー展開中はフルスクリーンの暗い背景になるため、
   スクロール済み（.scrolled）でも×は常に白で表示する */
.nav.scrolled .nav__toggle.open span {
  background-color: #ffffff;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ========================================
   06. ヒーローセクション
   将来のパララックス用レイヤー構造を保持
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 森を進むスクロール演出（フェーズ2）
   z-index: bg(1) < crossfade(1, DOM順で上) < overlay(2) < content(5) */
.hero__layer {
  position: absolute;
  inset: 0;
}

.hero__layer--bg {
  z-index: 1;
}

.hero__layer--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

/* オーバーレイ：背景色 alpha は JS から inline style で制御 */
.hero__layer--overlay {
  z-index: 2;
  background: rgba(0, 31, 34, 0.42);
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 var(--gutter);
}

.hero__catch {
  font-family: var(--font-en);
  font-size: clamp(36px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero__sub {
  font-family: var(--font-ja);
  font-size: clamp(15px, 2.1vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.22em;
}

/* スクロール誘導 */
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-label {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-line {
  width: 1.5px;
  height: 72px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.4); }
  50%       { opacity: 1;   transform: scaleY(1);   }
}

/* ========================================
   07. ブランドステートメントセクション
   【ライト背景・中央寄せ・大きな一文】
   ======================================== */

.statement {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
  text-align: center;
}

.statement__text {
  font-family: var(--font-ja);
  font-size: clamp(18px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 2.0;
  color: var(--text);
  letter-spacing: 0.06em;
  max-width: 720px;
  margin: 0 auto;
}

.statement__text em {
  font-style: normal;
  color: var(--brand);
}

.statement__since {
  margin-top: 40px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========================================
   08. マーキーセクション
   【ダーク背景・横スクロールテキスト】
   ======================================== */

.marquee-section {
  background-color: var(--brand-deep);
  padding: 56px 0;
  overflow: hidden;
}

/* track 全体をアニメーション。2つの .marquee-content を並べて -50% でシームレスループ */
.marquee-track {
  display: flex;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-content__text {
  font-family: var(--font-en);
  font-size: clamp(44px, 9vw, 110px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 234, 0.1);
  padding: 0 48px;
}

.marquee-content__dot {
  font-family: var(--font-en);
  font-size: clamp(20px, 4vw, 48px);
  color: var(--accent);
  opacity: 0.45;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   09. モデル紹介セクション
   【絶滅危惧野菜風・1モデルずつ大きく・交互配置】
   ======================================== */

/* マーキーとモデル紹介の間の導入見出し。
   .models と同じ背景色で繋げ、下の余白は .models の
   padding-top に委ねるため bottom は 0 にする。 */
.models-intro {
  background-color: var(--bg-alt);
  padding: var(--section-py) var(--gutter) 0;
}

/* 見出し自身の margin-bottom が .models の padding-top と
   二重に効いてしまうため、ここでは打ち消す */
.models-intro .section-heading {
  margin-bottom: 0;
}

.models {
  background-color: var(--bg-alt);
  padding: var(--section-py) 0 0;
}

.models__header {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: clamp(64px, 10vh, 120px);
}

.model-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.model-item:last-of-type {
  border-bottom: none;
}

/* 偶数モデル（WRASSE）: 画像を右に */
.model-item--reverse .model-item__visual {
  order: 2;
}
.model-item--reverse .model-item__body {
  order: 1;
}

.model-item__visual {
  position: relative;
  background-color: var(--bg);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
}

.model-item__visual img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
}

.model-item__body {
  background-color: var(--surface);
  padding: clamp(48px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MODEL 01 / 02 ナンバリング */
.model-item__number {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.model-item__number::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background-color: var(--line);
}

/* 型式ロゴ（黒背景PNG → multiply で透過） */
.model-item__logo {
  height: 22px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 28px;
  mix-blend-mode: multiply;
}

.model-item__name {
  font-family: var(--font-en);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 6px;
  line-height: 1.15;
}

.model-item__type {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.model-item__price {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  line-height: 1;
}

.model-item__price-note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.model-item__specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.model-item__spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.model-item__spec::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.model-item__desc {
  font-size: 14px;
  line-height: 2.0;
  color: var(--text-muted);
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.model-item__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* 情景レイアウト用（index.html のモデルセクション） */

.model-item__num-deco {
  margin-bottom: 28px;
}

.model-item__num-label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}

.model-item__num-n {
  font-family: var(--font-en);
  font-size: clamp(72px, 11vw, 120px);
  font-weight: 300;
  color: var(--line);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.model-item__code {
  font-family: var(--font-en);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--brand);
  line-height: 1.15;
  margin-bottom: 24px;
}

.model-item__scene {
  font-family: var(--font-ja);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.model-item__lead {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-muted);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.model-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  transition: gap var(--ease);
}

.model-item__cta::after {
  content: '→';
}

.model-item__cta:hover {
  gap: 16px;
}

/* ========================================
   10. クラフトマンシップセクション
   【フルブリード・工房写真グリッド】
   ======================================== */

.craft {
  position: relative;
  overflow: hidden;
}

.craft__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 2px;
  background-color: var(--brand-deep);
}

.craft__cell {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-deep);
}

.craft__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.craft__cell:hover img {
  transform: scale(1.05);
}

/* 1枚目：左全高（2行分） */
.craft__cell--large {
  grid-row: 1 / 3;
}

/* テキストオーバーレイ */
.craft__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 31, 34, 0.72) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 48px 44px;
  z-index: 2;
  pointer-events: none;
}

.craft__title {
  font-family: var(--font-ja);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.1em;
  line-height: 1.65;
}

/* ========================================
   10-2. お知らせセクション
   【ライト背景・縦リスト】
   ======================================== */

.news {
  background-color: var(--surface);
  padding: var(--section-py) var(--gutter);
}

.news__list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
}

.news__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news__item:first-child {
  border-top: 1px solid var(--line);
}

.news__date {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.news__title {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

a.news__title {
  text-decoration: none;
  transition: color var(--ease);
}

a.news__title:hover {
  color: var(--brand);
  text-decoration: underline;
}

.news__more {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   10-3. お知らせ一覧ページ（news.html）
   【ライト背景・コンパクトな行リスト】
   タイプ1＝個別ページへのリンク／タイプ2＝その場で折りたたみ開閉
   ======================================== */

.news-list-page {
  background-color: var(--surface);
  padding: var(--section-py) var(--gutter);
}

.news-row-list {
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
}

.news-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  column-gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.news-row:first-child {
  border-top: 1px solid var(--line);
}

.news-row__date {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.news-row__title {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  text-decoration: none;
}

a.news-row__title {
  transition: color var(--ease);
}

a.news-row__title:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* アクション要素：既存のテキストリンクより一回り大きく、はっきり押せる見た目に */
.news-row__action {
  justify-self: end;
}

.news-row__action--link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 4px;
  transition: gap var(--ease);
}

.news-row__action--link:hover {
  gap: 11px;
}

.news-row__arrow {
  font-family: var(--font-en);
  font-size: 17px;
}

/* タイプ2：＋／− の丸トグルボタン */
.news-row__action--toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}

.news-row__action--toggle:hover {
  border-color: var(--brand);
}

.news-row__action--toggle[aria-expanded="true"] {
  background-color: var(--brand);
  border-color: var(--brand);
}

.news-row__plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.news-row__plus::before,
.news-row__plus::after {
  content: '';
  position: absolute;
  background-color: var(--brand);
  transition: background-color var(--ease), transform var(--ease);
}

.news-row__plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.news-row__plus::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.news-row__action--toggle[aria-expanded="true"] .news-row__plus::before,
.news-row__action--toggle[aria-expanded="true"] .news-row__plus::after {
  background-color: var(--text-on-dark);
}

.news-row__action--toggle[aria-expanded="true"] .news-row__plus::after {
  transform: translateX(-50%) scaleY(0);
}

/* タイプ2の折りたたみ全文パネル：JS が max-height を切り替えて開閉する */
.news-row__panel {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.news-row__panel-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  padding-top: 18px;
}

/* ========================================
   10-4. お知らせ個別ページ（news-template.html）
   【ライト背景・記事1本】既存の story__heading / story__body を流用
   ======================================== */

.news-article {
  background-color: var(--surface);
  padding: var(--section-py) var(--gutter);
}

.news-article__inner {
  max-width: 680px;
  margin: 0 auto;
}

.news-article__date {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.news-article__inner .story__body {
  margin-top: 28px;
}

.news-article__inner .story__body img {
  width: 100%;
  display: block;
  margin: 8px 0 28px;
}

.news-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease), gap var(--ease);
}

.news-article__back:hover {
  color: var(--brand);
  gap: 12px;
}

/* ========================================
   11. 信頼性セクション
   【ライト背景・3カラム】
   ======================================== */

.trust {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: var(--container-w);
  margin: 64px auto 0;
}

.trust-card {
  background-color: var(--surface);
  border-top: 3px solid var(--line);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.trust-card__num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 22px;
}

.trust-card__title {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.trust-card__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 0;
}

.trust-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--ease);
}

.trust-card__link::after {
  content: '→';
}

.trust-card__link:hover {
  gap: 14px;
}

/* ========================================
   12. ショップ誘導セクション
   【ダーク背景・中央・大きなCTA】
   ======================================== */

.shop-cta {
  background-color: var(--brand-deep);
  padding: var(--section-py) var(--gutter);
  text-align: center;
}

.shop-cta__label {
  margin-bottom: 20px;
}

.shop-cta__title {
  font-family: var(--font-ja);
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ========================================
   12. SNS セクション
   【ライト背景・横並びアイコン】
   ======================================== */

.sns {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.sns__header {
  text-align: center;
  margin-bottom: 64px;
}

.sns__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.sns__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  transition: color var(--ease);
}

.sns__link:hover {
  color: var(--brand);
}

.sns__link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: fill var(--ease);
}

.sns__link-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ========================================
   13. フッター
   ======================================== */

.footer {
  background-color: var(--brand-deep);
  padding: 72px var(--gutter) 48px;
}

.footer__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  margin-bottom: 28px;
}

.footer__brand {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.footer__copy {
  font-size: 11px;
  color: rgba(244, 241, 234, 0.35);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer__nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.45);
  transition: color var(--ease);
}

.footer__nav a:hover {
  color: var(--text-on-dark);
}

.footer__contact {
  max-width: var(--container-w);
  margin: 0 auto;
  font-size: 11px;
  color: rgba(244, 241, 234, 0.35);
  text-align: center;
  line-height: 2.0;
}

.footer__contact a {
  color: rgba(244, 241, 234, 0.45);
  transition: color var(--ease);
}

.footer__contact a:hover {
  color: var(--text-on-dark);
}

/* ========================================
   14. ページヘッダー（各ページ共通・ダーク）
   ======================================== */

.page-header {
  background-color: var(--brand-deep);
  padding: clamp(130px, 22vh, 240px) var(--gutter) clamp(80px, 12vh, 140px);
}

.page-header--flush {
  padding-bottom: 0;
}

.page-header__inner {
  max-width: var(--container-w);
  margin: 0 auto;
}

.page-header__en {
  font-family: var(--font-en);
  font-size: clamp(56px, 11vw, 148px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  line-height: 1.0;
  margin-bottom: 20px;
}

.page-header__ja {
  font-family: var(--font-ja);
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  color: rgba(244, 241, 234, 0.5);
  letter-spacing: 0.22em;
}

/* ========================================
   15. ブランドストーリー（about）
   【2カラム：左に見出し・右に本文】
   ======================================== */

.story {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
  max-width: var(--container-w);
  margin: 0 auto;
}

.story__head {
  position: sticky;
  top: 120px;
}

.story__heading {
  font-family: var(--font-ja);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin-top: 14px;
}

.story__body p {
  font-size: 15px;
  line-height: 2.2;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.story__body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   16. ブランド哲学（about）
   【3章構成・縦積み・英語ラベル付き】
   ======================================== */

.philosophy {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.philosophy .section-heading {
  margin-bottom: clamp(56px, 10vh, 112px);
}

.philosophy__chapters {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy__chapter {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.philosophy__chapter:last-child {
  border-bottom: 1px solid var(--line);
}

.philosophy__chapter-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  margin-bottom: 22px;
  display: block;
}

.philosophy__chapter-title {
  font-family: var(--font-ja);
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin-bottom: 28px;
}

.philosophy__chapter-body {
  font-size: 16px;
  line-height: 2.0;
  color: var(--text-muted);
}

.philosophy__brand-copy {
  font-family: var(--font-ja);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.1em;
  margin-top: 44px;
}

/* ========================================
   17. 選ばれる理由（about）
   【横3カラム・大きな番号】
   ======================================== */

.reasons {
  background-color: var(--bg-alt);
  padding: var(--section-py) var(--gutter);
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
}

.reason-card {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.reason-card__num {
  font-family: var(--font-en);
  font-size: clamp(64px, 10vw, 104px);
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.reason-card__title {
  font-family: var(--font-ja);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.65;
}

.reason-card__text {
  font-size: 14px;
  line-height: 2.0;
  color: var(--text-muted);
}

/* ========================================
   17. 会社概要（about）
   【定義リスト・罫線区切り】
   ======================================== */

.company {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.company__list {
  max-width: 740px;
  margin: 64px auto 0;
}

.company__item {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company__item:first-child {
  border-top: 1px solid var(--line);
}

.company__key {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 3px;
}

.company__val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
}

.company__val a {
  color: var(--text);
  transition: color var(--ease);
}

.company__val a:hover {
  color: var(--accent);
}

/* ========================================
   18. サービス一覧（services）
   【縦に大きく・番号付き・1項目ずつ展開】
   ======================================== */

.services-list {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.services-list__inner {
  max-width: var(--container-w);
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding: clamp(48px, 8vh, 96px) 0;
  border-top: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

/* services と shop で同じ .service-item を共有するための拡張 */
.services-list--alt {
  background-color: var(--bg-alt);
}

.service-item__num {
  font-family: var(--font-en);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-item__content {}

.service-item__label {
  margin-bottom: 10px;
}

.service-item__title {
  font-family: var(--font-ja);
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-item__text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-muted);
  max-width: 640px;
}

.service-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--ease);
}

.service-item__link:hover {
  gap: 14px;
}

.service-item__link::after {
  content: '→';
}

/* BC ロゴ（services内） */
.bc-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  mix-blend-mode: multiply;
}

/* ========================================
   19. ガイドページ
   【雑誌風グリッド・大小混在】
   ======================================== */

.guide-knowledge {
  background-color: var(--bg-alt);
  padding: var(--section-py) var(--gutter);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  margin-top: 64px;
  background-color: var(--line);
}

.guide-card {
  background-color: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  transition: background-color var(--ease);
}

.guide-card:hover {
  background-color: var(--bg);
}

/* フィーチャー記事（大） */
.guide-card--feat {
  grid-column: span 7;
  grid-row: span 2;
}

/* 通常記事 */
.guide-card--half {
  grid-column: span 5;
}

/* 小記事 */
.guide-card--third {
  grid-column: span 4;
}

/* 全幅記事 */
.guide-card--full {
  grid-column: span 12;
}

.guide-card__label {
  margin-bottom: 16px;
}

.guide-card__title {
  font-family: var(--font-ja);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.guide-card--feat .guide-card__title {
  font-size: clamp(20px, 3vw, 30px);
  margin-bottom: 20px;
}

.guide-card__text {
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-muted);
  flex: 1;
}

.guide-card__cta {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--ease);
}

.guide-card__cta:hover {
  gap: 14px;
}

.guide-card__cta::after {
  content: '→';
}

/* Field Notes コラム */
.field-notes {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.field-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
}

.field-note {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
}

.field-note__issue {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.field-note__title {
  font-family: var(--font-ja);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}

.field-note__link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--ease);
}

.field-note__link:hover {
  gap: 14px;
}

.field-note__link::after {
  content: '→';
}

/* ========================================
   20. コンタクトページ
   【2カラム：左メッセージ・右連絡手段】
   ======================================== */

.contact-section {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
  max-width: var(--container-w);
  margin: 0 auto;
}

.contact-msg__title {
  font-family: var(--font-ja);
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.contact-msg__text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-muted);
}

/* 連絡手段リスト */
.contact-methods {
  display: flex;
  flex-direction: column;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: color var(--ease);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.contact-method:first-child {
  border-top: 1px solid var(--line);
}

.contact-method:hover {
  color: var(--brand);
}

.contact-method__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-method__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-method__value {
  font-size: 16px;
  color: var(--text);
  line-height: 1.35;
  transition: color var(--ease);
}

.contact-method:hover .contact-method__value {
  color: var(--brand);
}

.contact-method__arrow {
  color: var(--line);
  font-size: 14px;
  transition: transform var(--ease), color var(--ease);
}

.contact-method:hover .contact-method__arrow {
  transform: translateX(4px);
  color: var(--brand);
}

/* LINE は緑ボタン */
.contact-method--line .contact-method__value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #06c755;
  color: #ffffff;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color var(--ease);
}

.contact-method--line:hover .contact-method__value {
  background-color: #05a348;
  color: #ffffff;
}

/* 営業時間セクション（contact） */
.hours {
  background-color: var(--bg-alt);
  padding: var(--section-py) var(--gutter);
}

.hours__list {
  max-width: 620px;
  margin: 64px auto 0;
}

.hours__item {
  display: grid;
  grid-template-columns: 192px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.hours__item:first-child {
  border-top: 1px solid var(--line);
}

.hours__day {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.hours__time {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.hours__note {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  font-size: 14px;
  line-height: 2.0;
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   21. ショップページ詳細
   ======================================== */

.shop-models {
  background-color: var(--bg-alt);
  padding: 0;
}

/* shop-models 内のモデルボーダーは非表示（セクション境界で浮くため） */
.shop-models .model-item {
  border-top: none;
}

.shop-models .model-item:last-of-type {
  border-bottom: none;
}

/* 購入情報セクション */
.purchase-info {
  background-color: var(--bg);
  padding: var(--section-py) var(--gutter);
}

/* カラーバリアント切り替え（WRASSE） */
.variant-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.variant-switcher__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}

.variant-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  cursor: pointer;
  background: none;
  transition: border-color var(--ease);
}

.variant-btn.is-active {
  border-color: var(--brand);
}

.variant-btn__swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* 画像フェードトランジション */
.model-item__visual img {
  transition: opacity 0.35s ease;
}

.model-item__visual img.is-fading {
  opacity: 0;
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
}

.purchase-card {
  padding: 36px 32px;
  background-color: var(--surface);
  border-top: 2px solid var(--brand);
}

.purchase-card__title {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.purchase-card__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.purchase-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

.purchase-card__item::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1.75;
}

/* ========================================
   22. ショップ詳細スペック・性能・弾種
   ======================================== */

/* スペックテーブル（モデル仕様・同梱物） */
.model-spec {
  margin-top: 28px;
}

.model-spec + .model-spec {
  margin-top: 16px;
}

.model-spec__heading {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.model-spec__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

.model-spec__table tr {
  border-bottom: 1px solid var(--line);
}

.model-spec__key {
  padding: 8px 14px 8px 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  vertical-align: top;
  width: 36%;
  text-align: left;
}

.model-spec__val {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  vertical-align: top;
}

/* 同梱物リスト */
.model-bundle {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.model-bundle__item {
  font-size: 12px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.7;
}

.model-bundle__item::before {
  content: '—';
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
}

/* 共通性能セクション */
.perf-section {
  background-color: var(--brand-deep);
  padding: var(--section-py) var(--gutter);
}

.perf-section .section-heading__sub {
  color: rgba(244, 241, 234, 0.4);
}

.perf-section .section-heading__title {
  color: var(--text-on-dark);
}

.perf-table tr {
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.perf-table__key {
  padding: 15px 20px 15px 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(244, 241, 234, 0.45);
  letter-spacing: 0.04em;
  vertical-align: middle;
  text-align: left;
  width: 65%;
}

.perf-table__val {
  padding: 15px 0;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  vertical-align: middle;
}

/* 性能ハイライト（3大数値） */
.perf-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--container-w);
  margin: 56px auto 0;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.perf-highlight {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(244, 241, 234, 0.1);
}

.perf-highlight:last-child {
  border-right: none;
}

.perf-highlight__num {
  font-family: var(--font-en);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.perf-highlight__unit {
  font-family: var(--font-en);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  color: rgba(244, 241, 234, 0.5);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.perf-highlight__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 234, 0.4);
  margin-top: 14px;
  line-height: 1.7;
}

.perf-table {
  max-width: 680px;
  margin: 48px auto 0;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
}

/* 対応弾種セクション */
.ammo-section {
  background-color: var(--bg-alt);
  padding: var(--section-py) var(--gutter);
}

.ammo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container-w);
  margin: 52px auto 0;
}

.ammo-card {
  padding: 28px 24px;
  background-color: var(--surface);
  border-top: 2px solid var(--accent);
}

.ammo-card__name {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.ammo-card__text {
  font-size: 13px;
  line-height: 2.0;
  color: var(--text-muted);
}

.ammo-lead-note {
  max-width: var(--container-w);
  margin: 28px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background-color: var(--surface);
  font-size: 12px;
  line-height: 2.1;
  color: var(--text-muted);
}

.ammo-lead-note strong {
  color: var(--text);
  font-weight: 500;
}

/* ========================================
   24. レスポンシブ
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craft__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }

  .craft__cell--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .guide-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .guide-card--feat {
    grid-column: span 6;
    grid-row: span 1;
  }

  .guide-card--half {
    grid-column: span 3;
  }

  .guide-card--third {
    grid-column: span 3;
  }

  .guide-card--full {
    grid-column: span 6;
  }

  .purchase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  /* ナビ：フルスクリーンメニュー */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--brand-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 200;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 18px;
    color: var(--text-on-dark);
    letter-spacing: 0.14em;
  }

  .nav__links a:hover {
    color: var(--accent);
  }

  .nav.scrolled .nav__links a {
    color: var(--text-on-dark);
  }

  .nav__toggle {
    display: flex;
  }

  /* モデルアイテム：縦積み */
  .model-item {
    grid-template-columns: 1fr;
  }

  .model-item--reverse .model-item__visual,
  .model-item--reverse .model-item__body {
    order: unset;
  }

  .model-item__visual {
    min-height: 280px;
    padding: 36px;
  }

  /* ストーリー：縦積み */
  .story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__head {
    position: static;
  }

  /* 哲学チャプター：余白縮小 */
  .philosophy__chapter {
    padding: 48px 0;
  }

  .philosophy__chapter-body {
    font-size: 15px;
  }

  /* 理由：縦積み */
  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* 会社概要：縦積み */
  .company__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  /* サービス：番号を小さく */
  .service-item {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  /* ガイドグリッド：タブレットは2カラム */
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .guide-card--feat,
  .guide-card--half,
  .guide-card--third {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* 全幅カードは2カラムの幅をそのまま使い、空セルを残さない */
  .guide-card--full {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Field Notes：縦積み */
  .field-notes__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* コンタクト：縦積み */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* 営業時間：縦積み */
  .hours__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  /* お知らせ：縦積み */
  .news__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  /* お知らせ一覧（行リスト）：日付を上段に */
  .news-row {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
  }

  .news-row__date {
    grid-column: 1 / -1;
  }

  /* 購入情報：縦積み */
  .purchase-grid {
    grid-template-columns: 1fr;
  }

  /* 信頼性：縦積み */
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 性能ハイライト：縦積み */
  .perf-highlights {
    grid-template-columns: 1fr;
  }

  .perf-highlight {
    border-right: none;
    border-bottom: 1px solid rgba(244, 241, 234, 0.1);
    padding: 36px 24px;
  }

  .perf-highlight:last-child {
    border-bottom: none;
  }

  /* 対応弾種：縦積み */
  .ammo-grid {
    grid-template-columns: 1fr;
  }

  /* フッター */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__nav {
    align-items: flex-start;
  }

  /* クラフトグリッド */
  .craft__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .craft__cell--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* 小型スマートフォン */
@media (max-width: 480px) {
  .hero__catch {
    letter-spacing: 0.02em;
  }

  .sns__links {
    gap: 24px;
  }

  .model-item__body {
    padding: 36px 24px;
  }

  .page-header__en {
    letter-spacing: 0;
  }

  /* ガイドグリッド：スマホは1カラム */
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card--full {
    grid-column: span 1;
  }
}
