/* =====================================================
   企業声明特設ページ — ホワイト基調リデザイン CSS
   ===================================================== */

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

:root {
  /* Brand Colors */
  --c-navy: #0d2d4f;
  --c-blue-deep: #1155a0;
  --c-blue: #1a6fc4;
  --c-blue-bright: #2b8de8;
  --c-blue-light: #5aaff0;
  --c-gold: #c8931a;
  --c-gold-light: #e8b84b;

  /* Old/New */
  --c-old: #8a9bb0;
  --c-old-bg: #f5f7fa;
  --c-new: #1155a0;
  --c-new-bg: #eef5ff;

  /* Semantic */
  --c-danger: #c0392b;
  --c-success: #1a7a43;
  --c-green: #1a7a43;
  --c-purple: #5c3ab2;

  /* Neutral — 白基調 */
  --c-text: #0d2d4f;
  --c-text-2: #2c4a68;
  --c-text-3: #6b7e96;
  --c-border: #d8e6f3;
  --c-bg: #f4f8fd;
  --c-white: #ffffff;

  /* Fonts */
  --f-sans: 'Noto Sans JP', sans-serif;
  --f-serif: 'Noto Serif JP', serif;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(17, 85, 160, .05);
  --sh-sm: 0 2px 12px rgba(17, 85, 160, .08);
  --sh-md: 0 6px 28px rgba(17, 85, 160, .10);
  --sh-lg: 0 12px 44px rgba(17, 85, 160, .13);
  --sh-xl: 0 24px 64px rgba(17, 85, 160, .16);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --tr: .28s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 68px;
}

body {
  font-family: var(--f-sans);
  background: var(--c-white);
  color: var(--c-text);
  line-height: 1.85;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 68px;
}

/* ---- Layout ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.container.narrow {
  max-width: 800px;
}

/* =====================================================
   STICKY BANNER
   ===================================================== */
.sticky-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-left: 4px solid var(--c-blue);
  border-radius: 12px;
  box-shadow: var(--sh-lg);
  padding: 0 6px 0 0;
  white-space: nowrap;
  max-width: 320px;
  animation: banner-up .6s cubic-bezier(.4, 0, .2, 1) both;
  transition: opacity .3s, transform .3s;
}

@keyframes banner-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.sticky-banner__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  text-decoration: none;
  color: var(--c-text);
}

.sticky-banner__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.sticky-banner__text {
  font-size: 12px;
  font-weight: 700;
  white-space: normal;
  line-height: 1.4;
  color: var(--c-text);
}

.sticky-banner__arrow {
  font-size: 11px;
  color: var(--c-blue);
  flex-shrink: 0;
}

.sticky-banner__close {
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--c-text-3);
  cursor: pointer;
  transition: var(--tr);
  margin-left: 4px;
  flex-shrink: 0;
}

.sticky-banner__close:hover {
  background: var(--c-bg);
  color: var(--c-text);
}

@media(max-width:600px) {
  .sticky-banner {
    bottom: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--tr);
  width: 100%;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-company {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .02em;
  line-height: 1.55;
  max-width: 220px;
  border-left: 3px solid var(--c-blue-bright);
  padding-left: 10px;
}

.header-badge span {
  background: var(--c-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 99px;
  letter-spacing: .06em;
}

/* =====================================================
   HEADER NAV
   ===================================================== */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav__link {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: .02em;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.header-nav__link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--c-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.header-nav__link:hover {
  color: var(--c-blue);
  background: #f0f6ff;
}

.header-nav__link:hover::after,
.header-nav__link.is-active::after {
  transform: scaleX(1);
}

.header-nav__link.is-active {
  color: var(--c-blue);
}

/* ハンバーガーボタン */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--c-blue-deep);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.header-hamburger:hover {
  background: #f0f6ff;
  border-color: var(--c-blue-light);
}

.header-hamburger__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-blue-deep);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s;
}

/* ✕ 変形 */
.header-hamburger.is-open .header-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-hamburger.is-open .header-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-open .header-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* オーバーレイ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 190;
  opacity: 0;
  transition: opacity .3s;
}

.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* =====================================================
   レスポンシブ：ヘッダーナビ ≤ 860px
   ===================================================== */
@media (max-width: 860px) {

  /* backdrop-filter が position:fixed の子要素をビューポートではなく
     親要素に対して配置してしまう問題を回避 */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-hamburger {
    display: flex;
  }

  .header-badge {
    display: none;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(72vw, 300px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
    z-index: 210;
    padding: 80px 0 40px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .header-nav__link {
    width: 100%;
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 0;
    border-bottom: 1px solid var(--c-border);
  }

  .header-nav__link::after {
    left: 28px;
    right: 28px;
    bottom: 12px;
  }
}

/* =====================================================
   HERO — 参考画像準拠リデザイン（中央揃え・ロゴ上部大・カード下部）
   ===================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  height: calc(100vh - 68px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  background: #ffffff;
  box-sizing: border-box;
}

@media(max-height: 800px) {
  .hero {
    height: auto;
    min-height: calc(100vh - 68px);
  }
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* 薄いグリッド線 */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(27, 111, 196, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 111, 196, .035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---- 全体縦並びレイアウト ---- */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 32px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  text-align: center;
}

@media(max-width: 768px) {
  .hero-inner {
    padding: 4px 16px 6px;
    gap: 0px;
  }
}

/* ---- 上部アナウンス帯 ---- */
.hero-announce {
  font-size: 13px;
  font-weight: 700;
  color: #7a5000;
  letter-spacing: .14em;
  padding: 5px 22px;
  background: rgba(255, 220, 120, .25);
  border: 1px solid rgba(200, 147, 26, .35);
  border-radius: 99px;
  margin-bottom: 6px;
  animation: card-up .5s .0s both;
}

@media(max-width: 768px) {
  .hero-announce {
    font-size: 11px;
    padding: 4px 14px;
  }
}


/* ---- ロゴブロック（上部・大きく） ---- */
.hero-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: card-up .7s .05s both;
  margin-bottom: 0px;
}

.hero-logo-img {
  width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(17, 85, 160, .14));
  transition: filter .3s;
  margin: 0 auto;
}

.hero-logo-img:hover {
  filter: drop-shadow(0 10px 30px rgba(17, 85, 160, .26));
}

.hero-logo-name {
  display: none;
}

@media(max-width: 768px) {
  .hero-logo-img {
    width: 200px;
  }
}

/* ---- キャッチコピーブロック（中央） ---- */
.hero-catch-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: card-up .7s .2s both;
  margin-top: 2px;
  border: none;
  padding-bottom: 0;
}

/* 毛筆明朝キャッチコピー */
.hero-catch {
  font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.4;
  letter-spacing: .10em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .10);
  position: relative;
}

.hero-catch-line {
  display: block;
  white-space: nowrap;
}

.hero-catch-line--accent {
  color: #000000;
  position: relative;
}

.hero-catch-line--accent::after {
  display: none;
}

/* サブテキスト */
.hero-sub {
  font-size: 13px;
  color: var(--c-text-3);
  letter-spacing: .12em;
  font-weight: 500;
  border: 1px solid var(--c-border);
  padding: 5px 18px;
  border-radius: 99px;
  background: rgba(27, 111, 196, .04);
}

/* ---- CTAボタン ---- */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--tr);
  box-shadow: 0 4px 18px rgba(27, 111, 196, .32);
  letter-spacing: .04em;
}

.hero-btn:hover {
  background: var(--c-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(27, 111, 196, .42);
}

.hero-btn i {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--c-blue);
  color: var(--c-blue);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--tr);
  background: transparent;
  letter-spacing: .04em;
}

.hero-btn-ghost:hover {
  background: var(--c-new-bg);
  transform: translateY(-2px);
}

/* ---- 3点メッセージ（下部・横並び） ---- */
.hero-msgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  animation: card-up .7s .38s both;
  margin-top: 6px;
}

@media(max-width: 860px) {
  .hero-msgs {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.hero-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 10px 8px;
  border-radius: var(--radius);
  border: 1px solid #e8eef6;
  background: var(--c-white);
  box-shadow: 0 2px 12px rgba(27, 111, 196, .07);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.hero-msg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.hero-msg:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27, 111, 196, .16);
}

/* 番号バッジ */
.hero-msg-num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  opacity: .22;
  font-family: var(--f-sans);
  line-height: 1;
}

