/**
 * Time Value Architect — time-value-architect.css
 *
 * 設計思想:
 *   - #tva-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSS カスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: 深黒オブシディアン × 焦がしゴールド × アイボリー × 紫黒アクセント
 *   - フォント: Cormorant Garamond (欧文Display) + Shippori Mincho (日本語明朝) + Noto Sans JP
 *
 * @package cocoon-child-master
 */

/* ================================================================
   1. COCOON 干渉リセット
   ================================================================ */
.time-value-architect .article,
.time-value-architect .entry-content,
.time-value-architect .main,
.time-value-architect .content,
.time-value-architect .wrap,
.time-value-architect #main,
.time-value-architect #body-in,
.time-value-architect #container,
.time-value-architect #container-in,
.time-value-architect #contents,
.time-value-architect #contents-in {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
  position: static !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
}
.time-value-architect #sidebar,
.time-value-architect .sidebar,
.time-value-architect #sidebar-scroll,
.time-value-architect .sidebar-top,
.time-value-architect .sidebar-bottom {
  display: none !important;
}
.time-value-architect #footer:not(.tp-footer),
.time-value-architect .site-footer:not(.tp-footer),
.time-value-architect .footer:not(.tp-footer) {
  display: none !important;
}


/* ================================================================
   2. CSS カスタムプロパティ（全色・全値）
   ================================================================ */
#tva-root {
  /* ─ カラーパレット ─ */
  --tva-bg:           #07060A;
  --tva-bg-2:         #0F0D14;
  --tva-bg-card:      #15121C;
  --tva-gold:         #C4A35A;
  --tva-gold-bright:  #D4B56A;
  --tva-gold-light:   #E2C37A;
  --tva-gold-dim:     #7A6234;
  --tva-gold-muted:   rgba(196,163,90,0.15);
  --tva-accent:       #9D7FBF;
  --tva-accent-dim:   #5A4870;
  --tva-teal:         #7FB8A0;
  --tva-amber:        #BF9D7F;
  --tva-cream:        #F0EBE0;
  --tva-cream-dim:    #A89F8E;
  --tva-cream-muted:  #5C5549;
  --tva-white:        #FAF8F3;

  /* ─ タイポグラフィ ─ */
  --tva-font-sans:    'Noto Sans JP', sans-serif;
  --tva-font-serif:   'Shippori Mincho', 'Noto Serif JP', serif;
  --tva-font-display: 'Cormorant Garamond', serif;

  /* ─ スペーシング ─ */
  --tva-section-py:      clamp(4rem, 8vw, 8rem);
  --tva-container-max:   900px;
  --tva-container-wide:  1100px;
  --tva-radius:          4px;
  --tva-radius-sm:       2px;

  /* ─ ボーダー ─ */
  --tva-border:          rgba(196,163,90,0.15);
  --tva-border-subtle:   rgba(255,255,255,0.04);

  /* ─ トランジション ─ */
  --tva-transition:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tva-transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ================================================================
   3. GLOBAL RESET — #tva-root スコープ
   ================================================================ */
#tva-root,
#tva-root *,
#tva-root *::before,
#tva-root *::after {
  box-sizing: border-box;
}

#tva-root h1,
#tva-root h2,
#tva-root h3,
#tva-root h4,
#tva-root h5,
#tva-root h6,
#tva-root p,
#tva-root ul,
#tva-root ol,
#tva-root li,
#tva-root figure,
#tva-root blockquote,
#tva-root dl,
#tva-root dd {
  margin: 0;
  padding: 0;
}

#tva-root ul,
#tva-root ol {
  list-style: none;
}

#tva-root {
  background-color: var(--tva-bg);
  color: var(--tva-cream);
  font-family: var(--tva-font-sans);
  font-weight: 300;
  line-height: 1.85;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: auto-phrase;
}


/* ================================================================
   4. GLOBAL SCROLLBAR & PROGRESS
   ================================================================ */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--tva-bg); }
::-webkit-scrollbar-thumb { background: var(--tva-gold-dim); }

