/* ======================================================
   ALIMART 公式サイト — Editorial / Museum Grade
   Reference aesthetic: Aesop × Hermès × Leica × Kinfolk
   ====================================================== */

:root {
  /* --- D案：欧州古典装丁パレット（紺×卵殻×深緑） ---
     Reference: Penguin Classics × Paul Stuart × Montblanc書棚
  */
  --ink:          #0f1a33;     /* 本文：深紺墨 */
  --ink-soft:     #1a2a6c;     /* 見出し：ブランドネイビー */
  --ink-mute:     #5a6478;     /* 副文字：クールグレイ */
  --ink-whisper:  #8992a3;

  --paper:        #f9f6f1;     /* 背景：卵殻色 */
  --paper-warm:   #f3eee4;     /* セクション交互：わずかに温度上げ */
  --paper-deep:   #ebe4d5;     /* アクセント淡 */
  --paper-white:  #fdfbf7;     /* カード面：最もクリーンなクリーム */

  --line:         #d8d0bf;     /* ヘアライン：温度のある境界 */
  --line-fine:    rgba(15, 26, 51, 0.08);

  --obsidian:     #0a1128;     /* Dark Reverse：深紺黒 */
  --obsidian-mid: #121b3d;

  --accent:       #2c5f2d;     /* 差し色：ディープインクグリーン（万年筆の深緑） */
  --accent-deep:  #1f4520;     /* 森林 */
  --accent-soft:  #7a9a7b;     /* 淡緑 */

  /* --- Typography --- */
  --serif:  'Cormorant Garamond', 'Shippori Mincho', 'Times New Roman', serif;
  --sans:   'Noto Sans JP', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono:   'Courier New', monospace;

  /* --- Motion --- */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.55, 0.2);
  --dur:     0.7s;

  /* --- Grid --- */
  --maxw:    1280px;
  --maxw-narrow: 920px;
  --gutter:  clamp(20px, 4vw, 40px);
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-weight: 300;
  font-feature-settings: "palt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

::selection {
  background: var(--ink);
  color: var(--paper);
}

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

/* ======================================================
   HEADER — 透明ベース／スクロール連動で実体化
   ====================================================== */
.site-header {
  background: rgba(246, 242, 236, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-fine);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 40px;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 32px;
  width: auto;
  transition: opacity 0.3s var(--ease);
}
.brand-logo:hover { opacity: 0.7; }

.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.4s var(--ease);
}
.nav a:hover::before,
.nav a.active::before {
  width: 100%;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }

/* モバイル ハンバーガー */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ======================================================
   HERO（トップ）— 編集雑誌の表紙
   ====================================================== */
