/**
 * Value Creation Architecture LP — value-creation-architecture.css
 *
 * 設計思想:
 *   - #vca-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSS カスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: 深オリーブブラック × ゴールド × アイボリー (Luxury Dark Olive)
 *   - フォント: Noto Serif JP (本文) + Cormorant Garamond (欧文Display)
 *
 * @package cocoon-child-master
 */

/* ================================================================
   1. COCOON 干渉リセット
   ================================================================ */
.value-creation-architecture .article,
.value-creation-architecture .entry-content,
.value-creation-architecture .main,
.value-creation-architecture .content,
.value-creation-architecture .wrap,
.value-creation-architecture #main,
.value-creation-architecture #body-in,
.value-creation-architecture #container,
.value-creation-architecture #container-in,
.value-creation-architecture #contents,
.value-creation-architecture #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;
}
.value-creation-architecture #sidebar,
.value-creation-architecture .sidebar,
.value-creation-architecture #sidebar-scroll,
.value-creation-architecture .sidebar-top,
.value-creation-architecture .sidebar-bottom {
  display: none !important;
}
.value-creation-architecture #footer:not(.tp-footer),
.value-creation-architecture .site-footer:not(.tp-footer),
.value-creation-architecture .footer:not(.tp-footer) {
  display: none !important;
}

/* ================================================================
   2. CSS カスタムプロパティ（全色・全値）
   ================================================================ */
#vca-root {
  /* ─ カラーパレット ─ */
  --vca-bg:          #0c1209;
  --vca-bg-2:        #141d11;
  --vca-bg-alt:      #18231a;
  --vca-bg-card:     #1d2b1a;
  --vca-bg-pillars:  #0f1a0d;
  --vca-gold:        #c9a84c;
  --vca-gold-bright: #e2c872;
  --vca-gold-light:  #f0e4b0;
  --vca-gold-pale:   #f8f0d4;
  --vca-gold-dim:    rgba(201,168,76,0.18);
  --vca-olive:       #5a7050;
  --vca-olive-mid:   #8a9c78;
  --vca-olive-pale:  #b8c8a4;
  --vca-text:        #e4dcc0;
  --vca-text-2:      #c0b898;
  --vca-text-3:      #8a8268;
  --vca-border:      rgba(201,168,76,0.18);
  --vca-border-fine: rgba(140,160,100,0.15);

  /* ─ タイポグラフィ ─ */
  --vca-font-sans:    'Noto Serif JP', 'EB Garamond', Georgia, serif;
  --vca-font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;

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

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

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

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

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

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

/* ── blockquote / table Cocoon白抜き完全解消 ── */
#vca-root blockquote {
  background: var(--vca-bg-card) !important;
  border-left: 3px solid var(--vca-gold) !important;
  border-right: none !important;
  color: var(--vca-text) !important;
  padding: 1.5rem 1.75rem !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: var(--vca-radius-sm) !important;
}
#vca-root blockquote::before,
#vca-root blockquote::after { display: none !important; }

#vca-root code {
  background: rgba(201,168,76,0.08) !important;
  color: var(--vca-gold-bright) !important;
  padding: 0.1em 0.4em;
  border-radius: 3px;
}
#vca-root hr {
  border: none;
  border-top: 1px solid var(--vca-border);
  margin: 2rem 0;
}

/* ================================================================
   4. コンテナ
   ================================================================ */
