/* ============================================================
   FIRST GROUP — Brand Site CSS v5
   v1デザイン言語 × v4情報構造
   フォント: Noto Serif JP / Noto Sans JP / Inter
   カラー: --fire #FF4500 / --ember #FF8C00 / --gold #C8962A
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fire:      #FF4500;
  --fire-soft: #FF6B35;
  --ember:     #FF8C00;
  --gold:      #C8962A;
  --dark:      #1A1A1A;
  --dark2:     #222222;
  --dark3:     #2A2A2A;
  --dark4:     #333333;
  --gray:      #888888;
  --gray2:     #555555;
  --light:     #F5F0E8;
  --white:     #FFFFFF;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:     12px;
  --store-accent: #FF4500;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   REVEAL ANIMATIONS — 2025 Modern
   Spring easing + clip-path slide + 3D perspective
   ============================================================ */

/* --- base state (hidden) --- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity, clip-path;
}

/* slide-up with clip reveal — 1.1s でゆったり登場 */
.reveal-up {
  transform: translateY(40px) scale(0.98);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* slide-left with slight 3D */
.reveal-left {
  transform: translateX(-48px) perspective(600px) rotateY(4deg);
  clip-path: inset(0 8% 0 0);
  transition:
    opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.0s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* slide-right with slight 3D */
.reveal-right {
  transform: translateX(48px) perspective(600px) rotateY(-4deg);
  clip-path: inset(0 0 0 8%);
  transition:
    opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.0s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- visible state --- */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateY(0) scale(1) perspective(600px) rotateX(0) rotateY(0);
  clip-path: inset(0 0 0 0);
}

/* --- stagger delays — 余裕を持たせた間隔でリズムよく --- */
.delay-1 { transition-delay: 0.18s; }
.delay-2 { transition-delay: 0.34s; }
.delay-3 { transition-delay: 0.50s; }
.delay-4 { transition-delay: 0.66s; }
.delay-5 { transition-delay: 0.82s; }

/* --- text split lines (used by JS splitLines) --- */
.split-line-wrap {
  overflow: hidden;
  display: block;
}
.split-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- magnetic card (class toggled by JS) --- */
.mag-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s ease;
}

/* --- scroll-driven parallax container --- */
.parallax-layer {
  will-change: transform;
}

/* --- count-up number --- */
.counter-num { display: inline-block; }

/* --- glitch text (store hero names) --- */
@keyframes glitch-1 {
  0%,100% { clip-path: inset(0 0 95% 0); transform: translate(-3px, 0); }
  20%      { clip-path: inset(30% 0 50% 0); transform: translate(3px, 0); }
  40%      { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 0); }
  60%      { clip-path: inset(10% 0 70% 0); transform: translate(2px, 0); }
  80%      { clip-path: inset(80% 0 5% 0);  transform: translate(-1px, 0); }
}
@keyframes glitch-2 {
  0%,100% { clip-path: inset(50% 0 30% 0); transform: translate(3px, 0); }
  25%     { clip-path: inset(5% 0 80% 0);  transform: translate(-3px, 0); }
  50%     { clip-path: inset(70% 0 10% 0); transform: translate(2px, 0); }
  75%     { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
}

.glitch-text {
  position: relative;
  display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.glitch-text::before {
  color: #ff0040;
  animation: glitch-1 4s steps(1) infinite;
  animation-play-state: paused;
  opacity: 0.7;
}
.glitch-text::after {
  color: #00ffcc;
  animation: glitch-2 4s steps(1) infinite;
  animation-play-state: paused;
  opacity: 0.7;
}
.glitch-text:hover::before,
.glitch-text:hover::after {
  animation-play-state: running;
}

/* --- shimmer scan line (on section headings) --- */
@keyframes shimmer-scan {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-heading {
  background: linear-gradient(
    90deg,
    currentColor 40%,
    rgba(255,255,255,0.85) 50%,
    currentColor 60%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-scan 3.5s linear infinite;
}

/* --- hover lift card (used site-wide) --- */
.hover-lift {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* --- animated border gradient --- */
@keyframes border-spin {
  to { --angle: 360deg; }
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.border-glow {
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--dark2), var(--dark2)),
    conic-gradient(from var(--angle), var(--fire), var(--ember), var(--gold), var(--fire));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: border-spin 3s linear infinite;
}

/* --- floating badge pulse --- */
@keyframes badge-float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-6px) rotate(1deg); }
}

/* --- spotlight on hover (applied by JS) --- */
.spotlight-card {
  position: relative;
  overflow: hidden;
}
.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.spotlight-card:hover::after { opacity: 1; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 40px;
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ember), var(--fire));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,69,0,0.45); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 40px;
  letter-spacing: 0.05em;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--fire);
  color: var(--fire);
  transform: translateY(-2px);
}

.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.06em;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(255,69,0,0.4);
}
.btn-fire:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255,69,0,0.6);
}

/* ---------- Section commons ---------- */
.section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--fire);
  margin-bottom: 24px;
  display: block;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--fire);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 60px;
  line-height: 2;
}

.accent-text {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--fire), var(--ember), var(--gold));
  z-index: 2000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,69,0,0.5);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  position: relative;
}
.nav-logo::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: url('/static/logo-firstgroup-watermark.png') center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.logo-mark { color: var(--fire); font-size: 1.7rem; line-height: 1; position: relative; z-index: 1; }
.logo-text { color: var(--white); position: relative; z-index: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--fire);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 8px 24px !important;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: 40px;
  color: var(--white) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--fire); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 60px;
}

/* ── Hero 写真 2×2グリッドレイアウト ── */

/* フォールバック背景 */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  z-index: 0;
}

/* 2×2 グリッドコンテナ：ヒーロー全面を覆う */
.hero-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  z-index: 0;
}

/* 各写真スロット共通 */
.hero-photo-slot {
  position: relative;
  overflow: hidden;
}
.hero-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* 全写真を統一した暗さ・暖色トーンに */
  filter: brightness(0.22) saturate(0.7) sepia(0.25);
}

/* ── 各スロットのfocus調整 ── */

/* 左上：笑顔の女性2人（横長）→ 顔の位置に合わせ上寄り */
.hero-photo-slot:nth-child(1) img {
  object-position: center 25%;
}
/* 右上：黒シャツ男性（縦長）→ 顔・胸元中心 */
.hero-photo-slot:nth-child(2) img {
  object-position: 50% 20%;
}
/* 左下：マグロカット男性（縦長）→ 手元〜顔のバランス */
.hero-photo-slot:nth-child(3) img {
  object-position: 50% 35%;
}
/* 右下：白衣職人（縦長）→ 顔・上半身中心 */
.hero-photo-slot:nth-child(4) img {
  object-position: 35% 15%;
}

/* ── スロット間の境界をグラデーションで溶かす ── */
/* 全スロット共通：右・下エッジを暗くしてブレンド */
.hero-photo-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,  transparent 55%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to bottom, transparent 55%, rgba(10,10,10,0.85) 100%);
}
/* 左上：左・上エッジも暗く */
.hero-photo-slot:nth-child(1)::after {
  background:
    linear-gradient(to right,  rgba(10,10,10,0.7) 0%, transparent 45%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, transparent 40%, rgba(10,10,10,0.85) 100%);
}
/* 右上：上エッジ暗め・左エッジはブレンド */
.hero-photo-slot:nth-child(2)::after {
  background:
    linear-gradient(to left,  rgba(10,10,10,0.7) 0%, transparent 45%, rgba(10,10,10,0.8) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, transparent 40%, rgba(10,10,10,0.85) 100%);
}
/* 左下：左・下エッジ暗め */
.hero-photo-slot:nth-child(3)::after {
  background:
    linear-gradient(to right,  rgba(10,10,10,0.7) 0%, transparent 45%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to top,    rgba(10,10,10,0.5) 0%, transparent 40%, rgba(10,10,10,0.0) 100%);
}
/* 右下：右・下エッジ暗め */
.hero-photo-slot:nth-child(4)::after {
  background:
    linear-gradient(to left,  rgba(10,10,10,0.7) 0%, transparent 45%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to top,   rgba(10,10,10,0.5) 0%, transparent 40%, rgba(10,10,10,0.0) 100%);
}

/* ── 全体統合オーバーレイ ──
   写真の上に重なる黒ベース＋ブランドカラーのオレンジグロー
   これが「1枚の映画シーン」に見せる核心 */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* 四隅を黒で締めるビネット */
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.75) 100%),
    /* 上部ナビとのつなぎ */
    linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, transparent 25%),
    /* 下部カウンターバーとのつなぎ */
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 30%),
    /* ブランドカラー：左寄り〜中央下のオレンジグロー（炎） */
    radial-gradient(ellipse at 25% 80%, rgba(255,69,0,0.28) 0%, transparent 50%),
    /* 右中央のアンバーグロー（炉の光） */
    radial-gradient(ellipse at 70% 55%, rgba(255,130,0,0.14) 0%, transparent 45%),
    /* 中央の薄暗化（テキスト可読性確保） */
    radial-gradient(ellipse at 50% 45%, rgba(10,10,10,0.35) 0%, transparent 60%);
}

/* 下部炎エフェクト */
.hero-flame-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  z-index: 1;
  background: linear-gradient(to top, rgba(255,69,0,0.12), transparent);
  pointer-events: none;
}

#particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

/* センター1カラムレイアウト */
.hero-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.hero-content { max-width: 860px; width: 100%; }
.hero-eyebrow { justify-content: center; }
.hero-btns { justify-content: center; }

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--fire);
  margin-bottom: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.title-line { display: block; }
.title-line.accent {
  background: linear-gradient(135deg, var(--fire) 0%, var(--ember) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255,69,0,0.4), 0 0 40px rgba(255,69,0,0.2); }
  50%       { text-shadow: 0 0 40px rgba(255,69,0,0.7), 0 0 80px rgba(255,69,0,0.35); }
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 2;
  margin-bottom: 40px;
}
.hero-sub em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,69,0,0.5);
  padding-bottom: 2px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}



/* 数字バー */
.hero-counter-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 80px;
  padding: 24px 48px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 48px auto 0;
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}
.counter-num {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--fire);
  line-height: 1;
}
.counter-num small { font-size: 0.6em; }
.counter-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.counter-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   MARQUEE — ロゴスクロール帯
   sli-logo と同じデザイン言語で統一
   （白背景・炎色ボーダー・角丸・ドロップシャドウ）
   ============================================================ */
.marquee-wrap {
  background: #F5F0E8;
  border-top:    1px solid var(--fire);
  border-bottom: 1px solid var(--fire);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeRoll 16s linear infinite;
  will-change: transform;
}

/* ── マーキーロゴ共通：枠なし・背景なし・ロゴのみ ── */
.marquee-logo {
  display: inline-block;
  flex-shrink: 0;
  width:  64px;
  height: 64px;
  object-fit: contain;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.marquee-logo:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

/* アメノチハレ：横長ロゴ */
.marquee-logo--wide {
  width:  108px;
  height: 54px;
}

/* 個別調整クラス（サイズ差のみ対応・枠なし統一） */
.marquee-logo--ikkyu {}
.marquee-logo--kara  { width: 68px; height: 68px; }
.marquee-logo--fg    {}

/* セパレーター */
.marquee-sep {
  display: inline-block;
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  vertical-align: middle;
}

/* スマホ：gap縮小・速度アップ */
@media (max-width: 600px) {
  .marquee-track {
    gap: 20px;
    animation-duration: 12s;
  }
  .marquee-logo {
    width: 48px;
    height: 48px;
  }
  .marquee-logo--wide {
    width: 84px;
    height: 42px;
  }
  .marquee-logo--kara {
    width: 52px;
    height: 52px;
  }
  .marquee-wrap {
    padding: 14px 0;
  }
}

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

/* ============================================================
   PHILOSOPHY / CONCEPT
   ============================================================ */
.section-philosophy {
  padding: 120px 0;
  background: var(--dark2);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

.philosophy-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.philosophy-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  line-height: 2;
}
.philosophy-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 0;
}
.quote-line {
  width: 3px;
  min-height: 70px;
  background: linear-gradient(to bottom, var(--fire), var(--ember));
  border-radius: 2px;
  flex-shrink: 0;
}
blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* value-cards: 2×2グリッド */
.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: default;
}
.value-card:hover {
  background: rgba(255,69,0,0.06);
  border-color: rgba(255,69,0,0.25);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 1.4rem;
  color: var(--fire);
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 8px;
}
.value-kw {
  font-size: 0.78rem !important;
  color: var(--fire) !important;
  font-weight: 700;
}

/* ============================================================
   STORES — リスト形式
   ============================================================ */
.section-stores {
  padding: 120px 0;
  background: var(--dark3);
}

.stores-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 横長リスト */
.store-list-item {
  display: grid;
  grid-template-columns: clamp(180px, 24vw, 300px) 1fr;
  gap: 0;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.store-list-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,69,0,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.store-list-item--soon { opacity: 0.75; }

/* サムネイル */
.sli-img {
  position: relative;
  transition: transform 0.6s ease;
  min-height: 240px;
}
.store-list-item:hover .sli-img { transform: scale(1.04); }

.sli-img--ikkyu {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%),
    url('/static/store-ikkyu.jpg') center/cover no-repeat;
}
.sli-img--ikkyu::after { display: none; }

.sli-img--daifuku {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%),
    url('/static/store-daifuku.jpg') center/cover no-repeat;
}
.sli-img--daifuku::after { display: none; }

.sli-img--ame {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%),
    url('/static/store-ame.jpg') center/cover no-repeat;
}
.sli-img--ame::after { display: none; }

.sli-img--chauna {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%),
    url('/static/store-chauna.jpg') center/cover no-repeat;
}
.sli-img--chauna::after { display: none; }

.sli-img--karayaburi {
  background:
    linear-gradient(160deg, rgba(10,5,0,0.45) 0%, rgba(0,0,0,0.6) 100%),
    url('/static/store-karayaburi.jpg') center/cover no-repeat;
}
.sli-img--karayaburi::after { display: none; }

/* テキスト本体 */
.sli-body { padding: 28px 32px; }

.sli-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.sli-num {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fire);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.sli-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  display: block;
  width: fit-content;
  padding: 4px 12px;
  border: 2.5px solid var(--fire);
  border-radius: 6px;
  color: #ffffff;
  box-shadow:
    0 0 8px rgba(255,69,0,0.3),
    inset 0 0 0 1px rgba(255,69,0,0.1);
}
.sli-genre {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.12em;
}
.sli-arrow {
  margin-left: auto;
  color: var(--fire);
  font-size: 1rem;
  transition: transform 0.3s;
}
.store-list-item:hover .sli-arrow { transform: translateX(4px); }

.sli-tag {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fire-soft);
  margin-bottom: 10px;
}
.sli-detail {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 14px;
}
.sli-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.sli-meta span {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sli-meta i { color: var(--fire); font-size: 0.7rem; }

/* ── 店舗ロゴ（sli-head 右端）── ロゴ画像→店名テキストに変更のため無効化 */
/* .sli-logo { ... } */

/* ── アクションボタン行 ── */
.sli-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sli-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.sli-btn:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.sli-btn i { font-size: 0.8rem; }

/* 予約 */
.sli-btn--reserve {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
}
/* 電話 */
.sli-btn--tel {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
/* MAP */
.sli-btn--map {
  background: rgba(66,133,244,0.15);
  color: #6fa8f5;
  border: 1px solid rgba(66,133,244,0.25);
}
/* Instagram */
.sli-btn--ig {
  background: linear-gradient(135deg, rgba(131,58,180,0.2), rgba(253,29,29,0.15), rgba(252,176,69,0.15));
  color: #e1a0e8;
  border: 1px solid rgba(200,100,200,0.25);
}
/* UberEats */
.sli-btn--uber {
  background: rgba(6,77,27,0.25);
  color: #06c355;
  border: 1px solid rgba(6,195,85,0.25);
}

/* 店舗を覗くボタン */
.sli-btn-peek {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.sli-btn-peek::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.sli-btn-peek:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,69,0,.4);
}
.sli-btn-peek:hover::before { opacity: 1; }
.sli-btn-peek i { font-size: 1rem; }

/* タグ */
.store-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 1;
}
.store-tag--soon {
  background: linear-gradient(135deg, #555, #333);
}
.coming-soon-badge {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: auto;
}

/* STORES グリッド（店舗ページ内「他の店舗」用） */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.store-card {
  background: var(--dark2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.store-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,69,0,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.store-img-wrap { position: relative; overflow: hidden; }
.store-img {
  height: 180px;
  position: relative;
  transition: transform 0.6s ease;
}
.store-card:hover .store-img { transform: scale(1.06); }
.store-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.store-info { padding: 20px 24px 24px; }
.store-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.store-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ============================================================
   STAFF / TEAM
   ============================================================ */
.section-staff {
  padding: 120px 0;
  background: var(--dark);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.staff-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.staff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.staff-card:hover { transform: translateY(-6px); border-color: rgba(255,69,0,0.25); }
.staff-card:hover::before { transform: scaleX(1); }

/* ── スタッフ写真ブロック（円形アバター） ── */
.staff-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px rgba(255,69,0,0.35),
    0 4px 20px rgba(0,0,0,0.45);
}
.staff-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.96) saturate(0.95);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1),
              filter 0.35s ease;
}
.staff-card:hover .staff-photo-wrap img {
  transform: scale(1.08);
  filter: brightness(1.02) saturate(1.0);
}
/* バッジは非表示（円形では不要） */
.staff-photo-badge { display: none; }

.staff-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fire);
  margin-bottom: 6px;
}
.staff-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.staff-year {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.staff-quote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 16px;
}
.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.staff-tags span {
  font-size: 0.72rem;
  color: var(--fire);
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

.staff-flame {
  position: absolute;
  bottom: 20px; right: 24px;
  color: rgba(255,69,0,0.1);
  font-size: 2.5rem;
  transition: color 0.3s;
}
.staff-card:hover .staff-flame { color: rgba(255,69,0,0.25); }

.staff-cta {
  text-align: center;
  padding: 48px;
  background: rgba(255,69,0,0.05);
  border: 1px solid rgba(255,69,0,0.12);
  border-radius: 16px;
}
.staff-cta p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.8);
}
.staff-cta em { font-style: normal; color: var(--fire); }

