@charset "UTF-8";
/* ==========================================================================
   渡辺しょう 公式サイト — デモ用スタイルシート
   WordPress テーマ化を前提に、テンプレート単位で分割しやすい構成にしています。
   1. トークン / 2. リセット / 3. 共通レイアウト / 4. ヘッダー・フッター
   5. コンポーネント / 6. ページ別 / 7. 記事本文(prose) / 8. ユーティリティ
   ========================================================================== */

/* ==========================================================================
   1. デザイントークン
   ========================================================================== */
:root {
  /* --- 配色 --------------------------------------------------------------
     navy  : 議会・信頼感のベースカラー
     green : 府中市章／緑のネクタイに合わせたアクセント
     ------------------------------------------------------------------- */
  --navy-900: #0a1f35;
  --navy-800: #0f2d4a;
  --navy-700: #173f63;
  --navy-100: #e7edf3;
  --navy-050: #f4f7fa;

  --green-900: #04492c;
  --green-800: #05603a;
  --green-700: #0a7d46;
  --green-600: #109354;
  --green-100: #e3f2e9;

  --ink-900: #14181c;
  --ink-700: #333a42;
  --ink-500: #5c6672;
  /* 日付など小さな文字にも使うため、白背景で 4.5:1（WCAG AA）を確保した値 */
  --ink-300: #68717d;
  --line: #dfe3e8;
  --line-soft: #eceff2;

  --paper: #ffffff;
  --paper-warm: #faf9f6;
  --paper-tint: #f5f7f9;

  --accent-sun: #e8a020;         /* お知らせ・強調バッジ用の差し色 */

  /* --- タイポグラフィ --------------------------------------------------- */
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
               "Yu Gothic Medium", "Meiryo", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --font-en: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* --- 余白・寸法 ------------------------------------------------------- */
  --wrap: 1120px;
  --wrap-narrow: 760px;
  --gutter: 24px;
  --radius: 10px;
  --radius-lg: 18px;

  --header-h: 76px;

  --shadow-sm: 0 1px 2px rgba(15, 45, 74, .06), 0 2px 8px rgba(15, 45, 74, .05);
  --shadow-md: 0 4px 12px rgba(15, 45, 74, .08), 0 12px 32px rgba(15, 45, 74, .07);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
    --header-h: 62px;
  }
}