.hero-msg--blue .hero-msg-num {
  color: #2563eb;
}

.hero-msg--yellow .hero-msg-num {
  color: #d97706;
}

.hero-msg--red .hero-msg-num {
  color: #dc2626;
}

/* 詳細リンク */
.hero-msg-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 99px;
  padding: 4px 12px;
  margin-top: 2px;
  transition: gap .2s, opacity .2s;
  opacity: .7;
}

.hero-msg--blue .hero-msg-more {
  color: #2563eb;
  background: #eff6ff;
}

.hero-msg--yellow .hero-msg-more {
  color: #b45309;
  background: #fffbeb;
}

.hero-msg--red .hero-msg-more {
  color: #dc2626;
  background: #fff1f2;
}

.hero-msg:hover .hero-msg-more {
  opacity: 1;
  gap: 8px;
}

.hero-msg--blue {
  border-color: rgba(37, 99, 235, .25);
}

.hero-msg--blue::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.hero-msg--yellow {
  border-color: rgba(217, 119, 6, .25);
}

.hero-msg--yellow::before {
  background: linear-gradient(90deg, #d97706, #fcd34d);
}

.hero-msg--red {
  border-color: rgba(220, 38, 38, .25);
}

.hero-msg--red::before {
  background: linear-gradient(90deg, #dc2626, #f87171);
}

.hero-msg-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.hero-msg--blue .hero-msg-icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
}

.hero-msg--yellow .hero-msg-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

.hero-msg--red .hero-msg-icon {
  background: linear-gradient(135deg, #fee2e2, #fca5a5);
  color: #dc2626;
}

.hero-msg-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.35;
  margin: 0;
}

/* ---- 金メダル・配当バッジ ---- */
.hero-award-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff8e1 0%, #fef0b0 35%, #fde068 65%, #fcd040 100%);
  border: 2px solid rgba(200, 147, 26, .70);
  border-radius: 20px;
  padding: 16px 28px;
  margin: 8px 0 6px;
  box-shadow:
    0 6px 28px rgba(200, 147, 26, .35),
    0 2px 8px rgba(200, 147, 26, .20),
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(180, 120, 0, .15);
  animation: card-up .7s .32s both;
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-award-badge::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 180%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  animation: badgeShine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeShine {
  0% {
    left: -60%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

.hero-laurel-svg {
  width: 110px;
  height: 88px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(160, 100, 0, .30));
  animation: laurelGlow 3s ease-in-out infinite alternate;
}

@keyframes laurelGlow {
  from {
    filter: drop-shadow(0 2px 8px rgba(160, 100, 0, .20));
  }

  to {
    filter: drop-shadow(0 4px 14px rgba(210, 150, 0, .55));
  }
}

@media(max-width: 768px) {
  .hero-laurel-svg {
    width: 80px;
    height: 64px;
  }
}

.hero-award-laurel--left {
  transform: scaleX(-1);
}

.hero-award-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.hero-award-medal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 40%, #b45309 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(180, 83, 9, .35), inset 0 1px 0 rgba(255, 255, 255, .3);
  flex-shrink: 0;
  font-family: var(--f-serif);
  letter-spacing: .05em;
}

.hero-award-text {
  text-align: left;
}

.hero-award-main {
  font-size: 12px;
  font-weight: 800;
  color: #7c4a00;
  margin: 0;
  line-height: 1.4;
  letter-spacing: .04em;
}

.hero-award-main strong {
  color: #92400e;
}

.hero-award-sub {
  font-size: 10px;
  color: #b45309;
  font-weight: 600;
  margin: 1px 0 0;
  letter-spacing: .06em;
}

.hero-award-simple {
  font-size: 15px;
  font-weight: 900;
  color: #5c3100;
  margin: 0;
  line-height: 1.6;
  letter-spacing: .08em;
  text-align: center;
  text-shadow: 0 1px 4px rgba(180, 100, 0, .18);
  font-family: 'Noto Serif JP', serif;
}

.hero-award-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: opacity .2s, transform .2s;
}

.hero-award-sub-text {
  font-size: 13px;
  font-weight: 600;
  color: #7c4a00;
  letter-spacing: .06em;
  opacity: .85;
}

.hero-award-main-text {
  font-size: 17px;
  font-weight: 900;
  color: #1155a0;
  letter-spacing: .08em;
  background: linear-gradient(90deg, #1155a0, #1a6fc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid rgba(17, 85, 160, .25);
  padding-bottom: 2px;
}

.hero-award-main-text em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-award-link:hover {
  opacity: .75;
  transform: translateY(-1px);
}

@media(max-width: 768px) {
  .hero-award-badge {
    padding: 12px 14px;
    gap: 10px;
    max-width: 100%;
  }

  .hero-award-laurel {
    font-size: 22px;
  }

  .hero-award-simple {
    font-size: 12px;
    letter-spacing: .05em;
  }
}

/* スマホ縦並びカード対応 — ファーストビューに収める */
@media(max-width: 860px) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding-bottom: 12px;
  }

  .hero-inner {
    padding: 4px 14px 6px;
  }

  .hero-logo-img {
    width: 180px !important;
  }

  .hero-catch {
    font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
  }

  .hero-msgs {
    margin-top: 4px;
    gap: 5px;
  }

  .hero-msg {
    padding: 6px 8px;
    gap: 2px;
  }

  .hero-msg-title {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .hero-msg-more {
    font-size: 10px;
    padding: 3px 10px;
  }

  .hero-msg-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}

/* アニメーション共通 */
@keyframes card-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--c-blue));
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

.hero-scroll-label {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--c-text-3);
  font-weight: 600;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 2;
}

/* 旧KPIカード（非使用・念のため残す） */
.hero-kpi-card {
  display: none;
}

.hero-cards {
  display: none;
}

/* =====================================================
   INTRO STATEMENT
   ===================================================== */
.intro-statement {
  padding: 100px 0;
  background: var(--c-white);
  position: relative;
}

.intro-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-light), var(--c-blue));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}

.intro-text {
  padding: 72px 60px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.intro-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .08);
}

.intro-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, .15) 0%, transparent 30%);
}

.intro-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.intro-photo-wrap:hover img {
  transform: scale(1.03);
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--c-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--c-new-bg);
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(27, 111, 196, .2);
  width: fit-content;
}

.intro-heading {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 32px;
  color: var(--c-text);
  padding-left: 20px;
  border-left: 4px solid var(--c-blue);
}

.intro-body p {
  margin-bottom: 18px;
  color: var(--c-text-2);
  font-size: 17px;
  line-height: 2;
}

.intro-body strong {
  color: var(--c-blue);
  font-weight: 700;
  background: rgba(27, 111, 196, .07);
  padding: 2px 6px;
  border-radius: 4px;
}

@media(max-width:900px) {
  .intro-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .intro-photo {
    height: 360px;
    border-radius: 0;
    overflow: hidden;
  }

  .intro-photo-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .intro-text {
    padding: 52px 24px;
  }
}

/* =====================================================
   FORK SECTION — 未来の分岐点
   ===================================================== */
.fork-section {
  padding: 104px 0 112px;
  background: #ffffff;
  border-top: 1px solid var(--c-border);
  overflow: hidden;
}

/* ヘッダー */
.fork-header {
  text-align: center;
  margin-bottom: 64px;
}

.fork-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fork-eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--c-blue-light);
  opacity: .5;
}

.fork-title {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.45;
  margin-bottom: 14px;
}

.fork-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fork-lead {
  font-size: 16px;
  color: var(--c-text-3);
  line-height: 1.9;
}

/* ===== 現在地ブロック ===== */
.fork-now {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
}

.fork-now-inner {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  color: var(--c-navy);
  border-radius: var(--radius);
  padding: 28px 40px;
  text-align: center;
  min-width: 240px;
  box-shadow: var(--sh-lg);
  border: 1.5px solid rgba(37, 99, 235, .2);
  position: relative;
  z-index: 2;
}

.fork-now-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37, 99, 235, .12);
  border: 1.5px solid rgba(37, 99, 235, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--c-blue);
  margin: 0 auto 14px;
}

.fork-now-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fork-now-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 6px;
}

.fork-now-sub {
  font-size: 13px;
  color: var(--c-text-2);
  line-height: 1.7;
}