.hero {
  background: var(--paper);
  padding: 0;
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(168, 121, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(18, 18, 18, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding: clamp(60px, 10vw, 120px) 0;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.hero-title .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero-title .line { display: block; }

.hero-lead {
  font-size: 15px;
  line-height: 2.2;
  color: var(--ink-mute);
  margin-bottom: 48px;
  max-width: 480px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4/5;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  transform: translate(24px, 24px);
  z-index: -1;
  transition: transform 0.7s var(--ease);
}
.hero-visual:hover::after {
  transform: translate(16px, 16px);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 640px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-style: italic;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-mute), transparent);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ======================================================
   PAGE HERO（サブページ共通）— 墨色ブロック
   ====================================================== */
.page-hero {
  background: var(--obsidian);
  color: var(--paper);
  padding: clamp(100px, 14vw, 180px) 0 clamp(60px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(168, 121, 74, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(168, 121, 74, 0.08) 0%, transparent 40%);
}
.page-hero > .container { position: relative; }
.page-hero .eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-hero .eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.1;
}
.page-lead {
  font-size: 15px;
  color: rgba(246, 242, 236, 0.75);
  max-width: 640px;
  line-height: 2.1;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ======================================================
   BUTTONS — 余白と1pxの美学
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  font-family: inherit;
  background: transparent;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { border-color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.page-hero .btn-outline {
  color: var(--paper);
  border-color: var(--paper);
}
.page-hero .btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-link {
  color: var(--ink);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.4s var(--ease);
}
.btn-link::after {
  content: '→';
  font-family: var(--serif);
  transition: transform 0.4s var(--ease);
}
.btn-link:hover { gap: 18px; }
.btn-link:hover::after { transform: translateX(4px); }

/* ======================================================
   SECTIONS — 余白の詩
   ====================================================== */
.section {
  padding: clamp(80px, 14vw, 180px) 0;
  position: relative;
}
.section-alt {
  background: var(--paper-warm);
}
.section-dark {
  background: var(--obsidian);
  color: var(--paper);
}
.section-dark .section-title,
.section-dark .subtitle { color: var(--paper); }
.section-dark .section-lead,
.section-dark p { color: rgba(246, 242, 236, 0.7); }

.section-head {
  margin-bottom: clamp(56px, 8vw, 96px);
  max-width: 720px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.section-lead {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 2.1;
  max-width: 600px;
  font-weight: 300;
}
.section-head.center .section-lead { margin: 0 auto; }

.subtitle {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

/* ======================================================
   CONCEPT GRID — 番号と余白で読ませる
   ====================================================== */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.concept-card {
  padding: 0;
  background: transparent;
  position: relative;
}
.concept-card::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}
.concept-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.concept-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.concept-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 2;
  font-weight: 300;
}

/* ======================================================
   BRAND FEATURE — 編集雑誌的アシンメトリ
   ====================================================== */
.brand-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.brand-card {
  background: var(--paper-white);
  border: 1px solid var(--line-fine);
  overflow: hidden;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(18, 18, 18, 0.18);
}
.brand-card-visual {
  background: var(--paper-deep);
  padding: clamp(48px, 6vw, 72px) clamp(32px, 4vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.brand-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.04) 100%);
  pointer-events: none;
}
.brand-card-visual img {
  max-height: 160px;
  width: auto;
  transition: transform 0.8s var(--ease);
}
.brand-card:hover .brand-card-visual img {
  transform: scale(1.05);
}
.brand-card-body {
  padding: clamp(32px, 4vw, 48px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.brand-card-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.brand-card-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.brand-card-desc {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 28px;
  flex: 1;
  font-weight: 300;
}

/* ======================================================
   VALUE GRID — ローマ数字の威厳
   ====================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.value-card {
  text-align: left;
  padding: 0;
  position: relative;
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 24px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  transition: all 0.4s var(--ease);
}
.value-card:hover .value-icon {
  background: var(--ink);
  color: var(--paper);
}
.value-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.95;
  font-weight: 300;
}

/* ======================================================
   CHANNEL / PILLAR CARDS — 静かな棚
   ====================================================== */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.channel-card {
  background: transparent;
  padding: clamp(36px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
  text-align: left;
  position: relative;
}
.channel-card:hover {
  background: var(--paper-warm);
}
.channel-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.channel-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.channel-desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.95;
  margin-bottom: 24px;
  font-weight: 300;
}
.channel-link {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.channel-link:hover { gap: 16px; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.pillar-card {
  background: var(--paper-white);
  padding: clamp(32px, 3.5vw, 44px);
  transition: background 0.4s var(--ease);
}
.pillar-card:hover {
  background: var(--paper-warm);
}
.pillar-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.pillar-card p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.95;
  font-weight: 300;
}

/* ======================================================
   NUMBERS — 巨大セリフで威厳を
   ====================================================== */
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.number-card {
  text-align: left;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 40px);
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.number-card:last-child { border-right: 1px solid var(--line); }
.number-big {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
}
.number-big .unit {
  font-size: 0.36em;
  color: var(--accent);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  align-self: baseline;
  white-space: nowrap;
}
.number-label {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ======================================================
   CONTENT BLOCKS — 長文記事の格式
   ====================================================== */
.content-block {
  margin-bottom: clamp(48px, 7vw, 96px);
  max-width: 760px;
}
.content-block p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 24px;
  font-weight: 300;
}
.content-block p + p { margin-top: 0; }
.content-block h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
  margin: 48px 0 16px;
  letter-spacing: -0.005em;
}

.quote-lead {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  color: var(--ink);
  text-align: left;
  padding: 40px 0 40px 40px;
  border-left: 2px solid var(--accent);
  margin: 40px 0;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ======================================================
   STORY BLOCK — 劇的反転の暗幕
   ====================================================== */
.story-block {
  background: var(--obsidian);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 96px);
  text-align: center;
  margin-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.story-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(168, 121, 74, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(168, 121, 74, 0.08) 0%, transparent 45%);
}
.story-block > * { position: relative; }
.story-block .story-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-size: 12px;
  margin-bottom: 28px;
}
.story-block .story-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.story-block p {
  font-size: 15px;
  line-height: 2.2;
  max-width: 680px;
  margin: 0 auto 20px;
  color: rgba(246, 242, 236, 0.82);
  font-weight: 300;
}

/* ======================================================
   NAMING GRID — Alista Volare 3分解
   ====================================================== */
.naming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.naming-card {
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--line);
  background: transparent;
}
.naming-card:last-child { border-right: none; }
.naming-italian {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.naming-meaning {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.naming-desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.95;
  font-weight: 300;
}

/* ======================================================
   EDITORIAL SPLIT — 画像×テキスト 編集レイアウト
   ====================================================== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  margin-bottom: clamp(80px, 12vw, 160px);
}
.editorial.reverse .editorial-visual { order: 2; }
.editorial-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-deep);
}
.editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.editorial-visual:hover img {
  transform: scale(1.04);
}
.editorial-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(18, 18, 18, 0.08);
  pointer-events: none;
}
.editorial-body {
  max-width: 480px;
}
.editorial-body .eyebrow { margin-bottom: 20px; }
.editorial-body h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.editorial-body p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ======================================================
   MARQUEE — ブランド横流し
   ====================================================== */
.marquee {
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  animation: marquee 45s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}
.marquee-item::after {
  content: '◆';
  color: var(--accent);
  font-size: 10px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================================================
   IMAGE GALLERY — 商品群の静かな陳列
   ====================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--paper-white);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.98);
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}
.gallery-item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--paper);
  background: linear-gradient(to top, rgba(18,18,18,0.7), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ======================================================
   INFO LIST — 会社概要の帳簿
   ====================================================== */
.info-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.info-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
  font-weight: 300;
}
.info-list li span:first-child {
  color: var(--ink);
  font-weight: 400;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.info-list li a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.info-list li a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ======================================================
   FORMS — 静謐な記入欄
   ====================================================== */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.field { margin-bottom: 32px; }
.field label {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 12px;
}
.field .req {
  display: inline-block;
  font-size: 10px;
  background: var(--accent);
  color: var(--paper);
  padding: 2px 8px;
  border-radius: 0;
  margin-left: 8px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 0;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  font-weight: 300;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.9;
}
.form-actions {
  text-align: left;
  margin-top: 40px;
}
.form-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-mute);
  min-height: 22px;
  font-weight: 300;
}

