    /* ============================================
       Design Tokens — news/index.html と同期
       ============================================ */
    :root {
      --c-accent: #EC7D5F;
      --c-accent-light: #F29A7D;
      --c-cta-gradient: linear-gradient(135deg, #F29A7D 0%, #EC7D5F 100%);
      --c-text: #222222;
      --c-text-light: #333333;
      --c-text-muted: #888;
      --c-border: #e0e0e0;
      --c-bg: #fff;
      --c-bg-cream: #FEF7E7;
      --c-bg-gray: #f5f5f5;
      --c-cream-text: #F0EBDE;

      --ff-sans: '游ゴシック Medium', 'Yu Gothic Medium', YuGothic, '游ゴシック', 'Yu Gothic', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
      --ff-serif: 'Shippori Mincho B1', 'Noto Serif JP', serif;
      --ff-display: 'Cormorant Infant', 'Cormorant Garamond', serif;

      --container-width: min(1680px, 87.5vw);   /* 基準書§7-A 流体コンテナ(左右ガター6.25vw)。旧1340px固定から統一 */
      --container-pad: 0;                          /* 87.5vw に左右ガターを内包するため内側paddingは0 */

      --radius-sm: 4px;
      --radius-md: 8px;

      --content-scale: 1;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--ff-sans);
      color: var(--c-text);
      background: var(--c-bg);
      line-height: 1.9;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.is-visible { opacity: 1; transform: none; }
    .reveal-fade { opacity: 0; transition: opacity 1s ease; }
    .reveal-fade.is-visible { opacity: 1; }

    .page-body { padding-top: 100px; }

    /* ============================================
       Sub-Page Hero
       ============================================ */
    .sub-hero {
      position: relative;
      height: 380px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .sub-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    .sub-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.50) 100%);
    }
    .sub-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: #fff;
    }
    .sub-hero-en {
      font-family: var(--ff-display);
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.3em;
      color: var(--c-cream-text);
      opacity: 0.9;
      margin-bottom: 10px;
    }
    .sub-hero-title {
      font-family: var(--ff-serif);
      font-size: 44px;
      font-weight: 500;
      letter-spacing: 0.18em;
      line-height: 1.4;
      color: #fff;
    }

    /* ============================================
       Breadcrumb
       ============================================ */
    .breadcrumb {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 20px 50px;
      font-size: 14px;
      color: var(--c-text-muted);
      letter-spacing: 0.05em;
      text-align: right;
    }
    .breadcrumb a:hover { color: var(--c-accent); }
    .breadcrumb-sep { margin: 0 10px; color: var(--c-border); }
    .breadcrumb .is-current {
      color: var(--c-text);
      display: inline-block;
      max-width: 30em;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      vertical-align: bottom;
    }

    /* ============================================
       News 2カラムレイアウト
       ============================================ */
    .news-section {
      padding: 30px 0 100px;
    }
    .news-layout {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: var(--container-pad);
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 60px;
      align-items: start;
    }

    /* ============================================
       Article
       ============================================ */
    .article-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .article-date {
      font-family: var(--ff-display);
      font-size: 16px;
      color: var(--c-text);
      letter-spacing: 0.04em;
    }
    .article-badge {
      display: inline-block;
      padding: 3px 14px;
      border: 1px solid var(--c-accent);
      border-radius: 999px;
      font-size: 12px;
      color: var(--c-accent);
      letter-spacing: 0.05em;
      line-height: 1.6;
    }
    .article-title {
      font-family: var(--ff-serif);
      font-size: 28px;
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: 0.06em;
      color: var(--c-text);
      padding-bottom: 24px;
      border-bottom: 1px solid var(--c-border);
    }
    .article-body {
      padding: 36px 4px 8px;
      font-size: 16px;
      line-height: 2.0;
      color: var(--c-text-light);
      letter-spacing: 0.03em;
    }
    .article-body p { margin: 0 0 1.6em; }
    .article-body p:last-child { margin-bottom: 0; }
    /* 記事本文内のリスト (CMS入稿)。冒頭リセット (ul,ol {list-style:none}) を本文スコープで戻す。
       microCMS時代から黒丸が消えていた不具合の修正 (2026-07-14)。 */
    .article-body ul,
    .article-body ol { margin: 0 0 1.6em; padding-left: 1.6em; }
    .article-body ul { list-style: disc; }
    .article-body ol { list-style: decimal; }
    .article-body li { margin: 0 0 0.4em; }
    .article-body li[data-list="bullet"] { list-style-type: disc; } /* Quill 2 の <ol><li data-list="bullet"> 保存形式でも黒丸で表示 */
    /* 本文中のリンクは一般的な青字＋下線で「リンクと分かる」ようにする */
    .article-body a {
      color: #1565c0;
      text-decoration: underline;
      text-underline-offset: 0.15em;
      overflow-wrap: anywhere;
    }
    .article-body a:hover { color: #0d3f7a; }
    .article-body .lead {
      font-size: 17px;
      color: var(--c-text);
    }
    .article-body h2 {
      font-family: var(--ff-serif);
      font-size: 22px;
      font-weight: 500;
      color: var(--c-text);
      letter-spacing: 0.06em;
      padding-left: 16px;
      border-left: 3px solid var(--c-accent);
      margin: 40px 0 18px;
    }
    /* 中見出し (CMSの見出し2段階の下位。h2=明朝+左線に対し、こちらは本文と同じゴシックの太字
       = microCMS時代の素のh3と同じ見た目。明朝化はhoshi指摘で取りやめ 2026-07-14) */
    .article-body h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--c-text);
      margin: 32px 0 14px;
    }
    .article-body .note-box {
      background: var(--c-bg-cream);
      border-radius: var(--radius-sm);
      padding: 22px 24px;
      margin: 28px 0;
      font-size: 15px;
      line-height: 1.9;
    }
    .article-body .note-box dt {
      display: inline-block;
      min-width: 6em;
      font-weight: 500;
      color: var(--c-accent);
    }
    .article-body .note-box dd {
      display: inline;
      margin: 0;
    }
    .article-body .note-box .row {
      padding: 4px 0;
      border-bottom: 1px dotted rgba(0,0,0,0.08);
    }
    .article-body .note-box .row:last-child { border-bottom: 0; }
    .article-image {
      margin: 32px 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .article-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .article-image-caption {
      font-size: 13px;
      color: var(--c-text-muted);
      letter-spacing: 0.04em;
      text-align: center;
      margin-top: 8px;
    }

    /* ===== Article ナビ ===== */
    .article-nav {
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid var(--c-border);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
      font-size: 14px;
      letter-spacing: 0.04em;
    }
    .article-nav a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--c-text);
      transition: color 0.3s;
    }
    .article-nav a:hover { color: var(--c-accent); }
    .article-nav .article-nav-prev { justify-self: start; }
    .article-nav .article-nav-back {
      justify-self: center;
      padding: 12px 28px;
      border: 1px solid var(--c-text);
      border-radius: var(--radius-sm);
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .article-nav .article-nav-back:hover {
      background: var(--c-text);
      color: #fff;
    }
    .article-nav .article-nav-next { justify-self: end; }
    .article-nav .is-disabled {
      color: var(--c-border);
      cursor: not-allowed;
    }

    /* ============================================
       Sidebar (news/index.html と同じ)
       ============================================ */
    .news-sidebar { display: flex; flex-direction: column; gap: 40px; }
    .news-side-block {
      border: 1px solid var(--c-border);
      border-radius: var(--radius-sm);
      padding: 24px 22px;
      background: #fff;
    }
    .news-side-head {
      padding-bottom: 14px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--c-border);
    }
    .news-side-head-ja {
      display: block;
      font-family: var(--ff-serif);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--c-text);
    }
    .news-side-head-en {
      display: block;
      font-family: var(--ff-display);
      font-size: 13px;
      letter-spacing: 0.16em;
      color: var(--c-accent);
      margin-top: 2px;
    }
    .news-side-list { display: flex; flex-direction: column; }
    .news-side-list li {
      border-bottom: 1px dotted var(--c-border);
    }
    .news-side-list li:last-child { border-bottom: 0; }
    .news-side-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 0;
      font-size: 14px;
      line-height: 1.6;
      letter-spacing: 0.03em;
      color: var(--c-text);
      transition: color 0.3s;
    }
    .news-side-list a:hover { color: var(--c-accent); }
    .news-side-list a::after {
      content: '›';
      font-family: var(--ff-display);
      font-size: 18px;
      color: var(--c-text-muted);
      flex-shrink: 0;
    }
    .news-side-list .count {
      font-family: var(--ff-display);
      font-size: 13px;
      color: var(--c-text-muted);
      margin-left: 4px;
    }
    .news-archive details {
      border-bottom: 1px dotted var(--c-border);
    }
    .news-archive details:last-child { border-bottom: 0; }
    .news-archive summary {
      cursor: pointer;
      list-style: none;
      padding: 12px 0;
      font-size: 14px;
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .news-archive summary::-webkit-details-marker { display: none; }
    .news-archive summary::after {
      content: '+';
      font-family: var(--ff-display);
      font-size: 18px;
      color: var(--c-text-muted);
    }
    .news-archive details[open] summary::after { content: '−'; }
    .news-archive .news-archive-month {
      padding: 4px 0 10px 14px;
      display: flex;
      flex-direction: column;
    }
    .news-archive .news-archive-month a {
      padding: 6px 0;
      font-size: 13px;
      color: var(--c-text-light);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .news-archive .news-archive-month a::before {
      content: '›';
      color: var(--c-text-muted);
    }

    /* ============================================
       Bottom CTA
       ============================================ */
    .bottom-cta {
      position: relative;
      height: 360px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bottom-cta-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    .bottom-cta-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
    }
    .bottom-cta-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: #fff;
      padding: 0 20px;
    }
    .bottom-cta-title {
      font-family: var(--ff-serif);
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 0.12em;
      margin-bottom: 12px;
    }
    .bottom-cta-desc {
      font-size: 16px;
      letter-spacing: 0.05em;
      color: var(--c-cream-text);
      opacity: 0.9;
      margin-bottom: 28px;
    }
    .bottom-cta-btns {
      display: inline-flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: var(--c-cta-gradient);
      color: #fff;
      font-size: 16px;
      letter-spacing: 0.05em;
      border-radius: var(--radius-sm);
      transition: opacity 0.3s;
    }
    .btn-cta:hover { opacity: 0.85; }
    /* === 統一ボタン右矢印 (arrow_right.webp 10×10) === */
    .btn-arrow {
      width: 10px;
      height: 10px;
      flex-shrink: 0;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
      transition: transform 0.2s ease;
    }
    .btn-outline:hover .btn-arrow { transform: translateX(4px); filter: invert(1); }
    .btn-cta .btn-arrow,
    .form-submit .btn-arrow { filter: invert(1); }
    .btn-cta:hover .btn-arrow,
    .form-submit:hover .btn-arrow { transform: translateX(4px); }
    .bottom-cta-btns .btn-outline .btn-arrow { filter: invert(1); }
    .bottom-cta-btns .btn-outline:hover .btn-arrow { filter: none; transform: translateX(4px); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      height: 46px;
      padding: 0 28px;
      border: 1px solid #fff;
      border-radius: 5px;
      color: #fff;
      font-family: var(--ff-serif);
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.08em;
      background: transparent;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }
    .btn-outline:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

    /* ============================================
       Responsive
       ============================================ */
    @media (max-width: 960px) {
      .news-layout {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .sub-hero { height: 280px; }
      .sub-hero-title { font-size: 30px; letter-spacing: 0.12em; }
      .breadcrumb { padding: 14px 20px; font-size: 12px; text-align: left; }
      .news-section { padding: 20px 0 60px; }
      .news-layout { padding: 0 0; }
      .article-title { font-size: 22px; }
      .article-body h2 { font-size: 18px; }
      .article-body h3 { font-size: 17px; }
      .bottom-cta { height: 280px; }
      .bottom-cta-title { font-size: 22px; }
      .article-nav {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
      }
      .article-nav .article-nav-prev,
      .article-nav .article-nav-back,
      .article-nav .article-nav-next {
        justify-self: center;
      }
    }
    @media (max-width: 560px) {
      .sub-hero-en { font-size: 15px; }
      .sub-hero-title { font-size: 24px; }
    }

/* ============================================
   SP: Scroll Reveal 高速化(フリックでも待たせない)
   ============================================ */
@media (max-width: 767px) {
  .reveal {
    transform: translateY(20px);
    transition-duration: 0.55s, 0.55s;
  }
  .reveal-fade { transition-duration: 0.6s; }
  [data-reveal="stagger"] > .reveal-item {
    transform: translateY(16px);
    transition-duration: 0.5s, 0.5s;
  }
  [data-reveal="stagger"].is-visible > .reveal-item:nth-child(2) { transition-delay: 70ms; }
  [data-reveal="stagger"].is-visible > .reveal-item:nth-child(3) { transition-delay: 140ms; }
  [data-reveal="stagger"].is-visible > .reveal-item:nth-child(4) { transition-delay: 210ms; }
}
