@charset "UTF-8";
/* ==========================================================================
   Event Storytelling
   ふかや街歩き／ユルム de つなぐ 2企画専用レイアウト
   大胆な写真使い + スクロール連動アニメーション
   依存: style.css (header/footer/共通) / GSAP + ScrollTrigger
   ========================================================================== */

:root {
  --story-text: #2a2622;
  --story-text-inverse: #fff;
  --story-accent: #8a6a4f;
  --story-accent-deep: #5a3f25;
  --story-bg-soft: #f5f0e8;
  --story-line: rgba(42, 38, 34, 0.12);
  --story-serif: "Noto Serif JP", serif;
  --story-sans: "Noto Sans JP", sans-serif;
}

/* ==========================================================================
   Common: Page Type
   ========================================================================== */
.page-type-event-story {
  background: #fff;
  color: var(--story-text);
  font-family: var(--story-sans);
  overflow-x: hidden;
}

.page-type-event-story main {
  position: relative;
}

/* ==========================================================================
   1. HERO Section
   ========================================================================== */
.story-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: #1a1612;
  display: flex;
  align-items: flex-end;
  color: var(--story-text-inverse);
}

.story-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-hero__media--triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.story-hero__media--triple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.story-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw 8vh;
}

.story-hero__category {
  display: inline-block;
  font-family: var(--story-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  opacity: 0.85;
}

.story-hero__title {
  font-family: var(--story-serif);
  font-size: clamp(2.4rem, 7.5vw, 6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.story-hero__title em {
  font-style: italic;
  font-weight: 400;
  margin: 0 0.1em;
}

.story-hero__sub {
  font-family: var(--story-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.1em;
  max-width: 36em;
  line-height: 1.8;
  opacity: 0.92;
  margin: 0;
}

/* Hero: h2 (サブ) → h1 (メイン) → p (キャッチコピー控えめ) → chips (集合・少人数) */
.story-hero__h2 {
  font-family: var(--story-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.story-hero__h1 {
  font-family: var(--story-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.story-hero__catchcopy {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.12em;
  line-height: 1.8;
  opacity: 0.85;
  margin: 0 0 2rem;
  font-weight: 400;
}

.story-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
}

.story-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.6em 1.3em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-family: var(--story-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.story-hero__chip:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}.story-hero__chip i, .story-hero__chip .icon {
  font-size: 0.85em;
  opacity: 0.9;
}

.story-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
}

.story-hero__scroll::after {
  content: "";
  display: block;
  margin: 0.5rem auto 0;
  width: 1px;
  height: 36px;
  background: #fff;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

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

/* ==========================================================================
   2. Chapter Common
   ========================================================================== */
.story-chapter {
  position: relative;
  padding: 12rem 0;
}

.story-chapter--dark {
  background: #1a1612;
  color: var(--story-text-inverse);
}

.story-chapter--soft {
  background: var(--story-bg-soft);
}

.story-chapter__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}

.story-chapter__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--story-sans);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: var(--story-accent);
  opacity: 0.95;
}

.story-chapter--dark .story-chapter__label {
  color: #d9b899;
}

.story-chapter__label > span:last-child {
  position: relative;
  padding-right: 2.5rem;
}

.story-chapter__label > span:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.story-chapter__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6em;
  height: 2.6em;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  opacity: 0.9;
}

.story-chapter__title {
  font-family: var(--story-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin: 0 0 3.5rem;
}

.story-chapter__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--story-accent);
}

.story-chapter--dark .story-chapter__title em {
  color: #e5c8a8;
}

/* リード文だけの章用：エンディング装飾線 */
.story-chapter__decor {
  position: relative;
  width: 100%;
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
}

.story-chapter__decor::before,
.story-chapter__decor::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--story-accent);
  opacity: 0.5;
}

.story-chapter__decor::before {
  margin-right: 0.6rem;
}

.story-chapter__decor::after {
  margin-left: 0.6rem;
}

.story-chapter__decor > * {
  display: none;
}

/* 中央に小さなドット */
.story-chapter__decor {
  position: relative;
}

.story-chapter__decor::before {
  position: relative;
}