.fork-now-arrow {
  font-size: 18px;
  color: var(--c-blue-light);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowBounce 1.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ===== 分岐ライン ===== */
.fork-branch {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  position: relative;
}

.fork-branch-line {
  flex: 1;
  height: 2px;
  position: relative;
}

.fork-branch-line--left {
  background: linear-gradient(90deg, transparent 0%, #ef4444 100%);
  border-radius: 2px 0 0 2px;
}

.fork-branch-line--right {
  background: linear-gradient(90deg, #1a6fc4 0%, transparent 100%);
  border-radius: 0 2px 2px 0;
}

.fork-branch-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--c-text-3);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 20px;
  border: 1px solid var(--c-border);
  border-radius: 99px;
  background: #fff;
  position: relative;
  z-index: 2;
}

/* ===== 2路線レイアウト ===== */
.fork-roads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

/* ===== 各路線カード ===== */
.fork-road {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.fork-road:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

/* ヘッド */
.fork-road-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}

/* ヒビSVGオーバーレイ */
.fork-crack-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.fork-road-badge,
.fork-road-head>div {
  position: relative;
  z-index: 2;
}

.fork-road--danger .fork-road-head {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
}

.fork-road--success .fork-road-head {
  background: linear-gradient(135deg, #0d2d4f 0%, #1155a0 50%, #1a6fc4 100%);
}



.fork-road-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fork-road-badge--danger {
  background: rgba(239, 68, 68, .2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, .3);
}

.fork-road-badge--success {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}

.fork-road-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.fork-road--danger .fork-road-label {
  color: rgba(255, 255, 255, .45);
}

.fork-road--success .fork-road-label {
  color: rgba(255, 255, 255, .55);
}

.fork-road-name {
  font-size: 17px;
  font-weight: 700;
}

.fork-road--danger .fork-road-name {
  color: #fca5a5;
}

.fork-road--success .fork-road-name {
  color: #fff;
}

/* リスト */
.fork-road-items {
  list-style: none;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  background: #fff;
}

.fork-road--danger .fork-road-items {
  background: #fff8f8;
}

.fork-road--success .fork-road-items {
  background: #f6faff;
}

.fork-road-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text-2);
  padding-bottom: 18px;
  border-bottom: 1px solid;
}

.fork-road--danger .fork-road-item {
  border-color: rgba(239, 68, 68, .1);
}

.fork-road--success .fork-road-item {
  border-color: rgba(26, 111, 196, .1);
}

.fork-road-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.fork-road-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.fork-road--danger .fork-road-item strong {
  color: #c0392b;
}

.fork-road--success .fork-road-item strong {
  color: var(--c-navy);
}

.fork-road-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fork-road-item-icon--bad {
  background: #fee2e2;
  color: #dc2626;
}

.fork-road-item-icon--good {
  background: #dbeafe;
  color: #1a6fc4;
}

/* フッターバナー */
.fork-road-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fork-road-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 6px,
      rgba(255, 255, 255, .5) 6px,
      rgba(255, 255, 255, .5) 7px);
}

.fork-road-footer--danger {
  background: linear-gradient(160deg, #1a0505 0%, #3b0a0a 100%);
}

.fork-road-footer--success {
  background: linear-gradient(160deg, #07192e 0%, #0d3a6e 100%);
}

.fork-road-footer-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.fork-road-footer--danger .fork-road-footer-label {
  color: rgba(255, 255, 255, .4);
}

.fork-road-footer--success .fork-road-footer-label {
  color: rgba(255, 255, 255, .4);
}

.fork-road-footer-result {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.fork-road-footer--danger .fork-road-footer-result {
  color: #fca5a5;
  text-shadow: 0 0 24px rgba(239, 68, 68, .5), 0 2px 8px rgba(0, 0, 0, .4);
}

.fork-road-footer--success .fork-road-footer-result {
  color: #93c5fd;
  text-shadow: 0 0 24px rgba(59, 130, 246, .55), 0 2px 8px rgba(0, 0, 0, .4);
}

/* ===== CTA ===== */
.fork-cta {
  margin-top: 64px;
  text-align: center;
  padding: 52px 40px 56px;
  background: linear-gradient(160deg, var(--c-navy) 0%, #1a5fa8 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
}

.fork-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .06) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .04) 0%, transparent 50%);
  pointer-events: none;
}

.fork-cta-text {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.65;
  letter-spacing: .05em;
  position: relative;
  z-index: 1;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

@media (max-width: 560px) {
  .fork-cta {
    padding: 36px 24px 40px;
  }

  .fork-cta-br {
    display: none;
  }
}

/* ===== レスポンシブ ≤ 760px ===== */
@media (max-width: 760px) {
  .fork-section {
    padding: 72px 0 80px;
  }

  .fork-roads {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fork-branch-line--left {
    background: linear-gradient(180deg, transparent 0%, #ef4444 100%);
  }

  .fork-branch-line--right {
    background: linear-gradient(180deg, #1a6fc4 0%, transparent 100%);
  }

  .fork-now-inner {
    min-width: unset;
    width: 100%;
    padding: 24px 20px;
  }
}

/* ---- 分岐タブ切替 ---- */
.fork-tab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 32px;
}

/* 線路画像＋ボタン横並びレイアウト */
.fork-rail-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 680px;
  position: relative;
}

.fork-rail-img-wrap {
  flex: 0 0 auto;
  width: 220px;
  pointer-events: none;
  user-select: none;
}

.fork-rail-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.75;
}

.fork-rail-block .fork-tab-btn {
  flex: 1;
  min-width: 0;
}

@media (max-width: 640px) {
  .fork-rail-img-wrap {
    width: 120px;
  }

  .fork-rail-block {
    gap: 0;
  }
}

.fork-tab-divider {
  font-size: 18px;
  font-weight: 900;
  color: #0d2d4f;
  letter-spacing: .18em;
  white-space: nowrap;
  position: relative;
  padding: 10px 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fork-tab-divider::before,
.fork-tab-divider::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1a6fc4);
  border-radius: 2px;
}

.fork-tab-divider::after {
  background: linear-gradient(90deg, #1a6fc4, transparent);
}

.fork-tab-btns {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  justify-content: center;
}

.fork-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .04em;
  background: #f1f5f9;
  color: #94a3b8;
  flex: 1;
}

.fork-tab-btn--danger {
  border-color: #fca5a5;
}

.fork-tab-btn--danger.fork-tab-active {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
  box-shadow: 0 4px 18px rgba(220, 38, 38, .35);
}

.fork-tab-btn--success {
  border-color: #93c5fd;
}

.fork-tab-btn--success.fork-tab-active {
  background: #1a6fc4;
  color: #fff;
  border-color: #1a6fc4;
  box-shadow: 0 4px 18px rgba(26, 111, 196, .35);
}

@media (max-width: 640px) {
  .fork-tab-btn {
    padding: 12px 10px;
    font-size: 13px;
    gap: 5px;
  }

  .fork-tab-btns {
    gap: 8px;
  }
}

.fork-panel {
  max-width: 680px;
  margin: 0 auto 32px;
}

.fork-panel .fork-road {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 640px) {
  .fork-tab-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .fork-tab-wrap {
    gap: 10px;
  }
}

/* =====================================================
   YOUTUBE
   ===================================================== */
.yt-section {
  padding: 88px 0 72px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.section-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}

.section-label-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-blue));
}

.section-label-line:last-child {
  background: linear-gradient(90deg, var(--c-blue), transparent);
}

.section-label-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--c-blue);
}

.yt-line {
  background: linear-gradient(90deg, transparent, #cc0000) !important;
}

.yt-line:last-child {
  background: linear-gradient(90deg, #cc0000, transparent) !important;
}

.yt-label {
  color: #cc0000 !important;
}

.yt-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}

.yt-subheading {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-3);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.yt-embed-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

@media(max-width:860px) {
  .yt-embed-wrap {
    grid-template-columns: 1fr;
  }
}

.yt-embed-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.yt-embed-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yt-embed-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}

.yt-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  width: fit-content;
}

.yt-meta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}

.yt-meta-desc {
  font-size: 13px;
  color: var(--c-text-3);
  line-height: 1.8;
}

.yt-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 99px;
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
  width: fit-content;
}

.yt-meta-link:hover {
  background: #cc0000;
  box-shadow: 0 4px 16px rgba(255, 0, 0, .25);
}

.yt-channel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--sh-sm);
}

.yt-channel-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.yt-channel-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}

.yt-channel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yt-channel-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
}