/* ==========================================================================
   2. リセット / ベース
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-900);
  background: var(--paper);
  letter-spacing: .02em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-800); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-700); }

h1, h2, h3, h4 { margin: 0; line-height: 1.5; font-weight: 700; letter-spacing: .01em; }
p, ul, ol, dl, figure, table { margin: 0; }
ul, ol { padding-left: 0; list-style: none; }

button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 2px;
  border-radius: 3px;
}

/* キーボード操作時のみ表示されるスキップリンク */
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 999;
  padding: 10px 18px; background: var(--navy-800); color: #fff;
  border-radius: 0 0 8px 8px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ==========================================================================
   3. 共通レイアウト
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: 88px; }
.section--tight { padding-block: 60px; }
.section--tint { background: var(--paper-tint); }
.section--warm { background: var(--paper-warm); }
.section--navy { background: var(--navy-800); color: #fff; }

@media (max-width: 767px) {
  .section { padding-block: 56px; }
  .section--tight { padding-block: 40px; }
}

/* --- セクション見出し（英字キッカー + 日本語見出し） --------------------- */
.sec-head { margin-bottom: 40px; }
.sec-head--center { text-align: center; }

.sec-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px;
}
.sec-kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--green-700); border-radius: 2px;
}
.sec-head--center .sec-kicker::after {
  content: ""; width: 26px; height: 2px; background: var(--green-700); border-radius: 2px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(25px, 4.2vw, 34px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy-900);
}
.section--navy .sec-title { color: #fff; }
.section--navy .sec-kicker { color: #7fd4a5; }
.section--navy .sec-kicker::before,
.section--navy .sec-kicker::after { background: #7fd4a5; }

.sec-lead {
  margin-top: 14px;
  color: var(--ink-700);
  font-size: 15.5px;
}
.section--navy .sec-lead { color: rgba(255, 255, 255, .82); }

/* ==========================================================================
   4. ヘッダー / フッター
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line-soft);
}
/* 背景のぼかしは疑似要素に持たせる。
   .site-header 自身に backdrop-filter を付けると、中の position:fixed な
   モバイルメニューの基準がヘッダーになってしまい、画面全体に広がらなくなるため。 */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
/* PC ではヘッダーだけ .wrap の最大幅（1120px）を外し、画面幅いっぱいに広げる */
@media (min-width: 1024px) {
  .site-header .wrap { max-width: none; padding-inline: 40px; }
}

/* --- ロゴ --------------------------------------------------------------- */
/* アイコンを廃止したため、名前と肩書きを縦に積む構成に。
   .brand 自体を縦積みのコンテナにすることで、間に確実な余白ができる。 */
.brand { display: flex; flex-direction: column; justify-content: center; color: var(--navy-900); }
.brand:hover { color: var(--navy-900); }
.brand__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 700; line-height: 1.2; letter-spacing: .04em;
}
.brand__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em; line-height: 1.3;
  color: var(--ink-500); margin-top: 6px;
}
@media (max-width: 400px) {
  .brand__name { font-size: 23px; }
  .brand__role { font-size: 10px; margin-top: 4px; }
}

/* PC 幅ではメニューと「ご意見はこちらから」ボタンを横並びにする */
@media (min-width: 1024px) {
  .site-nav { display: flex; align-items: center; gap: 4px; }
}

/* --- グローバルナビ ----------------------------------------------------- */
.gnav { display: flex; align-items: center; gap: 4px; }
.gnav a {
  position: relative;
  display: block; padding: 9px 13px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-700);
  border-radius: 7px;
}
.gnav a:hover { color: var(--navy-800); background: var(--navy-050); }
.gnav a[aria-current="page"] { color: var(--navy-800); font-weight: 700; }
.gnav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--green-700); border-radius: 2px;
}