#tva-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--tva-gold-dim), var(--tva-gold-light), var(--tva-accent));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* ================================================================
   5. BACKGROUND LAYERS
   ================================================================ */
.tva-bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tva-starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.tva-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
}
.tva-bg-glow--1 {
  width: 700px; height: 700px;
  background: var(--tva-gold);
  top: -20%; right: -15%;
}
.tva-bg-glow--2 {
  width: 500px; height: 500px;
  background: var(--tva-accent);
  bottom: 5%; left: -12%;
}
.tva-bg-glow--3 {
  width: 400px; height: 400px;
  background: var(--tva-teal);
  top: 50%; right: 5%;
  opacity: 0.03;
}


/* ================================================================
   6. BASE LAYOUT COMPONENTS
   ================================================================ */
.tva-container {
  max-width: var(--tva-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 10;
}
.tva-container--wide {
  max-width: var(--tva-container-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.75rem);
  position: relative;
  z-index: 10;
}

.tva-section {
  padding-block: var(--tva-section-py);
  position: relative;
  z-index: 10;
}
.tva-section--alt {
  background-color: rgba(15,13,20,0.6);
}

.tva-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tva-cream-muted) 30%, var(--tva-cream-muted) 70%, transparent);
  opacity: 0.08;
  position: relative;
  z-index: 10;
}

.tva-section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}


/* ================================================================
   7. TYPOGRAPHY SYSTEM
   ================================================================ */
.tva-eyebrow {
  font-family: var(--tva-font-display);
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.tva-h-display {
  font-family: var(--tva-font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--tva-white);
  margin-bottom: 1.5rem;
}
.tva-h-display em {
  font-style: italic;
  color: var(--tva-gold-light);
}

.tva-h-section {
  font-family: var(--tva-font-display);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--tva-white);
  margin-bottom: 1.5rem;
}
.tva-h-section em {
  font-style: italic;
  color: var(--tva-gold-light);
}

.tva-body-lead {
  font-size: clamp(0.975rem, 1.8vw, 1.075rem);
  line-height: 2;
  color: var(--tva-cream-dim);
  max-width: 660px;
  margin-bottom: 1.5rem;
}

.tva-body-text {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--tva-cream-muted);
  max-width: 660px;
}

.tva-gold-line {
  width: 48px;
  height: 1px;
  background: var(--tva-gold);
  margin-bottom: 2.5rem;
}


/* ================================================================
   8. SCROLL REVEAL ANIMATION
   ================================================================ */
.tva-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.tva-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tva-reveal[data-delay="0"] { transition-delay: 0s;   }
.tva-reveal[data-delay="1"] { transition-delay: 0.12s; }
.tva-reveal[data-delay="2"] { transition-delay: 0.24s; }
.tva-reveal[data-delay="3"] { transition-delay: 0.36s; }
.tva-reveal[data-delay="4"] { transition-delay: 0.48s; }
.tva-reveal[data-delay="5"] { transition-delay: 0.60s; }

/* ヒーロー hero アニメーション */
.tva-anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: tvaFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--tva-delay, 0s);
}
@keyframes tvaFadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ================================================================
   9. COVER / HERO
   ================================================================ */
.tva-cover {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding: clamp(7rem, 15vw, 12rem) clamp(1.25rem, 4vw, 3.75rem) clamp(5rem, 10vw, 8rem);
  text-align: center;
  overflow: hidden;
}

.tva-cover__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
}

.tva-cover__eyebrow {
  font-family: var(--tva-font-display);
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--tva-gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tva-cover__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--tva-gold-dim);
  flex-shrink: 0;
}

.tva-cover__title {
  font-family: var(--tva-font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--tva-white);
  margin-bottom: 1.75rem;
}
.tva-cover__title em {
  font-style: italic;
  color: var(--tva-gold-light);
}

.tva-cover__sub {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 300;
  color: var(--tva-cream-dim);
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 3.5rem;
}

.tva-cover__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.tva-cover__cta-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
}