.yt-channel-sub {
  font-size: 12px;
  color: var(--c-text-3);
  margin-top: 2px;
}

.yt-subscribe-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--tr);
}

.yt-subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* =====================================================
   SUMMARY
   ===================================================== */
/* =====================================================
   SUMMARY — 3ポイントブロック（参考画像準拠）
   ===================================================== */
.summary-section {
  padding: 72px 0;
  background: #fff;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* セクションヘッダー */
.summary-header {
  text-align: center;
  margin-bottom: 48px;
}

.summary-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.summary-eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--c-blue-light);
  opacity: .5;
}

.summary-title {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.4;
}

.summary-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 3カラムグリッド */
.summary-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media(max-width: 860px) {
  .summary-3col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 各ブロック共通 */
.s3-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}

.s3-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.s3-block--perf {
  border-top: 3px solid #2563eb;
}

.s3-block--warn {
  border-top: 3px solid #d97706;
}

.s3-block--alert {
  border-top: 3px solid #dc2626;
}

/* 大番号 */
.s3-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--f-sans);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.s3-block--perf .s3-num {
  color: #2563eb;
}

.s3-block--warn .s3-num {
  color: #d97706;
}

.s3-block--alert .s3-num {
  color: #dc2626;
}

.s3-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* タイトル */
.s3-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* アイコン（02・03共通） */
.s3-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  flex-shrink: 0;
  align-self: center;
}

.s3-icon--warn {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1.5px solid rgba(217, 119, 6, .2);
  color: #d97706;
}

.s3-icon--alert {
  background: linear-gradient(135deg, #fff1f2, #fecaca);
  border: 1.5px solid rgba(220, 38, 38, .2);
  color: #dc2626;
}

/* 説明文 */
.s3-desc {
  font-size: 12.5px;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-top: auto;
  padding-top: 12px;
}

/* 箇条書き */
.s3-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.s3-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--c-text-2);
  line-height: 1.7;
}

.s3-bullets li::before {
  content: '・';
  flex-shrink: 0;
  font-weight: 700;
}

.s3-block--perf .s3-bullets li::before {
  color: #2563eb;
}

.s3-block--warn .s3-bullets li::before {
  color: #d97706;
}

.s3-block--alert .s3-bullets li::before {
  color: #dc2626;
}

/* 詳細リンク */
.s3-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 99px;
  padding: 5px 12px;
  margin-top: 14px;
  align-self: flex-start;
  transition: gap .2s, opacity .2s;
  opacity: .75;
}

.s3-block--perf .s3-more {
  color: #2563eb;
  background: #eff6ff;
}

.s3-block--warn .s3-more {
  color: #b45309;
  background: #fffbeb;
}

.s3-block--alert .s3-more {
  color: #dc2626;
  background: #fff1f2;
}

.s3-block:hover .s3-more {
  opacity: 1;
  gap: 8px;
}

/* 注釈 */
.s3-note {
  font-size: 13px;
  color: var(--c-text-3);
  margin-top: 8px;
  line-height: 1.6;
}

/* ---- ゼロライン基準グラフ（01ブロック） ---- */
.s3-chart2 {
  margin-top: 12px;
}

.s3-chart2-area {
  position: relative;
  padding: 0 8px;
}

/* ゼロライン */
.s3-zero-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  height: 2px;
  background: #94a3b8;
  z-index: 2;
}

.s3-zero-line::before {
  content: '0';
  position: absolute;
  left: -18px;
  top: -8px;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
}

/* 棒の横並び */
.s3-bars2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 各列 */
.s3-col2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

/* 上エリア（プラス）: 高さ固定 72px */
.s3-above2 {
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* 下エリア（マイナス）: 高さ固定 40px */
.s3-below2 {
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

/* 棒本体 */
.s3-bar2 {
  width: 44px;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s3-bar2--pos {
  background: linear-gradient(180deg, #3b9ef5 0%, #1155a0 100%);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 16px rgba(27, 111, 196, .35);
}

.s3-bar2--neg {
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(185, 28, 28, .25);
}

/* 棒内の数値 */
.s3-val2 {
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.s3-val2 small {
  font-size: 9px;
  font-weight: 600;
}

.s3-val2--pos {
  color: #fff;
}

.s3-val2--neg {
  color: #fff;
}

/* 「過去最高」バッジ */
.s3-badge-best {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: .04em;
}

/* ラベル（期名） */
.s3-label2 {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-3);
  margin-top: 6px;
  white-space: nowrap;
}

/* 矢印列 */
.s3-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  flex-shrink: 0;
  margin-top: 30px;
}

.s3-arrow-icon {
  font-size: 16px;
  color: var(--c-blue);
  opacity: .6;
}

/* ---- 私的流用アイコン（旧スタイル・廃止） ---- */

/* =====================================================
   DS STATEMENT（補足文言）
   ===================================================== */
.ds-statement {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #eef5ff 0%, #f0f7ff 100%);
  border: 1px solid rgba(27, 111, 196, .18);
  border-left: 4px solid var(--c-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.ds-statement-icon {
  font-size: 18px;
  color: var(--c-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.ds-statement-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text);
}

.ds-statement-text strong {
  color: var(--c-blue);
  font-weight: 800;
}

/* =====================================================
   PERFORMANCE GRAPH (pg-)  ライトテーマ補足グラフ
   ===================================================== */
/* ===== 配当実施カード ===== */
.dividend-card {
  max-width: 560px;
  margin: 0 auto 36px;
  border: 2px solid #1155a0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(17, 85, 160, .12);
  background: #fff;
  position: relative;
}

.dividend-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(160deg, rgba(235, 245, 255, .6) 0%, rgba(210, 230, 255, .3) 100%);
  pointer-events: none;
}

.dividend-card-header {
  background: linear-gradient(90deg, #0d2d4f 0%, #1a6fc4 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .06em;
}

.dividend-card-header-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.dividend-card-body {
  padding: 12px 20px 16px;
  position: relative;
  z-index: 1;
}

/* 左右2カラムレイアウト */
.dividend-layout {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.dividend-left {
  flex: 1 1 100%;
  min-width: 0;
}

.dividend-illust {
  width: 100%;
}

.dividend-illust-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(17, 85, 160, .10));
}

@media(max-width: 680px) {
  .dividend-layout {
    flex-direction: column;
    gap: 12px;
  }

  .dividend-right {
    flex: none;
    width: 80%;
    align-self: center;
  }
}

.dividend-card-lead {
  font-size: 18px;
  font-weight: 800;
  color: #0d2d4f;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 16px;
  letter-spacing: .04em;
}

.dividend-past {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 8px 18px;
  margin-bottom: 4px;
}

.dividend-past-label {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.dividend-past-val {
  font-size: 26px;
  font-weight: 900;
  color: #1155a0;
  letter-spacing: .02em;
}

.dividend-arrow-down {
  text-align: center;
  color: #1a6fc4;
  font-size: 18px;
  margin: 2px 0;
}

.dividend-forecast {
  border: 1.5px solid #1155a0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2px;
}

.dividend-forecast-header {
  background: linear-gradient(90deg, #1155a0 0%, #1a6fc4 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
}

.dividend-forecast-period {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.dividend-forecast-total {
  color: #fbbf24;
  font-size: 15px;
  font-weight: 700;
}

.dividend-forecast-total strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .02em;
}

.dividend-forecast-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
}

.dividend-forecast-row--special {
  background: #f0f6ff;
}

.dividend-forecast-row--normal {
  background: #e8f2ff;
}

.dividend-forecast-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e45;
}

.dividend-forecast-name small {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  margin-left: 4px;
}

.dividend-forecast-amount {
  font-size: 20px;
  font-weight: 900;
  color: #1155a0;
  letter-spacing: .02em;
}

@media(max-width: 600px) {
  .dividend-card-body {
    padding: 16px;
  }

  .dividend-forecast-total strong {
    font-size: 18px;
  }

  .dividend-forecast-amount {
    font-size: 17px;
  }

  .dividend-forecast-name {
    font-size: 12px;
  }
}

.pg-wrap {
  margin-bottom: 48px;
}

.pg-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .04);
}

.pg-inner::before {
  display: none;
}

/* タイトル */
.pg-title {
  font-family: var(--f-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--c-navy);
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pg-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 14px rgba(245, 158, 11, .35);
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

/* 黒字転換バッジ */
.pg-badge-row {
  text-align: center;
  margin-bottom: 28px;
}

.pg-badge-kurojiten {
  display: inline-block;
  background: linear-gradient(90deg, #16a34a, #059669);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 22px;
  border-radius: 99px;
  letter-spacing: .1em;
  box-shadow: 0 4px 16px rgba(22, 163, 74, .4);
}

/* 3枚カード横並び */
.pg-charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media(max-width: 680px) {
  .pg-charts {
    grid-template-columns: 1fr;
  }
}

/* 各カード */
.pg-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* 装飾矢印 — グラフと完全分離・absolute配置 */
.pg-deco-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(229, 57, 53, .30));
  opacity: 0.55;
  z-index: 0;
}

.pg-card-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: .1em;
  margin-bottom: 10px;
  padding: 6px 20px;
  background: linear-gradient(90deg, #eef4ff, #f0f7ff);
  border: 1px solid rgba(27, 111, 196, .15);
  border-radius: 99px;
  width: 100%;
  text-align: center;
}

/* ---- 増加分バッジ ---- */
.pg-card-delta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.pg-delta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 6px 20px;
  border-radius: 99px;
  line-height: 1;
}

.pg-delta-badge--up {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
  border: 1.5px solid rgba(37, 99, 235, .25);
}

.pg-delta-badge--turnaround {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d;
  border: 1.5px solid rgba(22, 163, 74, .25);
}

.pg-delta-sub {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: .04em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  margin-bottom: 6px;
}

/* ---- Canvas グラフラッパー ---- */
.pg-canvas-wrap {
  width: 100%;
  height: 260px;
  position: relative;
}

.pg-canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

/* 単位テキスト */
.pg-unit {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: .06em;
  margin-top: 6px;
}

/* +520% チップ（営業利益カード底部） */
.pg-growth-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 99px;
  margin-top: 10px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, .45);
  letter-spacing: .06em;
}

