  /* ===== PAGE HERO ===== */
  #page-hero {
    padding: 80px 40px 60px;
    background: #fff;
    position: relative; overflow: hidden;
    min-height: 320px;
    display: flex; align-items: center;
  }
  #page-hero::before {
    content: ""; position: absolute;
    top: 50%; right: 10%; transform: translateY(-50%);
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent3) 0%, rgba(224,242,244,.4) 50%, transparent 80%); filter: blur(20px); z-index: 0;
    opacity: .55;
  }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }
  .page-hero-stamp {
    position: absolute;
    right: 0; top: 50%; transform: translateY(-50%);
    font-size: clamp(80px, 13vw, 180px);
    font-weight: 900; color: var(--accent);
    opacity: .10; letter-spacing: -.04em;
    font-family: "Inter", "Helvetica Neue", sans-serif;
    line-height: 1; pointer-events: none; z-index: 1;
    white-space: nowrap;
  }
  .page-hero-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 800; letter-spacing: .35em;
    color: var(--accent); margin-bottom: 28px;
    padding-bottom: 6px; border-bottom: 2px solid var(--accent);
  }
  .page-hero h1 {
    font-size: 56px; font-weight: 900; color: var(--navy);
    line-height: 1.3; margin-bottom: 28px; letter-spacing: -.01em;
  }
  .page-hero h1 em { color: var(--accent); font-style: normal; }
  .page-hero p {
    font-size: 17px; color: var(--text); line-height: 2.1;
    max-width: 760px; font-weight: 500;
  }

  /* ===== NEWS LIST ===== */
  #news-list {
    padding: 80px 40px 140px;
    background: var(--bg);
  }
  .news-list-inner {
    max-width: 1100px; margin: 0 auto;
  }

  /* 一覧（クリックで詳細ページへ遷移） */
  .news-items {
    list-style: none; padding: 0; margin: 0;
  }
  .news-item {
    border-bottom: 1px solid var(--border);
  }
  .news-item:first-child {
    border-top: 1px solid var(--border);
  }
  .news-item-link {
    display: grid;
    grid-template-columns: 130px 1fr 24px;
    gap: 32px;
    align-items: center;
    padding: 28px 16px;
    text-decoration: none;
    transition: background .2s ease, padding-left .2s ease;
  }
  .news-item-link:hover {
    background: var(--accent3);
    padding-left: 28px;
  }
  .news-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    font-family: "Inter", "Helvetica Neue", sans-serif;
  }
  .news-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.6;
  }
  .news-arrow {
    font-size: 18px; color: var(--accent); font-weight: 700;
    line-height: 1; justify-self: end;
    transition: transform .2s ease;
  }
  .news-item-link:hover .news-arrow { transform: translateX(4px); }

  /* ページネーション（参考） */
  .news-pagination {
    margin-top: 56px;
    display: flex; justify-content: center; align-items: center;
    gap: 8px;
  }
  .news-pagination a, .news-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: 4px;
    color: var(--text); text-decoration: none;
    font-size: 14px; font-weight: 700;
    transition: all .15s;
  }
  .news-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .news-pagination .current {
    background: var(--accent); border-color: var(--accent); color: #fff;
  }

  @media (max-width: 900px) {
    #page-hero { padding: 60px 24px 48px; min-height: auto; }
    #page-hero::before { width: 280px; height: 280px; right: -80px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero p { font-size: 14px; }
    .page-hero-stamp { font-size: clamp(60px, 16vw, 120px); opacity: .08; right: -4%; }

    #news-list { padding: 56px 24px 96px; }

    .news-item-link {
      grid-template-columns: 1fr 24px;
      grid-template-rows: auto auto;
      gap: 6px 16px;
      padding: 18px 8px;
    }
    .news-item-link:hover { padding-left: 16px; }
    .news-date {
      grid-column: 1; grid-row: 1;
      font-size: 13px;
    }
    .news-title {
      grid-column: 1 / -1; grid-row: 2;
      font-size: 15px;
    }
    .news-arrow {
      grid-column: 2; grid-row: 1;
    }
  }
  @media (max-width: 600px) {
    #page-hero { padding: 48px 20px 40px; }
    .page-hero h1 { font-size: 28px; }
    .page-hero-stamp { font-size: clamp(48px, 18vw, 90px); opacity: .07; }
  }