.header-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: 8px; padding: 10px 18px;
  background: var(--green-700); color: #fff;
  border-radius: 999px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.header-cta:hover { background: var(--green-800); color: #fff; transform: translateY(-1px); }

/* --- ハンバーガー ------------------------------------------------------- */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; margin-right: -8px;
  position: relative; border-radius: 8px;
}
.nav-toggle span {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--navy-800); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: #fff;
    padding: 24px var(--gutter) 48px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .gnav { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav a {
    padding: 16px 4px; font-size: 17px; border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .gnav a[aria-current="page"]::after { display: none; }
  .gnav a[aria-current="page"] { color: var(--green-700); }
  .header-cta { margin: 24px 0 0; justify-content: center; padding: 15px; font-size: 15.5px; }
  body.nav-open { overflow: hidden; }
}

/* --- フッター ----------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .74); padding-block: 64px 28px; }
.site-footer a { color: rgba(255, 255, 255, .74); }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, .13);
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

.footer-brand__name {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: #fff; letter-spacing: .04em;
}
.footer-brand__role { font-size: 13px; color: rgba(255, 255, 255, .6); margin-top: 6px; }
.footer-brand__text { font-size: 14px; margin-top: 18px; line-height: 1.9; }

.footer-col__title {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; color: #fff;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 11px; font-size: 14.5px; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12.5px; color: rgba(255, 255, 255, .5);
}

/* SNS ボタン */
.sns-list { display: flex; gap: 10px; margin-top: 20px; }
.sns-list a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .09);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.sns-list a:hover { background: var(--green-700); transform: translateY(-2px); }
.sns-list svg { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   5. コンポーネント
   ========================================================================== */

/* --- ボタン ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15.5px; font-weight: 700; letter-spacing: .04em;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }

.btn--primary { background: var(--green-700); color: #fff; box-shadow: 0 6px 18px rgba(10, 125, 70, .22); }
.btn--primary:hover { background: var(--green-800); color: #fff; box-shadow: 0 10px 24px rgba(10, 125, 70, .28); }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-900); color: #fff; }

.btn--ghost { border: 1.5px solid var(--line); color: var(--navy-800); background: #fff; }
.btn--ghost:hover { border-color: var(--green-700); color: var(--green-700); background: #fff; }

.btn--on-navy { background: #fff; color: var(--navy-900); }
.btn--on-navy:hover { background: #fff; color: var(--green-800); }

.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--wide { width: 100%; }

/* --- バッジ / タグ ------------------------------------------------------ */
.badge {
  display: inline-block; padding: 4px 11px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; line-height: 1.7;
  border-radius: 4px;
  background: var(--navy-100); color: var(--navy-800);
  white-space: nowrap;
}
.badge--green { background: var(--green-100); color: var(--green-800); }
.badge--sun { background: #fdf1d9; color: #8a5c05; }
.badge--outline { background: transparent; border: 1px solid var(--line); color: var(--ink-500); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a {
  display: inline-block; padding: 6px 14px;
  font-size: 13px; color: var(--ink-700);
  background: var(--paper-tint); border: 1px solid var(--line-soft); border-radius: 999px;
  transition: all .2s var(--ease);
}
.tag-list a:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* --- 記事カード --------------------------------------------------------- */
.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.post-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 600px) { .post-grid, .post-grid--2 { grid-template-columns: 1fr; gap: 18px; } }

.post-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.post-card__thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-050); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__cat {
  position: absolute; left: 12px; top: 12px;
  padding: 5px 12px; border-radius: 4px;
  background: rgba(15, 45, 74, .88); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  backdrop-filter: blur(4px);
}

.post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__date {
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500; letter-spacing: .08em; color: var(--ink-300);
  margin-bottom: 8px;
}
.post-card__title {
  font-size: 17px; font-weight: 700; line-height: 1.65; color: var(--navy-900);
  transition: color .2s var(--ease);
}
.post-card:hover .post-card__title { color: var(--green-700); }
.post-card__excerpt {
  margin-top: 11px; font-size: 14px; line-height: 1.85; color: var(--ink-500);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__more {
  margin-top: auto; padding-top: 16px;
  font-size: 13.5px; font-weight: 700; color: var(--green-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.post-card__more svg { width: 13px; height: 13px; fill: currentColor; transition: transform .2s var(--ease); }
.post-card:hover .post-card__more svg { transform: translateX(3px); }

/* --- 記事リスト（横型・お知らせ用） ------------------------------------- */
.post-list { border-top: 1px solid var(--line-soft); }
.post-list li { border-bottom: 1px solid var(--line-soft); }
.post-list a {
  display: grid; grid-template-columns: 108px 96px 1fr; align-items: center; gap: 18px;
  padding: 20px 6px;
  transition: background .2s var(--ease);
}
.post-list a:hover { background: var(--navy-050); }
.post-list__date {
  font-family: var(--font-en); font-size: 13.5px; letter-spacing: .07em; color: var(--ink-300);
}
.post-list__title { font-size: 15.5px; font-weight: 500; color: var(--ink-900); line-height: 1.7; }
.post-list a:hover .post-list__title { color: var(--green-700); }
@media (max-width: 640px) {
  .post-list a { grid-template-columns: auto 1fr; gap: 8px 12px; padding: 17px 4px; }
  .post-list__title { grid-column: 1 / -1; }
}

/* --- パンくず ----------------------------------------------------------- */
.breadcrumb { background: var(--paper-tint); border-bottom: 1px solid var(--line-soft); }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-block: 13px;
  font-size: 12.5px; color: var(--ink-500);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "›"; color: var(--ink-300); }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb [aria-current="page"] { color: var(--ink-900); font-weight: 500; }

/* --- ページヘッダー（下層ページ共通） ----------------------------------- */
.page-head {
  background: var(--navy-800); color: #fff;
  padding-block: 58px 54px;
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; right: -80px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}
.page-head__kicker {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: #7fd4a5;
  margin-bottom: 12px;
}
.page-head__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 40px); font-weight: 600; line-height: 1.4;
}
.page-head__lead { margin-top: 16px; font-size: 15px; color: rgba(255, 255, 255, .78); max-width: 640px; }

/* --- ページネーション --------------------------------------------------- */
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 56px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 44px; height: 44px; padding-inline: 12px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-en); font-size: 14.5px; color: var(--ink-700);
  transition: all .2s var(--ease);
}
.pagination a:hover { border-color: var(--green-700); color: var(--green-700); }
.pagination .is-current { background: var(--navy-800); border-color: var(--navy-800); color: #fff; font-weight: 600; }
.pagination .is-dots { border: 0; }

/* --- 情報テーブル ------------------------------------------------------- */
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td { padding: 16px 4px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.info-table th { width: 150px; font-weight: 700; color: var(--navy-800); }
.info-table td { color: var(--ink-700); }
@media (max-width: 560px) {
  .info-table th, .info-table td { display: block; width: auto; }
  .info-table th { padding-bottom: 2px; border-bottom: 0; font-size: 13px; color: var(--green-700); }
  .info-table td { padding-top: 0; }
}

/* --- 年表（経歴） ------------------------------------------------------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(var(--green-600), var(--navy-100));
}
.timeline__item { position: relative; padding-bottom: 30px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -30px; top: 9px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--green-600);
}
.timeline__year {
  font-family: var(--font-en); font-size: 15px; font-weight: 600; letter-spacing: .06em;
  color: var(--green-700); margin-bottom: 5px;
}
.timeline__body { font-size: 15px; color: var(--ink-700); line-height: 1.9; }
.timeline__body strong { color: var(--navy-900); font-weight: 700; }

/* --- カード（汎用） ----------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 32px;
}
.card--flat { border-radius: var(--radius); padding: 26px; }

/* --- 注記ボックス ------------------------------------------------------- */
.note {
  border-left: 4px solid var(--green-600);
  background: var(--green-100);
  padding: 18px 22px; border-radius: 0 8px 8px 0;
  font-size: 14.5px; color: var(--ink-700);
}
.note--demo { border-color: var(--accent-sun); background: #fdf6e7; }
.note strong { color: var(--navy-900); }

/* ==========================================================================
   6. ページ別
   ========================================================================== */

/* --- トップ：ヒーロー --------------------------------------------------- */
.hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  /* WebP 対応ブラウザには軽いほうを配信し、非対応環境は下の jpg にフォールバック */
  background: url("../images/hero-bg.jpg") center 38% / cover no-repeat;
  background-image: image-set(url("../images/hero-bg.webp") type("image/webp"),
                              url("../images/hero-bg.jpg") type("image/jpeg"));
  opacity: .2;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy-900) 8%, rgba(15, 45, 74, .9) 48%, rgba(15, 45, 74, .55) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 56px;
  padding-block: 84px 88px;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding-block: 52px 56px; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px; margin-bottom: 22px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .06em;
}
.hero__eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #7fd4a5; box-shadow: 0 0 0 3px rgba(127, 212, 165, .28);
}