.story-chapter--dark .story-chapter__decor::before,
.story-chapter--dark .story-chapter__decor::after {
  background: #d9b899;
}

.story-chapter__title em {
  font-style: italic;
  font-weight: 400;
}

.story-chapter__lead {
  font-family: var(--story-serif);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 2.1;
  letter-spacing: 0.06em;
  max-width: 38em;
  margin: 0 0 4rem;
}

.story-chapter__lead strong {
  font-weight: 500;
  background: linear-gradient(
    transparent 60%,
    rgba(138, 106, 79, 0.22) 60%,
    rgba(138, 106, 79, 0.22) 95%,
    transparent 95%
  );
  background-size: 100% 100%;
  padding: 0 0.1em;
  color: var(--story-text);
}

.story-chapter--dark .story-chapter__lead strong {
  background: linear-gradient(
    transparent 60%,
    rgba(217, 184, 153, 0.28) 60%,
    rgba(217, 184, 153, 0.28) 95%,
    transparent 95%
  );
  color: #fff;
}

/* Pinned Chapter Title (sticky-style hold) */
.story-chapter--pinned {
  min-height: 120vh;
}

.story-chapter__pinned-inner {
  position: sticky;
  top: 12vh;
}

/* ==========================================================================
   3. Highlight Row (Chapter 01 - Why this tour?)  磨き上げ版
   ========================================================================== */
.story-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  counter-reset: highlight;
}

@media (max-width: 900px) {
  .story-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .story-highlights {
    grid-template-columns: 1fr;
  }
}

.story-highlight {
  position: relative;
  padding: 2.6rem 1.8rem 2.2rem;
  background: #fff;
  border: none;
  border-left: 1px solid var(--story-line);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  counter-increment: highlight;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease,
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 背景に薄く大きな番号 (01〜04) */
.story-highlight::before {
  content: counter(highlight, decimal-leading-zero);
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  z-index: 0;
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--story-accent);
  opacity: 0.08;
  letter-spacing: -0.03em;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 左罫線アクセント（ホバー時に縦に伸びる） */
.story-highlight::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  height: 0;
  width: 2px;
  background: var(--story-accent);
  transform: translateY(-50%);
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.story-highlight:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 18px 44px rgba(42, 38, 34, 0.07);
}

.story-highlight:hover::before {
  opacity: 0.18;
  transform: translateY(-3px) translateX(-2px);
}

.story-highlight:hover::after {
  height: 70%;
}

/* 中身要素は ::before の上に重ねる */
.story-highlight__icon,
.story-highlight__label,
.story-highlight__value {
  position: relative;
  z-index: 2;
}

/* アイコン：円形バッジ */
.story-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1rem;
  color: var(--story-accent);
  background: rgba(138, 106, 79, 0.08);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  transition: background 0.4s ease, transform 0.5s ease;
}

.story-highlight:hover .story-highlight__icon {
  background: rgba(138, 106, 79, 0.18);
  transform: scale(1.05);
}

/* ラベル（小さなaccent カラーcaps） */
.story-highlight__label {
  font-family: var(--story-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--story-accent);
  opacity: 0.85;
  margin-bottom: 0.7rem;
  display: block;
}

/* 値テキスト */
.story-highlight__value {
  font-family: var(--story-serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--story-text);
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

/* 強調（数字 or キーワード）— inline で大きめ italic */
.story-highlight__value strong {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--story-accent-deep);
  letter-spacing: 0;
  margin: 0 0.05em;
  display: inline-block;
  vertical-align: baseline;
}

/* ===== ダーク背景（Chapter 03 など）に最適化 ===== */
.story-chapter--dark .story-highlight {
  background: rgba(255, 255, 255, 0.025);
  border-left-color: rgba(255, 255, 255, 0.15);
}

.story-chapter--dark .story-highlight:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.story-chapter--dark .story-highlight::before {
  color: #d9b899;
  opacity: 0.1;
}

.story-chapter--dark .story-highlight:hover::before {
  opacity: 0.22;
}

.story-chapter--dark .story-highlight::after {
  background: #d9b899;
}