/* スクロール誘導 */
.tva-cover__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.tva-cover__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--tva-gold));
  animation: tvaScrollPulse 2s ease-in-out infinite;
}
.tva-cover__scroll-label {
  font-family: var(--tva-font-display);
  font-size: 9px;
  letter-spacing: 0.6em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
}
@keyframes tvaScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* 大型装飾数値 */
.tva-cover__deco-num {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--tva-font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,163,90,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}


/* ================================================================
   10. CTA BUTTON
   ================================================================ */
.tva-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.75rem;
  font-family: var(--tva-font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--tva-white);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tva-transition),
    filter var(--tva-transition);
}
.tva-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.tva-cta-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.tva-cta-btn:hover::before { opacity: 1; }
.tva-cta-btn:active { transform: translateY(0); }


/* ================================================================
   11. INSIGHT BOX
   ================================================================ */
.tva-insight-box {
  border: 1px solid rgba(196,163,90,0.22);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3.5rem;
  background: rgba(196,163,90,0.03);
  position: relative;
}
.tva-insight-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 40px;
  width: 60px; height: 1px;
  background: var(--tva-gold);
}
.tva-insight-box__label {
  font-family: var(--tva-font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--tva-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}
.tva-insight-box__text {
  font-family: var(--tva-font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--tva-cream);
  line-height: 1.65;
}
.tva-insight-box__text em { color: var(--tva-gold-light); font-style: italic; }


/* ================================================================
   12. CAUSE CARDS
   ================================================================ */
.tva-cause-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 3rem;
  border: 1px solid var(--tva-border);
}
.tva-cause-card {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.75rem);
  background: var(--tva-bg-2);
  position: relative;
  overflow: hidden;
  transition: background var(--tva-transition);
}
.tva-cause-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--tva-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.tva-cause-card:hover::before { transform: scaleX(1); }
.tva-cause-card:hover { background: var(--tva-bg-card); }

.tva-cause-num {
  font-family: var(--tva-font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196,163,90,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.tva-cause-tag {
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--tva-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.tva-cause-title {
  font-family: var(--tva-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--tva-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.tva-cause-body {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--tva-cream-muted);
}


/* ================================================================
   13. FUTURE SPLIT & CARDS
   ================================================================ */
.tva-future-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.tva-future-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--tva-border);
  transition: border-color var(--tva-transition);
}
.tva-future-card:hover { border-color: rgba(196,163,90,0.35); }
.tva-future-card__icon {
  font-family: var(--tva-font-display);
  font-size: 3.5rem;
  color: var(--tva-gold-dim);
  display: block;
  margin-bottom: 1.25rem;
}
.tva-future-card__label {
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--tva-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
.tva-future-card__title {
  font-family: var(--tva-font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--tva-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.tva-future-card__body {
  font-size: 0.85rem;
  color: var(--tva-cream-muted);
  line-height: 2;
}

.tva-future-list { display: flex; flex-direction: column; gap: 0; }
.tva-future-list__item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--tva-border-subtle);
  align-items: baseline;
  font-size: 0.85rem;
}
.tva-future-list__item:last-child { border-bottom: none; }
.tva-future-list__key {
  color: var(--tva-gold-light);
  font-size: 0.8rem;
}
.tva-future-list__val { color: var(--tva-cream-muted); }


/* ================================================================
   14. BLOCKQUOTE (テーブル・ブロッククォート白抜き完全解消)
   ================================================================ */
#tva-root blockquote,
.tva-quote {
  background: rgba(196,163,90,0.04) !important;
  border: none !important;
  border-left: 1px solid var(--tva-gold) !important;
  padding: 2rem 3rem !important;
  margin: 3.5rem 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
#tva-root blockquote::before,
#tva-root blockquote::after,
.tva-quote::before,
.tva-quote::after { display: none !important; }

.tva-quote__text {
  font-family: var(--tva-font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--tva-cream);
  margin-bottom: 1rem;
}
.tva-quote__attr {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
  font-style: normal;
}


/* ================================================================
   15. TABLE (Cocoon白抜き解消)
   ================================================================ */
.tva-table-wrap {
  overflow-x: auto;
  margin-block: 2rem;
  border: 1px solid var(--tva-border);
}
.tva-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: transparent !important;
}
.tva-table thead th {
  background: var(--tva-bg-card) !important;
  color: var(--tva-gold-dim);
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--tva-border);
  font-family: var(--tva-font-display);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
}
.tva-table tbody td {
  background: transparent !important;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--tva-border-subtle);
  color: var(--tva-cream-dim);
  vertical-align: top;
  line-height: 1.7;
}
.tva-table tbody tr:last-child td { border-bottom: none; }
.tva-table tbody tr:hover td { background: rgba(196,163,90,0.03) !important; }
.tva-era-name {
  font-family: var(--tva-font-display);
  font-size: 1.15rem;
  color: var(--tva-white);
  font-weight: 400;
}
.tva-era-name--active { color: var(--tva-gold-light); }
.tva-era-highlight td { background: rgba(196,163,90,0.05) !important; }


/* ================================================================
   16. SHIFT ARROWS
   ================================================================ */
.tva-shift-list { margin-top: 3rem; }
.tva-shift-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--tva-border-subtle);
}
.tva-shift-row:last-child { border-bottom: none; }
.tva-shift-row--highlight {
  background: rgba(196,163,90,0.04);
  padding-inline: 1rem;
  margin-inline: -1rem;
}
.tva-shift-from {
  font-size: 0.875rem;
  color: var(--tva-cream-muted);
  width: 9rem;
  text-align: right;
  flex-shrink: 0;
}
.tva-shift-from--accent { color: var(--tva-cream-dim); }
.tva-shift-arrow {
  display: flex;
  align-items: center;
  flex: 1;
}
.tva-shift-arrow__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--tva-cream-muted), var(--tva-gold));
}
.tva-shift-arrow__head {
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid var(--tva-gold);
}
.tva-shift-to {
  font-size: 0.9rem;
  color: var(--tva-gold-light);
  font-weight: 500;
  width: 11rem;
  flex-shrink: 0;
}
.tva-shift-to--accent { color: var(--tva-gold-light); font-weight: 500; }