/* ======================================================
   FOOTER — 深淵の礼儀
   ====================================================== */
.site-footer {
  background: var(--obsidian);
  color: rgba(246, 242, 236, 0.78);
  padding: clamp(72px, 10vw, 120px) 0 0;
  margin-top: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(246, 242, 236, 0.6);
  letter-spacing: 0.02em;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-info h4,
.footer-links h4 {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--paper);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.footer-info p {
  font-size: 13px;
  line-height: 2;
  color: rgba(246, 242, 236, 0.6);
  font-weight: 300;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(246, 242, 236, 0.62);
  transition: color 0.3s var(--ease);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: var(--accent-soft); }

.footer-bottom {
  border-top: 1px solid rgba(246, 242, 236, 0.1);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small {
  font-size: 11px;
  color: rgba(246, 242, 236, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ======================================================
   BREADCRUMBS
   ====================================================== */
.breadcrumbs {
  padding: 28px 0 0;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
  padding-bottom: 2px;
}
.breadcrumbs a:hover { border-color: var(--ink); }
.breadcrumbs span { color: var(--ink-mute); }

/* ======================================================
   REVEAL ANIMATIONS — IntersectionObserverと連動
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .hero-inner,
  .brand-feature,
  .editorial { grid-template-columns: 1fr; }
  .editorial.reverse .editorial-visual { order: 0; }
  .value-grid,
  .number-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .concept-grid,
  .channel-grid,
  .pillar-grid,
  .naming-grid { grid-template-columns: 1fr; }
  .naming-card { border-right: none; border-bottom: 1px solid var(--line); }
  .naming-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line-fine);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 12px 28px rgba(15,26,51,0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px clamp(20px, 5vw, 32px);
    font-size: 13px;
    border-top: 1px solid var(--line-fine);
  }
  .nav a::before { display: none; }
  .info-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero-visual::after { display: none; }
  .hero-visual { aspect-ratio: 1; }
}

@media (max-width: 560px) {
  .value-grid,
  .number-grid,
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   UTILITY
   ====================================================== */
.center { text-align: center; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 64px; }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: clamp(48px, 8vw, 96px) 0;
}
.rule-accent {
  border: 0;
  height: 1px;
  background: var(--accent);
  width: 80px;
  margin: 32px 0;
}

/* ======================================================
   HERO FULLBLEED — CSSグラデーション＋タイポグラフィ（画像無し版）
   DomoAI生成が間に合っていないため、全ヒーローはCSSベース。
   既存のimgタグはdisplay:noneで隠して上書き。
   ====================================================== */
.hero-fullbleed {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 80% 10%, rgba(184, 134, 11, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(44, 95, 45, 0.28) 0%, transparent 50%),
    linear-gradient(155deg, #0a1128 0%, #0f1a33 40%, #1a2a4a 100%);
  color: var(--paper);
}
/* 背景画像を暗いグラデーション越しに薄く見せる（エディトリアル感維持） */
.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-fullbleed-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(10,17,40,0.88) 0%, rgba(15,26,51,0.82) 40%, rgba(26,42,74,0.78) 100%);
  z-index: 1;
}
.hero-fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.hero-fullbleed .container { position: relative; z-index: 2; }

/* 装飾：極細のグリッド線＋ゴールド水平線でエディトリアル感 */
.hero-fullbleed::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(246, 242, 236, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(246, 242, 236, 0.03) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}
.hero-fullbleed::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-fullbleed .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(60px, 8vw, 100px);
  width: 100%;
}
.hero-fullbleed .eyebrow {
  color: var(--accent-soft);
}
.hero-fullbleed-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  max-width: 1000px;
}
.hero-fullbleed-title .italic {
  font-style: italic;
  color: var(--accent-soft);
}
.hero-fullbleed-lead {
  font-size: 16px;
  line-height: 2.1;
  color: rgba(246, 242, 236, 0.82);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ヒーロー専用：装飾ゴールドライン（右上から伸びる水平線） */
.hero-fullbleed .container::before {
  content: '';
  position: absolute;
  top: clamp(80px, 10vw, 140px);
  right: clamp(-20px, 2vw, 40px);
  width: clamp(140px, 18vw, 280px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.8));
  z-index: 1;
}