.story-chapter--dark .story-highlight__icon {
  background: rgba(217, 184, 153, 0.1);
  color: #d9b899;
}

.story-chapter--dark .story-highlight:hover .story-highlight__icon {
  background: rgba(217, 184, 153, 0.2);
}

.story-chapter--dark .story-highlight__label {
  color: #d9b899;
}

.story-chapter--dark .story-highlight__value {
  color: #fff;
}

.story-chapter--dark .story-highlight__value strong {
  color: #e5c8a8;
}

@media (max-width: 600px) {
  .story-highlight {
    padding: 2rem 1.5rem 1.7rem;
  }
  .story-highlight::before {
    font-size: 3.5rem;
    top: 0.4rem;
    right: 0.9rem;
  }
  .story-highlight__value strong {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   4. For You (Chapter 02): Horizontal Scroll Carousel
   ========================================================================== */
.story-foryou {
  position: relative;
  margin: 4rem -6vw 0;  /* Containerの内側余白を打ち消して画面端まで */
  padding: 0;
}

.story-foryou__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.story-foryou__viewport::-webkit-scrollbar {
  display: none;
}

.story-foryou__track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 6vw 2rem;
  width: max-content;
}

.story-foryou__card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.4rem;
  isolation: isolate;
  scroll-snap-align: start;
}

.story-foryou__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-foryou__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: -1;
}

.story-foryou__card:hover img {
  transform: scale(1.06);
}

.story-foryou__num {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.story-foryou__title {
  font-family: var(--story-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 0.7rem;
}

.story-foryou__text {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* Carousel Arrows */
.story-foryou__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid var(--story-line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--story-text);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  -webkit-tap-highlight-color: transparent;
}

.story-foryou__arrow:hover {
  background: var(--story-accent);
  color: #fff;
  border-color: var(--story-accent);
  transform: translateY(-50%) scale(1.08);
}

.story-foryou__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.story-foryou__arrow--prev {
  left: clamp(0.5rem, 2vw, 1.5rem);
}

.story-foryou__arrow--next {
  right: clamp(0.5rem, 2vw, 1.5rem);
}

@media (max-width: 600px) {
  .story-foryou__arrow {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  .story-foryou__card {
    width: 240px;
  }
}

/* ==========================================================================
   5. Journey (Chapter 03): Vertical Timeline 磨き上げ版
   ========================================================================== */
.story-journey {
  position: relative;
  margin: 4.5rem auto 0;
  max-width: 780px;
  padding-left: clamp(1rem, 4vw, 3rem);
  counter-reset: journey;
}

/* 縦軸ライン — 細い破線風グラデーション */
.story-journey::before {
  content: "";
  position: absolute;
  left: clamp(82px, 13vw, 112px);
  top: 0.7rem;
  bottom: 4rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(217, 184, 153, 0.85) 4%,
    rgba(217, 184, 153, 0.55) 50%,
    rgba(217, 184, 153, 0.2) 100%
  );
  z-index: 0;
}

.story-chapter:not(.story-chapter--dark) .story-journey::before {
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--story-accent) 4%,
    rgba(138, 106, 79, 0.45) 50%,
    rgba(138, 106, 79, 0.12) 100%
  );
}

.story-journey__step {
  position: relative;
  display: grid;
  grid-template-columns: clamp(68px, 11vw, 96px) 1fr;
  column-gap: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 4rem;
  align-items: start;
  direction: ltr;
  counter-increment: journey;
}

.story-journey__step:nth-child(even),
.story-journey__step:nth-child(even) > * {
  direction: ltr;
}

.story-journey__step:last-child {
  margin-bottom: 0;
}

/* 時刻ラベル（左カラム） */
.story-journey__step-time {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--story-accent);
  text-align: right;
  padding-top: 0.1em;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.story-chapter--dark .story-journey__step-time {
  color: #e5c8a8;
}