/* ================================================================
   17. THREE PILLARS
   ================================================================ */
.tva-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border: 1px solid var(--tva-border);
}
.tva-pillar {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.75rem);
  background: var(--tva-bg-2);
  position: relative;
  border-bottom: 1px solid var(--tva-border);
}
.tva-pillar:last-child { border-bottom: none; }
.tva-pillar__num {
  font-family: var(--tva-font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(196,163,90,0.06);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 1.75rem;
}
.tva-pillar__icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(196,163,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--tva-gold);
}
.tva-pillar__icon {
  width: 20px; height: 20px;
}
.tva-pillar__label {
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.tva-pillar__heading {
  font-family: var(--tva-font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.625rem);
  font-weight: 400;
  color: var(--tva-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.tva-pillar__body {
  font-size: 0.85rem;
  color: var(--tva-cream-muted);
  line-height: 2.1;
}


/* ================================================================
   18. MINDSET LIST
   ================================================================ */
.tva-mindset-list { margin-top: 3rem; }
.tva-mindset-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--tva-border-subtle);
}
.tva-mindset-item:last-child { border-bottom: none; }
.tva-mindset-num {
  font-family: var(--tva-font-display);
  font-size: 0.875rem;
  color: var(--tva-gold-dim);
  min-width: 2.5rem;
  padding-top: 4px;
  flex-shrink: 0;
}
.tva-mindset-title {
  font-family: var(--tva-font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--tva-white);
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.3;
}
.tva-mindset-body {
  font-size: 0.85rem;
  color: var(--tva-cream-muted);
  line-height: 2;
}


/* ================================================================
   19. METHOD GROUPS & STEPS
   ================================================================ */
.tva-method-group { margin-top: 5rem; }

.tva-method-group__label {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--tva-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}
.tva-method-group__title {
  font-family: var(--tva-font-display);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--tva-white);
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

.tva-method-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.tva-method-step {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--tva-bg-2);
  border-top: 1px solid rgba(196,163,90,0.18);
  position: relative;
}
.tva-step-marker {
  font-family: var(--tva-font-display);
  font-size: 0.8rem;
  color: var(--tva-gold-dim);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  display: block;
}
.tva-step-title {
  font-family: var(--tva-font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--tva-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.tva-step-body {
  font-size: 0.825rem;
  color: var(--tva-cream-muted);
  line-height: 2;
}
.tva-step-bullets {
  margin-top: 1rem;
}
.tva-step-bullets li {
  font-size: 0.8rem;
  color: var(--tva-cream-muted);
  padding: 3px 0 3px 1rem;
  position: relative;
  line-height: 1.7;
}
.tva-step-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--tva-gold-dim);
  font-size: 0.7rem;
}