.pg-growth-chip::before {
  content: '▲';
  font-size: 9px;
}

/* 注釈 */
.pg-note {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 20px;
  letter-spacing: .06em;
}

/* =====================================================
   DETAIL SECTIONS (01〜03)
   ===================================================== */

/* セクション共通 */
.ds-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--c-border);
}

.ds-section--perf {
  background: #f7faff;
}

.ds-section--warn {
  background: #fffbf0;
}

.ds-section--alert {
  background: #fff7f7;
}

/* ヘッダー行 */
.ds-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.ds-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-blue);
  flex-shrink: 0;
  font-family: var(--f-sans);
  letter-spacing: -.03em;
  opacity: .9;
}

.ds-num--warn {
  color: #b45309;
}

.ds-num--alert {
  color: #dc2626;
}

.ds-head-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.ds-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.ds-icon--perf {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--c-blue);
}

.ds-icon--warn {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

.ds-icon--alert {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
}

.ds-title {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.4;
}

/* コンテンツエリア（2カラム） */
.ds-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media(max-width: 860px) {
  .ds-content {
    grid-template-columns: 1fr;
  }
}

/* 比較カード */
.ds-compare {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-compare-old,
.ds-compare-new {
  padding: 20px 22px;
  border-radius: var(--radius);
}

.ds-compare-old {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.ds-compare-new {
  background: #eef5ff;
  border: 1px solid rgba(27, 111, 196, .2);
}

.ds-compare-arrow {
  text-align: center;
  padding: 8px 0;
  color: var(--c-blue-light);
  font-size: 18px;
}

.ds-compare-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ds-compare-label--old {
  color: #64748b;
}

.ds-compare-label--old i {
  color: #ef4444;
}

.ds-compare-label--new {
  color: var(--c-blue);
}

.ds-compare-label--new i {
  color: #10b981;
}

.ds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ds-list li {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 12px;
  position: relative;
}

.ds-list--old li {
  color: #64748b;
}

.ds-list--old li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-size: 10px;
  top: 3px;
}

.ds-list--new li {
  color: var(--c-navy);
}

.ds-list--new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
}

/* KPIバー */
.ds-kpis {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ds-kpi-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-3);
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.ds-kpi-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ds-kpi-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-2);
}

.ds-kpi-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ds-kpi-tag {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  padding: 2px 8px;
  border-radius: 99px;
  flex-shrink: 0;
  width: 72px;
  text-align: center;
}

.ds-kpi-tag--old {
  background: #f1f5f9;
  color: #64748b;
}

.ds-kpi-tag--new {
  background: #dbeafe;
  color: var(--c-blue);
}

.ds-kpi-bar-wrap {
  flex: 1;
  height: 10px;
  background: #f1f5f9;
  border-radius: 99px;
  overflow: hidden;
}

.ds-kpi-bar {
  height: 100%;
  border-radius: 99px;
  transition: width 1s ease;
}

.ds-kpi-bar--old {
  background: #94a3b8;
}

.ds-kpi-bar--new {
  background: linear-gradient(90deg, var(--c-blue-bright), var(--c-blue));
}

.ds-kpi-bar--neg {
  background: #ef4444;
}

/* 02セクション：概要説明テキスト */
.ds-intro-text {
  margin: 24px 0 32px;
  padding: 24px 28px;
  background: #fff8f0;
  border-left: 4px solid #f97316;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-intro-text p {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.85;
  color: #1e293b;
  margin: 0;
}

/* ===== 02セクション：3パート ===== */
.warn-parts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}

/* パートカード */
.warn-part {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 58, 95, .08);
}

/* パートヘッダー */
.warn-part-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
}

.warn-part-head--essence {
  background: linear-gradient(90deg, #1e3a5f, #2d5a9e);
}

.warn-part-head--risk {
  background: linear-gradient(90deg, #7f1d1d, #b91c1c);
}

.warn-part-head--defense {
  background: linear-gradient(90deg, #14532d, #15803d);
}

.warn-part-num {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  min-width: 28px;
}

.warn-part-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.warn-part-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  margin: 0 0 2px;
}

.warn-part-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .03em;
  margin: 0;
  line-height: 1.5;
}

.warn-part-inner-title {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.55;
  margin: 0 0 16px;
  padding: 14px 18px;
  background: #fff3e0;
  border-left: 4px solid #f97316;
  border-radius: 0 8px 8px 0;
}

/* パートボディ */
.warn-part-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.warn-part-body>p {
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
  margin: 0;
}

/* 箇条書きリスト（PART1） */
.warn-part-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.warn-part-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e3a5f;
  background: #eff6ff;
  padding: 10px 16px;
  border-radius: 6px;
}

.warn-part-list li i {
  color: #2563eb;
  font-size: 13px;
  flex-shrink: 0;
}

/* リスクグリッド（PART2） */
.warn-risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.warn-risk-item {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.warn-risk-icon {
  width: 34px;
  height: 34px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b91c1c;
  font-size: 14px;
}

/* ===== ひび割れカード ===== */
.crack-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.crack-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(192, 57, 43, .10);
  padding: 22px 18px 20px;
  /* ひび割れ演出のための擬似的な亀裂ライン */
  outline: 2px solid transparent;
}

/* カード上辺から赤いグロー */
.crack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, #c0392b 40%, #e74c3c 60%, transparent 90%);
  opacity: .9;
}

/* 全体に薄いひび割れテクスチャ */
.crack-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(192, 57, 43, .04) 0%, transparent 50%),
    linear-gradient(225deg, rgba(192, 57, 43, .03) 0%, transparent 40%);
  pointer-events: none;
}

/* SVGオーバーレイ（ひび割れライン） */
.crack-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .55;
}

/* コンテンツ（SVGの上に重ねる） */
.crack-content {
  position: relative;
  z-index: 1;
}

.crack-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.crack-num {
  font-size: 36px;
  font-weight: 900;
  color: #c0392b;
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(192, 57, 43, .3);
}

.crack-title {
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.4;
}

.crack-desc {
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

.crack-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 12px;
}

.crack-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.85;
}