/* ピンマーカー — チラシのF旗アイコンから「街歩き」感のあるピン＋番号バッジに改良 */
.story-journey__step-time::after {
  content: counter(journey, decimal-leading-zero);
  font-family: var(--story-serif);
  font-style: italic;
  font-weight: 500;
  position: absolute;
  top: 0.2em;
  right: clamp(-3.4rem, -5.2vw, -2.7rem);
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--story-accent) 0%, var(--story-accent-deep) 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    0 0 0 4px #fff,
    0 4px 12px rgba(90, 63, 37, 0.25);
  letter-spacing: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-chapter--dark .story-journey__step-time::after {
  background: linear-gradient(135deg, #e5c8a8 0%, #d9b899 100%);
  color: var(--story-text);
  box-shadow:
    0 0 0 4px #1a1612,
    0 4px 12px rgba(0, 0, 0, 0.4);
}

.story-journey__step:hover .story-journey__step-time::after {
  transform: scale(1.08);
}

/* 本文（右カラム） */
.story-journey__body {
  position: relative;
  z-index: 1;
  padding-bottom: 0.3rem;
}

.story-journey__step-num {
  font-family: var(--story-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--story-accent);
  opacity: 0.85;
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.story-journey__step-num::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.story-chapter--dark .story-journey__step-num {
  color: #e5c8a8;
}

.story-journey__step-title {
  font-family: var(--story-serif);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin: 0 0 0.9rem;
}

.story-journey__step-text {
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.03em;
  margin: 0 0 1.4rem;
  opacity: 0.92;
}

/* 写真 — 横長で控えめ・ホバー時にズーム＋微影 */
.story-journey__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  max-width: 100%;
  box-shadow: 0 8px 28px rgba(42, 38, 34, 0.08);
  transition: box-shadow 0.5s ease;
}

.story-chapter--dark .story-journey__media {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.story-journey__step:hover .story-journey__media {
  box-shadow: 0 14px 40px rgba(42, 38, 34, 0.14);
}

.story-chapter--dark .story-journey__step:hover .story-journey__media {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.story-journey__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-journey__step:hover .story-journey__media img {
  transform: scale(1.04);
}

.story-journey__media-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--story-text);
  padding: 0.3em 0.9em;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 2px;
}

.story-journey__connector {
  display: none;
}

/* ==========================================================================
   Journey SP版 磨き上げ（再設計）
   親 .story-journey に左 padding を取り、その領域に縦軸＋番号バッジを配置
   各ステップは block、本文・時刻・写真は普通に縦並び
   ========================================================================== */
@media (max-width: 600px) {
  .story-journey {
    margin: 3rem 0 0;
    padding: 0 0 0 2.6rem; /* 左にバッジ＋縦軸ライン分の余白 */
    max-width: 100%;
    position: relative;
  }

  /* 縦軸ライン：左端バッジの中心を貫通 */
  .story-journey::before {
    left: 0.85rem;
    top: 0;
    bottom: 1rem;
    width: 1px;
    opacity: 0.6;
  }

  /* ステップ：grid を完全リセットして block に */
  .story-journey__step {
    display: block !important;
    grid-template-columns: none !important;
    column-gap: 0 !important;
    padding: 0;
    margin: 0 0 2.8rem;
    position: relative;
  }

  .story-journey__step:last-child {
    margin-bottom: 0;
  }

  /* 時刻ラベル：見出しとして上部・大きく・左寄せ */
  .story-journey__step-time {
    display: block;
    text-align: left;
    font-size: 1.15rem;
    line-height: 1;
    padding: 0;
    margin: 0 0 0.8rem;
    letter-spacing: 0.04em;
    position: relative; /* バッジ ::after の基準 */
    white-space: nowrap;
  }

  /* 番号バッジ：時刻ラベルの左に絶対配置（縦軸ライン上に乗る） */
  .story-journey__step-time::after {
    position: absolute;
    /* time の左端 (= step の左端) から、親の padding-left (2.6rem) 戻った位置にバッジ中心 */
    left: -2.5rem;
    right: auto;
    top: -0.25em;
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.7rem;
    box-shadow: 0 0 0 3px #fff, 0 3px 10px rgba(90, 63, 37, 0.3);
    z-index: 4;
  }

  .story-chapter--dark .story-journey__step-time::after {
    box-shadow: 0 0 0 3px #1a1612, 0 3px 10px rgba(0, 0, 0, 0.45);
  }

  /* 本文ラップ */
  .story-journey__body {
    padding: 0;
    margin: 0;
    z-index: 1;
  }

  /* STEP ラベル */
  .story-journey__step-num {
    font-size: 0.6rem;
    margin: 0 0 0.5rem;
    letter-spacing: 0.28em;
    display: inline-flex;
  }

  .story-journey__step-num::before {
    width: 1.2em;
  }

  /* タイトル */
  .story-journey__step-title {
    font-size: 1.18rem;
    line-height: 1.5;
    margin: 0 0 0.7rem;
    letter-spacing: 0.02em;
  }

  /* 説明文 */
  .story-journey__step-text {
    font-size: 0.9rem;
    line-height: 1.95;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
    opacity: 0.95;
  }

  /* 写真：本文下にフル幅 */
  .story-journey__media {
    aspect-ratio: 16 / 10;
    margin: 0.5rem 0 0;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(42, 38, 34, 0.12);
  }

  .story-chapter--dark .story-journey__media {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  }
}

/* さらに狭い画面（375px以下）の微調整 */
@media (max-width: 375px) {
  .story-journey {
    padding-left: 2.3rem;
  }
  .story-journey::before {
    left: 0.7rem;
  }
  .story-journey__step-time {
    font-size: 1.05rem;
  }
  .story-journey__step-time::after {
    left: -2.2rem;
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.65rem;
  }
  .story-journey__step-title {
    font-size: 1.08rem;
  }
}

/* ==========================================================================
   6. Info Grid (Chapter 04)
   ========================================================================== */
.story-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid var(--story-line);
  border-left: 1px solid var(--story-line);
}