.vca-container {
  max-width: var(--vca-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.vca-container--wide {
  max-width: var(--vca-container-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ================================================================
   5. セクション共通
   ================================================================ */
.vca-section {
  padding-block: var(--vca-section-py);
  position: relative;
  border-top: 1px solid var(--vca-border-fine);
}
.vca-section--alt {
  background-color: var(--vca-bg-2);
}
.vca-section--pillars {
  background: var(--vca-bg-pillars);
}
.vca-section--design {
  background-color: var(--vca-bg-alt);
}

/* ================================================================
   6. スクロールリビール
   ================================================================ */
.vca-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.vca-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.vca-reveal[data-delay="1"] { transition-delay: 0.10s; }
.vca-reveal[data-delay="2"] { transition-delay: 0.20s; }
.vca-reveal[data-delay="3"] { transition-delay: 0.30s; }
.vca-reveal[data-delay="4"] { transition-delay: 0.40s; }
.vca-reveal[data-delay="5"] { transition-delay: 0.50s; }
.vca-reveal[data-delay="6"] { transition-delay: 0.60s; }

/* ================================================================
   7. HERO / COVER
   ================================================================ */
.vca-cover {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem,10vw,9rem) clamp(1.25rem,5vw,2.5rem) clamp(7rem,12vw,11rem);
  text-align: center;
  overflow: hidden;
}

.vca-cover__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vca-cover__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(90,112,80,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(175deg,
      rgba(12,26,9,0.72) 0%,
      rgba(16,24,8,0.66) 40%,
      rgba(12,18,9,0.60) 70%,
      rgba(7,13,5,0.78) 100%);
}

.vca-cover__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.vca-cover__bg-particles {
  position: absolute;
  inset: 0;
}

.vca-cover__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 100%;
}

.vca-cover__ornament {
  font-family: var(--vca-font-display);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vca-gold);
  opacity: 0.8;
  display: block;
  margin-bottom: 2rem;
  animation: vcaFadeUp 1s ease 0.1s both;
}

.vca-cover__title-en {
  font-family: var(--vca-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(13px, 1.7vw, 17px);
  letter-spacing: 0.18em;
  color: var(--vca-gold-light);
  opacity: 0.7;
  margin-bottom: 1.2rem;
  animation: vcaFadeUp 1s ease 0.2s both;
}

.vca-cover__title {
  font-family: var(--vca-font-sans);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.35;
  color: var(--vca-gold-pale);
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
  animation: vcaFadeUp 1s ease 0.3s both;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .vca-cover__title {
    white-space: normal;
    font-size: clamp(1.5rem, 7.5vw, 2rem);
    letter-spacing: 0.03em;
  }
}

.vca-cover__subtitle {
  font-family: var(--vca-font-sans);
  font-weight: 300;
  font-size: clamp(13px, 1.7vw, 16px);
  color: var(--vca-olive-pale);
  letter-spacing: 0.14em;
  margin-bottom: 3rem;
  animation: vcaFadeUp 1s ease 0.4s both;
}

.vca-cover__rule {
  width: 160px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vca-gold), transparent);
  margin: 0 auto 2.5rem;
  animation: vcaFadeUp 1s ease 0.5s both;
}

.vca-cover__lead {
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 300;
  color: rgba(228,220,192,0.85);
  line-height: 2;
  margin-bottom: 0;
  animation: vcaFadeUp 1s ease 0.6s both;
}

.vca-cover__lead-accent {
  font-weight: 500;
  color: var(--vca-gold-bright);
}

.vca-cover__cta-wrap {
  margin-top: 3rem;
  animation: vcaFadeUp 1s ease 0.8s both;
}

.vca-cover__scroll-hint {
  position: absolute;
  bottom: clamp(2rem, 5vw, 4rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: vcaFadeUp 1s ease 1.0s both;
}

.vca-cover__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--vca-gold), transparent);
  animation: vcaScrollPulse 2s ease-in-out infinite;
}

.vca-cover__scroll-label {
  font-family: var(--vca-font-display);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--vca-olive-pale);
  opacity: 0.5;
}

/* ================================================================
   8. セクション見出し共通
   ================================================================ */
.vca-section__label {
  font-family: var(--vca-font-display);
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--vca-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.vca-section__number {
  font-family: var(--vca-font-display);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: -1.2rem;
  display: block;
  user-select: none;
}

#vca-root h2.vca-section__title {
  font-family: var(--vca-font-sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--vca-gold-pale);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--vca-border);
  position: relative;
}

#vca-root h2.vca-section__title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--vca-gold);
}

#vca-root h3 {
  font-family: var(--vca-font-sans);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--vca-olive-pale);
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

#vca-root h4 {
  font-family: var(--vca-font-sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--vca-gold);
  text-transform: uppercase;
  margin: 1.8rem 0 0.75rem;
}

#vca-root p {
  font-size: clamp(0.9rem, 1.6vw, 1.0625rem);
  color: var(--vca-text-2);
  line-height: 2;
  margin-bottom: 1.25rem;
}

#vca-root strong {
  font-weight: 500;
  color: var(--vca-text);
}

/* ================================================================
   9. Lead / Pull Quote
   ================================================================ */
.vca-lead {
  font-family: var(--vca-font-sans);
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
  font-weight: 300;
  color: var(--vca-text);
  line-height: 2;
  margin-bottom: 2.5rem;
}