@media (max-width: 780px) {
  .crack-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.warn-risk-label {
  font-size: 14px;
  font-weight: 800;
  color: #7f1d1d;
  margin: 0;
}

.warn-risk-desc {
  font-size: 12px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* ステップ（PART3） */
.warn-defense-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  overflow: hidden;
}

.warn-defense-step {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid #d1fae5;
}

.warn-defense-step:last-child {
  border-bottom: none;
}

.warn-defense-step-num {
  min-width: 80px;
  background: #15803d;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
}

.warn-defense-step-body {
  padding: 14px 18px;
  background: #f0fdf4;
  flex: 1;
}

.warn-defense-step-title {
  font-size: 14px;
  font-weight: 800;
  color: #14532d;
  margin: 0 0 4px;
}

.warn-defense-step-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

/* 注記リンク（PART3） */
.warn-defense-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  background: #f8faff;
  border: 1px solid #dbeafe;
  border-radius: 6px;
  padding: 12px 16px;
  min-height: 46px;
  box-sizing: border-box;
}

.warn-defense-note i.fa-circle-info {
  color: #3b82f6;
  flex-shrink: 0;
}

.warn-defense-note a {
  margin-left: auto;
  white-space: nowrap;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.warn-defense-note a:hover {
  text-decoration: underline;
}

/* ダーク背景内（03セクション）用 */
.warn-defense-note--dark {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
}

.warn-defense-note--dark i.fa-circle-info {
  color: #93c5fd;
}

.warn-defense-note--dark a {
  color: #93c5fd;
}

.warn-defense-note--dark a:hover {
  color: #fff;
}

/* ウルフパックボックス */
.wolfpack-box {
  border: 2px solid #374151;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 4px;
}

.wolfpack-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #111827, #1f2937);
  padding: 14px 20px;
}

.wolfpack-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.wolfpack-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
}

.wolfpack-box-body {
  background: #f8fafc;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wolfpack-diagram-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4px 0;
}

.wolfpack-diagram-img {
  width: 60%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.wolfpack-box-body>p {
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
  margin: 0;
}

/* ウルフパック イラスト */
.wolfpack-illust-wrap {
  margin: 20px 0 16px;
  text-align: center;
  background: #f8faff;
  border: 1px solid rgba(27, 111, 196, .12);
  border-radius: 12px;
  padding: 16px;
}

.wolfpack-illust-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  display: inline-block;
}

.wolfpack-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.wolfpack-step {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e2e8f0;
}

.wolfpack-step:last-child {
  border-bottom: none;
}

.wolfpack-step-label {
  width: 120px;
  flex-shrink: 0;
  background: #1f2937;
  color: #f1f5f9;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  text-align: center;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.wolfpack-step-desc {
  flex: 1;
  background: #fff;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
  padding: 14px 18px;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 680px) {
  .warn-part-head {
    padding: 14px 18px;
    gap: 10px;
  }

  .warn-part-body {
    padding: 18px;
  }

  .warn-part-title {
    font-size: 15px;
  }

  .warn-risk-grid {
    grid-template-columns: 1fr;
  }

  .warn-defense-step-num {
    min-width: 60px;
    font-size: 10px;
  }

  .wolfpack-step-label {
    width: 90px;
    flex-shrink: 0;
    font-size: 13px;
  }
}

/* ---- ウルフパック縦並びステップ ---- */
.wolfpack-steps-v {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.wolfpack-step-v {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.wolfpack-step-v-num {
  font-size: 26px;
  font-weight: 900;
  color: #1e3a5f;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.wolfpack-step-v-img {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wolfpack-step-v-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wolfpack-step-v-body {
  flex: 1;
}

.wolfpack-step-v-label {
  font-size: 17px;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 6px;
  border-left: 4px solid #f97316;
  padding-left: 10px;
}

.wolfpack-step-v-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

.wolfpack-step-v-arrow {
  text-align: center;
  font-size: 22px;
  color: #94a3b8;
  padding: 6px 0;
}

@media (max-width: 640px) {
  .wolfpack-step-v {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wolfpack-step-v-img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* 警告コンテンツ（02・03共通） */
.ds-warn-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: 1 / -1;
}

.ds-warn-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-navy);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.ds-warn-box--alert {
  background: #7f1d1d;
}

.ds-warn-box-icon {
  font-size: 28px;
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 2px;
}

.ds-warn-box-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.ds-warn-box-text {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
}

/* 問題点リスト（3点） */
.ds-warn-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media(max-width: 768px) {
  .ds-warn-points {
    grid-template-columns: 1fr;
  }
}

.ds-warn-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}

.ds-warn-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #b45309;
}

.ds-warn-point-icon--alert {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #dc2626;
}

.ds-warn-point-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 4px;
}

.ds-warn-point-text {
  font-size: 12px;
  color: var(--c-text-2);
  line-height: 1.75;
}

/* =====================================================
   PILLARS
   ===================================================== */
.pillar {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.pillar-number {
  position: absolute;
  top: 40px;
  right: 28px;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: .04;
  color: var(--c-text);
  font-family: var(--f-sans);
}

.pillar--perf {
  background: #f4f8fd;
}

.pillar--biz {
  background: var(--c-white);
}

.pillar--gov {
  background: #f0fbf5;
}

.pillar-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.pillar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar--perf .pillar-icon-wrap {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  box-shadow: 0 4px 14px rgba(27, 111, 196, .18);
}

.pillar--biz .pillar-icon-wrap {
  background: linear-gradient(135deg, #e0f0ff, #c3dff8);
  box-shadow: 0 4px 14px rgba(27, 111, 196, .15);
}

.pillar--gov .pillar-icon-wrap {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  box-shadow: 0 4px 14px rgba(16, 185, 129, .15);
}

.pillar-icon {
  font-size: 24px;
}

.pillar--perf .pillar-icon {
  color: var(--c-blue);
}

.pillar--biz .pillar-icon {
  color: var(--c-blue-deep);
}

.pillar--gov .pillar-icon {
  color: var(--c-success);
}

.pillar-title {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .02em;
}

.pillar-subtitle {
  font-size: 12px;
  color: var(--c-text-3);
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 4px;
  align-self: flex-end;
  margin-bottom: 5px;
}

.pillar-title-wrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-border);
  margin-top: 4px;
  flex-basis: 100%;
}

/* COMPARISON GRID */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
}

@media(max-width:768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
}

.comp-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.comp-card--old {
  background: var(--c-old-bg);
  border: 1.5px solid #dde4ed;
}

.comp-card--old .comp-card__header {
  background: linear-gradient(135deg, #64748b, #94a3b8);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comp-card--old .comp-card__era {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .08em;
}

.comp-card--new {
  background: #eef5ff;
  border: 1.5px solid rgba(27, 111, 196, .25);
  position: relative;
}

.comp-card--new .comp-card__header {
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-bright));
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comp-card--new .comp-card__era {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
}

.comp-list {
  list-style: none;
  padding: 8px 0;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 24px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  transition: background var(--tr);
}

.comp-list li:last-child {
  border-bottom: none;
}

.comp-card--old .comp-list i {
  color: var(--c-danger);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 13px;
}

.comp-card--new .comp-list i {
  color: var(--c-success);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 13px;
}

.comp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.comp-arrow i {
  font-size: 15px;
  color: var(--c-blue);
  background: var(--c-new-bg);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
}

@media(max-width:768px) {
  .comp-arrow {
    padding: 14px 0;
  }

  .comp-arrow i {
    transform: rotate(90deg);
  }
}

/* KPI BARS */
.kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width:768px) {
  .kpi-row {
    grid-template-columns: 1fr;
  }
}

.kpi-item {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
}

.kpi-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-text-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kpi-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: linear-gradient(to bottom, var(--c-blue), var(--c-blue-light));
  border-radius: 99px;
}

.kpi-bar-wrap {
  background: #eef2f7;
  border-radius: 99px;
  overflow: hidden;
  height: 34px;
  margin-bottom: 10px;
  position: relative;
}

.kpi-bar-wrap:last-child {
  margin-bottom: 0;
}

.kpi-bar {
  height: 100%;
  border-radius: 99px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  min-width: 80px;
  width: 0%;
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.kpi-bar--old {
  background: linear-gradient(90deg, #64748b, #94a3b8);
}

.kpi-bar--new {
  background: linear-gradient(90deg, var(--c-blue-deep), var(--c-blue), var(--c-blue-light));
}

/* TIMELINE */
.reform-timeline {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
}

.timeline-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--c-text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-title::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-blue-light));
  border-radius: 99px;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #10b981, var(--c-blue), #e2e8f0);
  border-radius: 99px;
}

.timeline-item {
  position: relative;
  padding: 0 0 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -25px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid;
  background: #fff;
}