.story-info__item {
  padding: 3rem 2rem;
  border-right: 1px solid var(--story-line);
  border-bottom: 1px solid var(--story-line);
}

.story-info__icon {
  font-size: 1.6rem;
  color: var(--story-accent);
  margin-bottom: 1rem;
}

.story-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.7rem;
}

.story-info__value {
  font-family: var(--story-serif);
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-info__value strong {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   6b. Info List (シンプルなdl/dt/dd形式)
   ========================================================================== */
.story-info-list {
  margin: 4rem 0 0;
  padding: 0;
  max-width: 720px;
  border-top: 1px solid var(--story-line);
}

.story-info-list__row {
  display: grid;
  grid-template-columns: clamp(120px, 22%, 180px) 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--story-line);
  align-items: baseline;
}

.story-info-list__label {
  font-family: var(--story-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--story-accent);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.story-info-list__label::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.story-chapter--dark .story-info-list__label {
  color: #d9b899;
}

.story-info-list__value {
  font-family: var(--story-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 600px) {
  .story-info-list__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.2rem 0;
  }
}

/* ==========================================================================
   6c. FAQ (details/summary・カテゴリ分類対応)
   ========================================================================== */
.story-faq {
  margin-top: 4rem;
  max-width: 820px;
}

/* カテゴリ見出し */
.story-faq__category {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--story-accent);
}

.story-faq__category + .story-faq__group + .story-faq__category {
  margin-top: 3.5rem;
}

.story-faq__category-num {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--story-accent);
  letter-spacing: 0.05em;
}

.story-faq__category-title {
  font-family: var(--story-serif);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--story-text);
}

/* グループ（アコーディオン束ね） */
.story-faq__group {
  border-top: 1px solid var(--story-line);
}

.story-faq__item {
  border-bottom: 1px solid var(--story-line);
}

.story-faq__item[open] {
  background: rgba(255, 255, 255, 0.5);
}

.story-faq__q {
  display: grid;
  grid-template-columns: 2.4rem 1fr 1.6rem;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0.5rem 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--story-serif);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--story-text);
  transition: color 0.3s ease;
}

.story-faq__q::-webkit-details-marker {
  display: none;
}

.story-faq__q::marker {
  display: none;
  content: "";
}

.story-faq__q:hover {
  color: var(--story-accent);
}

.story-faq__label {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--story-accent);
  text-align: center;
  font-weight: 500;
}