/* ======================================================
   画像プレースホルダー（DomoAI生成前の代替表示）
   画像が読み込めない場合、壊れたimgアイコンではなく
   グラデーション＋テキストで品よく見せる。
   ====================================================== */
.brand-tile img,
.gallery-item img,
.category-tile img,
.editorial-visual.photo img,
.journal-card-visual img,
.journal-feature-visual img {
  background:
    linear-gradient(135deg, var(--paper-deep) 0%, var(--paper-warm) 60%, var(--paper-white) 100%);
  color: transparent;
}
.brand-tile img::after,
.gallery-item img::after {
  content: '';
}

/* ======================================================
   BRAND GRID — ブランドカード写真12枚グリッド
   ====================================================== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-tile {
  background: var(--paper-white);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform 0.7s var(--ease);
}
.brand-tile img {
  width: 100%; height: 70%;
  object-fit: cover;
  transition: transform 1.0s var(--ease), filter 0.7s var(--ease);
  filter: saturate(0.92);
}
.brand-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.brand-tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  padding: 18px 20px;
  background: var(--paper-white);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.brand-tile-country {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.brand-tile-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.brand-tile-sub {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  margin-top: 4px;
  font-weight: 300;
}

/* ======================================================
   BRAND GRID 格差レイアウト — Alista Volare 主役タイル
   自社ブランド3枚を大きく、仕入先カテゴリ12枚を小さく
   ====================================================== */