.tl-done .tl-dot {
  border-color: #10b981;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.tl-active .tl-dot {
  border-color: var(--c-blue);
  background: var(--c-blue);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(27, 111, 196, .12);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(27, 111, 196, .04);
  }
}

.tl-pending .tl-dot {
  border-color: #cbd5e1;
}

.tl-phase {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-text-3);
  text-transform: uppercase;
}

.tl-content strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}

.tl-period {
  font-size: 12px;
  color: var(--c-text-3);
}

.tl-done .tl-period {
  color: #10b981;
  font-weight: 700;
}

.tl-active .tl-period {
  color: var(--c-blue);
  font-weight: 700;
}

.tl-done .tl-content::before {
  content: '✓ 完了';
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #10b981;
  padding: 2px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
}

.tl-active .tl-content::before {
  content: '▶ 進行中';
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--c-blue);
  padding: 2px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
}

.tl-pending .tl-content::before {
  content: '◯ 予定';
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
}

/* GOVERNANCE METRICS */
.gov-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

.gov-metric {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 30px 18px 26px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(16, 185, 129, .15);
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}

.gov-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.gov-metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.gov-metric__icon {
  font-size: 22px;
  color: #10b981;
  margin-bottom: 14px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gov-metric__val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.gov-metric__label {
  font-size: 12px;
  color: var(--c-text-3);
  line-height: 1.6;
}

.gov-metric__label small {
  display: block;
  font-size: 11px;
  color: #10b981;
  font-weight: 700;
  margin-top: 4px;
}

/* =====================================================
   SNS SECTION
   ===================================================== */
.sns-section {
  padding: 96px 0 80px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.sns-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 12px;
}

.sns-heading span {
  color: var(--c-blue);
}

.sns-subheading {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-3);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.sns-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sns-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 99px;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-3);
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--f-sans);
  text-decoration: none;
}

.sns-tab:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.sns-tab.active {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 45, 79, .2);
}

.sns-tab--yt.active {
  background: #ff0000;
  border-color: #ff0000;
}

.sns-tab--yt:hover:not(.active) {
  border-color: #ff0000;
  color: #ff0000;
}

.sns-tab-icon {
  width: 15px;
  height: 15px;
}

.sns-tab-icon-fa {
  font-size: 14px;
}

.sns-feed-wrap {
  position: relative;
  min-height: 300px;
}

.sns-feed {
  display: none;
}

.sns-feed.active {
  display: block;
  animation: fade-slide .35s ease;
}

.sns-timeline-wrap {
  margin-bottom: 28px;
}

.sns-timeline-wrap .sns-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media(max-width:900px) {
  .sns-timeline-wrap .sns-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .sns-timeline-wrap .sns-posts {
    grid-template-columns: 1fr;
  }
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.sns-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

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

@media(max-width:560px) {
  .sns-posts {
    grid-template-columns: 1fr;
  }
}

.sns-card {
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--tr);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.sns-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-light));
  opacity: 0;
  transition: var(--tr);
}

.sns-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: rgba(27, 111, 196, .3);
}

.sns-card:hover::before {
  opacity: 1;
}

.sns-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sns-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.sns-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns-card__avatar-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sns-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
}

.sns-card__handle {
  font-size: 11px;
  color: var(--c-text-3);
}

.sns-card__platform {
  margin-left: auto;
  font-size: 15px;
  color: var(--c-text-3);
  opacity: .55;
}

.sns-card__platform--x {
  color: #000;
}

.sns-card__platform--fb {
  color: #1877f2;
}

.sns-card__platform--note {
  color: #41c9b4;
}

.sns-card__body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-text-2);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sns-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
}

.sns-card__date {
  font-size: 11px;
  color: var(--c-text-3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sns-card__stats {
  display: flex;
  gap: 10px;
}

.sns-card__stat {
  font-size: 11px;
  color: var(--c-text-3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sns-card__tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 99px;
  background: var(--c-new-bg);
  color: var(--c-blue);
  font-weight: 600;
}

/* 投稿なし時の近日公開表示 */
.sns-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: var(--c-bg);
  border-radius: var(--radius);
  border: 1.5px dashed var(--c-border);
  margin-bottom: 20px;
}

.sns-empty-icon {
  font-size: 36px;
  color: var(--c-text-3);
  opacity: .4;
  margin-bottom: 14px;
}

.sns-empty-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
}

.sns-empty-desc {
  font-size: 13px;
  color: var(--c-text-3);
  line-height: 1.8;
}

.sns-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 11px 34px;
  border-radius: 99px;
  border: 1.5px solid var(--c-navy);
  background: transparent;
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
  width: fit-content;
}

.sns-more-btn:hover {
  background: var(--c-navy);
  color: #fff;
}

.sns-more-btn--fb {
  border-color: #1877f2;
  color: #1877f2;
}

.sns-more-btn--fb:hover {
  background: #1877f2;
  color: #fff;
}

.sns-more-btn--note {
  border-color: #41c9b4;
  color: #41c9b4;
}

.sns-more-btn--note:hover {
  background: #41c9b4;
  color: #fff;
}

/* YouTube SNSタブ */
.yt-sns-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  margin-bottom: 28px;
}

@media(max-width:780px) {
  .yt-sns-grid {
    grid-template-columns: 1fr;
  }
}

.yt-sns-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.yt-sns-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yt-sns-main-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yt-sns-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ff0000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  width: fit-content;
}

.yt-sns-main-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}

.yt-sns-main-desc {
  font-size: 12px;
  color: var(--c-text-3);
  line-height: 1.7;
}

.yt-sns-side {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yt-sns-side-title {
  font-size: 11px;
  font-weight: 700;
  color: #ff0000;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 12px;
}

.yt-sns-channel-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-sns-ch-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}

.yt-sns-ch-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yt-sns-ch-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.4;
}

.yt-sns-ch-sub {
  font-size: 10px;
  color: var(--c-text-3);
  margin-top: 2px;
}

.yt-sns-upcoming {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.yt-sns-upcoming li {
  font-size: 12px;
  color: var(--c-text-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.yt-sns-upcoming li i {
  color: #ff0000;
  margin-top: 2px;
  flex-shrink: 0;
}

.yt-sns-ch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  background: #ff0000;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
}

.yt-sns-ch-btn:hover {
  background: #cc0000;
}

/* フォローバー */
.sns-follow-bar {
  margin-top: 52px;
  background: var(--c-navy);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--sh-lg);
}

.sns-follow-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sns-follow-text i {
  color: var(--c-gold-light);
}

.sns-follow-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sns-follow-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
}

.sns-follow-btn--x {
  background: #fff;
  color: #000;
}

.sns-follow-btn--x:hover {
  background: #e2e8f0;
}

.sns-follow-btn--fb {
  background: #1877f2;
  color: #fff;
}

.sns-follow-btn--fb:hover {
  background: #1565c0;
}

.sns-follow-btn--note {
  background: #41c9b4;
  color: #fff;
}

.sns-follow-btn--note:hover {
  background: #2eaa97;
}

.sns-follow-btn--yt {
  background: #ff0000;
  color: #fff;
}

.sns-follow-btn--yt:hover {
  background: #cc0000;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-section {
  padding: 96px 0 104px;
  background: #f4f8fd;
  border-top: 1px solid var(--c-border);
}

/* ヘッダー */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--c-blue-light);
  opacity: .5;
}

.faq-title {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 12px;
}

.faq-lead {
  font-size: 16px;
  color: var(--c-text-3);
  line-height: 1.9;
}

/* リスト */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* アイテム */
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow var(--tr);
}

.faq-item:hover {
  box-shadow: var(--sh-md);
}

.faq-item.is-open {
  border-color: var(--c-blue);
}

/* Q ボタン */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-sans);
  transition: background var(--tr);
}

.faq-q:hover {
  background: #f8faff;
}

.faq-item.is-open .faq-q {
  background: #f0f6ff;
}

.faq-q-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-item.is-open .faq-q-icon {
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-bright));
  color: #fff;
}

.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
}

.faq-q-arrow {
  color: var(--c-text-3);
  font-size: 13px;
  flex-shrink: 0;
  transition: transform var(--tr);
}

.faq-item.is-open .faq-q-arrow {
  transform: rotate(180deg);
  color: var(--c-blue);
}

/* A パネル */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.is-open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0 24px 22px 72px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--c-text-2);
  margin: 0;
}