.hero__title {
  font-family: var(--font-serif);
  /* 「府中の『あたりまえ』を、」が2行目に折り返さず収まるサイズに調整 */
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600; line-height: 1.46; letter-spacing: .01em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(transparent 66%, rgba(16, 147, 84, .55) 66%);
  padding-inline: 2px;
}
.hero__lead {
  margin-top: 22px; max-width: 33em;
  font-size: 16px; line-height: 2; color: rgba(255, 255, 255, .84);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.hero__name {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__name b { font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: .1em; }
.hero__name span { font-size: 13px; color: rgba(255, 255, 255, .62); letter-spacing: .06em; }

/* ヒーロー右：人物写真 */
.hero__figure { position: relative; }
.hero__figure img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}
.hero__figure::before {
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 2px solid rgba(127, 212, 165, .5); border-radius: var(--radius-lg);
  z-index: -1;
}
@media (max-width: 900px) {
  .hero__figure { max-width: 340px; margin-inline: auto; }
}

/* --- トップ：数字で見る活動 --------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: #fff; overflow: hidden;
}
.stats__item { padding: 30px 22px; text-align: center; border-right: 1px solid var(--line-soft); }
.stats__item:last-child { border-right: 0; }
.stats__num {
  font-family: var(--font-en); font-size: 40px; font-weight: 600; line-height: 1;
  color: var(--navy-800); letter-spacing: .01em;
}
.stats__num small { font-size: 16px; font-weight: 500; margin-left: 3px; color: var(--ink-500); }
.stats__label { margin-top: 10px; font-size: 13px; color: var(--ink-500); letter-spacing: .04em; }
@media (max-width: 767px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--line-soft); }
  .stats__item:nth-child(2n) { border-right: 0; }
  .stats__item:nth-last-child(-n+2) { border-bottom: 0; }
  .stats__num { font-size: 33px; }
}

/* --- 政策カード --------------------------------------------------------- */
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1023px) { .policy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .policy-grid { grid-template-columns: 1fr; gap: 18px; } }

