@layer page {
  /* Page-specific styles for archive/kuki/index.html */
  :root {
    --navy: #0b2a4a;
    --gold: #d4af37;
    --line: #d8dee8;
    --bg: #f4f7fb;
    --text: #24364a;
    --muted: #64748b;
    --blue: #064f88;
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
      -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Yu Gothic", Meiryo,
      sans-serif;
    line-height: 1.9;
  }
  .wrap {
    width: min(100% - 32px, 1120px);
    margin: auto;
  }
  .header {
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-weight: 900;
    color: var(--navy);
    text-decoration: none;
  }
  .navlinks {
    display: flex;
    gap: 16px;
    font-weight: 800;
    font-size: 0.92rem;
  }
  .navlinks a {
    text-decoration: none;
    color: var(--navy);
  }
  .hero {
    background: linear-gradient(135deg, #09213f, #123d67);
    color: #fff;
    padding: 52px 0;
    border-bottom: 6px solid var(--gold);
  }
  .hero h1 {
    font-family: serif;
    font-size: clamp(1.85rem, 3.4vw, 2.8rem);
    line-height: 1.25;
    margin: 0 0 14px;
  }
  .hero p {
    max-width: 920px;
    color: rgba(255, 255, 255, 0.92);
  }
  .section {
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
  }
  .white {
    background: #fff;
  }
  .kicker {
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #8a6700;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  .hero .kicker {
    color: #f8e39b;
  }
  .title {
    font-family: serif;
    color: var(--navy);
    font-size: clamp(1.32rem, 2vw, 1.9rem);
    line-height: 1.45;
    margin: 0 0 12px;
  }
  .lead {
    max-width: 950px;
    line-height: 2.05;
  }
  .notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 8px solid #ea580c;
    border-radius: 0 16px 16px 0;
    padding: 18px 22px;
    margin: 24px 0;
    line-height: 2;
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
  }
  .stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
  }
  .stat strong {
    display: block;
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1;
  }
  .stat span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 800;
  }
  .doc-list {
    display: grid;
    gap: 12px;
  }
  .doc {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 6px solid var(--gold);
    border-radius: 14px;
    padding: 16px;
  }
  .doc h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 1.1rem;
  }
  .meta {
    font-size: 0.84rem;
    color: #64748b;
    font-weight: 800;
    word-break: break-all;
  }
  .point {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 0.9rem;
  }
  .footer {
    background: #071a2d;
    color: #fff;
    padding: 32px 0;
  }
  .footer a {
    color: #f8e39b;
  }
  @media (max-width: 760px) {
    .navlinks {
      display: none;
    }
    .stats {
      grid-template-columns: 1fr;
    }
    .hero {
      padding: 38px 0;
    }
  }
}