.story-faq__label--a {
  color: var(--story-accent-deep);
}

.story-faq__q-text {
  letter-spacing: 0.04em;
}

.story-faq__toggle {
  font-size: 0.85rem;
  color: var(--story-accent);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-faq__item[open] .story-faq__toggle {
  transform: rotate(180deg);
}

.story-faq__a {
  display: grid;
  grid-template-columns: 2.4rem 1fr 1.6rem;
  gap: 1rem;
  padding: 0 0.5rem 1.6rem 0;
  animation: storyFaqOpen 0.4s ease;
}

.story-faq__a p {
  grid-column: 2 / 3;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: var(--story-text);
  opacity: 0.92;
}

@keyframes storyFaqOpen {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .story-faq__q,
  .story-faq__a {
    grid-template-columns: 2rem 1fr 1.2rem;
    gap: 0.7rem;
  }
  .story-faq__label {
    font-size: 1rem;
  }
}

/* ==========================================================================
   7. Process Steps (Chapter 05 - After Tour / Behind / Concept / Channels)
   ========================================================================== */
.story-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.story-process__step {
  position: relative;
  padding: 2.5rem 1.8rem 2rem;
  background: #fff;
  border: 1px solid var(--story-line);
  border-radius: 4px;
}

.story-chapter--dark .story-process__step,
.story-chapter--soft .story-process__step {
  background: #fff;
}

.story-process__num {
  position: absolute;
  top: -1.2rem;
  left: 1.8rem;
  background: var(--story-accent-deep);
  color: #fff;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1rem;
}

.story-process__icon {
  font-size: 1.4rem;
  color: var(--story-accent);
  margin-bottom: 0.8rem;
}

.story-process__title {
  font-family: var(--story-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 0.8rem;
  color: var(--story-text);
}

.story-process__text {
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 0;
  color: var(--story-text);
}

/* ==========================================================================
   7b. Behind Grid (ユルム de つなぐ Chapter 02 — 横並び4カード+アイコン)
   ========================================================================== */
.story-behind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

/* --quad: 横並び4カラム */
.story-behind-grid--quad {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: behind;
}

.story-behind-grid__card {
  position: relative;
  background: #fff;
  border: none;
  border-left: 1px solid var(--story-line);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 2.6rem 1.8rem 2.2rem;
  counter-increment: behind;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease;
}

/* 背景に薄い大きな番号 */
.story-behind-grid__card::before {
  content: counter(behind, decimal-leading-zero);
  position: absolute;
  top: 0.6rem;
  right: 1.1rem;
  z-index: 0;
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--story-accent);
  opacity: 0.08;
  letter-spacing: -0.03em;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.55s ease;
}

/* 左罫線アクセント（中央起点で伸長） */
.story-behind-grid__card::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  height: 0;
  width: 2px;
  background: var(--story-accent);
  transform: translateY(-50%);
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

/* 子要素は z-index で前面に */
.story-behind-grid__icon,
.story-behind-grid__body {
  position: relative;
  z-index: 2;
}

.story-chapter--dark .story-behind-grid__card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.story-behind-grid__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(42, 38, 34, 0.08);
  background: rgba(255, 255, 255, 1);
}

.story-behind-grid__card:hover::before {
  opacity: 0.2;
  transform: translateY(-3px) translateX(-2px);
}

.story-behind-grid__card:hover::after {
  height: 70%;
}

.story-chapter--dark .story-behind-grid__card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.story-chapter--dark .story-behind-grid__card::before {
  color: #d9b899;
  opacity: 0.1;
}

.story-chapter--dark .story-behind-grid__card:hover::before {
  opacity: 0.22;
}

.story-chapter--dark .story-behind-grid__card::after {
  background: #d9b899;
}

/* アイコンバッジ（写真の代わり） */
.story-behind-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.4rem;
  font-size: 1.25rem;
  color: var(--story-accent);
  background: rgba(138, 106, 79, 0.09);
  border-radius: 50%;
  transition: background 0.4s ease, transform 0.5s ease;
}

.story-behind-grid__card:hover .story-behind-grid__icon {
  background: rgba(138, 106, 79, 0.18);
  transform: scale(1.05);
}