.brand-tile.feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.brand-tile.feature img {
  height: 78%;
}
.brand-tile.feature .brand-tile-label {
  height: 22%;
  padding: 22px 28px;
}
.brand-tile.feature .brand-tile-name {
  font-size: 28px;
  letter-spacing: -0.01em;
}
.brand-tile.feature .brand-tile-country {
  color: #2c5f2d;
  font-size: 11px;
  letter-spacing: 0.4em;
}
.brand-tile.feature .brand-tile-sub {
  font-size: 11px;
  margin-top: 6px;
}
.brand-tile.feature::after {
  content: 'Our Original';
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #fff;
  background: rgba(44,95,45,0.88);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .brand-tile.feature {
    grid-column: span 2;
    grid-row: span 1;
  }
  .brand-tile.feature .brand-tile-name {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .brand-tile.feature {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ======================================================
   CATEGORY TILES — 写真タイル（カテゴリ）
   ====================================================== */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.category-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-deep);
  display: block;
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.0s var(--ease);
  filter: brightness(0.78) saturate(0.95);
}
.category-tile:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.category-tile-cap {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: var(--paper);
  z-index: 2;
}
.category-tile-cap::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent-soft);
  margin-bottom: 10px;
}
.category-tile-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
}
.category-tile-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* ======================================================
   CHART — 数値可視化SVG
   ====================================================== */