/* トップページ用：PCでは1カラムにし、カード内部を「説明 左／項目 右」の
   横並びにして画面幅いっぱいに使う。タブレット以下は通常のカード型に戻す。 */
.policy-grid--roomy { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .policy-grid--roomy { grid-template-columns: 1fr; } }
@media (min-width: 1024px) {
  .policy-grid--roomy {
    grid-template-columns: 1fr; gap: 18px;
    max-width: 1000px; margin-inline: auto;
  }
  .policy-grid--roomy .policy-card {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    column-gap: 32px;
    padding: 34px 40px;
  }
  /* 左ブロック・項目リストをそれぞれ1つのブロックとして扱い、背比べで縦中央に揃える */
  .policy-grid--roomy .policy-card__left {
    grid-column: 1; grid-row: 1 / -1; align-self: center;
    display: grid; grid-template-columns: 52px 1fr; column-gap: 20px; align-items: center;
  }
  /* 左ブロック内をさらに「アイコン｜見出し・説明」の2カラムに分け、
     外側と合わせて PC では「アイコン／見出し・説明／項目」の3カラムに見せる */
  .policy-grid--roomy .policy-card__icon { grid-column: 1; grid-row: 1 / -1; margin-bottom: 0; }
  .policy-grid--roomy .policy-card__title { grid-column: 2; }
  .policy-grid--roomy .policy-card__text { grid-column: 2; }
  .policy-grid--roomy .policy-card__list {
    grid-column: 2; grid-row: 1 / -1; align-self: center;
    margin-top: 0; padding-top: 0; border-top: 0;
    padding-left: 24px; border-left: 1px dashed var(--line);
  }
}

.policy-card {
  position: relative;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.policy-card__icon {
  position: relative;
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--green-100); color: var(--green-800);
}
.policy-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; }
/* 番号はアイコンに重ねるバッジとして、アイコンとひとつのセットにする */
.policy-card__no {
  position: absolute; top: -8px; right: -8px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-family: var(--font-en); font-size: 10.5px; font-weight: 700; letter-spacing: 0;
  box-shadow: 0 0 0 3px #fff;
}
.policy-card__title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; line-height: 1.55;
  color: var(--navy-900); margin-bottom: 12px;
}
.policy-card__text { font-size: 14.5px; line-height: 1.95; color: var(--ink-700); }
.policy-card__list { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); }
.policy-card__list li {
  position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-700); margin-bottom: 8px;
}
.policy-card__list li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--green-600);
}

/* --- プロフィール抜粋（トップ） ----------------------------------------- */
.about {
  display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 32px; } }