.story-chapter--dark .story-behind-grid__icon {
  background: rgba(217, 184, 153, 0.1);
  color: #d9b899;
}

.story-chapter--dark .story-behind-grid__card:hover .story-behind-grid__icon {
  background: rgba(217, 184, 153, 0.2);
}

.story-behind-grid__body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-behind-grid__num {
  font-family: var(--story-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--story-accent);
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.story-behind-grid__num::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.story-chapter--dark .story-behind-grid__num {
  color: #e5c8a8;
}

.story-behind-grid__title {
  font-family: var(--story-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 0.9rem;
  color: var(--story-text);
}

.story-chapter--dark .story-behind-grid__title {
  color: #fff;
}

.story-behind-grid__text {
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0;
  opacity: 0.92;
  color: var(--story-text);
}

.story-chapter--dark .story-behind-grid__text {
  color: #fff;
}

/* 旧版写真カード（残しているが未使用） */
.story-behind-grid__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.story-behind-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-behind-grid__card:hover .story-behind-grid__media img {
  transform: scale(1.06);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .story-behind-grid--quad {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 560px) {
  .story-behind-grid,
  .story-behind-grid--quad {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ==========================================================================
   8. Chain (ユルム de つなぐ Concept)
   ========================================================================== */
.story-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 5rem;
  background: var(--story-line);
  border: 1px solid var(--story-line);
}

.story-chain__node {
  position: relative;
  padding: 2.5rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story-chain__node::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--story-accent);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 2;
}

.story-chain__node:last-child::after {
  display: none;
}

.story-chain__num {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--story-accent);
  margin-bottom: 0.8rem;
}

.story-chain__title {
  font-family: var(--story-serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 0.8rem;
}

.story-chain__text {
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================================
   9. Channel Grid (ユルム de つなぐ Where to See) 磨き上げ版
   ========================================================================== */
.story-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
  counter-reset: channel;
}

.story-channel {
  position: relative;
  padding: 2.6rem 1.8rem 2.2rem;
  background: #fff;
  border: none;
  border-left: 1px solid var(--story-line);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  counter-increment: channel;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease;
}

/* 背景に薄い番号 */
.story-channel::before {
  content: counter(channel, decimal-leading-zero);
  position: absolute;
  top: 0.6rem;
  right: 1.1rem;
  z-index: 0;
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--story-accent);
  opacity: 0.08;
  letter-spacing: -0.03em;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.55s ease;
}

/* 左罫線アクセント */
.story-channel::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  height: 0;
  width: 2px;
  background: var(--story-accent);
  transform: translateY(-50%);
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.story-channel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(42, 38, 34, 0.08);
}

.story-channel:hover::before {
  opacity: 0.2;
  transform: translateY(-3px) translateX(-2px);
}

.story-channel:hover::after {
  height: 70%;
}

.story-channel__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.25rem;
  color: var(--story-accent);
  background: rgba(138, 106, 79, 0.09);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  transition: background 0.4s ease, transform 0.5s ease;
}

.story-channel:hover .story-channel__icon {
  background: rgba(138, 106, 79, 0.18);
  transform: scale(1.05);
}

.story-channel__title {
  position: relative;
  z-index: 2;
  font-family: var(--story-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 0.9rem;
}

.story-channel__text {
  position: relative;
  z-index: 2;
  font-size: 0.92rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
  margin: 0;
  opacity: 0.92;
}

/* ==========================================================================
   10. Teaser (ユルム de つなぐ #1)
   ========================================================================== */
.story-teaser {
  position: relative;
  margin-top: 4rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}

.story-teaser__media {
  position: absolute;
  inset: 0;
}

.story-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.45);
  transform: scale(1.1);
}

.story-teaser__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 3rem;
}