/* ============================================================
   CULTURE
   ============================================================ */
.section-culture {
  padding: 120px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.culture-bg-text {
  position: absolute;
  bottom: -20px; right: -20px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 14rem);
  letter-spacing: -0.04em;
  color: rgba(255,69,0,0.03);
  pointer-events: none;
  user-select: none;
}

/* 数字統計 */
.stat-row {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px 48px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.stat-label small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* カルチャーカード */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.culture-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--transition);
}
.culture-card:hover {
  background: rgba(255,69,0,0.05);
  border-color: rgba(255,69,0,0.2);
  transform: translateY(-6px);
}
.culture-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
}
.culture-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.culture-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 12px;
}
.culture-list {
  list-style: none;
  padding: 0;
}
.culture-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.culture-list li:last-child { border-bottom: none; }

.culture-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.culture-keywords span {
  font-size: 0.85rem;
  color: var(--fire);
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.2);
  padding: 6px 18px;
  border-radius: 30px;
  transition: var(--transition);
}
.culture-keywords span:hover {
  background: rgba(255,69,0,0.15);
  transform: translateY(-2px);
}

/* ============================================================
   RECRUIT TEASER
   ============================================================ */
.section-recruit {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.recruit-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,69,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,140,0,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0D0D0D 0%, #1C0800 50%, #0D0D0D 100%);
}
.recruit-bg-flame {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(255,69,0,0.06), transparent);
}

.recruit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.recruit-label { color: rgba(255,255,255,0.5) !important; }

