  /* ═══════════════════════════════════════════════
     基本設定：サイト全体で使う色・フォント・下地
     ここを変えるとサイト全体の配色やフォントがまとめて変わります
     ═══════════════════════════════════════════════ */
  :root {
    --paper: #FBFAF8;
    --card: #FFFFFF;
    --ink: #121614;
    --ink-2: #1E1F1A;
    --ink-soft: #64685E;
    --green: #233D38;
    --green-2: #2F4D44;
    --tint: #EDEDE6;
    --line: #E0E4E2;
    --line-2: #D1D6CF;
    --navy: #1B293A;
    --tag: oklch(54% 0.12 38);
    --warn: #A0473A;
    --gold: #B08D49;
    --wordmark: "Hina Mincho", serif;
    --logo: "EB Garamond", serif;
    /* iOS/Macにはヒラギノがシステムフォントとして必ず入っているので先頭に書く。
       ヒラギノを持たない環境（Windowsなど）ではブラウザがその名前を無視して
       次の候補に進むので、そこでUD Pフォントに切り替わる。
       ＝画面幅で分岐させる必要はなく、常にこの並び順にしておけば
       「iOS/Macはヒラギノ、それ以外はUD P」が自動的に実現する。
       （以前は画面幅640px以下だけヒラギノを指定していたが、Macやタブレットの
       横向きなど640pxを超える画面では対象外になってしまい、UD Pフォントが
       インストールされていないiOS/MacではさらにOS標準の別書体に
       フォールバックしてしまっていた。） */
    --mincho: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "BIZ UDPMincho", serif;
    --gothic: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    --util: var(--gothic);
  }
  /* ── 全体の初期化（要素ごとのブラウザ既定の余白や、タップ時の水色ハイライトを消す） ── */
  * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--gothic);
    line-height: 1.85;
    display: flex;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .frame {
    width: 100%;
    max-width: 680px;
    min-height: 100vh;
    background: var(--paper);
    position: relative;
  }
  a {
    color: inherit;
  }
  ::selection {
    background: var(--green);
    color: var(--paper);
  }
  :focus-visible {
    outline: 2px solid var(--green-2);
    outline-offset: 2px;
    border-radius: 2px;
  }
  #app {
    animation: pageIn .32s ease both;
  }
  @keyframes pageIn {
    from {
      opacity: 0;
      transform: translateY(4px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @media (prefers-reduced-motion:reduce) {
    html {
      scroll-behavior: auto;
    }
    #app {
      animation: none;
    }
    *,
    *::before,
    *::after {
      transition-duration: .01ms !important;
      animation-duration: .01ms !important;
    }
  }
  /* ═══════════════════════════════════════════════
     ヘッダー（サイト名・タブ切り替えの部分）
     画面の一番上に固定表示される帯（マストヘッド）と、
     「トップ／新着／特集／レビュー」などのタブの見た目
     ═══════════════════════════════════════════════ */
  .masthead {
    padding: 34px 22px 0;
    border-bottom: 2px solid var(--green);
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--paper);
    transition: transform .28s ease;
  }
  .masthead.mh-hidden,
  .topbar.mh-hidden {
    transform: translateY(-100%);
  }
  .mh-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
  }
  .mh-center {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
  }
  .wordmark {
    display: inline-block;
    font-family: var(--logo);
    font-weight: 400;
    font-size: clamp(19px,5vw,24px);
    letter-spacing: .01em;
    color: var(--green);
    margin: 0;
    line-height: 1.1;
    cursor: pointer;
    transform: scaleY(1.17);
  }
  .mh-sub {
    font-family: var(--util);
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--green-2);
    font-weight: 700;
    white-space: nowrap;
  }
  .tabs-wrap {
    position: relative;
    margin-top: 14px;
  }
  .tabs {
    display: flex;
    gap: 0;
  }
  .tab {
    flex: 1 1 0;
    text-align: center;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }
  .tabs-fade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background: linear-gradient(to right,rgba(249,248,245,0),var(--paper));
    pointer-events: none;
    opacity: 1;
    transition: opacity .2s ease;
  }
  .tabs-fade.off {
    opacity: 0;
  }
  .search-btn,
  .hb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -7px;
    flex: 0 0 auto;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-2);
    padding: 0;
  }
  .search-btn:active,
  .hb-btn:active {
    color: var(--green);
  }
  .search-btn svg {
    width: 21px;
    height: 21px;
  }
  .hb-btn svg {
    width: 21px;
    height: 21px;
  }
  /* ═══════════════════════════════════════════════
     ハンバーガーメニュー（右上のボタンで開く、全画面メニュー）
     上から幕のように降りてきて、カテゴリ一覧やお知らせへのリンクを表示する
     ═══════════════════════════════════════════════ */
  .hb-overlay {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease,transform .25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hb-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .hb-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 18px 0 22px;
  }
  .hb-wm {
    font-family: var(--logo);
    font-weight: 400;
    font-size: 19px;
    color: var(--green);
    letter-spacing: .01em;
    transform: scaleY(1.17);
    display: inline-block;
  }
  .hb-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-soft);
    font-size: 24px;
    line-height: 1;
  }
  .hb-close:active {
    color: var(--green);
  }
  .hb-sec {
    padding: 24px 22px 6px;
  }
  .hb-sec-h {
    font-family: var(--util);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--ink-soft);
    margin: 0 0 13px;
  }
  .hb-link {
    display: block;
    font-family: var(--mincho);
    font-size: 17px;
    color: var(--ink);
    padding: 13px 0;
    text-decoration: none;
    cursor: pointer;
  }
  .hb-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 8px 22px 0;
  }
  .hb-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hb-catlist {
    display: flex;
    flex-direction: column;
  }
  .hb-catlink {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--mincho);
    font-size: 16px;
    color: var(--ink);
    padding: 10px 0;
    text-decoration: none;
    cursor: pointer;
  }
  .hb-catlink .c {
    font-family: var(--util);
    font-size: 11px;
    color: var(--ink-soft);
    font-weight: 400;
    margin-left: 10px;
  }
  .hb-more {
    font-family: var(--util);
    font-size: 11.5px;
    color: var(--green-2);
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    list-style: none;
  }
  .hb-more::-webkit-details-marker {
    display: none;
  }
  .hb-foot {
    padding: 28px 22px calc(40px + env(safe-area-inset-bottom,0px));
  }
  /* ── 検索欄の中身（入力ボックス・キーワード候補・件数表示） ── */
  .search-page {
    padding: 0 0 10px;
  }
  .search-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 18px 22px 0;
  }
  .search-box {
    padding: 18px 22px 4px;
    position: relative;
  }
  .search-box input {
    width: 100%;
    font-family: var(--util);
    font-size: 16px;
    color: var(--ink-2);
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    padding: 11px 14px;
    box-sizing: border-box;
  }
  .search-box input:focus {
    outline: none;
    border-color: var(--green);
  }
  .search-suggest {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }
  .search-suggest .sgs {
    font-family: var(--util);
    font-size: 11.5px;
    color: var(--green-2);
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 4px 11px;
    cursor: pointer;
  }
  .search-suggest .sgs:hover {
    border-color: var(--green-2);
  }
  .search-count {
    font-family: var(--util);
    font-size: 12px;
    color: var(--ink-soft);
    padding: 14px 22px 0;
  }
  /* ═══════════════════════════════════════════════
     検索：下からせり上がってくる全画面の検索パネル
     背景を暗くしつつ、検索結果パネルが画面下からスライドインする演出
     ═══════════════════════════════════════════════ */
  body.search-open #app,
  body.search-open #site-foot {
    filter: blur(4px) brightness(.92);
    transition: filter .3s ease;
    pointer-events: none;
  }
  .search-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20,18,14,.45);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .search-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .search-overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 6vh;
    background: var(--paper);
    z-index: 110;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 34px rgba(30,28,23,.25);
    transform: translateY(100%);
    transition: transform .34s cubic-bezier(.32,.72,0,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .search-overlay.open {
    transform: translateY(0);
  }
  .search-overlay-head {
    position: sticky;
    top: 0;
    background: var(--paper);
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 14px 14px 0;
  }
  .search-close-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tint);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink-2);
    font-size: 23px;
    line-height: 1;
    flex: 0 0 auto;
  }
  .search-close-btn:active {
    color: var(--green);
    background: var(--line);
  }
  /* ── 記事詳細ページの上部バー（タブ・「戻る」ボタンまわり） ── */
  .tabs::-webkit-scrollbar {
    display: none;
  }
  .tab {
    flex: 1;
    text-align: center;
    font-family: var(--gothic);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .03em;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 11px 6px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
  }
  .tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
  }
  .tab:hover {
    color: var(--green-2);
  }
  .tab:active {
    color: var(--green);
  }
  .tab:hover {
    color: var(--green);
  }
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--paper);
    transition: transform .28s ease;
  }
  .back {
    font-family: var(--util);
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .06em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
  }
  .back:hover {
    color: var(--green-2);
  }
  .tb-mark {
    font-family: var(--wordmark);
    font-size: 15px;
    color: var(--green-2);
    letter-spacing: .08em;
  }
  /* ── タグ・絞り込みフィルター（記事一覧などの上に出る、条件チップ） ── */
  .tagbar {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 18px 22px 4px;
  }
  .filter-block {
    padding: 14px 22px 4px;
  }
  .filter-toggle {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--util);
    font-weight: 700;
    font-size: 12px;
    color: var(--green-2);
    cursor: pointer;
    padding: 6px 0;
    user-select: none;
  }
  .filter-toggle::-webkit-details-marker {
    display: none;
  }
  .filter-toggle .chev {
    display: inline-block;
    transition: transform .15s ease;
    font-size: 10px;
  }
  details[open]>.filter-toggle .chev {
    transform: rotate(180deg);
  }
  .filter-panel {
    padding: 8px 0 4px;
  }
  .tagrow-clamp {
    max-height: 38px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .tagrow-clamp.expanded {
    max-height: none;
  }
  .filter-panel:has(.more-toggle>details[open]) .tagrow-clamp {
    max-height: none;
  }
  .more-toggle {
    margin-top: 8px;
  }
  .more-toggle>.filter-toggle {
    font-size: 11px;
    color: var(--ink-soft);
  }
  .period-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .chip {
    font-family: var(--util);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--green);
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 5px 12px;
    text-decoration: none;
    cursor: pointer;
    transition: .15s;
  }
  .chip:hover {
    border-color: var(--green-2);
  }
  .chip:active {
    background: var(--tint);
    border-color: var(--green-2);
    transition-duration: .05s;
  }
  .chip:hover {
    border-color: var(--green);
  }
  .chip.on {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }
  .chip.star-chip {
    color: var(--gold);
  }
  .chip.star-chip.on {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }
  .chip.chip-clear {
    color: var(--ink-soft);
    border-style: dashed;
  }
  .chip.chip-clear:hover {
    color: var(--ink-2);
    border-color: var(--ink-soft);
  }
  .search-reset-row {
    padding: 14px 22px 0;
  }
  .chip .c {
    opacity: .6;
    margin-left: 5px;
    font-weight: 400;
  }
  /* ═══════════════════════════════════════════════
     記事・特集・レビューの一覧カード（共通デザイン）
     トップページや一覧ページに並ぶ、1件ぶんのカードの見た目
     ═══════════════════════════════════════════════ */
  .feed-row {
    display: block;
    padding: 22px 22px;
    border-bottom: 1px solid var(--line-2);
    text-decoration: none;
    color: inherit;
  }
  .feed-row-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .feed-cat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 11px;
  }
  .feed-cat {
    font-family: var(--util);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    margin: 0;
    display: block;
    text-decoration: none;
    width: fit-content;
    flex: 0 0 auto;
  }
  .feed-cat.article {
    color: var(--green-2);
  }
  .feed-cat.digest {
    color: var(--tag);
  }
  .feed-cat.review {
    color: var(--navy);
  }
  .tag-scroll-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
  }
  .tag-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    padding-right: 20px;
  }
  .tag-scroll::-webkit-scrollbar {
    display: none;
  }
  .tag-scroll a {
    flex: 0 0 auto;
    font-size: 11px;
    color: oklch(54% 0.12 38);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 3px 10px;
    text-decoration: none;
  }
  .tag-scroll-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 34px;
    background: linear-gradient(to right, rgba(251,250,248,0), #FBFAF8 65%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .tag-scroll-fade span {
    color: #94402F;
    font-weight: 700;
    font-size: 13px;
  }
  .feed-title {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: .02em;
    color: var(--ink);
    margin: 0 0 8px;
    font-feature-settings: "palt";
  }
  .feed-sub {
    font-family: var(--mincho);
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .feed-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    border-radius: 0;
  }
  .feed-meta {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 14px;
    font-family: var(--util);
    font-size: 11.5px;
    color: var(--ink-soft);
    letter-spacing: .03em;
    font-feature-settings: "tnum";
  }
  .feed-meta.feed-meta-article {
    justify-content: space-between;
  }
  .feed-meta .no {
    color: var(--green);
    font-weight: 700;
  }
  .feed-more {
    margin: 0 0 0;
    font-family: var(--util);
    font-weight: 700;
    font-size: 12px;
    color: var(--green-2);
    text-decoration: none;
  }
  /* ═══════════════════════════════════════════════
     新着一覧：日付ごとの区切りの帯
     「7月13日」のように、日付でグループ分けする見出し部分
     ═══════════════════════════════════════════════ */
  .feed-daybar {
    font-family: var(--util);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .14em;
    color: var(--ink-soft);
    padding: 22px 22px 4px;
  }
  /* ═══════════════════════════════════════════════
     トップページのレビュー横スクロールカード
     横にスワイプできるミニカード。タップするとレビュー一覧の
     該当カードまでジャンプしてハイライトする（外部リンクなし）
     ═══════════════════════════════════════════════ */
  .sec-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 30px 22px 14px;
  }
  .sec-head h4 {
    font-family: var(--util);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    color: var(--green);
    margin: 0;
    position: relative;
    padding-left: 14px;
  }
  .sec-head h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: .15em;
    width: 4px;
    height: .75em;
    background: var(--green);
    border-radius: 1px;
  }
  .sec-head a {
    font-family: var(--util);
    font-size: 11px;
    color: var(--ink-soft);
    text-decoration: none;
  }
  .trv-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 22px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .trv-scroll::-webkit-scrollbar {
    display: none;
  }
  .trv-card {
    flex: 0 0 150px;
    width: 150px;
    box-sizing: border-box;
    padding: 8px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    position: relative;
  }
  .trv-imgwrap {
    width: 134px;
    height: 134px;
    margin-bottom: 8px;
  }
  .trv-imgwrap img {
    width: 134px;
    height: 134px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line-2);
    border-radius: 2px;
  }
  .trv-noimg {
    width: 134px;
    height: 134px;
    background: var(--tint);
    border: 1px solid var(--line-2);
    border-radius: 2px;
  }
  .trv-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 18px;
    box-sizing: border-box;
    font: 700 9.5px var(--gothic);
    padding: 0 8px;
    border-radius: 9px;
    margin: 0 0 5px;
    white-space: nowrap;
    line-height: 1;
  }
  .trv-glyph {
    display: inline-block;
    width: 10px;
    text-align: center;
    font-size: 10px;
  }
  .trv-title2 {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    margin: 0 0 2px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-feature-settings: "palt";
  }
  .trv-maker2 {
    font-family: var(--gothic);
    font-size: 10.5px;
    color: var(--ink-soft);
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .trv-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .trv-stars2 {
    position: relative;
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.5px;
    color: var(--line-2);
  }
  .trv-stars2 .fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--gold);
  }
  .trv-arrow {
    font: 700 13px var(--gothic);
    color: #8B8F86;
  }
  .trv-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 16px 0 6px;
  }
  .trv-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line-2);
    display: block;
  }
  .trv-dots span.on {
    background: var(--green);
  }
  .trv-more {
    width: 150px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed var(--line-2);
    color: var(--green-2);
  }
  .trv-more .trv-more-arrow {
    font-size: 22px;
    line-height: 1;
  }
  .trv-more .trv-more-txt {
    font-family: var(--util);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .04em;
  }
  /* ── 記事一覧ページ（アーカイブ）全体の余白・絞り込み結果の表示 ── */
  .archive {
    padding: 6px 0 60px;
  }
  .filter-note {
    font-family: var(--util);
    font-size: 12px;
    color: var(--ink-soft);
    padding: 14px 22px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .filter-note b {
    color: var(--green);
    font-size: 13px;
  }
  .filter-note a {
    color: var(--green-2);
    text-decoration: underline;
    cursor: pointer;
  }
  .month-head {
    font-family: var(--util);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    color: var(--green-2);
    padding: 26px 22px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .month-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .arch-sec {
    padding: 14px 22px 0;
  }
  .arch-h {
    font-family: var(--util);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--green-2);
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .arch-year {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin: 16px 0 8px;
  }
  .arch-months {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
  }
  /* ═══════════════════════════════════════════════
     記事詳細ページ：タイトル・日付などのヘッダー部分
     ═══════════════════════════════════════════════ */
  .reader {
    padding: 0 0 30px;
  }
  .t-head {
    padding: 18px 22px 2px;
  }
  .t-no-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
  }
  .t-no {
    flex: 0 0 auto;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 10px;
    font-size: 11px;
    font-family: var(--util);
  }
  .t-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--util);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--green-2);
    margin: 0;
  }
  .t-cat a {
    color: inherit;
    text-decoration: none;
  }
  .t-cat a:active {
    color: var(--green);
  }
  .t-title {
    font-family: var(--mincho);
    font-weight: 400;
    font-size: clamp(26px,6.4vw,34px);
    line-height: 1.35;
    letter-spacing: .04em;
    color: var(--ink);
    margin: 0 0 14px;
    font-feature-settings: "palt";
  }
  .t-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--util);
    font-size: 11.5px;
    color: var(--ink-soft);
    letter-spacing: .04em;
    font-feature-settings: "tnum";
  }
  .t-meta .date {
    flex: 0 0 auto;
  }
  .t-meta .tag-scroll-fade span {
    color: #94402F;
  }
  .gold-tick {
    width: 46px;
    height: 2px;
    background: var(--gold);
    border: none;
    margin: 34px auto 0;
  }
  /* ── 目次（記事内の見出しへジャンプできるリスト） ── */
  .toc {
    margin: 22px 22px 4px;
    background: var(--card);
    border: 1px solid var(--line-2);
    border-radius: 8px;
    padding: 14px 18px;
  }
  .toc h4 {
    font-family: var(--util);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    color: var(--green);
    margin: 0 0 10px;
  }
  .toc ol {
    margin: 0;
    padding-left: 18px;
  }
  .toc li {
    font-family: var(--mincho);
    font-size: 16px;
    line-height: 1.9;
    color: var(--ink-2);
    cursor: pointer;
    transition: color .15s ease;
  }
  .toc li:hover {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
  /* ═══════════════════════════════════════════════
     記事本文（ここから下が、実際の記事の中身のデザイン）
     リード文・本文・見出し・引用・画像・データなど、
     記事の中に出てくる要素ごとにスタイルを分けています
     ═══════════════════════════════════════════════ */
  .essay {
    padding: 24px 22px 0;
  }
  /* リード＝明朝・やや大きめ（導入の格） */
  .lede {
    font-family: var(--mincho);
    font-size: 17px;
    line-height: 1.9;
    color: var(--ink-2);
    margin: 0 0 26px;
    padding: 15px 2px;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    text-align: justify;
    font-weight: 400;
  }
  .t-head-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    margin: 0 0 26px;
  }
  /* 本文＝ゴシック・可読性 */
  .ep {
    font-family: var(--gothic);
    font-weight: 400;
    font-size: 18px;
    color: #242822;
    line-height: 1.9;
    letter-spacing: -0.015em;
    margin: 0 0 22px;
    text-align: justify;
    text-align-last: left;
    font-feature-settings: "palt" 1;
  }
  .ep strong {
    font-weight: 700;
    color: var(--ink);
  }
  /* 小見出し＝明朝太字（構造） */
  .eh {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: .03em;
    line-height: 1.6;
    margin: 36px 0;
    color: var(--ink);
    scroll-margin-top: 14px;
  }
  .eh .eh-underline {
    display: inline-block;
    white-space: nowrap;
    border-bottom: 1px solid #233D384D;
    padding-bottom: 10px;
  }
  /* 画像 */
  .fig-img {
    margin: 24px 0;
  }
  .fig-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--line-2);
    display: block;
    background: var(--tint);
  }
  .fig-img figcaption {
    font-family: var(--util);
    font-size: 11.5px;
    color: var(--ink-soft);
    margin-top: 8px;
    text-align: center;
    line-height: 1.6;
  }
  /* ソース引用＝引用文は明朝（声の引用） */
  .src-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(20,25,20,.10);
    padding: 14px 16px;
    margin: 22px 0;
    transition: box-shadow .2s ease,transform .2s ease;
  }
  a.src-card:hover {
    box-shadow: 0 4px 14px rgba(20,25,20,.14);
    transform: translateY(-1px);
  }
  a.src-card:active {
    transform: scale(.985);
    transition-duration: .05s;
  }
  .src-card .cc-title {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink-2);
    margin: 0 0 6px;
    line-height: 1.6;
  }
  .src-card .cc-domain {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--util);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .03em;
    text-transform: none;
    color: var(--green-2);
  }
  .src-card .cc-domain svg {
    width: 10px;
    height: 10px;
  }
  /* SNS埋め込み */
  .embed-wrap {
    margin: 22px 0;
    display: flex;
    justify-content: center;
  }
  .embed-wrap iframe,
  .embed-wrap blockquote {
    max-width: 100%!important;
  }
  .embed-wrap blockquote {
    margin: 0 auto!important;
  }
  .ab-embed {
    padding: 4px 22px 0;
  }
  .ab-embed .embed-wrap {
    justify-content: flex-start;
  }
  /* データ＝数値は明朝で大きく */
  .data {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--tint);
    border-radius: 8px;
    padding: 16px 18px;
    margin: 22px 0;
  }
  .data .fig {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: clamp(27px,7.4vw,34px);
    color: var(--navy);
    line-height: 1;
    white-space: nowrap;
  }
  .data .dcap {
    font-family: var(--gothic);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-2);
    margin: 0 0 5px;
  }
  .data .dsrc {
    font-family: var(--util);
    font-size: 11.5px;
    color: var(--ink-soft);
  }
  .data .dsrc a {
    color: var(--green-2);
    text-decoration: none;
  }
  /* 引用句＝明朝・大きめ・緑 */
  .pull {
    background: #F0F1ED;
    border: 1px solid #E8E9E6;
    border-radius: 10px;
    padding: 17px 18px;
    margin: 24px 0;
    font-family: var(--mincho);
    font-size: 15px;
    line-height: 1.9;
    color: var(--ink-2);
    text-align: justify;
  }
  /* 本文中のリンク */
  .pull a {
    color: var(--green);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }
  .pull a::after {
    content: "";
    display: inline-block;
    width: .7em;
    height: .7em;
    margin: 0 0 -.05em 2px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .ep a {
    color: #2F4D44;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  .ep a:hover {
    color: #233D38;
    font-weight: 600;
    text-decoration-thickness: 2px;
  }
  /* ── 補足データブロック（記事の下に置く数値カード） ── */
  .rec {
    margin: 30px 22px 0;
    background: var(--tint);
    border-radius: 10px;
    padding: 18px;
  }
  .rec h4 {
    font-family: var(--util);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--green);
    margin: 0 0 12px;
  }
  .rec-grid {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
  }
  .rec-item .lbl {
    font-family: var(--util);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--ink-soft);
    font-weight: 700;
  }
  .rec-item .val {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 24px;
    color: var(--navy);
    line-height: 1.2;
  }
  .rec-item .val small {
    font-family: var(--util);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
    margin-left: 3px;
  }
  .rec-item .dl {
    font-family: var(--util);
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
  }
  .down {
    color: var(--green);
  }
  .up {
    color: var(--warn);
  }
  .rec .rnote {
    font-family: var(--mincho);
    font-size: 13px;
    color: var(--ink-2);
    margin: 12px 0 0;
    line-height: 1.7;
  }
  /* ── マシュマロ（匿名で質問・感想を送れるサービス）への誘導ブロック ── */
  .ask {
    margin: 26px 22px 0;
    border: 1px dashed var(--line-2);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    background: #fff;
  }
  .ask p {
    font-family: var(--mincho);
    font-size: 13.5px;
    color: var(--ink-2);
    margin: 0 0 12px;
    line-height: 1.8;
  }
  .ask a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--util);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background: var(--green);
    border-radius: 6px;
    padding: 11px 20px;
    text-decoration: none;
  }
  .ask a:hover {
    background: var(--green-2);
  }
  .ask .sub {
    font-family: var(--util);
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-top: 10px;
  }
  /* ── 記事詳細ページのフッター（タグ一覧・関連記事カード） ── */
  .t-foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--util);
    font-size: 11px;
    color: var(--ink-soft);
    padding: 22px 22px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    letter-spacing: .04em;
  }
  .t-foot .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .t-foot .tags a {
    color: var(--tag);
    text-decoration: none;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 3px 10px;
    cursor: pointer;
  }
  .t-foot .tags a:hover {
    border-color: var(--tag);
  }
  .related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(20,25,20,.10);
    padding: 15px 16px;
    margin: 22px 0;
    transition: box-shadow .2s ease,transform .2s ease;
  }
  .related-card:hover {
    box-shadow: 0 4px 14px rgba(20,25,20,.14);
    transform: translateY(-1px);
  }
  .related-card:active {
    transform: scale(.985);
    transition-duration: .05s;
  }
  .related-card .rel-title {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink-2);
    margin: 0 0 8px;
    line-height: 1.6;
  }
  .related-card .rel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: var(--util);
    font-size: 10px;
  }
  .related-card .rel-badge {
    font-weight: 700;
    color: #fff;
    background: var(--green);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 9px;
  }
  .related-card .rel-cat {
    color: var(--green-2);
    font-weight: 700;
  }
  .related-card .rel-tag {
    color: var(--tag);
  }
  .related-missing {
    font-family: var(--util);
    font-size: 12px;
    color: var(--ink-soft);
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px dashed var(--line-2);
    border-radius: 10px;
    margin: 22px 0;
  }
  .auto-related {
    margin: 8px 0 6px;
    padding: 0 22px;
  }
  .auto-related h4 {
    font-family: var(--util);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .08em;
    color: var(--green-2);
    margin: 0 0 12px;
    padding-left: 14px;
    position: relative;
  }
  .auto-related h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.16em;
    width: 4px;
    height: 0.7em;
    background: var(--green);
    border-radius: 1px;
  }
  .auto-related .related-card {
    margin: 0 0 12px;
  }
  .auto-related .related-card:last-child {
    margin-bottom: 0;
  }
  /* ── 「トップに戻る」丸ボタン（読んだ分だけ輪が伸びていく） ── */
  .scroll-gauge {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom,0px));
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(20,25,20,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 50;
    border: none;
    padding: 0;
  }
  .scroll-gauge.show {
    opacity: 1;
    pointer-events: auto;
  }
  .scroll-gauge svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    transform: rotate(-90deg);
  }
  .scroll-gauge .sg-track {
    fill: none;
    stroke: var(--line-2);
    stroke-width: 3;
  }
  .scroll-gauge .sg-progress {
    fill: none;
    stroke: var(--green);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset .1s linear;
  }
  .scroll-gauge .sg-arrow {
    position: relative;
    font-size: 16px;
    color: var(--green);
    font-weight: 700;
    line-height: 1;
  }
  .scroll-gauge.no-progress svg {
    display: none;
  }
  .reader-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 22px 40px;
  }
  .reader-nav button {
    font-family: var(--util);
    font-weight: 700;
    font-size: 12px;
    color: var(--green);
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    padding: 12px 0;
    text-align: left;
    line-height: 1.6;
    min-height: 44px;
  }
  .reader-nav button:active {
    color: var(--green-2);
  }
  .reader-nav button[disabled] {
    color: var(--line-2);
    cursor: default;
  }
  /* ═══════════════════════════════════════════════
     まとめ・特集（PDF）一覧ページ
     ═══════════════════════════════════════════════ */
  .digests {
    padding: 6px 0 60px;
  }
  .dg-intro {
    padding: 22px 22px 4px;
    font-family: var(--mincho);
    font-size: 14px;
    line-height: 2.0;
    color: var(--ink-2);
  }
  /* ── サイト全体のフッター（一番下の、マシュマロ誘導とロゴ） ── */
  #site-foot {
    margin-top: 10px;
    border-top: 2px solid var(--green);
    padding: 30px 22px calc(46px + env(safe-area-inset-bottom,0px));
    background: var(--tint);
  }
  .sf-ask {
    text-align: center;
    margin-bottom: 22px;
  }
  .sf-ask p {
    font-family: var(--mincho);
    font-size: 13.5px;
    color: var(--ink-2);
    margin: 0 0 12px;
    line-height: 1.8;
  }
  .sf-ask a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--util);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background: var(--green);
    border-radius: 7px;
    padding: 12px 24px;
    text-decoration: none;
    transition: background .15s;
  }
  .sf-ask a:hover {
    background: var(--green-2);
  }
  .sf-ask .sub {
    font-family: var(--util);
    font-size: 10.5px;
    color: var(--ink-soft);
    margin: 10px 0 0;
  }
  .sf-copy {
    font-family: var(--logo);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: .01em;
    color: var(--green);
    text-align: center;
    transform: scaleY(1.17);
    display: inline-block;
  }
  .sf-copy small {
    display: block;
    font-family: var(--util);
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--ink-soft);
    margin-top: 6px;
  }
  /* ═══════════════════════════════════════════════
     まとめ・特集：1件ぶんの表紙ページ
     PDFの表紙画像・タイトル・目次・ダウンロードボタンの見た目
     ═══════════════════════════════════════════════ */
  .dgd {
    padding-bottom: 60px;
  }
  .dgd-cover {
    padding: 26px 22px 0;
    text-align: center;
  }
  .dgd-cover img {
    width: 100%;
    aspect-ratio: 3/4.2;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line-2);
    box-shadow: 0 10px 26px rgba(18,22,20,.16);
  }
  .dgd-edition {
    font-family: var(--util);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--tag);
    text-align: center;
    margin: 22px 0 10px;
  }
  .dgd-edition .sep {
    color: var(--line-2);
    margin: 0 8px;
  }
  .dgd-title {
    font-family: var(--mincho);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: .03em;
    color: var(--ink);
    text-align: center;
    margin: 0 22px 28px;
    font-feature-settings: "palt";
  }
  .dgd-toc {
    margin: 0 22px;
  }
  .dgd-toc-item {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }
  .dgd-toc-item:last-of-type {
    border-bottom: 1px solid var(--line);
  }
  .dgd-toc-item h4 {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 5px;
    font-feature-settings: "palt";
  }
  .dgd-toc-item p {
    font-family: var(--mincho);
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0;
  }
  .dgd-cta-wrap {
    padding: 28px 22px 0;
    text-align: center;
  }
  .dgd-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--util);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: var(--green);
    border-radius: 7px;
    padding: 13px 28px;
    text-decoration: none;
    transition: background .15s;
  }
  .dgd-cta:hover {
    background: var(--green-2);
  }
  .dgd-cta .arrow {
    transform: scaleX(-1);
  }
  .dgd-cta.soon {
    background: none;
    color: var(--ink-soft);
    border: 1px dashed var(--line-2);
  }
  /* ═══════════════════════════════════════════════
     ダイエット（体重・体脂肪率）記録ページ
     ═══════════════════════════════════════════════ */
  .wlog {
    padding: 8px 0 60px;
  }
  .wl-intro {
    padding: 24px 22px 6px;
    font-family: var(--mincho);
    font-size: 14px;
    line-height: 2.0;
    color: var(--ink-2);
  }
  .wl-stat {
    display: flex;
    gap: 26px;
    align-items: baseline;
    padding: 18px 22px 6px;
    flex-wrap: wrap;
  }
  .wl-cur {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 34px;
    color: var(--navy);
    line-height: 1;
  }
  .wl-cur small {
    font-family: var(--util);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-soft);
    margin-left: 4px;
  }
  .wl-lbl {
    font-family: var(--util);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 4px;
  }
  .wl-delta {
    font-family: var(--util);
    font-size: 13px;
    font-weight: 700;
  }
  .wl-chart {
    margin: 14px 22px;
    background: var(--card);
    border: 1px solid var(--line-2);
    border-radius: 8px;
    padding: 18px 16px 10px;
  }
  .wl-chart svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .wl-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    font-family: var(--util);
    font-size: 10.5px;
    color: var(--ink-soft);
    padding: 2px 0 8px;
  }
  .wl-legend i {
    display: inline-block;
    width: 16px;
    height: 2px;
    vertical-align: 3px;
    margin-right: 5px;
  }
  .wl-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
  }
  .wl-row:hover {
    background: #fff;
  }
  .wl-date {
    font-family: var(--util);
    font-size: 12px;
    color: var(--ink-soft);
    min-width: 60px;
  }
  .wl-kg {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 16px;
    color: var(--green);
    min-width: 58px;
  }
  .wl-fat {
    font-family: var(--util);
    font-size: 12px;
    color: var(--ink-soft);
    min-width: 58px;
  }
  .wl-note {
    font-family: var(--mincho);
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.7;
    flex: 1;
  }
  /* ═══════════════════════════════════════════════
     レビュー一覧ページ（カード・カテゴリーバッジ・タグ・星評価）
     カテゴリーの色つきバッジ、タグチップでの絞り込み、星評価、
     作品ページへのボタンなど、レビューカードまわりのデザイン
     ═══════════════════════════════════════════════ */
  .reviews {
    padding: 6px 0 60px;
  }
  .rv-intro {
    padding: 22px 22px 4px;
    font-family: var(--mincho);
    font-size: 14px;
    line-height: 2.0;
    color: var(--ink-2);
  }
  .rv-card {
    margin: 14px 22px 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    transition: opacity .2s ease,border-color .2s ease;
  }
  .rv-card.rv-hl {
    border: 2px solid var(--green);
  }
  .rv-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .rv-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 56px;
    height: 22px;
    box-sizing: border-box;
    font: 700 11px var(--gothic);
    letter-spacing: .04em;
    padding: 0 11px;
    border-radius: 12px;
    line-height: 1;
  }
  .rv-glyph {
    display: inline-block;
    width: 11px;
    text-align: center;
    font-size: 11px;
  }
  .rv-date {
    font-family: var(--util);
    font-size: 11px;
    color: var(--ink-soft);
    margin-left: auto;
  }
  .rv-main {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .rv-img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 6px;
    border: 1px solid var(--line-2);
    object-fit: cover;
    background: var(--tint);
  }
  .rv-info {
    flex: 1;
    min-width: 0;
  }
  .rv-title2 {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 3px;
  }
  .rv-maker2 {
    font-family: var(--util);
    font-size: 12px;
    color: var(--ink-soft);
    margin: 0 0 6px;
  }
  .stars {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: sans-serif;
    color: var(--line-2);
  }
  .stars .fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--gold);
  }
  .rv-score {
    font-family: var(--util);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-soft);
    margin-left: 6px;
    vertical-align: 1px;
  }
  .rv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 0;
  }
  .rv-chip {
    font: 700 10.5px var(--util);
    letter-spacing: .03em;
    color: var(--tag);
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 3px 10px;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: .15s;
  }
  .rv-chip.on {
    color: #fff;
    background: var(--tag);
    border-color: var(--tag);
  }
  .rv-text2 {
    font-family: var(--mincho);
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--ink-2);
    margin: 12px 0 0;
    text-align: justify;
  }
  .rv-toggle {
    display: inline-block;
    font: 700 11.5px var(--util);
    color: var(--green-2);
    margin-top: 6px;
    cursor: pointer;
  }
  .rv-cta-wrap {
    margin-top: 14px;
  }
  .rv-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font: 700 12px var(--util);
    color: var(--ink-2);
    background: #fff;
    border: 1.5px solid var(--ink-2);
    border-radius: 6px;
    padding: 8.5px 14px;
    text-decoration: none;
    transition: background .15s,color .15s;
  }
  .rv-cta:hover {
    background: var(--ink-2);
    color: #fff;
  }
  .rv-domain {
    font: 400 10.5px var(--util);
    color: var(--ink-soft);
    margin: 6px 0 0;
  }
  /* ═══════════════════════════════════════════════
     このサイトについて（About）ページ
     ═══════════════════════════════════════════════ */
  .about {
    padding: 6px 0 60px;
  }
  .ab-h {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: clamp(23px,5.4vw,29px);
    color: var(--ink);
    padding: 32px 22px 0;
    margin: 0;
    letter-spacing: .02em;
    line-height: 1.5;
  }
  .ab-p {
    font-family: var(--mincho);
    font-size: 16px;
    line-height: 1.95;
    color: var(--ink-2);
    padding: 18px 22px 0;
    margin: 0;
    text-align: justify;
  }
  .ab-sec {
    font-family: var(--util);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    color: var(--green-2);
    padding: 36px 22px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .ab-sec::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .ab-prof {
    padding: 2px 22px 0;
  }
  .ab-prof .nm {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin: 0 0 8px;
  }
  .ab-prof .ln {
    font-family: var(--mincho);
    font-size: 14px;
    line-height: 1.95;
    color: var(--ink-2);
    margin: 0;
  }
  .ab-src {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: 0 22px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .ab-src .sn {
    font-family: var(--mincho);
    font-weight: 700;
    font-size: 16px;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .ab-src .sn .ar {
    font-family: var(--util);
    font-size: 11px;
  }
  .ab-src .so {
    font-family: var(--mincho);
    font-size: 13px;
    color: var(--ink-soft);
    margin: 5px 0 0;
    line-height: 1.7;
  }
  /* ═══════════════════════════════════════════════
     スマホ（画面幅480px以下）向けの微調整
     ここまでのスタイルの一部を、狭い画面用に上書きしています
     ═══════════════════════════════════════════════ */
  @media (max-width:480px) {
    .masthead {
      padding: 26px 18px 0;
    }
    .essay {
      padding: 22px 15px 0;
    }
    .t-head {
      padding: 18px 15px 2px;
    }
    .auto-related {
      padding: 0 18px;
    }
    .lede {
      font-size: 16.5px;
    }
    .ep {
      line-height: 1.7;
    }
    .tab {
      padding: 11px 10px;
      font-size: 12px;
    }
    .frame {
      max-width: 100%;
    }
    .feed-row {
      padding: 20px 18px;
    }
    .rv-card {
      margin-left: 16px;
      margin-right: 16px;
    }
    .toc {
      margin-left: 18px;
      margin-right: 18px;
    }
    .related-card,
    .src-card {
      margin-left: 0;
      margin-right: 0;
    }
    .scroll-gauge {
      right: 14px;
      width: 48px;
      height: 48px;
    }
    .scroll-gauge svg {
      width: 48px;
      height: 48px;
    }
    .reader-nav {
      padding: 6px 18px calc(34px + env(safe-area-inset-bottom,0px));
    }
  }