.story-teaser__label {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.story-teaser__title {
  font-family: var(--story-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 1.5rem;
}

.story-teaser__text {
  font-size: 1rem;
  line-height: 2;
  opacity: 0.85;
  max-width: 32em;
}

/* ==========================================================================
   10b. Gallery (Past Stories)
   ========================================================================== */
.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.story-gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.4rem;
  isolation: isolate;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.story-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: -1;
  transition: opacity 0.4s ease;
}

.story-gallery__item:hover img {
  transform: scale(1.06);
}

.story-gallery__item:hover {
  transform: translateY(-4px);
}

.story-gallery__num {
  font-family: var(--story-serif);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.story-gallery__num::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.story-gallery__item:hover .story-gallery__num {
  transform: translateY(-2px);
  opacity: 1;
}

.story-gallery__title {
  font-family: var(--story-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin: 0 0 0.7rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-gallery__item:hover .story-gallery__title {
  transform: translateY(-2px);
}

.story-gallery__meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.story-gallery__meta::before {
  content: "";
  width: 1.4em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* --- Coming Soon (未公開回) --- */
.story-gallery__item--coming img {
  filter: blur(6px) brightness(0.45) grayscale(0.3);
  transform: scale(1.08);
}

.story-gallery__item--coming:hover img {
  transform: scale(1.12);
}

.story-gallery__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--story-text);
  padding: 0.4em 1em;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, background 0.4s ease;
}

.story-gallery__badge--coming {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: none;
}

.story-gallery__badge--coming::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: comingPulse 2s ease-in-out infinite;
}

@keyframes comingPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

.story-gallery__item:hover .story-gallery__badge--coming {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Gallery foot note (run-in) */
.story-gallery__note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .story-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 560px) {
  .story-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   11. Final CTA
   ========================================================================== */
.story-cta {
  position: relative;
  padding: 8rem 6vw;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.story-cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.story-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 63, 37, 0.85) 0%,
    rgba(26, 22, 18, 0.92) 100%
  );
  z-index: -1;
}

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

.story-cta__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.8rem;
}

.story-cta__label::before,
.story-cta__label::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.story-cta__title {
  font-family: var(--story-serif);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin: 0 0 1.8rem;
}

.story-cta__text {
  font-size: 1rem;
  line-height: 2.05;
  letter-spacing: 0.04em;
  margin: 0 0 3rem;
  opacity: 0.9;
}

.story-cta__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.story-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 280px;
  padding: 1.1em 2em;
  background: #fff;
  color: var(--story-text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.story-cta__btn:hover {
  transform: translateY(-2px);
}

.story-cta__btn--line {
  background: #06c755;
  color: #fff;
}

.story-cta__btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* ==========================================================================
   12. Section Divider Photo (Full-bleed pause)
   ========================================================================== */
.story-divider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.story-divider__media {
  position: absolute;
  inset: 0;
}

.story-divider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-divider__quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.story-divider__quote p {
  position: relative;
  font-family: var(--story-serif);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  letter-spacing: 0.08em;
  max-width: 28em;
  padding: 1.5rem 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* 装飾的な引用ダッシュ */
.story-divider__quote p::before,
.story-divider__quote p::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
}

.story-divider__quote p::before {
  top: 0;
}

.story-divider__quote p::after {
  bottom: 0;
}

/* ==========================================================================
   13. GSAP Animation Initial States
   ========================================================================== */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.js-fade-in {
  opacity: 0;
}

.js-parallax-img {
  will-change: transform;
}

.js-reveal-mask {
  clip-path: inset(0 100% 0 0);
}

/* ==========================================================================
   14. Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .story-chapter {
    padding: 8rem 0;
  }

  /* Journey 旧左右交互レイアウト時代の残骸を全削除（縦タイムライン化済み） */

  .story-chain {
    grid-template-columns: 1fr;
  }

  .story-chain__node::after {
    content: "↓";
    top: auto;
    bottom: -1rem;
    right: 50%;
    transform: translateX(50%);
  }

  .story-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .story-hero {
    min-height: 560px;
  }

  .story-hero__title {
    font-size: 2.4rem;
  }

  .story-chapter {
    padding: 6rem 0;
  }

  .story-chapter__container {
    padding: 0 5vw;
  }

  .story-cta {
    padding: 6rem 5vw;
  }

  .story-cta__btn {
    min-width: 100%;
    font-size: 0.9rem;
  }

  .story-divider {
    height: 50vh;
  }
}