.recruit-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 28px;
}
.accent-fire {
  background: linear-gradient(135deg, var(--fire), var(--ember), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.recruit-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 2.1;
  margin-bottom: 40px;
  max-width: 560px;
}
.recruit-sub strong { color: var(--white); font-weight: 700; }

/* 待遇パネル */
.recruit-benefits-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.8);
}
.recruit-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recruit-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.recruit-benefit:last-child { border-bottom: none; }
.recruit-benefit-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.recruit-benefit-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fire);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.recruit-benefit-val {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* 募集要項カード */
.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.recruit-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.recruit-card:hover {
  border-color: rgba(255,69,0,0.3);
  transform: translateY(-4px);
  outline: 2px solid transparent;
  background-image: linear-gradient(var(--dark3), var(--dark3)),
    linear-gradient(135deg, #ff4500, #ff8c00, #ffd700, #ff4500);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 300% 300%;
  animation: fire-border 3s ease infinite;
}
@keyframes fire-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.rp-job-head {
  margin-bottom: 20px;
}
.rp-job-head h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 12px;
}
.rp-job-table {
  width: 100%;
  border-collapse: collapse;
}
.rp-job-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rp-job-table tr:last-child { border-bottom: none; }
.rp-job-table th {
  padding: 10px 0;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
  width: 80px;
  vertical-align: top;
  padding-right: 16px;
  white-space: nowrap;
}
.rp-job-table td {
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* 数字カード（採用ページヒーロー右） */
.rp-hero-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rp-num-card {
  text-align: center;
  padding: 24px 16px !important;
}
.rp-num-card .counter-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.rp-num-card .counter-label {
  font-size: 0.75rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: 120px 0;
  background: var(--dark3);
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px;
}
.contact-form::before {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: 2px;
  margin: 0 auto 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}
.required { color: var(--fire); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(255,69,0,0.12);
}
.form-group select option { background: var(--dark3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: center; margin-top: 10px; }
.btn-submit { min-width: 220px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 32px;
  text-align: center;
}
.footer-top { margin-bottom: 32px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--fire); }
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}
.footer-sns a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-sns a:hover {
  border-color: var(--fire);
  color: var(--fire);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-addr i { margin-right: 6px; color: var(--fire); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 8px 24px rgba(255,69,0,0.4);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(255,69,0,0.6); }

/* ============================================================
   STORE PAGE — HERO
   ============================================================ */
.sp-hero {
  height: 65vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.store-hero--ikkyu {
  background:
    linear-gradient(160deg, rgba(255,69,0,0.5) 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(circle at 30% 60%, rgba(255,140,0,0.7) 0%, rgba(200,40,0,0.5) 100%);
}
.store-hero--daifuku {
  background:
    linear-gradient(160deg, rgba(180,120,40,0.5) 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(circle at 50% 50%, rgba(200,150,40,0.6) 0%, rgba(100,60,10,0.5) 100%);
}
.store-hero--ame {
  background:
    linear-gradient(160deg, rgba(30,144,255,0.5) 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(circle at 60% 40%, rgba(80,160,220,0.6) 0%, rgba(20,60,100,0.5) 100%);
}
.store-hero--chauna {
  background:
    linear-gradient(160deg, rgba(40,160,80,0.5) 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(circle at 50% 50%, rgba(80,180,100,0.6) 0%, rgba(20,80,40,0.5) 100%);
}
.store-hero--karayaburi {
  background:
    linear-gradient(160deg, rgba(140,0,200,0.4) 0%, rgba(0,0,0,0.7) 100%),
    radial-gradient(circle at 50% 50%, rgba(160,40,200,0.5) 0%, rgba(60,0,100,0.5) 100%);
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.sp-soon-badge {
  position: absolute;
  top: 120px; right: 40px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 60px 60px;
  max-width: 760px;
}
.sp-hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: block;
}
.sp-hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.sp-hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--store-accent);
  margin-bottom: 8px;
}
.sp-hero-genre {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0.5;
}
.hero-scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--white);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  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; }
}

/* ============================================================
   STORE PAGE — CONCEPT + INFO
   ============================================================ */
.sp-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.sp-concept-img {
  height: clamp(200px, 28vw, 360px);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.sp-concept-img--ikkyu    { background: radial-gradient(circle at 40% 50%, rgba(255,100,0,0.8), rgba(150,30,0,0.9)); }
.sp-concept-img--daifuku  { background: radial-gradient(circle at 50% 40%, rgba(200,150,40,0.8), rgba(120,80,10,0.9)); }
.sp-concept-img--amenochihare { background: radial-gradient(circle at 50% 40%, rgba(60,140,200,0.8), rgba(20,80,140,0.9)); }
.sp-concept-img--chauna   { background: radial-gradient(circle at 50% 50%, rgba(40,160,80,0.8), rgba(20,80,40,0.9)); }
.sp-concept-img--karayaburi { background: radial-gradient(circle at 50% 50%, rgba(140,40,200,0.7), rgba(60,0,100,0.9)); }

/* 店舗情報パネル */
.sp-info-panel {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--store-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.sp-info-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  align-items: flex-start;
}
.sp-info-row:last-child { border-bottom: none; }
.sp-info-label {
  color: var(--gray);
  white-space: nowrap;
  min-width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-info-label i { color: var(--store-accent); font-size: 0.78rem; }
.sp-info-row > span:last-child {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ============================================================
   STORE PAGE — EXPERIENCE
   ============================================================ */
.section-experience {
  padding: 120px 0;
  background: var(--dark2);
  overflow: hidden;
}
.exp-track { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.sp-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.exp-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.exp-item:last-child { border-bottom: none; }
.exp-reverse { direction: rtl; }
.exp-reverse > * { direction: ltr; }

.exp-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,69,0,0.15);
  line-height: 1;
}
.exp-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
.exp-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
}
.exp-visual {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
}
.tl-v1 { background: radial-gradient(circle at 40% 60%, rgba(255,100,0,0.9), rgba(200,40,0,0.7)); }
.tl-v2 { background: radial-gradient(circle at 60% 40%, rgba(60,140,200,0.9), rgba(20,80,140,0.7)); }
.tl-v3 { background: radial-gradient(circle at 50% 50%, rgba(180,140,40,0.9), rgba(120,80,10,0.7)); }

.sp-exp-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-exp-photo {
  height: clamp(160px, 20vw, 240px);
  border-radius: var(--radius);
}

/* ============================================================
   STORE PAGE — PHOTO STRIP
   ============================================================ */
.sp-photo-strip { overflow: hidden; }
.sp-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sp-strip-img {
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}
.sp-strip-img:hover { transform: scale(1.04); }

/* ギャラリー画像 */
.sp-gallery-img--ikkyu-1    { background: radial-gradient(circle at 30% 60%, rgba(255,100,0,0.9), rgba(150,30,0,0.8)); }
.sp-gallery-img--ikkyu-2    { background: radial-gradient(circle at 70% 40%, rgba(200,80,0,0.9), rgba(100,20,0,0.8)); }
.sp-gallery-img--ikkyu-3    { background: radial-gradient(circle at 50% 50%, rgba(255,140,0,0.8), rgba(180,60,0,0.8)); }
.sp-gallery-img--daifuku-1  { background: radial-gradient(circle at 40% 60%, rgba(220,160,60,0.9), rgba(140,80,20,0.8)); }
.sp-gallery-img--daifuku-2  { background: radial-gradient(circle at 60% 40%, rgba(200,140,40,0.9), rgba(120,70,10,0.8)); }
.sp-gallery-img--daifuku-3  { background: radial-gradient(circle at 50% 50%, rgba(230,170,70,0.8), rgba(150,90,20,0.8)); }
.sp-gallery-img--amenochihare-1 { background: radial-gradient(circle at 40% 60%, rgba(60,140,200,0.9), rgba(20,80,140,0.8)); }
.sp-gallery-img--amenochihare-2 { background: radial-gradient(circle at 60% 40%, rgba(40,120,180,0.9), rgba(10,60,120,0.8)); }
.sp-gallery-img--amenochihare-3 { background: radial-gradient(circle at 50% 50%, rgba(80,160,220,0.8), rgba(30,90,160,0.8)); }
.sp-gallery-img--chauna-1   { background: radial-gradient(circle at 40% 60%, rgba(40,160,80,0.9), rgba(20,80,40,0.8)); }
.sp-gallery-img--chauna-2   { background: radial-gradient(circle at 60% 40%, rgba(60,180,100,0.9), rgba(30,100,50,0.8)); }
.sp-gallery-img--chauna-3   { background: radial-gradient(circle at 50% 50%, rgba(80,200,120,0.8), rgba(40,120,60,0.8)); }
.sp-gallery-img--karayaburi-1 { background: radial-gradient(circle at 40% 60%, rgba(140,40,200,0.8), rgba(60,0,100,0.9)); }
.sp-gallery-img--karayaburi-2 { background: radial-gradient(circle at 60% 40%, rgba(120,20,180,0.8), rgba(50,0,90,0.9)); }
.sp-gallery-img--karayaburi-3 { background: radial-gradient(circle at 50% 50%, rgba(160,60,220,0.7), rgba(70,0,110,0.9)); }

/* その他店舗サムネイル */
.sp-os-img--ikkyu     { background: radial-gradient(circle at 40% 60%, rgba(255,100,0,0.8), rgba(150,30,0,0.9)); }
.sp-os-img--daifuku   { background: radial-gradient(circle at 50% 50%, rgba(200,150,40,0.8), rgba(120,80,10,0.9)); }
.sp-os-img--amenochihare { background: radial-gradient(circle at 50% 40%, rgba(60,140,200,0.8), rgba(20,80,140,0.9)); }
.sp-os-img--chauna    { background: radial-gradient(circle at 50% 50%, rgba(40,160,80,0.8), rgba(20,80,40,0.9)); }
.sp-os-img--karayaburi { background: radial-gradient(circle at 50% 50%, rgba(140,40,200,0.7), rgba(60,0,100,0.9)); }

/* スタッフ写真 */
.sp-staff-photo--a { background: radial-gradient(circle at 40% 40%, rgba(255,100,0,0.6), rgba(150,30,0,0.8)); }
.sp-staff-photo--b { background: radial-gradient(circle at 50% 40%, rgba(200,150,40,0.6), rgba(120,80,10,0.8)); }

/* ============================================================
   RECRUIT PAGE — HERO
   ============================================================ */
.rp-hero { position: relative; min-height: 85vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 120px 40px 60px; }
.rp-hero-bg {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(255,69,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(255,140,0,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0D0D0D 0%, #1a0a00 60%, #0D0D0D 100%) !important;
}
.rp-hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   RECRUIT — ABOUT スタッフ写真
   ============================================================ */
.rp-about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.rp-about-img {
  height: clamp(100px, 14vw, 180px);
  border-radius: var(--radius);
}
.rp-about-img--1 { background: radial-gradient(circle at 40% 60%, rgba(255,100,0,0.7), rgba(150,30,0,0.8)); }
.rp-about-img--2 { background: radial-gradient(circle at 60% 40%, rgba(60,140,200,0.7), rgba(20,80,140,0.8)); }

/* ============================================================
   RECRUIT — VOICE（スタッフカード）
   ============================================================ */
.rp-voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.rp-voice-card { /* staff-cardスタイルを継承 */ }

.rp-voice-avatar { width: 80px !important; height: 80px !important; }
.rp-voice-a1 { background: linear-gradient(135deg, #ff4500, #ff8c00); }
.rp-voice-a2 { background: linear-gradient(135deg, #c8962a, #ff6b35); }
.rp-voice-a3 { background: linear-gradient(135deg, #1e90ff, #00bfff); }

.rp-voice-photo { width: 68px !important; height: 68px !important; }
.rp-voice-photo--1 { background: radial-gradient(circle at 40% 40%, rgba(255,100,0,0.6), rgba(150,30,0,0.8)); }
.rp-voice-photo--2 { background: radial-gradient(circle at 50% 40%, rgba(200,150,40,0.6), rgba(120,80,10,0.8)); }
.rp-voice-photo--3 { background: radial-gradient(circle at 50% 40%, rgba(60,140,200,0.6), rgba(20,80,140,0.8)); }

.rp-voice-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   RECRUIT — CULTURE PHOTOS
   ============================================================ */
.rp-culture-photos { overflow: hidden; }
.rp-cp-strip {
  display: flex;
  height: clamp(140px, 18vw, 220px);
}
.rp-cp-img { flex: 1; }
.rp-cp-img--1 { background: radial-gradient(circle at 50% 50%, rgba(255,100,0,0.8), rgba(150,30,0,0.9)); }
.rp-cp-img--2 { background: radial-gradient(circle at 50% 50%, rgba(200,150,40,0.8), rgba(120,80,10,0.9)); }
.rp-cp-img--3 { background: radial-gradient(circle at 50% 50%, rgba(60,140,200,0.8), rgba(20,80,140,0.9)); }
.rp-cp-img--4 { background: radial-gradient(circle at 50% 50%, rgba(40,160,80,0.8), rgba(20,80,40,0.9)); }
.rp-cp-img--5 { background: radial-gradient(circle at 50% 50%, rgba(140,40,200,0.7), rgba(60,0,100,0.9)); }

/* ============================================================
   TIMELINE
   ============================================================ */
.rp-timeline { margin-top: 40px; }
.rp-tl-visual { display: none; } /* タイムラインでは非表示 */

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection { background: rgba(255,69,0,0.3); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ember); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .recruit-inner { grid-template-columns: 1fr; gap: 48px; }
  .sp-concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .rp-hero-body { grid-template-columns: 1fr; gap: 40px; }
  .rp-voice-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-body { grid-template-columns: 1fr; gap: 40px; }
  /* モバイル：4枚→2×2グリッド、ヒーロー全体を覆う */
  .hero-photos { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .hero-photo-slot::after { background: linear-gradient(to right, transparent 60%, rgba(13,13,13,0.6) 100%); }
  .hero-counter-row { padding: 20px 24px; }
  .counter-item { padding: 0 20px; }

  .stores-list { padding: 0 16px; }
  .store-list-item { grid-template-columns: 1fr; }
  .sli-img { min-height: 160px; }
  .sli-logo { width: 64px; height: 64px; }
  .sli-logo--wide { width: 96px; height: 48px; }
  .sli-actions { gap: 6px; }
  .sli-btn { font-size: 0.72rem; padding: 7px 11px; }

  .staff-grid { grid-template-columns: 1fr; }
  .staff-photo-wrap { width: 140px; height: 140px; }
  .value-cards { grid-template-columns: 1fr; }
  .recruit-cards { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr; }
  .rp-voice-list { grid-template-columns: 1fr; }
  .rp-hero-numbers { grid-template-columns: 1fr 1fr; }

  .sp-hero-content { padding: 0 24px 40px; }
  .sp-strip-grid { grid-template-columns: 1fr 1fr; }

  .exp-item, .exp-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 16px;
    padding: 32px 0;
  }
  .exp-num { font-size: 2rem; }
  .exp-visual { height: 120px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 24px; }

  .stat-row { padding: 28px 16px; }
  .stat-item { padding: 12px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }

  section, .section-philosophy, .section-stores, .section-staff,
  .section-culture, .section-recruit, .section-contact, .section-experience {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .culture-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-counter-row { flex-direction: column; border-radius: 20px; }
  .counter-divider { width: 80px; height: 1px; }
  .counter-item { padding: 16px 0; }
  .rp-hero-numbers { grid-template-columns: 1fr 1fr; }
  .sp-strip-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRESIDENT MESSAGE — 社長あいさつ
   ============================================================ */
.section-president {
  padding: 120px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.section-president::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
}
.section-president::after {
  content: '"';
  position: absolute;
  top: 60px;
  right: 5%;
  font-family: var(--font-serif);
  font-size: 20rem;
  line-height: 1;
  color: var(--fire);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.pres-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* 左カラム：名前・役職 */
.pres-profile {
  position: sticky;
  top: 120px;
}

/* 代表写真 */
.pres-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.06);
}
.pres-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.96) saturate(0.95);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              filter 0.4s ease;
}
.pres-photo:hover img {
  transform: scale(1.04);
  filter: brightness(1.0) saturate(1.0);
}
.pres-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(8,8,8,0.45) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}


.pres-role {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--fire);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pres-role::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--fire);
  vertical-align: middle;
  margin-right: 10px;
}
.pres-name-ja {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 6px;
}
.pres-name-en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
}
.pres-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  margin: 24px 0;
  border: none;
}
.pres-since {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* 右カラム：本文 */
.pres-body {
  position: relative;
}
.pres-opening {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 2;
  color: var(--white);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pres-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.pres-text + .pres-text { margin-top: -8px; }

.pres-emphasis {
  padding: 32px 40px;
  border-left: 3px solid var(--fire);
  background: rgba(255,69,0,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}
.pres-emphasis p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--white);
  margin-bottom: 8px;
}
.pres-emphasis p:last-child { margin-bottom: 0; }

.pres-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pres-list li {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  line-height: 1.8;
}
.pres-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: 50%;
}
.pres-list li:last-child { border-bottom: none; }

.pres-closing {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pres-closing-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 2.2;
  color: var(--white);
  margin-bottom: 32px;
}
.pres-closing-text .accent-text {
  display: inline;
}
.pres-sig {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pres-sig-line {
  width: 32px;
  height: 1px;
  background: var(--fire);
}
.pres-sig-name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* ── レスポンシブ ── */
@media (max-width: 900px) {
  .pres-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pres-profile {
    position: static;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
  }
  .pres-photo {
    max-width: 130px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .pres-profile-info { flex: 1; min-width: 160px; }
  .pres-divider { display: none; }
  .pres-since { margin-top: 0; }
}
@media (max-width: 480px) {
  .pres-photo { max-width: 100px; }
}
@media (max-width: 600px) {
  .section-president { padding: 80px 0; }
  .section-president::after { font-size: 10rem; top: 20px; }
  .pres-emphasis { padding: 24px 20px; }
  .pres-opening { font-size: 1.05rem; }
}

/* ============================================================
   KARAYABURI ANNOUNCE BANNER — 殻やぶり 大型告知
   ============================================================ */
/* ============================================================
   殻やぶり — GRAND OPEN 告知バナー（ド派手仕様）
   ============================================================ */
.karayaburi-announce {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 16px;
  cursor: default;
}

/* 背景：実際の店内写真 */
.kab-bg {
  position: absolute;
  inset: 0;
  background: url('/static/karayaburi-hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 10s ease;
}
.karayaburi-announce:hover .kab-bg {
  transform: scale(1.09);
}

/* オーバーレイ：暗め＋ブランドカラー */
.kab-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 40%, rgba(255,100,0,0.18) 0%, transparent 60%);
}

/* パルスリング演出 */
.kab-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,69,0,0.3);
  animation: kab-pulse 3s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}
.kab-pulse-ring::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(255,69,0,0.15);
  animation: kab-pulse 3s ease-out 1s infinite;
}
@keyframes kab-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2);   opacity: 0; }
}