.vca-pull-quote {
  border-left: 3px solid var(--vca-gold) !important;
  padding: 1.5rem 1.75rem !important;
  margin: 2.5rem 0 !important;
  background: var(--vca-bg-card) !important;
  border-radius: 0 var(--vca-radius) var(--vca-radius) 0;
  position: relative;
  overflow: hidden;
}

.vca-pull-quote::before {
  content: '\201C';
  font-family: var(--vca-font-display);
  font-size: 100px;
  color: var(--vca-gold);
  position: absolute;
  top: -16px;
  left: 14px;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}

.vca-pull-quote p {
  font-family: var(--vca-font-sans);
  font-size: clamp(0.9375rem, 1.8vw, 1.1875rem) !important;
  font-weight: 400;
  color: var(--vca-text) !important;
  line-height: 2;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

/* ================================================================
   10. Highlight Box
   ================================================================ */
.vca-highlight-box {
  background: linear-gradient(135deg, #1d3019 0%, #243825 100%);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--vca-gold-pale);
  padding: clamp(2rem,4vw,3rem);
  border-radius: var(--vca-radius);
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.vca-highlight-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.vca-highlight-box p {
  color: var(--vca-gold-pale) !important;
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem) !important;
  line-height: 2;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

.vca-highlight-box strong {
  color: var(--vca-gold-bright) !important;
}

/* ================================================================
   11. Keyword Mega
   ================================================================ */
.vca-keyword-mega {
  font-family: var(--vca-font-sans);
  font-size: clamp(1.0625rem, 2.5vw, 1.625rem);
  font-weight: 500;
  color: var(--vca-text);
  line-height: 1.7;
  padding: 2rem 0;
  border-top: 1px solid var(--vca-border);
  border-bottom: 1px solid var(--vca-border);
  margin: 2.5rem 0;
  text-align: center;
}

.vca-keyword-mega em {
  font-style: normal;
  color: var(--vca-gold);
  border-bottom: 2px solid rgba(201,168,76,0.5);
  padding-bottom: 2px;
}

/* ================================================================
   12. Pillars
   ================================================================ */
.vca-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin: 3rem clamp(0rem, 2vw, 2rem);
  border: 1px solid var(--vca-border);
  background: var(--vca-border);
}

.vca-pillar {
  padding: clamp(2rem,4vw,2.5rem);
  background: var(--vca-bg-card);
  transition: background var(--vca-transition);
  position: relative;
  overflow: hidden;
}

.vca-pillar:hover {
  background: #243a20;
}

.vca-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--vca-olive), var(--vca-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vca-pillar:hover::before {
  transform: scaleX(1);
}

.vca-pillar__number {
  font-family: var(--vca-font-display);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: var(--vca-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.vca-pillar__title {
  font-family: var(--vca-font-sans);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--vca-text);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.vca-pillar__sub {
  font-family: var(--vca-font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--vca-gold);
  margin-bottom: 1rem;
}

.vca-pillar__body {
  font-size: 0.875rem;
  color: var(--vca-text-3);
  line-height: 1.95;
  margin: 0;
}

/* ================================================================
   13. Value Grid / Card
   ================================================================ */
.vca-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.vca-value-grid--sixcol {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.vca-value-card {
  border: 1px solid var(--vca-border);
  padding: 1.75rem 1.5rem;
  background: var(--vca-bg-card);
  position: relative;
  transition: transform var(--vca-transition), box-shadow var(--vca-transition), border-color var(--vca-transition);
  border-radius: var(--vca-radius);
}

.vca-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px rgba(201,168,76,0.08);
}

.vca-value-card__icon {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  display: block;
}

.vca-value-card__type {
  font-family: var(--vca-font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--vca-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.vca-value-card__name {
  font-family: var(--vca-font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--vca-text);
  margin-bottom: 0.5rem;
}

.vca-value-card__desc {
  font-size: 0.8125rem;
  color: var(--vca-text-3);
  line-height: 1.85;
  margin: 0;
}

/* ================================================================
   14. Competency Grid / Card
   ================================================================ */
.vca-competency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.vca-competency-grid--four {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.vca-competency-card {
  background: var(--vca-bg-card);
  border: 1px solid var(--vca-border-fine);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--vca-transition), border-color var(--vca-transition);
  border-radius: var(--vca-radius);
  overflow: hidden;
}

.vca-competency-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.vca-competency-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--vca-olive), var(--vca-gold), var(--vca-olive-mid));
  opacity: 0;
  transition: opacity var(--vca-transition);
}

.vca-competency-card:hover::after {
  opacity: 1;
}

.vca-competency-icon {
  font-family: var(--vca-font-display);
  font-size: 2rem;
  color: var(--vca-gold);
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.vca-competency-title {
  font-family: var(--vca-font-sans);
  font-weight: 500;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: var(--vca-text);
  margin-bottom: 0.25rem;
}

.vca-competency-en {
  font-family: var(--vca-font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--vca-gold);
  margin-bottom: 1rem;
  display: block;
}

.vca-competency-desc {
  font-size: 0.875rem;
  color: var(--vca-text-3);
  line-height: 1.95;
  margin: 0;
}

/* ================================================================
   15. Styled List / Numbered List
   ================================================================ */
ul.vca-styled-list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

ul.vca-styled-list li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  position: relative;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--vca-text-2);
  border-bottom: 1px solid var(--vca-border-fine);
  line-height: 1.75;
}

ul.vca-styled-list li:last-child { border-bottom: none; }

ul.vca-styled-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.85rem;
  color: var(--vca-gold);
  font-size: 7px;
}

ol.vca-numbered-list {
  list-style: none;
  counter-reset: step;
  margin: 1.5rem 0;
  padding: 0;
}

ol.vca-numbered-list li {
  counter-increment: step;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-bottom: 1px solid var(--vca-border-fine);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--vca-text-2);
  line-height: 1.85;
}