/* ================================================================
   20. OS GRID
   ================================================================ */
.tva-os-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 3rem;
}
.tva-os-layer {
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--tva-bg-2);
  border-top: 2px solid transparent;
  position: relative;
  transition: background var(--tva-transition);
}
.tva-os-layer:hover { background: var(--tva-bg-card); }
.tva-os-layer--1 { border-top-color: var(--tva-accent); }
.tva-os-layer--2 { border-top-color: var(--tva-gold); }
.tva-os-layer--3 { border-top-color: var(--tva-teal); }
.tva-os-layer--4 { border-top-color: var(--tva-amber); }
.tva-os-layer__name {
  font-family: var(--tva-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--tva-white);
  margin-bottom: 0.375rem;
}
.tva-os-layer__jp {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--tva-cream-muted);
  display: block;
  margin-bottom: 1.25rem;
}
.tva-os-layer__content {
  font-size: 0.85rem;
  color: var(--tva-cream-dim);
  line-height: 2;
  margin-bottom: 0.875rem;
}
.tva-os-layer__value {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
}


/* ================================================================
   21. EVIDENCE GRID
   ================================================================ */
.tva-evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 3.5rem;
}
.tva-evidence-cat {
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--tva-bg-2);
  border-top: 1px solid var(--tva-border);
}
.tva-evidence-cat__label {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--tva-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.tva-evidence-list { display: flex; flex-direction: column; }
.tva-evidence-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--tva-border-subtle);
}
.tva-evidence-item:last-child { border-bottom: none; }
.tva-evidence-source {
  font-size: 10px;
  color: var(--tva-gold-dim);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}
.tva-evidence-text {
  font-size: 0.825rem;
  color: var(--tva-cream-muted);
  line-height: 1.8;
}


/* ================================================================
   22. CLOSING
   ================================================================ */
.tva-closing {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--tva-section-py) clamp(1.25rem, 4vw, 3.75rem);
  position: relative;
  z-index: 10;
  text-align: center;
}
.tva-closing__inner {
  max-width: 800px;
  margin-inline: auto;
}
.tva-closing__pre {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: block;
}
.tva-closing__title {
  font-family: var(--tva-font-display);
  font-size: clamp(2.25rem, 6.5vw, 5.5rem);
  font-weight: 300;
  color: var(--tva-white);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.tva-closing__title em { font-style: italic; color: var(--tva-gold-light); }
.tva-closing__body {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--tva-cream-dim);
  line-height: 2;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.tva-closing__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--tva-gold), transparent);
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.tva-closing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 4rem;
}
.tva-closing__grid-item {
  padding: 2rem 1.5rem;
  background: var(--tva-bg-2);
}
.tva-closing__grid-item--1 { border-top: 1px solid rgba(157,127,191,0.4); }
.tva-closing__grid-item--2 { border-top: 1px solid rgba(196,163,90,0.4); }
.tva-closing__grid-item--3 { border-top: 1px solid rgba(127,184,160,0.4); }
.tva-closing__grid-item--4 { border-top: 1px solid rgba(191,157,127,0.4); }
.tva-closing__grid-name {
  font-family: var(--tva-font-display);
  font-size: 1.4rem;
  color: var(--tva-white);
  margin-bottom: 0.375rem;
}
.tva-closing__grid-jp {
  font-size: 10px;
  color: var(--tva-cream-muted);
  letter-spacing: 0.25em;
}