@media (max-width: 680px) {
  .faq-section {
    padding: 72px 0 80px;
  }

  .faq-q {
    padding: 16px 18px;
    gap: 12px;
  }

  .faq-a p {
    padding: 0 18px 18px 58px;
    font-size: 13px;
  }

  .faq-q-text {
    font-size: 13px;
  }
}

/* =====================================================
   CLOSING
   ===================================================== */
.closing-section {
  padding: 72px 0 80px;
  background: var(--c-navy);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.closing-msg {
  text-align: center;
}

.closing-msg p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 2.4;
  margin-bottom: 32px;
}

.closing-msg .sign {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 2.2;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px 44px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  padding: 44px 0;
  background: #091e36;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin-bottom: 22px;
}

.footer-link {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--tr);
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--c-blue-light);
  background: rgba(91, 175, 240, .08);
}

.footer-link-sep {
  color: rgba(255, 255, 255, .15);
  font-size: 11px;
  user-select: none;
}

.footer-logo {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 14px;
}

.footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .15);
  line-height: 1.9;
}

.footer-disclaimer {
  margin-top: 20px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-disclaimer p {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.9;
  letter-spacing: .03em;
}

@media(max-width:560px) {
  .footer-link-sep {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 4px 0;
  }
}

/* =====================================================
   FADE-IN (Intersection Observer)
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width:900px) {
  .pillar {
    padding: 72px 0;
  }

  .summary-section {
    padding: 72px 0;
  }

  .sns-section {
    padding: 72px 0 60px;
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .pillar-title {
    font-size: 1.75rem;
  }

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

@media(max-width:520px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .sns-follow-bar {
    padding: 24px 20px;
  }

  .sns-follow-btns {
    justify-content: center;
  }
}

/* =====================================================
   SECTION 04: 経営体制比較（前 vs 現）
   ===================================================== */

/* ---- セクション全体 ---- */
.mgmt-section {
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 40%, #f0f6ff 100%);
  border-top: 1px solid #dbeafe;
  position: relative;
  overflow: hidden;
}

.mgmt-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 141, 232, .06) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- セクションヘッダー ---- */
.mgmt-header {
  text-align: center;
  margin-bottom: 52px;
}

.mgmt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mgmt-eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--c-blue-light);
  opacity: .5;
}

.mgmt-title {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.mgmt-title em {
  font-style: normal;
  color: var(--c-blue);
  border-bottom: 3px solid rgba(27, 111, 196, .25);
}

.mgmt-lead {
  font-size: 16px;
  color: var(--c-text-3);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- 前 VS 現 ラベル帯 ---- */
.mgmt-vs-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-bottom: 52px;
}

.mgmt-vs-old,
.mgmt-vs-new {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
}

.mgmt-vs-old {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.mgmt-vs-new {
  background: linear-gradient(135deg, #f0f6ff, #e8f2ff);
  border: 1px solid #bfdbfe;
}

.mgmt-vs-old i,
.mgmt-vs-new i {
  font-size: 28px;
  flex-shrink: 0;
}

.mgmt-vs-old i {
  color: #f87171;
}

.mgmt-vs-new i {
  color: #34d399;
}

.mgmt-vs-role {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mgmt-vs-old .mgmt-vs-role {
  color: rgba(255, 255, 255, .45);
}

.mgmt-vs-new .mgmt-vs-role {
  color: #64748b;
}

.mgmt-vs-name {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .02em;
}

.mgmt-vs-old .mgmt-vs-name {
  color: #fca5a5;
}

.mgmt-vs-new .mgmt-vs-name {
  color: #1155a0;
}

.mgmt-vs-badge {
  display: none;
}

/* ---- カテゴリブロック ---- */
.mgmt-category {
  margin-bottom: 56px;
}

.mgmt-category:last-of-type {
  margin-bottom: 0;
}

.mgmt-cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-border);
}

.mgmt-cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.mgmt-cat-icon--perf {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.mgmt-cat-icon--gov {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.mgmt-cat-icon--share {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.mgmt-cat-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--c-text-3);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mgmt-cat-title {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.2;
}

/* ---- 比較アイテム一覧 ---- */
.mgmt-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mgmt-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: var(--tr);
}

.mgmt-item:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

/* アイテムラベル（行タイトル） */
.mgmt-item-label {
  padding: 11px 20px;
  background: linear-gradient(90deg, #f8fafc, #eef5ff);
  border-bottom: 1px solid #e8f0fe;
  font-size: 12px;
  font-weight: 800;
  color: var(--c-text-3);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mgmt-item-label i {
  color: var(--c-blue);
  font-size: 13px;
}

/* 前/現 2カラム */
.mgmt-item-cols {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
}

.mgmt-item-old,
.mgmt-item-new {
  padding: 20px 22px;
}

.mgmt-item-old {
  background: #fafafa;
  border-left: 4px solid #ef4444;
}

.mgmt-item-new {
  background: #f7fbff;
  border-left: 4px solid #1a6fc4;
}

/* 矢印 */
.mgmt-item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  align-self: stretch;
  color: var(--c-blue-light);
  font-size: 14px;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}

/* タグ（前体制 / 現体制） */
.mgmt-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mgmt-item-tag--old {
  background: rgba(239, 68, 68, .1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, .2);
}

.mgmt-item-tag--new {
  background: rgba(26, 111, 196, .1);
  color: #1a6fc4;
  border: 1px solid rgba(26, 111, 196, .2);
}

/* 値 */
.mgmt-item-val {
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 7px;
  line-height: 1.2;
}

.mgmt-item-val--bad {
  color: #dc2626;
}

.mgmt-item-val--good {
  color: #1a6fc4;
}

.mgmt-item-val--neutral {
  color: #64748b;
}

.mgmt-item-num {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}

.mgmt-item-val--bad .mgmt-item-num {
  color: #dc2626;
}

.mgmt-item-val--good .mgmt-item-num {
  color: #1a6fc4;
}

.mgmt-item-val--neutral .mgmt-item-num {
  color: #475569;
}

.mgmt-item-unit {
  font-size: 12px;
  font-weight: 700;
  opacity: .75;
  margin-left: 2px;
}

/* 注記 */
.mgmt-item-note {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* バッジ */
.mgmt-badge-best {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: .04em;
  vertical-align: middle;
}

.mgmt-badge-black {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #059669;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: .04em;
  vertical-align: middle;
}

/* ---- 総評カード ---- */
.mgmt-verdict {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  margin-top: 64px;
}

.mgmt-verdict-old {
  background: linear-gradient(160deg, #1c1c1c, #2d2d2d);
  padding: 30px 28px;
}

.mgmt-verdict-new {
  background: linear-gradient(160deg, #0f2d52, #1a5ea8);
  padding: 30px 28px;
}

.mgmt-verdict-vs {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mgmt-verdict-vs span {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
  writing-mode: vertical-rl;
}

.mgmt-verdict-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 16px;
}

.mgmt-verdict-old .mgmt-verdict-hd {
  color: #fca5a5;
}

.mgmt-verdict-new .mgmt-verdict-hd {
  color: #6ee7b7;
}

.mgmt-verdict-hd i {
  font-size: 18px;
}

.mgmt-verdict-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.mgmt-verdict-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.mgmt-verdict-old .mgmt-verdict-list li i {
  color: #f87171;
  flex-shrink: 0;
  margin-top: 2px;
}

.mgmt-verdict-new .mgmt-verdict-list li i {
  color: #34d399;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- レスポンシブ ---- */
@media (max-width: 860px) {
  .mgmt-section {
    padding: 72px 0 80px;
  }

  .mgmt-verdict {
    grid-template-columns: 1fr;
  }

  .mgmt-verdict-vs {
    padding: 10px;
    writing-mode: horizontal-tb;
  }

  .mgmt-verdict-vs span {
    writing-mode: horizontal-tb;
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .mgmt-vs-bar {
    grid-template-columns: 1fr;
  }

  .mgmt-vs-badge {
    padding: 10px;
    writing-mode: horizontal-tb;
  }

  .mgmt-item-cols {
    grid-template-columns: 1fr;
  }

  .mgmt-item-arrow {
    display: none;
  }

  .mgmt-item-old {
    border-bottom: 1px solid #f0f0f0;
  }

  .mgmt-item-num {
    font-size: 1.3rem;
  }

  .mgmt-cat-title {
    font-size: 1rem;
  }

  .mgmt-title {
    font-size: 1.2rem;
  }
}