ol.vca-numbered-list li:last-child { border-bottom: none; }

ol.vca-numbered-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-family: var(--vca-font-display);
  font-size: 1.25rem;
  color: var(--vca-gold);
  font-style: italic;
  line-height: 1;
}

/* ================================================================
   16. Table
   ================================================================ */
.vca-table-wrap {
  overflow-x: auto;
  margin-block: 1.5rem;
  border-radius: var(--vca-radius);
  border: 1px solid var(--vca-border);
}

.vca-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: transparent !important;
}

.vca-table thead th {
  background: var(--vca-bg-card) !important;
  color: var(--vca-gold-bright);
  padding: 0.875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--vca-border);
  font-family: var(--vca-font-sans);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.vca-table tbody td {
  background: transparent !important;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  color: var(--vca-text-2);
  vertical-align: top;
  line-height: 1.7;
}

.vca-table tbody td:first-child {
  color: var(--vca-text);
  font-weight: 500;
  white-space: nowrap;
}

.vca-table tbody tr:last-child td { border-bottom: none; }

.vca-table tbody tr:hover td {
  background: rgba(201,168,76,0.04) !important;
}

/* 背景白抜き解消：淡いゴールデングリーン行 */
.vca-table tbody tr.vca-table-row--highlight td {
  background: rgba(160, 185, 100, 0.10) !important;
  color: var(--vca-text) !important;
}
.vca-table tbody tr.vca-table-row--highlight td:first-child {
  color: var(--vca-gold-bright) !important;
}
.vca-table tbody tr.vca-table-row--highlight:hover td {
  background: rgba(160, 185, 100, 0.18) !important;
}

/* ================================================================
   17. Category Flow / Tag
   ================================================================ */
.vca-category-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.vca-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--vca-bg-card);
  border: 1px solid var(--vca-border);
  font-family: var(--vca-font-sans);
  font-size: 0.8125rem;
  color: var(--vca-text-2);
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  cursor: default;
  border-radius: var(--vca-radius-sm);
}

.vca-category-tag:hover {
  background: rgba(201,168,76,0.12);
  color: var(--vca-gold-bright);
  border-color: rgba(201,168,76,0.4);
}

.vca-category-tag::before {
  content: '◇';
  font-size: 8px;
  color: var(--vca-gold);
}

/* ================================================================
   18. Shift Grid
   ================================================================ */
.vca-shift-stack {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vca-shift-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}

.vca-shift-from,
.vca-shift-to {
  padding: 1.125rem 1.375rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

.vca-shift-from {
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--vca-border-fine);
  color: var(--vca-text-3);
}

.vca-shift-to {
  background: rgba(201,168,76,0.07);
  border-left: 2px solid var(--vca-gold);
  color: var(--vca-text);
  font-weight: 500;
}

.vca-shift-arrow {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 1.25rem;
  color: var(--vca-gold);
  background: rgba(201,168,76,0.04);
}

/* ================================================================
   19. Evidence Badge
   ================================================================ */