/* コンテンツ */
.kab-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  padding: 64px 72px;
}

/* ヘッダー行 */
.kab-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.kab-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fire);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kab-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--fire);
}

/* GRAND OPEN タグ（派手） */
.kab-countdown-tag {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--fire);
  padding: 5px 14px;
  border-radius: 4px;
  animation: kab-tag-blink 1.8s ease-in-out infinite;
}
@keyframes kab-tag-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

/* メインタイトル */
.kab-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-shadow:
    0 0 40px rgba(255,100,0,0.45),
    0 4px 32px rgba(0,0,0,0.7);
}

/* 副題：鶏と牡蠣 */
.kab-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.4em;
  color: rgba(255,180,80,0.9);
  margin-bottom: 8px;
  font-weight: 700;
}

.kab-title-en {
  font-family: var(--font-en);
  font-size: clamp(0.7rem, 1.1vw, 0.95rem);
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  text-transform: uppercase;
}

/* キャッチコピー */
.kab-catch {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 2.1;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  border-left: 3px solid var(--fire);
  padding-left: 20px;
}

/* メタ情報 */
.kab-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.kab-meta-item {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}
.kab-meta-divider {
  color: rgba(255,255,255,0.2);
}

/* アクションボタン群 */
.kab-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.kab-btn-reserve,
.kab-btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.kab-btn-reserve:hover,
.kab-btn-ig:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}
.kab-btn-reserve {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,69,0,0.45);
}
.kab-btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 4px 20px rgba(131,58,180,0.35);
}

/* GRAND OPEN バッジ（ド派手） */
.kab-grand-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: #fff;
  padding: 16px 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--fire) 0%, var(--ember) 100%);
  box-shadow:
    0 0 0 2px rgba(255,69,0,0.4),
    0 0 30px rgba(255,69,0,0.5),
    0 8px 32px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  animation: kab-badge-glow 2.5s ease-in-out infinite;
  align-self: flex-start;
}
.kab-grand-open-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: kab-shine 2.5s ease-in-out infinite;
}
@keyframes kab-badge-glow {
  0%,100% { box-shadow: 0 0 0 2px rgba(255,69,0,0.4), 0 0 30px rgba(255,69,0,0.5), 0 8px 32px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 0 3px rgba(255,69,0,0.6), 0 0 55px rgba(255,69,0,0.7), 0 8px 32px rgba(0,0,0,0.4); }
}
@keyframes kab-shine {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

/* 右側装飾：縦書き */
.kab-content::after {
  content: '鶏と牡蠣';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 20px;
}

/* ── レスポンシブ ── */
@media (max-width: 900px) {
  .karayaburi-announce { min-height: 480px; }
  .kab-content { min-height: 480px; padding: 44px 36px; }
  .kab-content::after { display: none; }
  .kab-pulse-ring { width: 200px; height: 200px; }
}
@media (max-width: 600px) {
  .karayaburi-announce { min-height: 400px; border-radius: 0; }
  .kab-content { min-height: 400px; padding: 36px 24px; }
  .kab-title { font-size: clamp(3rem, 14vw, 5rem); }
  .kab-catch { font-size: 0.95rem; padding-left: 14px; }
  .kab-grand-open-badge { padding: 13px 32px; font-size: 0.9rem; }
  .kab-btns { gap: 10px; }
  .kab-btn-reserve, .kab-btn-ig { font-size: 0.82rem; padding: 11px 20px; }
}
@media (max-width: 375px) {
  .kab-btn-reserve, .kab-btn-ig { font-size: 0.78rem; padding: 10px 16px; }
}

/* ============================================================
   MVV SECTION — Mission / Vision / Value
   ============================================================ */
.section-mvv {
  padding: 140px 0 120px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
/* 背景：薄い縦ライン装飾 */
.section-mvv::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,69,0,0.12), transparent);
  pointer-events: none;
}

/* ── 上段：Mission / Vision センター ── */
.mvv-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 80px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Mission / Vision 各ブロック */
.mvv-block {
  text-align: center;
}

/* 中央区切り線 */
.mvv-divider {
  width: 1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(255,69,0,0.3), transparent);
  flex-shrink: 0;
}

/* ラベル（Mission / Vision / Value）― 巨大装飾ワード */
.mvv-label {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fire);
  text-stroke: 1.5px var(--fire);
  margin-bottom: 16px;
  display: block;
  opacity: 0.85;
}

/* 仕切り線 */
.mvv-rule {
  width: 32px;
  height: 2px;
  background: var(--fire);
  border: none;
  margin: 0 auto 20px;  /* センター寄せ */
}

/* 大見出し */
.mvv-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* 強調文字（喜び・未来など） */
.mvv-accent {
  color: var(--fire);
  font-style: italic;
}

/* サブコピー */
.mvv-sub {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ── エンブレム（右列） ── */


/* ── 下段：Value ── */
.mvv-value-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.mvv-value-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
}

/* Value の 3 項目 */
.mvv-value-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.mvv-value-item {
  padding: 36px 28px;
  background: var(--dark2);
  position: relative;
  transition: background 0.35s;
}
.mvv-value-item:hover {
  background: var(--dark3);
}

.mvv-value-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.mvv-value-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.mvv-value-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

/* ── レスポンシブ ── */
@media (max-width: 900px) {
  .mvv-top {
    grid-template-columns: 1fr;
    gap: 48px 0;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .mvv-divider {
    width: 80px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, rgba(255,69,0,0.3), transparent);
  }
  .mvv-block {
    text-align: center;
  }
  .mvv-rule {
    margin: 0 auto 20px;
  }
  .mvv-value-wrap { grid-template-columns: 1fr; gap: 40px; }
  .mvv-value-wrap > .mvv-value-left {
    text-align: center;
  }
  .mvv-value-wrap > .mvv-value-left .mvv-rule {
    margin: 0 auto 20px;
  }
  .mvv-value-items { grid-template-columns: 1fr; }
  .mvv-value-item {
    padding: 28px 24px;
    text-align: center;
  }
  .mvv-value-item .mvv-rule {
    margin: 0 auto 16px;
  }
}
@media (max-width: 600px) {
  .section-mvv { padding: 80px 0; }
  .mvv-headline { font-size: 1.7rem; }
  .mvv-value-heading { font-size: 1.5rem; }
}

/* ============================================================
   STORE PAGES — Additional Animation CSS  2025
   ============================================================ */

/* --- hover-lift on store page cards --- */
.ik-menu-card,
.df-mb-item,
.am-feat,
.ch-exp-card,
.ch-tent-item,
.df-season-card,
.ik-atmo-panel {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease !important;
}
.ik-menu-card:hover  { transform: scale(1.03) translateY(-4px) !important; z-index:2; }
.df-mb-item:hover    { transform: scale(1.02) !important; z-index:2; }
.am-feat:hover       { transform: translateY(-6px) !important; box-shadow:0 16px 40px rgba(79,195,247,.15) !important; }
.ch-exp-card:hover   { transform: translateY(-6px) !important; box-shadow:0 16px 40px rgba(76,175,80,.15) !important; }
.ch-tent-item:hover  { transform: translateY(-4px) !important; border-color:rgba(76,175,80,.3) !important; }
.df-season-card:hover { transform: translateY(-8px) scale(1.02) !important; }

