  /* ===== BREADCRUMB ===== */
  .breadcrumb { padding: 24px 40px 0; max-width: 820px; margin: 0 auto; }
  .breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); }
  .breadcrumb-inner a { color: var(--text-light); text-decoration: none; }
  .breadcrumb-inner a:hover { color: var(--orange); }
  .breadcrumb-sep { color: var(--border); }

  /* ===== PAGE HEAD ===== */
  .news-head { max-width: 820px; margin: 0 auto; padding: 20px 40px 8px; }
  .news-head h1 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900; font-size: 34px; line-height: 1.4;
    margin: 10px 0 12px; color: var(--text-dark);
  }
  .news-head .lead { font-size: 14.5px; color: var(--ink-soft); line-height: 1.9; }

  /* ===== INDEX (一覧) ===== */
  .news-index {
    max-width: 820px; margin: 28px auto 8px; padding: 0 40px;
  }
  .news-index ul { list-style: none; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .news-index li { display: flex; align-items: baseline; gap: 16px; padding: 13px 20px; border-bottom: 1px solid var(--line); }
  .news-index li:last-child { border-bottom: none; }
  .news-index .ix-date { color: var(--wood); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; font-size: 13px; }
  .news-index a { color: var(--ink); text-decoration: none; font-size: 14px; line-height: 1.6; }
  .news-index a:hover { color: var(--orange-ink); text-decoration: underline; }

  /* ===== ARTICLE LIST ===== */
  .news-list-page { max-width: 820px; margin: 16px auto 0; padding: 0 40px 40px; }

  .news-entry {
    padding: 36px 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 86px; /* 固定ナビ分のオフセット */
  }
  .news-entry:first-child { border-top: none; }

  .news-entry-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .news-entry-date { color: var(--wood); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 13.5px; }
  .news-cat {
    display: inline-flex; align-items: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
  }
  .news-cat.info  { background: var(--card); color: var(--ink-soft); border: 1px solid var(--line); }
  .news-cat.press { background: var(--orange-soft); color: var(--orange-ink); }

  .news-entry-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900; font-size: 23px; line-height: 1.5;
    color: var(--text-dark); margin-bottom: 18px;
    display: flex; align-items: baseline; gap: 8px;
  }
  .news-permalink {
    color: var(--ink-faint); text-decoration: none; font-size: 16px; font-weight: 700;
    opacity: 0; transition: opacity .15s, color .15s; flex-shrink: 0;
  }
  .news-entry:hover .news-permalink { opacity: .6; }
  .news-permalink:hover { color: var(--orange); opacity: 1 !important; }

  .news-body { font-size: 14.5px; line-height: 1.95; color: var(--ink); }
  .news-body p { margin-bottom: 14px; }
  .news-body p:last-child { margin-bottom: 0; }
  .news-body a { color: var(--orange-ink); text-decoration: underline; word-break: break-all; }
  .news-body a:hover { color: var(--orange); }
  .news-body .lbl { font-weight: 700; color: var(--text-dark); }
  .news-body .box {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px 20px; margin: 16px 0; font-size: 13.5px;
  }
  .news-body .box p { margin-bottom: 6px; }
  .news-body .contact-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700; text-decoration: none; color: var(--orange-ink);
  }
  .news-body .contact-link:hover { text-decoration: underline; }
  .news-body .contact-link svg { width: 15px; height: 15px; }

  @media (max-width: 768px) {
    .breadcrumb, .news-head, .news-index, .news-list-page { padding-left: 20px; padding-right: 20px; }
    .news-head h1 { font-size: 27px; }
    .news-entry-title { font-size: 20px; }
  }