.vca-evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.vca-evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--vca-border-fine);
  font-family: var(--vca-font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--vca-text-3);
  border-radius: var(--vca-radius-sm);
}

.vca-evidence-badge::before {
  content: '※';
  color: var(--vca-gold);
  font-size: 0.75rem;
}

/* ================================================================
   20. Divider
   ================================================================ */
.vca-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 3.5rem 0;
}

.vca-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vca-border), transparent);
}

.vca-divider__ornament {
  font-family: var(--vca-font-display);
  font-size: 1.125rem;
  color: var(--vca-gold);
  font-style: italic;
  opacity: 0.6;
}

/* ================================================================
   21. CTA ボタン共通
   ================================================================ */
.vca-cta-btn-wrap {
  text-align: center;
}

.vca-cta-btn {
  display: inline-block;
  padding: 1rem 2.75rem;
  font-family: var(--vca-font-sans);
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: var(--vca-radius);
  border: 1px solid rgba(255,255,255,0.12);
  transition: filter var(--vca-transition), transform var(--vca-transition), box-shadow var(--vca-transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.vca-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.vca-cta-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.2);
}

.vca-cta-btn--closing {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  padding: 1.125rem 3.25rem;
}

.vca-cta-btn__sub {
  font-family: var(--vca-font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--vca-text-3) !important;
  margin: 0.75rem 0 0 !important;
  text-align: center;
}

/* ================================================================
   22. Mid CTA Section
   ================================================================ */
.vca-section--cta-mid {
  background: linear-gradient(160deg, #101f0d 0%, #0c1a09 100%);
  border-top: 1px solid var(--vca-border);
  border-bottom: 1px solid var(--vca-border);
}

.vca-cta-mid {
  text-align: center;
  padding: 1rem 0;
}

.vca-cta-mid__label {
  font-family: var(--vca-font-display);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vca-gold);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.vca-cta-mid__copy {
  font-family: var(--vca-font-sans);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 300;
  color: var(--vca-text) !important;
  line-height: 1.9;
  margin-bottom: 2rem !important;
}

/* ================================================================
   23. Closing Section
   ================================================================ */
.vca-closing {
  background: linear-gradient(160deg, #131f0e 0%, #0a1108 100%);
  padding-block: clamp(4.5rem, 9vw, 9rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--vca-border);
}

.vca-closing__bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.vca-closing .vca-container {
  position: relative;
  z-index: 1;
}

.vca-closing__label {
  font-family: var(--vca-font-display);
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--vca-gold);
  display: block;
  margin-bottom: 2rem;
}

#vca-root h2.vca-closing__title {
  font-family: var(--vca-font-sans);
  font-weight: 300;
  font-size: clamp(1.375rem, 3.5vw, 2.5rem);
  color: var(--vca-gold-pale);
  line-height: 1.75;
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

#vca-root h2.vca-closing__title::after { display: none; }

.vca-closing__rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vca-gold), transparent);
  margin: 2.5rem auto;
}

.vca-closing__body {
  max-width: 640px;
  margin: 0 auto 2.5rem !important;
  font-family: var(--vca-font-sans);
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem) !important;
  font-weight: 300;
  color: rgba(228,220,192,0.78) !important;
  line-height: 2.25;
}

.vca-closing__body em {
  font-style: normal;
  color: var(--vca-gold-bright);
  border-bottom: 1px solid rgba(226,200,114,0.4);
}

/* ================================================================
   24. Hero Particle (canvas/dots)
   ================================================================ */
.vca-cover__bg-particles canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ================================================================
   25. ANIMATIONS
   ================================================================ */
@keyframes vcaFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ================================================================
   26. RESPONSIVE — Tablet (768px+)
   ================================================================ */