/* --- other store card hover effect --- */
.ik-os-card:hover .ik-os-arrow,
.df-os-card:hover,
.am-os-card:hover,
.ch-os-card:hover { transform: scale(1.02); }

/* --- store-peek button animation --- */
.sli-btn-peek {
  position: relative;
  overflow: hidden;
}
.sli-btn-peek::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.sli-btn-peek:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}
.sli-btn-peek:active::after {
  width: 0; height: 0; opacity: 0.3;
  transition: none;
}

/* --- am-flow-num animated ring --- */
.am-flow-num {
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

/* --- info table rows initial state (set by JS) --- */
.ik-info-row,
.df-info-row,
.am-info-row,
.ch-info-row {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* --- back-to-top btn animation --- */
#back-to-top {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s, box-shadow 0.3s;
}

/* --- page transition overlay --- */
body > div[style*="fixed"][style*="9999"] {
  will-change: transform;
}

/* --- section label subtle entrance --- */
.sec-label,
.section-label {
  display: inline-block;
  overflow: hidden;
}

/* --- ik hero canvas layer --- */
#ik-fire {
  pointer-events: none;
}

/* --- am steam canvas layer --- */
#am-steam {
  pointer-events: none;
}

/* --- glitch text pseudo elements --- */
.ik-hero-name,
.df-hero-name,
.am-hero-name,
.ch-hero-name {
  cursor: default;
}

/* --- df fruit parallax --- */
.df-fruit {
  pointer-events: none;
  will-change: transform;
}

/* --- chauna firefly will-change --- */
.ch-fly {
  will-change: transform, opacity;
}

/* --- menu card icon bounce on hover --- */
.ik-menu-card:hover .ik-menu-card-icon {
  animation: icon-bounce 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.df-mb-item:hover .df-mb-icon {
  animation: icon-bounce 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes icon-bounce {
  0%   { transform: translate(-50%,-60%) scale(1); }
  50%  { transform: translate(-50%,-70%) scale(1.2); }
  100% { transform: translate(-50%,-60%) scale(1.1); }
}

/* --- am flow step entrance (set visible by reveal) --- */
.am-flow-step {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.am-flow-step.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- ch exp card entrance --- */
.ch-exp-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease;
}
.ch-exp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- df season card entrance --- */
.df-season-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease;
}
.df-season-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- am feat card entrance --- */
.am-feat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.am-feat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ik menu card entrance --- */
.ik-menu-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1),
              transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.ik-menu-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ch tent item entrance --- */
.ch-tent-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease;
}
.ch-tent-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- rp-tl-item entrance --- */
.rp-tl-item {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.rp-tl-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- rp-voice-card entrance --- */
.rp-voice-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.rp-voice-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Map placeholder (iframeの代替) --- */
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ik-map-wrap .map-placeholder,
.df-map-wrap .map-placeholder,
.am-map-wrap .map-placeholder,
.ch-map-wrap .map-placeholder {
  min-height: 100%;
}

/* --- store-list-item hover indicator line --- */
.store-list-item {
  position: relative;
}
.store-list-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.store-list-item:hover::after { width: 100%; }

/* ============================================================
   RESPONSIVE OPTIMIZATION — 全面レスポンシブ改善 v2
   ブレークポイント: 1200 / 1024 / 768 / 600 / 480 / 375
   ============================================================ */

/* ---------- グローバル基盤 ---------- */
html { font-size: 16px; }

.container {
  padding: 0 clamp(16px, 4vw, 48px);
}

/* テキストの自然な折り返し優先 */
p, li, dd, blockquote {
  overflow-wrap: break-word;
  word-break: auto-phrase;
}
/* 見出しは途中分断しない */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: keep-all;
  line-break: strict;
}
/* ボタンは1行に収める */
.btn-primary, .btn-ghost, .btn-fire,
.sli-btn, .nav-cta,
.ik-info-btn, .df-info-btn, .am-info-btn, .ch-visit-btn {
  white-space: nowrap;
}

/* ---------- 共通見出しクランプ ---------- */
.section-heading {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.45;
}
.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.5;
}
.section-desc {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  line-height: 1.95;
}

/* ---------- HERO ---------- */
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.25;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  line-height: 1.9;
}
#hero {
  padding: clamp(80px, 12vw, 140px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 60px);
}