/* ================================================================
   23. MID / FINAL CTA SECTIONS
   ================================================================ */
.tva-mid-cta {
  margin-top: 4rem;
  padding: 3.5rem;
  text-align: center;
  border: 1px solid var(--tva-border);
  background: rgba(196,163,90,0.02);
}
.tva-mid-cta__lead {
  font-family: var(--tva-font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--tva-cream-dim);
  margin-bottom: 2rem;
}
.tva-mid-cta__sub {
  margin-top: 0.875rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
}

.tva-final-cta { margin-top: 2rem; }
.tva-final-cta__lead {
  font-family: var(--tva-font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--tva-cream-dim);
  margin-bottom: 2rem;
}
.tva-final-cta__sub {
  margin-top: 0.875rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--tva-gold-dim);
  text-transform: uppercase;
}


/* ================================================================
   24. RESPONSIVE — Tablet (768px+)
   ================================================================ */
@media (min-width: 768px) {

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

  .tva-future-split {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .tva-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .tva-pillar { border-bottom: none; border-right: 1px solid var(--tva-border); }
  .tva-pillar:last-child { border-right: none; }

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

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

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

  .tva-closing__grid { grid-template-columns: repeat(4, 1fr); }

  .tva-shift-from { width: 11rem; }
  .tva-shift-to   { width: 13rem; }

}


/* ================================================================
   25. RESPONSIVE — Desktop (1024px+)
   ================================================================ */
@media (min-width: 1024px) {

  .tva-os-grid { grid-template-columns: repeat(4, 1fr); }

}


/* ================================================================
   IMAGES — 5点の画像スタイル設定
   ================================================================ */

/* ── 画像1: ヒーロー背景画像 ── */
.tva-cover--has-bg {
  position: relative;
}
.tva-cover__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.tva-cover__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.22;
  filter: brightness(0.55) saturate(0.7);
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: transform;
}
.tva-cover--has-bg .tva-cover__inner {
  position: relative;
  z-index: 2;
}
/* ロード後フェードイン */
.tva-cover--has-bg.is-loaded .tva-cover__bg-img img {
  opacity: 0.38;
  transform: scale(1);
}

/* ── 画像2: Core Insight 下部の横長画像 ── */
.tva-section-img {
  margin: 56px 0 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  line-height: 0;
  /* 金縁の演出 */
  box-shadow:
    0 0 0 1px rgba(196,163,90,.18),
    0 24px 64px rgba(0,0,0,.55),
    0 0 40px rgba(196,163,90,.06);
}
.tva-section-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(10,8,18,.0) 55%,
    rgba(10,8,18,.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.tva-section-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.tva-section-img:hover img {
  transform: scale(1.025);
}

/* ── 画像3・4: Section ヒーロー背景（フル幅） ── */
.tva-section--hero-bg {
  position: relative;
  overflow: hidden;
}
.tva-section-hero-img {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -4px;
}
.tva-section-hero-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* オーバーレイを重ねて下のコンテンツに溶け込む */
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,0) 100%
  );
  filter: brightness(0.62) saturate(0.72);
  transition: transform 0.9s ease;
  will-change: transform;
}
.tva-section--hero-bg:hover .tva-section-hero-img img {
  transform: scale(1.01);
}
/* 画像の上にコンテンツが乗るオーバーラップ構造 */
.tva-section--hero-bg .tva-container--wide {
  position: relative;
  z-index: 2;
  /* 画像と重なるよう上に引き上げる */
  margin-top: -160px;
}
@media (max-width: 1024px) {
  .tva-section--hero-bg .tva-container--wide {
    margin-top: -100px;
  }
}
@media (max-width: 640px) {
  .tva-section--hero-bg .tva-container--wide {
    margin-top: -60px;
  }
  .tva-section-hero-img img {
    aspect-ratio: 4 / 3;
  }
}

/* ── 画像5: Closing — 全面絶対配置背景・世界水準昇華版 ── */