.about__figure { position: relative; }
.about__figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  padding: 12px 16px; border-radius: 9px;
  background: rgba(10, 31, 53, .82); backdrop-filter: blur(6px);
  color: #fff; font-size: 12.5px; line-height: 1.7;
}
.about__title {
  font-family: var(--font-serif); font-size: clamp(14px, 1.8vw, 25px);
  font-weight: 600; line-height: 1.6; color: var(--navy-900); margin-bottom: 20px;
}
.about__text { font-size: 15.5px; line-height: 2.05; color: var(--ink-700); }
.about__text + .about__text { margin-top: 18px; }

/* --- 活動ギャラリー ----------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(10, 31, 53, .86));
  color: #fff; font-size: 12.5px; line-height: 1.6;
}

/* --- CTA バンド --------------------------------------------------------- */
.cta-band { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; left: 50%; top: -140px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 147, 84, .3), transparent 68%);
}
.cta-band__inner { position: relative; text-align: center; padding-block: 76px; }
.cta-band__title {
  font-family: var(--font-serif); font-size: clamp(23px, 4vw, 33px); font-weight: 600; line-height: 1.5;
}
.cta-band__text { margin-top: 16px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* --- ブログ一覧：2カラム ------------------------------------------------ */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
@media (max-width: 1023px) { .blog-layout { grid-template-columns: 1fr; gap: 48px; } }

.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 32px; }
@media (max-width: 1023px) { .sidebar { position: static; } }

.widget { }
.widget__title {
  font-size: 15px; font-weight: 700; color: var(--navy-900);
  padding-bottom: 11px; margin-bottom: 16px;
  border-bottom: 2px solid var(--navy-800);
  display: flex; align-items: center; gap: 8px;
}
.widget__title::before {
  content: ""; width: 4px; height: 15px; border-radius: 2px; background: var(--green-600);
}

.widget-profile { text-align: center; padding: 26px 22px; background: var(--paper-tint); border-radius: var(--radius-lg); }
.widget-profile img { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; }
.widget-profile__name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--navy-900); }
.widget-profile__role { font-size: 12.5px; color: var(--ink-500); margin-top: 5px; }
.widget-profile__text { font-size: 13.5px; line-height: 1.85; color: var(--ink-700); margin-top: 14px; text-align: left; }

.widget-list li { border-bottom: 1px solid var(--line-soft); }
.widget-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 11px 2px; font-size: 14px; color: var(--ink-700);
}
.widget-list a:hover { color: var(--green-700); }
.widget-list .count { font-family: var(--font-en); font-size: 12.5px; color: var(--ink-300); }

.widget-rank { display: grid; gap: 14px; }
.widget-rank a { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center; }
.widget-rank img { width: 72px; height: 54px; object-fit: cover; border-radius: 6px; }
.widget-rank__title {
  font-size: 13.5px; line-height: 1.65; color: var(--ink-900);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.widget-rank a:hover .widget-rank__title { color: var(--green-700); }

.search-form { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.search-form input {
  flex: 1; min-width: 0; padding: 12px 14px; border: 0; font-size: 14.5px; font-family: inherit;
}
.search-form input:focus { outline: none; }
.search-form button {
  padding-inline: 16px; background: var(--navy-800); color: #fff; display: grid; place-items: center;
}
.search-form button svg { width: 17px; height: 17px; fill: currentColor; }

/* --- 記事詳細 ----------------------------------------------------------- */
.article-head { padding-block: 44px 30px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; }
.article-date {
  font-family: var(--font-en); font-size: 13.5px; letter-spacing: .07em; color: var(--ink-500);
}
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(25px, 4.4vw, 36px); font-weight: 600; line-height: 1.55; color: var(--navy-900);
}
.article-thumb { margin-block: 32px; border-radius: var(--radius-lg); overflow: hidden; }

.share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.share__label { font-size: 13px; font-weight: 700; color: var(--ink-500); letter-spacing: .06em; }
.share a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-tint); color: var(--navy-800);
  transition: all .2s var(--ease);
}
.share a:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.share svg { width: 17px; height: 17px; fill: currentColor; }