.chart-wrap {
  background: var(--paper-white);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
}
.chart-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.chart-note {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  font-weight: 300;
}
.chart-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.chart-axis { fill: var(--ink-mute); font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.05em; }
.chart-label { fill: var(--ink); font-family: var(--serif); font-size: 12px; font-style: italic; }
.chart-value { fill: var(--ink); font-family: var(--serif); font-size: 12px; font-weight: 500; }
.chart-bar { transition: opacity 0.4s var(--ease); }
.chart-legend { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.chart-legend-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.chart-legend-swatch {
  width: 14px; height: 14px; display: inline-block;
}

/* ======================================================
   DIAGRAM — プラットフォーム相関図
   ====================================================== */
.diagram-wrap {
  background: var(--paper-white);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 64px);
}
.diagram-svg {
  width: 100%;
  height: auto;
  max-width: 920px;
  margin: 0 auto;
  display: block;
}
.diagram-node-rect {
  fill: var(--paper);
  stroke: var(--ink-soft);
  stroke-width: 1.2;
}
.diagram-node-rect.primary {
  fill: var(--ink-soft);
  stroke: var(--ink-soft);
}
.diagram-node-rect.accent {
  fill: var(--accent);
  stroke: var(--accent);
}
.diagram-node-label {
  fill: var(--ink);
  font-family: var(--serif);
  font-size: 13px;
  text-anchor: middle;
  font-weight: 400;
}
.diagram-node-label.light {
  fill: var(--paper);
}
.diagram-node-sub {
  fill: var(--ink-mute);
  font-family: var(--sans);
  font-size: 10px;
  text-anchor: middle;
  letter-spacing: 0.08em;
}
.diagram-node-sub.light {
  fill: rgba(246, 242, 236, 0.8);
}
.diagram-edge {
  stroke: var(--ink-mute);
  stroke-width: 1.4;
  fill: none;
  marker-end: url(#arrow);
}
.diagram-edge.accent {
  stroke: var(--accent);
  stroke-width: 2;
}
.diagram-edge.muted {
  stroke: var(--line);
  stroke-dasharray: 4 4;
}
.diagram-legend {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.12em; color: var(--ink-mute);
  margin-top: 24px; justify-content: center;
}
.diagram-legend span { display: inline-flex; align-items: center; gap: 8px; }
.diagram-legend i {
  width: 20px; height: 2px; background: var(--accent); display: inline-block;
}
.diagram-legend i.muted { background: var(--line); }
.diagram-legend i.thin { background: var(--ink-mute); height: 1.2px; }

/* ======================================================
   EDITORIAL CAPTION — 写真キャプション（雑誌風）
   ====================================================== */
.editorial-visual.photo {
  aspect-ratio: 4/5;
}
.editorial-visual.photo img {
  object-fit: cover;
  padding: 0;
  background: none;
}
.photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 18px;
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(6px);
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-left: 2px solid var(--accent);
  max-width: 80%;
  z-index: 2;
}

/* ======================================================
   GALLERY 4col variant — 商品写真大量配置
   ====================================================== */
.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.gallery-grid-4 .gallery-item {
  aspect-ratio: 1;
}

/* ======================================================
   STAT ROW — インライン数値
   ====================================================== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin: 48px 0;
}
.stat-row .stat {
  border-left: 1px solid var(--accent);
  padding-left: 20px;
}
.stat-row .stat-num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
}
.stat-row .stat-num .unit {
  font-size: 0.4em;
  color: var(--accent);
  font-style: normal;
  align-self: baseline;
  white-space: nowrap;
}
.stat-row .stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ======================================================
   SPLIT — editorial 3:2比率の文字画像交互
   ====================================================== */
.split-3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin: clamp(60px, 8vw, 120px) 0;
}
.split-3-2.reverse { grid-template-columns: 2fr 3fr; }
.split-3-2.reverse .split-visual { order: 2; }
.split-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--paper-deep);
}
.split-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split-visual:hover img { transform: scale(1.03); }
.split-visual::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(18,18,18,0.08);
  pointer-events: none;
}

/* ======================================================
   RESPONSIVE — 追加クラス分
   ====================================================== */
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .category-tiles { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-3-2, .split-3-2.reverse { grid-template-columns: 1fr; }
  .split-3-2.reverse .split-visual { order: 0; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .hero-fullbleed-title { font-size: clamp(36px, 11vw, 56px); }
}

/* ======================================================
   BRAND GRID 統一タイポグラフィタイル（2026-06-10刷新）
   写真の出どころバラつき解消 → 正典ネイビー×ゴールドの
   ワードマーク統一デザイン。Alista Volareのみ金文字で主役化。
   ====================================================== */
.brand-tile.mono {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #0a1128 0%, #0f1a33 55%, #16264f 140%);
}
.brand-tile.mono::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  transition: inset 0.5s var(--ease), border-color 0.5s var(--ease);
  pointer-events: none;
}
.brand-tile.mono:hover::after {
  inset: 7px;
  border-color: rgba(201, 169, 97, 0.65);
}
.mono-inner {
  text-align: center;
  padding: 0 16px;
}
.mono-origin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 10px;
}
.mono-name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  color: #f6f2ec;
  font-weight: 400;
  line-height: 1.25;
}
.mono-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(246, 242, 236, 0.55);
  margin-top: 10px;
  font-weight: 300;
}
.brand-tile.mono.feature .mono-name {
  font-size: clamp(26px, 2.6vw, 38px);
  color: #e8d07c;
}
.brand-tile.mono.feature .mono-origin {
  color: #e8d07c;
  font-size: 11px;
  letter-spacing: 0.4em;
}
.brand-tile.mono.feature::after {
  border-color: rgba(201, 169, 97, 0.5);
}