/* ---------- NAV ---------- */
.nav-inner {
  padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 24px);
}
.nav-links {
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-links a {
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
}

/* ---------- カウンターバー ---------- */
.hero-counter-row {
  padding: clamp(16px, 3vw, 24px) clamp(16px, 4vw, 48px);
}
.counter-item {
  padding: 0 clamp(20px, 3.5vw, 48px);
}

/* ---------- STORES リスト ---------- */
.sli-actions {
  flex-wrap: wrap;
  gap: 6px;
}
.sli-btn {
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  padding: clamp(6px, 1vw, 9px) clamp(9px, 1.4vw, 13px);
}

/* ---------- STAFF ---------- */
.staff-quote {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  line-height: 1.85;
}
.staff-name {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

/* ---------- MVV ---------- */
.mvv-label {
  font-size: clamp(3rem, 7vw, 7rem);
}
.mvv-headline {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
}
.mvv-sub {
  font-size: clamp(0.82rem, 1.3vw, 0.92rem);
}
.mvv-value-title {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
.mvv-value-desc {
  font-size: clamp(0.78rem, 1.2vw, 0.82rem);
}

/* ---------- PRESIDENT ---------- */
.pres-opening {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2;
}
.pres-body-text {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 2.1;
}

/* ---------- RECRUIT PAGE ---------- */
.rp-hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
}
.rp-hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}
.rp-voice-text {
  font-size: clamp(0.82rem, 1.3vw, 0.9rem);
  line-height: 1.85;
}

/* ============================================================
   @media (max-width: 1200px) — ワイドタブレット
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .mvv-value-wrap { grid-template-columns: 280px 1fr; gap: 60px; }
  .pres-inner { gap: 60px; }
}

/* ============================================================
   @media (max-width: 1024px) — タブレット横
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  /* Hero */
  #hero { min-height: 70vh; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); }

  /* Section spacing */
  section,
  .section-philosophy, .section-stores, .section-staff,
  .section-culture, .section-recruit, .section-contact,
  .section-experience, .section-mvv, .section-president {
    padding: 96px 0;
  }

  /* Stores list */
  .store-list-item {
    grid-template-columns: 1fr;
  }
  .sli-img { min-height: 200px; }

  /* Staff grid */
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* MVV */
  .mvv-value-wrap { grid-template-columns: 1fr; gap: 40px; }
  .mvv-value-wrap > .mvv-value-left { text-align: center; }
  .mvv-value-items { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   @media (max-width: 768px) — タブレット縦 / スマホ横
   ============================================================ */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 20px; }

  /* Hero */
  #hero {
    min-height: 100svh;
    padding: 100px 20px 40px;
  }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); line-height: 1.3; }
  .hero-sub { font-size: 0.9rem; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.25em; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Section spacing */
  section,
  .section-philosophy, .section-stores, .section-staff,
  .section-culture, .section-recruit, .section-contact,
  .section-experience, .section-mvv, .section-president {
    padding: 72px 0;
  }

  /* Section text */
  .section-heading { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
  .section-desc { font-size: 0.88rem; margin-bottom: 40px; }

  /* Stores list */
  .stores-list { padding: 0 20px; }
  .store-list-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sli-img { min-height: 180px; }
  .sli-body { padding: 24px 20px; }
  .sli-name { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .sli-desc { font-size: 0.85rem; line-height: 1.85; }
  .sli-actions { flex-wrap: wrap; }
  .sli-btn { font-size: 0.72rem; padding: 7px 11px; }

  /* Staff */
  .staff-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .staff-photo-wrap { width: 160px; height: 160px; }

  /* Value cards */
  .value-cards { grid-template-columns: 1fr; }
  .value-card { padding: 28px 24px; }

  /* Culture */
  .culture-grid { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer .footer-top { padding: 48px 20px 32px; }
  .site-footer .footer-copy { padding: 20px; font-size: 0.78rem; }

  /* fixed-cta body padding */
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   @media (max-width: 600px) — スマホ標準
   ============================================================ */
@media (max-width: 600px) {
  html { font-size: 14.5px; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-title { font-size: clamp(1.9rem, 8.5vw, 2.6rem); line-height: 1.3; }
  .hero-sub { font-size: 0.85rem; line-height: 1.85; }
  .hero-counter-row {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 0;
  }
  .counter-item { padding: 14px 0; }
  .counter-divider { width: 60px; height: 1px; }
  .counter-num { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Section */
  section,
  .section-philosophy, .section-stores, .section-staff,
  .section-culture, .section-recruit, .section-contact,
  .section-experience, .section-mvv, .section-president {
    padding: 60px 0;
  }
  .section-heading { font-size: clamp(1.45rem, 6vw, 2rem); line-height: 1.5; }
  .section-label { font-size: 0.65rem; letter-spacing: 0.25em; }

  /* Marquee */
  .marquee-track { gap: 20px; animation-duration: 12s; }

  /* Staff */
  .staff-photo-wrap { width: 140px; height: 140px; }
  .staff-name { font-size: 1.05rem; }
  .staff-quote { font-size: 0.8rem; line-height: 1.8; }
  .staff-tags span { font-size: 0.72rem; padding: 4px 10px; }

  /* Stores */
  .sli-logo { width: 56px; height: 56px; }
  .sli-logo--wide { width: 88px; height: 44px; }

  /* Philosophy */
  .philosophy-lead { font-size: 0.95rem; }
  .philosophy-body { font-size: 0.85rem; line-height: 2; }

  /* MVP section */
  .section-mvv { padding: 60px 0; }
  .mvv-headline { font-size: clamp(1.4rem, 6vw, 1.8rem); line-height: 1.45; }
  .mvv-label { font-size: clamp(2.5rem, 11vw, 4rem); }
  .mvv-sub { font-size: 0.82rem; }
  .mvv-value-items { grid-template-columns: 1fr; }
  .mvv-value-item { padding: 24px 20px; }
  .mvv-value-num { font-size: 2.2rem; }
  .mvv-value-title { font-size: 0.95rem; }

  /* President */
  .section-president { padding: 60px 0; }
  .section-president::after { font-size: 8rem; }
  .pres-opening { font-size: 1rem; line-height: 1.95; }
  .pres-body-text { font-size: 0.85rem; }
  .pres-emphasis { padding: 20px 16px; font-size: 0.85rem; }

  /* Buttons */
  .btn-primary, .btn-ghost { padding: 13px 28px; font-size: 0.88rem; }
  .btn-fire { padding: 15px 36px; font-size: 1rem; }
  .nav-cta { padding: 7px 18px !important; font-size: 0.82rem; }

  /* Recruit */
  .rp-hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .rp-hero-numbers { grid-template-columns: 1fr 1fr; }
  .rp-hero-num { font-size: clamp(2rem, 8vw, 3rem); }
  .rp-tl-year { font-size: 0.7rem; }
  .rp-tl-title { font-size: 0.95rem; }
  .rp-tl-desc { font-size: 0.82rem; }
  .rp-voice-list { grid-template-columns: 1fr; }
}

/* ============================================================
   @media (max-width: 480px) — スマホ小
   ============================================================ */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 14px; }

  .hero-title { font-size: clamp(1.75rem, 9vw, 2.4rem); }
  .section-heading { font-size: clamp(1.35rem, 7vw, 1.8rem); }

  /* fixed-CTA 高さ確保 */
  .fixed-cta-reserve,
  .fixed-cta-tel {
    height: 52px;
    font-size: 0.82rem;
  }

  /* Store info table */
  .ik-info-row dt, .df-info-row dt, .am-info-row dt, .ch-info-row dt {
    width: 80px;
    font-size: 0.72rem;
    padding: 12px 10px;
  }
  .ik-info-row dd, .df-info-row dd, .am-info-row dd, .ch-info-row dd {
    font-size: 0.82rem;
    padding: 12px 12px;
  }

  /* map */
  .ik-map-wrap, .df-map-wrap, .am-map-wrap { height: 260px; }
  .ch-map-wrap { height: 280px; }

  /* Other stores grid */
  .ik-others-grid,
  .df-others-grid,
  .am-others-grid,
  .ch-others-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   @media (max-width: 375px) — iPhone SE など極小
   ============================================================ */
@media (max-width: 375px) {
  html { font-size: 13.5px; }
  .container { padding: 0 12px; }
  .hero-title { font-size: clamp(1.6rem, 9.5vw, 2.2rem); }
  .section-heading { font-size: clamp(1.25rem, 7.5vw, 1.65rem); }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; }
  .nav-logo { font-size: 1.15rem; }
  .logo-mark { font-size: 1.4rem; }
}

/* ============================================================
   店舗ページ共通レスポンシブ（インラインCSS補強）
   ============================================================ */

/* --- 店舗HERO 見出し --- */
.ik-hero-name, .df-hero-name, .am-hero-name, .ch-hero-name {
  font-size: clamp(2.8rem, 10vw, 8rem);
  line-height: 1;
}
.ik-hero-tagline, .df-hero-tagline, .am-hero-tagline, .ch-hero-tagline {
  font-size: clamp(0.9rem, 2.2vw, 1.5rem);
}
.ik-hero-en, .df-hero-en, .am-hero-en, .ch-hero-en {
  font-size: clamp(0.65rem, 1.2vw, 0.9rem);
  letter-spacing: clamp(0.2em, 3vw, 0.4em);
}

/* --- STORY section --- */
.ik-story-text h2, .df-story-text h2, .am-story-text h2, .ch-story-text h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.8rem);
  line-height: 1.5;
}
.ik-story-text p, .df-story-text p, .am-story-text p, .ch-story-text p {
  font-size: clamp(0.83rem, 1.4vw, 0.95rem);
  line-height: 2;
}

/* --- MENU / PLAN cards --- */
.ik-menu-card-body h3, .df-menu-card-body h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
}
.ik-menu-card-body p, .df-menu-card-body p {
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
}

/* --- COURSE / PLAN card --- */
.ik-course-name, .ch-plan-name, .am-plan-name {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  line-height: 1.5;
}
.ik-course-desc, .ch-plan-desc, .am-plan-desc {
  font-size: clamp(0.78rem, 1.3vw, 0.82rem);
  line-height: 1.75;
}
.ik-course-price, .ch-plan-price, .am-plan-price {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

/* --- VISIT US info --- */
.ik-info-title h2, .df-info-title h2, .am-info-title h2, .ch-map-label {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.4;
}
.ik-info-title p, .df-info-title p, .am-info-title p {
  font-size: clamp(0.83rem, 1.4vw, 0.92rem);
  line-height: 1.9;
}
.ik-info-btn, .df-info-btn, .am-info-btn, .ch-visit-btn {
  font-size: clamp(0.8rem, 1.4vw, 0.88rem);
  padding: clamp(10px, 1.5vw, 14px) clamp(14px, 2vw, 20px);
}

@media (max-width: 900px) {
  /* 店舗STORY 1カラム化 */
  .ik-story-inner, .df-story-inner, .am-story-inner, .ch-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ik-info-top, .df-info-top, .am-info-top, .ch-info-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* MENU grid */
  .ik-menu-grid { grid-template-columns: 1fr 1fr; }
  .ik-course-grid { grid-template-columns: 1fr; }
  /* MAP height */
  .ik-map-wrap { height: 300px; }
  .df-map-wrap { height: 300px; }
  .am-map-wrap { height: 300px; }
  .ch-map-wrap { height: 320px; }
  /* Other stores */
  .ik-others-grid, .df-others-grid, .am-others-grid, .ch-others-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
}

@media (max-width: 600px) {
  /* 店舗 HERO */
  .ik-hero-name, .df-hero-name, .am-hero-name, .ch-hero-name {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }
  /* MENU */
  .ik-menu-grid { grid-template-columns: 1fr; }
  .ik-menu-card:last-child { display: block; }
  /* ATMO scroll */
  .ik-atmo-panel { flex: 0 0 260px; height: 360px; }
  /* COURSE */
  .ik-course-grid { grid-template-columns: 1fr; }
  /* Other stores 1col */
  .ik-others-grid, .df-others-grid, .am-others-grid, .ch-others-grid {
    grid-template-columns: 1fr;
  }
  /* 店舗 section padding */
  .ik-story, .ik-menu, .ik-course, .ik-atmo, .ik-info, .ik-others,
  .df-story, .df-menu, .df-atmo, .df-info,
  .am-story, .am-flow, .am-feat-sec, .am-info,
  .ch-story, .ch-plan, .ch-exp, .ch-map {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  /* info btn縦並び */
  .ik-info-btns, .df-info-btns, .am-info-btns, .ch-visit-btns {
    gap: 8px;
  }
  .ik-info-btn, .df-info-btn, .am-info-btn, .ch-visit-btn {
    font-size: 0.82rem;
    padding: 11px 14px;
  }
  /* MAP */
  .ik-map-wrap, .df-map-wrap, .am-map-wrap { height: 240px; }
  .ch-map-wrap { height: 260px; }
}

@media (max-width: 480px) {
  /* 店舗ページ */
  .ik-hero-name, .df-hero-name, .am-hero-name, .ch-hero-name {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }
  .ik-story-text h2, .df-story-text h2, .am-story-text h2, .ch-story-text h2 {
    font-size: clamp(1.35rem, 6.5vw, 1.8rem);
  }
  /* Chauna PLAN */
  .ch-plan-grid { grid-template-columns: 1fr; }
  /* AM FEAT */
  .am-feat-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE OPTIMIZATION v3 — 追加改善
   PC/タブレット/スマホ 文字組み・改行・余白の全面調整
   ============================================================ */

/* ---------- <br> 端末別表示制御 ---------- */
/* PCでは不要な改行を非表示に（見出し・サブテキスト） */
@media (min-width: 769px) {
  /* section-headingのbrはPCでは非表示 */
  .section-heading br,
  .section-title br,
  .recruit-title br {
    display: none;
  }
  /* Hero subのbrはPC幅で非表示 */
  .hero-sub br {
    display: none;
  }
  /* pres-openingのbrはPC幅で適宜非表示 */
  .pres-opening br { display: none; }
  /* section-descの改行はPCでは不要な場合あり */
  .section-desc br { display: none; }
  /* recruit-subのbrはPC幅不要 */
  .recruit-sub br { display: none; }
}

/* タブレット以上ではstoreページ見出しのbrを非表示 */
@media (min-width: 601px) {
  .ik-story-text h2 br,
  .df-story-text h2 br,
  .am-story-text h2 br,
  .ch-story-text h2 br {
    display: none;
  }
}

/* ---------- NAV ---------- */
/* ナビゲーションリンクが折り返さないように */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-links {
    gap: clamp(10px, 1.5vw, 20px);
    flex-wrap: nowrap;
  }
  .nav-links a {
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    white-space: nowrap;
  }
  .nav-cta {
    padding: 6px 14px !important;
    font-size: 0.78rem !important;
  }
}

/* ---------- HERO セクション ---------- */
@media (min-width: 769px) {
  .hero-body {
    max-width: min(600px, 50vw);
  }
  .hero-title {
    /* PCでは1行に収まるようにする */
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .hero-body {
    max-width: 100%;
  }
  .hero-title {
    white-space: normal;
  }
}

/* ---------- CONCEPT セクション ---------- */
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.55;
  }
  .philosophy-lead {
    font-size: 0.9rem;
    line-height: 1.9;
  }
  .philosophy-body {
    font-size: 0.85rem;
    line-height: 2;
  }
  blockquote {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    line-height: 1.7;
  }
}

/* ---------- MVV セクション ---------- */
@media (max-width: 768px) {
  .mvv-top {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .mvv-divider { display: none; }
  .mvv-headline {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.5;
  }
  .mvv-value-heading {
    font-size: clamp(1.4rem, 6vw, 2rem);
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .mvv-value-items {
    grid-template-columns: 1fr;
  }
  .mvv-value-item {
    padding: 28px 24px;
  }
  .mvv-value-num { font-size: 2.2rem; }
  .mvv-value-title {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }
  .mvv-value-desc {
    font-size: 0.82rem;
    line-height: 1.75;
  }
  /* Valueのbrはスマホでは有効 */
  .mvv-value-desc br { display: inline; }
}

@media (min-width: 601px) {
  /* MVV valueのbrはタブレット以上で非表示 */
  .mvv-value-desc br { display: none; }
  .mvv-value-heading br { display: none; }
}

/* ---------- PRESIDENT MESSAGE ---------- */
@media (max-width: 768px) {
  .pres-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pres-opening {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    line-height: 1.95;
  }
  /* pres-opening の br はスマホでは有効にする */
  .pres-opening br { display: inline; }
}

@media (min-width: 769px) {
  /* PC では社長メッセージのbrを削除して自然折り返しに */
  .pres-text br { display: none; }
  .pres-closing-text br { display: none; }
}

@media (max-width: 600px) {
  .pres-text {
    font-size: 0.85rem;
    line-height: 2;
  }
  .pres-closing-text {
    font-size: 0.88rem;
    line-height: 2;
  }
  .pres-emphasis {
    padding: 20px 16px;
    font-size: 0.85rem;
    line-height: 1.9;
  }
  .pres-name-ja {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
}

/* ---------- STORES LIST ---------- */
@media (max-width: 600px) {
  .sli-name {
    font-size: clamp(1.1rem, 5.5vw, 1.5rem);
  }
  .sli-tag {
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    line-height: 1.7;
  }
  .sli-detail {
    font-size: 0.82rem;
    line-height: 1.9;
  }
  .sli-meta span {
    font-size: 0.72rem;
  }
  .sli-actions {
    gap: 6px;
  }
  .sli-btn {
    font-size: 0.72rem;
    padding: 7px 10px;
  }
  .sli-btn-peek {
    font-size: 0.82rem;
    padding: 11px 20px;
    margin-top: 12px;
  }
}

/* ---------- CULTURE 統計バー ---------- */
@media (max-width: 600px) {
  .stat-row {
    flex-wrap: wrap;
    gap: 0;
  }
  .stat-item {
    flex: 1 1 50%;
    min-width: 0;
    padding: 20px 12px;
  }
  .stat-num {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .stat-label {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .stat-label small { font-size: 0.68rem; }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 1 1 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

/* ---------- CULTURE カード ---------- */
@media (max-width: 600px) {
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .culture-card h3 {
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
  }
  .culture-card p {
    font-size: 0.83rem;
    line-height: 1.85;
  }
  .culture-list li {
    font-size: 0.78rem;
  }
  .culture-keywords {
    gap: 8px;
  }
  .culture-keywords span {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}

/* ---------- RECRUIT TEASER ---------- */
@media (max-width: 768px) {
  .recruit-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    line-height: 1.4;
  }
  .recruit-sub {
    font-size: 0.88rem;
    line-height: 1.9;
    max-width: 100%;
  }
  /* スマホでは改行を有効に */
  .recruit-sub br { display: inline; }
}

/* ---------- FOOTER ---------- */
@media (max-width: 600px) {
  .site-footer .footer-top {
    padding: 40px 20px 28px;
  }
  .footer-tagline {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    line-height: 1.7;
  }
  .site-footer .footer-copy {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 0.72rem;
    padding: 16px 20px;
  }
}

/* ---------- 固定CTA ボタン ---------- */
/* スマホでボタン内テキストが2行にならないよう */
@media (max-width: 480px) {
  .fixed-cta-reserve,
  .fixed-cta-tel {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    gap: 5px;
  }
  .fixed-cta-reserve i,
  .fixed-cta-tel i {
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  .fixed-cta-reserve,
  .fixed-cta-tel {
    font-size: 0.72rem;
    gap: 4px;
  }
}

/* ---------- STORE HERO — 縦型スマホ最適化 ---------- */
@media (max-width: 480px) {
  .ik-hero-content,
  .df-hero-content,
  .am-hero-content,
  .ch-hero-content {
    padding: 0 16px;
  }
  .ik-hero-tagline,
  .df-hero-tagline,
  .am-hero-tagline,
  .ch-hero-tagline {
    font-size: clamp(0.82rem, 3.5vw, 1rem);
    letter-spacing: 0.06em;
    line-height: 1.6;
  }
}

/* ---------- STORE INFO TABLE ---------- */
/* スマホで住所の折り返し改善 */
@media (max-width: 600px) {
  .ik-info-row dd,
  .df-info-row dd,
  .am-info-row dd,
  .ch-visit-row dd {
    word-break: break-all;
    hyphens: auto;
  }
  /* info-btns をスマホで縦並び */
  .ik-info-btns,
  .df-info-btns,
  .am-info-btns,
  .ch-visit-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ---------- STORE OTHERS GRID テキスト ---------- */
@media (max-width: 600px) {
  .ik-os-body h3,
  .df-os-body h3,
  .am-os-body h3,
  .ch-os-body h3 {
    font-size: 0.9rem;
  }
  .ik-os-body p,
  .df-os-body p,
  .am-os-body p,
  .ch-os-body p {
    font-size: 0.7rem;
  }
}

/* ---------- 採用ページ (rp2) 追加最適化 ---------- */
@media (max-width: 768px) {
  .rp2-hero-lead {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    line-height: 1.4;
  }
  .rp2-hero-sub {
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    line-height: 1.9;
  }
  .rp2-why-title,
  .rp2-growth-title,
  .rp2-benefits-title,
  .rp2-wanted-title,
  .rp2-jobs-title {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    line-height: 1.45;
  }
  .rp2-voice-text {
    font-size: 0.83rem;
    line-height: 1.85;
  }
}

@media (max-width: 600px) {
  /* 採用ページのbrをスマホでは有効に */
  .rp2-hero-lead br { display: inline; }
  /* 採用フォームラベル */
  .rp2-form label {
    font-size: 0.82rem;
  }
  .rp2-form input,
  .rp2-form select,
  .rp2-form textarea {
    font-size: 0.88rem;
    padding: 11px 12px;
  }
  .rp2-nums {
    gap: 24px;
  }
}

/* ---------- BACK TO TOP ボタン ---------- */
@media (max-width: 600px) {
  #back-to-top {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ---------- テキスト最大幅（可読性） ---------- */
/* 長い本文は1行が長くなりすぎないよう制限 */
@media (min-width: 1024px) {
  .pres-body .pres-text,
  .pres-body .pres-closing-text {
    max-width: 680px;
  }
  .philosophy-lead,
  .philosophy-body {
    max-width: 540px;
  }
  .recruit-sub {
    max-width: 540px;
  }
}

/* ---------- 極小スマホ（375px以下）追加 ---------- */
@media (max-width: 375px) {
  .fixed-cta-reserve,
  .fixed-cta-tel {
    font-size: 0.7rem;
    height: 50px;
    min-height: calc(50px + env(safe-area-inset-bottom, 0px));
  }
  .sli-btn {
    font-size: 0.68rem;
    padding: 6px 8px;
  }
  .stat-item {
    padding: 16px 10px;
  }
  .culture-card {
    padding: 24px 20px;
  }
  .value-card {
    padding: 24px 20px;
  }
  .staff-quote {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}