.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px;
}
@media (max-width: 600px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav a {
  padding: 20px 22px; border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.post-nav a:hover { border-color: var(--green-600); background: var(--navy-050); }
.post-nav__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--green-700); margin-bottom: 7px; }
.post-nav__title { font-size: 14.5px; line-height: 1.7; color: var(--ink-900); }
.post-nav__next { text-align: right; }

/* --- 目次 --------------------------------------------------------------- */
.toc {
  background: var(--paper-tint); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 24px 28px; margin-block: 32px;
}
.toc__title {
  font-size: 15px; font-weight: 700; color: var(--navy-900);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.toc__title svg { width: 17px; height: 17px; fill: var(--green-700); }
.toc ol { counter-reset: toc; }
.toc li { counter-increment: toc; margin-bottom: 9px; padding-left: 30px; position: relative; }
.toc li::before {
  content: counter(toc); position: absolute; left: 0; top: 4px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-en); font-size: 11.5px; display: grid; place-items: center;
}
.toc a { font-size: 14.5px; color: var(--ink-700); line-height: 1.7; }
.toc a:hover { color: var(--green-700); }

/* --- お問い合わせフォーム ----------------------------------------------- */
.form-grid { display: grid; gap: 24px; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 14.5px; font-weight: 700; color: var(--navy-900); display: flex; align-items: center; gap: 9px; }
.form-req { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 3px; background: #fdecec; color: #b3261e; letter-spacing: .05em; }
.form-any { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 3px; background: var(--paper-tint); color: var(--ink-500); letter-spacing: .05em; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 14px 16px;
  font-family: inherit; font-size: 15.5px; color: var(--ink-900);
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(16, 147, 84, .13);
}
.form-row textarea { min-height: 190px; resize: vertical; line-height: 1.85; }
.form-note { font-size: 13px; color: var(--ink-500); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-700); }
.form-check input { width: 19px; height: 19px; margin-top: 4px; flex: none; accent-color: var(--green-700); }

.contact-direct { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .contact-direct { grid-template-columns: 1fr; } }
.contact-direct__item {
  padding: 28px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: #fff;
  text-align: center;
}
.contact-direct__icon {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; background: var(--navy-800); color: #fff;
}
.contact-direct__icon svg { width: 24px; height: 24px; fill: currentColor; }
.contact-direct__label { font-size: 13px; font-weight: 700; color: var(--ink-500); letter-spacing: .08em; }
.contact-direct__value {
  font-family: var(--font-en); font-size: 19px; font-weight: 500; color: var(--navy-900);
  margin-top: 7px; word-break: break-all;
}
.contact-direct__note { font-size: 13px; color: var(--ink-500); margin-top: 10px; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 4px; font-size: 16px; font-weight: 700; color: var(--navy-900); line-height: 1.7;
}
.faq__q::before {
  content: "Q"; flex: none;
  width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-en); font-size: 13px; display: grid; place-items: center;
}
.faq__q::after {
  content: ""; flex: none; margin-left: auto; margin-top: 9px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-300); border-bottom: 2px solid var(--ink-300);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq__q[aria-expanded="true"]::after { transform: rotate(-135deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 4px 24px 40px; font-size: 15px; color: var(--ink-700); line-height: 1.95; }

/* ==========================================================================
   7. 記事本文（.prose）
   WordPress のブロックエディタ出力に合わせたスタイル
   ========================================================================== */
.prose { font-size: 16.5px; line-height: 2.05; color: var(--ink-900); }
.prose > * + * { margin-top: 1.6em; }

.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.2vw, 26px); font-weight: 600; line-height: 1.55;
  color: var(--navy-900);
  margin-top: 2.4em; padding: 4px 0 12px 18px;
  border-left: 5px solid var(--green-600);
  border-bottom: 1px solid var(--line);
}
.prose h3 {
  font-size: clamp(17.5px, 2.6vw, 21px); font-weight: 700; line-height: 1.6;
  color: var(--navy-800); margin-top: 2em;
  display: flex; align-items: baseline; gap: 10px;
}
.prose h3::before {
  content: ""; flex: none; width: 9px; height: 9px; border-radius: 2px;
  background: var(--green-600); transform: translateY(-2px);
}
/* 見出しと本文の間だけ、他の段落間より少し詰める */
.prose h3 + p { margin-top: 0.6em; }
.prose h4 { font-size: 16.5px; font-weight: 700; color: var(--navy-800); margin-top: 1.9em; }