/* ======================================================
   数字の縦ズレ防止（クスノキHPと同じ根本修正・2026-06-10）
   セリフ体のオールドスタイル数字が上下に踊るのを禁止し、
   高さの揃ったライニング数字に統一する。
   ====================================================== */
body { font-variant-numeric: lining-nums; }
.mono-origin, .mono-sub, .media-date, .eyebrow, .brand-tile-country,
.hero-fullbleed-lead, .section-lead, .photo-caption, .info-list, .channel-desc {
  font-feature-settings: 'lnum' 1;
  font-variant-numeric: lining-nums;
}

/* ======================================================
   BRAND GRID をコンテナ幅(1280px)に収める
   （全幅表示でタイル1枚が広すぎて見づらい問題の修正）
   ====================================================== */
.brand-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

/* ======================================================
   Alista Volare featureタイル ＝ 紙色地 × 公式ロゴ
   （ネイビー9枚の中で1枚だけ明るく、公式ロゴをそのまま見せる）
   ====================================================== */
.brand-tile.mono.feature {
  background: linear-gradient(150deg, #fdfbf7 0%, #f6f2ec 60%, #efe6d6 140%);
}
.brand-tile.mono.feature::after {
  border-color: rgba(184, 134, 11, 0.45);
}
.brand-tile.mono.feature .mono-origin { color: #8e7332; }
.brand-tile.mono.feature .mono-sub { color: var(--ink-mute); }
.brand-tile.mono.feature .mono-logo {
  width: min(74%, 440px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 10px auto 6px;
}

/* ======================================================
   BRAND GRID ロゴプレート方式（2026-06-10 代表指示）
   Shopify時代から使用実績のある公式ブランドロゴを
   白いプレートに統一レイアウトで載せる正規ディーラー型。
   ロゴは全て余白トリム・サイズ正規化済み（assets/logo/brands/）
   ====================================================== */
.brand-tile.logo-tile {
  background: var(--paper-white);
}
.brand-tile.logo-tile .logo-plate {
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14% 16%;
}
.brand-tile.logo-tile .logo-plate img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.brand-tile.logo-tile:hover .logo-plate img {
  transform: scale(1.05);
}
.logo-plate .plate-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--ink);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ======================================================
   ロゴタイル背景の純白統一（2026-06-10 代表指示）
   プレート・ラベル帯・Alista featureタイルまで全て #fff。
   ロゴ画像側も純白化処理済み（assets/logo/brands/）
   ====================================================== */
.brand-tile.logo-tile {
  background: #fff;
}
.brand-tile.logo-tile .brand-tile-label {
  background: #fff;
}
.brand-tile.mono.feature {
  background: #fff;
}

/* featureロゴタイル（Alista Volare）── 他タイルと完全同型の白プレート。
   金フレーム等の装飾は廃止（白地でくすんで見えるため・2026-06-10代表指示） */
.brand-tile.logo-tile.feature .logo-plate {
  padding: 10% 12%;
}
.brand-tile.logo-tile.feature .brand-tile-name {
  font-size: 24px;
}

/* Alista Volare featureタイル: Shopifyバナー準拠の「ブランドブルー地×白ロゴ」
   （バナー実測色 #026BBA・2026-06-10 代表指示「ショッピファイの画像を見ろ」） */
.brand-tile.logo-tile.feature .logo-plate {
  background: #026bba;
}

/* ======================================================
   Alista Volare featureタイル 最終版（2026-06-10）
   ① クリーム箱バグ撲滅: プレースホルダ背景が透過ロゴの裏に
      透けるのを全ロゴタイルで無効化
   ② 平坦な青→深みのあるブランドブルーのラジアルグラデ
      （Shopify実測#026bba基調・中央スポットライト→四隅紺）
   ③ 白ロゴにごく薄いドロップシャドウで地から浮かせる
   ====================================================== */
.brand-tile.logo-tile .logo-plate img {
  background: none !important;
}
.brand-tile.logo-tile.feature .logo-plate {
  background: radial-gradient(125% 115% at 50% 30%, #1b8ad6 0%, #036cbb 46%, #014a85 100%);
  padding: 12% 13%;
}
.brand-tile.logo-tile.feature .logo-plate img {
  max-width: 76%;
  filter: drop-shadow(0 2px 7px rgba(0, 25, 55, 0.22));
}

/* ======================================================
   Alista Volare featureタイル 高級リデザイン（2026-06-10）
   代表「青がダサい」→ 明るい原色ブルーを廃し、サイト紺基調
   (#0f1a33)の深いグラデ＋鳥の透かしでShopifyバナー的な
   リッチさ。白ロゴが映え、サイト全体の紺/金と調和。
   ====================================================== */
.brand-tile.logo-tile.feature .logo-plate {
  background-image:
    url(/assets/logo/alistavolare-watermark.png),
    radial-gradient(125% 118% at 50% 30%, #1a3460 0%, #0f1a33 52%, #081728 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center 46%, center;
  background-size: 94% auto, cover;
  padding: 12% 13%;
}
.brand-tile.logo-tile.feature .logo-plate img {
  position: relative;
  max-width: 72%;
  filter: drop-shadow(0 2px 8px rgba(0, 10, 30, 0.35));
}

/* ======================================================
   余白の詰め（2026-06-10 代表「サイトの間隔が広すぎて見ずらい」）
   セクション垂直リズムを約45%圧縮し、密度を上げて読みやすく。
   ====================================================== */
.section { padding: clamp(44px, 7vw, 92px) 0; }
.section-head { margin-bottom: clamp(26px, 4vw, 48px); }
.editorial { gap: clamp(28px, 5vw, 72px); margin-bottom: clamp(40px, 6vw, 80px); }
.content-block { margin-bottom: clamp(26px, 4vw, 52px); }
.page-hero { padding: clamp(54px, 9vw, 104px) 0 clamp(34px, 5vw, 64px); }
.site-footer { margin-top: clamp(40px, 6vw, 76px); }
.story-block { padding: clamp(40px, 6vw, 80px) 0; }

/* ======================================================
   Alista Volare: ネイビー背景×シルバーロゴ（Shopify準拠・
   2026-06-10代表「ネイビー背景にシルバーロゴ」）
   透かしを外しクリーンに。シルバーは金属艶を焼き込み済み。
   ====================================================== */
.brand-tile.logo-tile.feature .logo-plate {
  background-image: radial-gradient(125% 118% at 50% 30%, #1a3460 0%, #0f1a33 52%, #081728 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 12% 13%;
}
.brand-tile.logo-tile.feature .logo-plate img {
  max-width: 74%;
  filter: drop-shadow(0 2px 7px rgba(0, 8, 24, 0.40));
}

/* 代表メッセージの丸枠ポートレート（2026-06-10 代表指示・小さめ） */
.founder-portrait {
  width: clamp(190px, 24vw, 280px);
  height: clamp(190px, 24vw, 280px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 34px rgba(15, 26, 51, 0.20);
  border: 5px solid #fff;
}

/* AVシルバーロゴを枠そのままで拡大（2026-06-10 代表「もっと大きく」）
   プレート余白を詰め、ロゴmax-widthを90%へ */
.brand-tile.logo-tile.feature .logo-plate {
  padding: 8% 8%;
}
.brand-tile.logo-tile.feature .logo-plate img {
  max-width: 90%;
}