/* セクション全体を積層コンテナ化 */
.tva-closing--has-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* 画像をドキュメントフローから外し、セクション全体を覆う絶対背景に */
.tva-closing-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tva-closing-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  filter: brightness(0.28) saturate(0.55) contrast(1.10);
  will-change: transform;
  animation: tva-ken-burns-closing 20s ease-out both;
}

/* ── ケン・バーンズ効果（シネマティック・超低速ズームアウト） ── */
@keyframes tva-ken-burns-closing {
  0%   { transform: scale(1.08) translateY(-10px); }
  100% { transform: scale(1.00) translateY(0px);   }
}

/* ── 多層グラデーションオーバーレイ ── */
/* 第1層: 中央上部に金の微かな輝き（ブランド感） */
/* 第2層: 斜め方向の暗幕グラデーション（テキスト可読性） */
/* 第3層: 下部を完全に黒化（コンテンツとの融合） */
.tva-closing--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 90% 40% at 50% 8%,
      rgba(196, 163, 90, 0.09) 0%,
      transparent 65%
    ),
    linear-gradient(
      168deg,
      rgba(10, 8, 18, 0.08)  0%,
      rgba(10, 8, 18, 0.48) 28%,
      rgba(10, 8, 18, 0.82) 58%,
      rgba(10, 8, 18, 0.97) 80%,
      rgba(10, 8, 18, 1.00) 100%
    );
  pointer-events: none;
}

/* ── コンテンツを前面に浮上 ── */
.tva-closing--has-bg .tva-closing__inner {
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  /* 画像が"覗く"余白を上部に確保 */
  padding-top: clamp(200px, 24vw, 440px);
}

/* ── PC（1025px以上） ── */
@media (min-width: 1025px) {
  .tva-closing--has-bg .tva-closing__inner {
    padding-top: clamp(300px, 26vw, 460px);
  }
}

/* ── タブレット（641px〜1024px） ── */
@media (min-width: 641px) and (max-width: 1024px) {
  .tva-closing--has-bg .tva-closing__inner {
    padding-top: clamp(200px, 28vw, 340px);
  }
}

/* ── スマートフォン（〜640px） ── */
@media (max-width: 640px) {
  .tva-closing--has-bg .tva-closing__inner {
    padding-top: clamp(140px, 44vw, 240px);
  }
  .tva-closing-hero-img img {
    object-position: center 18%;
  }
}

/* ── 画像ロードアニメーション（reveal連動） ── */
.tva-section-img.tva-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.tva-section-img.tva-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   Era Table — 白抜き完全解消（Cocoon高詳細度対策済み・確定版）
   ================================================================ */

/* ── tr レベルの白背景を打消し（Cocoon ゼブラストライプ対策） ── */
#tva-root .tva-table tbody tr {
  background-color: transparent !important;
}

/* 奇数行（農業時代・情報時代）— 深紺で確実に暗色化 */
#tva-root .tva-table tbody tr:nth-child(odd) {
  background-color: rgba(28, 22, 42, 0.92) !important;
}

/* ── td レベルも二重に明示（Cocoon .entry-content 高詳細度対策） ── */
#tva-root .tva-table tbody tr:nth-child(odd) td {
  background-color: rgba(28, 22, 42, 0.92) !important;
  color: #d8d2c6 !important;
}

/* 偶数行（工業時代）— 元の透明を維持しつつ明示 */
#tva-root .tva-table tbody tr:nth-child(even) td {
  background-color: transparent !important;
  color: var(--tva-cream-dim) !important;
}

/* AI時代（ハイライト行）— ゴールド演出を維持 */
#tva-root .tva-table tbody tr.tva-era-highlight td {
  background-color: rgba(196, 163, 90, 0.10) !important;
  color: #f0ece2 !important;
}

/* 時代ラベルの視認性保証 */
#tva-root .tva-table .tva-era-name {
  color: #e8e2d4 !important;
}
#tva-root .tva-table .tva-era-name--active {
  color: var(--tva-gold-light) !important;
}