.prose p { }
.prose strong { font-weight: 700; color: var(--navy-900); }
.prose em { font-style: normal; background: linear-gradient(transparent 62%, #ffeeba 62%); padding-inline: 1px; }

.prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--green-800); text-decoration-thickness: 2px; }

.prose ul, .prose ol { padding-left: 4px; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: .7em; }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-600);
}
.prose ol { counter-reset: prose-ol; }
.prose ol li { position: relative; counter-increment: prose-ol; padding-left: 32px; margin-bottom: .7em; }
.prose ol li::before {
  content: counter(prose-ol) "."; position: absolute; left: 2px; top: 0;
  font-family: var(--font-en); font-weight: 600; color: var(--green-700);
}

.prose blockquote {
  position: relative;
  padding: 26px 28px 26px 56px;
  background: var(--paper-tint); border-radius: var(--radius);
  font-size: 15.5px; color: var(--ink-700);
}
.prose blockquote::before {
  content: "\201C"; position: absolute; left: 20px; top: 6px;
  font-family: var(--font-serif); font-size: 52px; color: var(--navy-100); line-height: 1;
}
.prose blockquote cite { display: block; margin-top: 12px; font-size: 13px; font-style: normal; color: var(--ink-500); }

.prose figure { margin-block: 2.2em; }
.prose figure img { border-radius: var(--radius); width: 100%; }
.prose figcaption { margin-top: 11px; font-size: 13px; color: var(--ink-500); text-align: center; }

.prose hr { border: 0; height: 1px; background: var(--line); margin-block: 3em; }

.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.prose table th, .prose table td { padding: 13px 16px; border: 1px solid var(--line); text-align: left; }
.prose table th { background: var(--navy-050); font-weight: 700; color: var(--navy-800); }

/* 本文中の強調ボックス（WP: 再利用ブロック想定） */
.prose .box-point {
  border: 2px solid var(--green-600); border-radius: var(--radius);
  padding: 24px 26px; background: #fff;
}
.prose .box-point > .box-point__title {
  display: flex; align-items: center; gap: 9px; margin: 0 0 12px;
  font-size: 15.5px; font-weight: 700; color: var(--green-800);
}
.prose .box-point > .box-point__title::before {
  content: "!"; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-family: var(--font-en); font-size: 13px; display: grid; place-items: center;
}
.prose .box-point p { margin-top: 0; font-size: 15px; }

/* 表がはみ出す場合は横スクロール */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ==========================================================================
   8. ユーティリティ
   ========================================================================== */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-mt-16 { margin-top: 16px; }
.u-mt-24 { margin-top: 24px; }
.u-mt-32 { margin-top: 32px; }
.u-mt-40 { margin-top: 40px; }
.u-mt-56 { margin-top: 56px; }
.u-mb-24 { margin-bottom: 24px; }
.u-mb-40 { margin-bottom: 40px; }

.u-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.u-actions-center { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* スマホ幅のときだけ改行を入れたい箇所に使う */
.u-br-mobile { display: none; }
@media (max-width: 640px) { .u-br-mobile { display: inline; } }

/* スクロールインのふわっと表示（JSで .is-visible を付与） */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   印刷
   ========================================================================== */
@media print {
  .site-header, .site-footer, .share, .post-nav, .sidebar, .cta-band { display: none !important; }
  body { font-size: 11pt; }
  .prose a { text-decoration: underline; color: #000; }
}