@media (min-width: 768px) {
  .vca-competency-grid { gap: 1.5rem; }
  .vca-value-grid { gap: 1.5rem; }
  .vca-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   27. RESPONSIVE — Desktop (1024px+)
   ================================================================ */
@media (min-width: 1024px) {
  .vca-competency-grid--four { grid-template-columns: repeat(2, 1fr); }
  .vca-value-grid             { grid-template-columns: repeat(2, 1fr); }
  .vca-value-grid--sixcol    { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   28. RESPONSIVE — Mobile (<767px)
   ================================================================ */
@media (max-width: 767px) {
  .vca-pillars { grid-template-columns: 1fr; }
  .vca-competency-grid,
  .vca-competency-grid--four,
  .vca-value-grid,
  .vca-value-grid--sixcol { grid-template-columns: 1fr; }
  .vca-shift-row { grid-template-columns: 1fr; }
  .vca-shift-arrow { display: none; }
  .vca-shift-from { border-left-width: 2px; margin-bottom: 2px; }
  .vca-shift-to { border-left-width: 2px; }
  .vca-highlight-box { padding: 1.5rem; }
  .vca-table-wrap { font-size: 0.8125rem; }
  .vca-table thead th,
  .vca-table tbody td { padding: 0.625rem 0.75rem; }
}

/* ================================================================
   29. Scroll Padding for fixed header
   ================================================================ */
html.value-creation-architecture-html {
  scroll-padding-top: 70px;
}

/* ================================================================
   30. セクション画像（本番確定版）
   ================================================================ */

/* ── 共通フィギュア ── */
#vca-root .vca-section-img {
  margin: 2.5rem 0;
  overflow: hidden;
  border-radius: var(--vca-radius);
  border: 1px solid var(--vca-border);
  line-height: 0;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.12),
    0 20px 60px rgba(0,0,0,.5),
    0 0 32px rgba(201,168,76,.05);
}
#vca-root .vca-section-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#vca-root .vca-section-img:hover img {
  transform: scale(1.025);
}

/* ── 広幅バリエーション（Section 02末尾・21:9フルブリード） ── */
#vca-root .vca-section-img--wide {
  margin-inline: calc(-1 * clamp(1.25rem, 5vw, 2.5rem));
  border-radius: 0;
  border-left: none;
  border-right: none;
  max-height: 480px;
}
#vca-root .vca-section-img--wide img {
  max-height: 480px;
  object-fit: cover;
  /* 21:9 の左右端をトリム */
  object-position: center center;
}

/* ── バナータイプ（Section 04直前・3:1パノラマ） ── */
#vca-root .vca-section-img--banner {
  margin-inline: calc(-1 * clamp(1.25rem, 5vw, 2.5rem));
  border-radius: 0;
  border-left: none;
  border-right: none;
  max-height: 320px;
}
#vca-root .vca-section-img--banner img {
  max-height: 320px;
  object-fit: cover;
  object-position: center 40%;
}

/* ── Hero 背景画像（画像01 / 16:9） ── */
.vca-cover--has-bg {
  position: relative;
}
.vca-cover__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.vca-cover__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.40;
  filter: brightness(0.58) saturate(0.70);
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: transform;
}
.vca-cover--has-bg.is-loaded .vca-cover__bg-img img {
  opacity: 0.60;
  transform: scale(1.00);
}

.vca-cover--has-bg .vca-cover__inner,
.vca-cover--has-bg .vca-cover__scroll-hint {
  position: relative;
  z-index: 2;
}

/* ── Closing 背景画像（画像05 / 縦2:3） ── */
.vca-closing--has-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.vca-closing__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.vca-closing__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 縦2:3 → 横長コンテナにフィット。人物が上方に来るよう上寄せ */
  object-position: center 28%;
  display: block;
  filter: brightness(0.25) saturate(0.55) contrast(1.10);
  will-change: transform;
  animation: vcaKenBurnsClosing 22s ease-out both;
}
@keyframes vcaKenBurnsClosing {
  0%   { transform: scale(1.08) translateY(-8px); }
  100% { transform: scale(1.00) translateY(0);    }
}
/* 多層グラデーションオーバーレイ */
.vca-closing--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 80% 35% at 50% 5%,
      rgba(201,168,76,0.08) 0%,
      transparent 60%
    ),
    linear-gradient(
      168deg,
      rgba(12,18,9,0.05)  0%,
      rgba(12,18,9,0.50) 28%,
      rgba(12,18,9,0.88) 58%,
      rgba(12,18,9,0.98) 80%,
      rgba(12,18,9,1.00) 100%
    );
  pointer-events: none;
}
.vca-closing--has-bg .vca-container,
.vca-closing--has-bg .vca-closing__bg-glow {
  position: relative;
  z-index: 2;
}

/* ── モバイル調整 ── */
@media (max-width: 767px) {
  #vca-root .vca-section-img--wide,
  #vca-root .vca-section-img--banner {
    max-height: 200px;
  }
  .vca-cover__bg-img img {
    object-position: center center;
  }
  /* 縦長画像：スマホでは顔（上部）が見えるよう調整 */
  .vca-closing__bg-img img {
    object-position: center 18%;
  }
}