/* =====================================================
   プードル研究所 デザインシステム v2(最終確定版)
   design_handoff_poodle_media(2026-07-11 オーナー支給)準拠
   個性 = 細い罫線・点線索引・余白・小さな見出し・紙メモ。
   カード化・角丸化・ピル形状・シャドウ・タイトル太字化は禁止。
   ===================================================== */
:root {
  --accent: #C08163;            /* ブランド: 通し番号・記録No.・特集ラベル・判子のみ。多用禁止 */
  --text: #1C1A17;              /* テキスト主 */
  --text-body: #2A2723;         /* 紙メモ本文 */
  --text-sub: #55504A;
  --text-sub2: #6E6960;
  --text-label: #8B857A;        /* ラベル */
  --text-meta: #A39D91;         /* メタ */
  --text-weak: #B4AEA2;         /* 最弱 */
  --paper: #F5F1E8;             /* 紙メモ・フッター専用 */
  --rule: #DAD4C8;              /* セクション見出し下の罫線 */
  --dotted: #C9C3B7;            /* 索引の点線・表・商品ブロック罫 */
  --header-line: #E9E4DA;
  --cta: #1C1A17;               /* 操作色(黒) */
  --cta-hover: #443F38;
  --warn-text: #9E5468;
  --warn-bg: #F7E9EB;
  --link-hover: #8C7355;
  --font-body: 'Noto Sans JP', sans-serif;
}

html, body { margin: 0; padding: 0; background: #FFFFFF; }
body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--link-hover); }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }
input::placeholder { color: var(--text-weak); }

.page { min-height: 100vh; display: flex; flex-direction: column; align-items: stretch; }
.container { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 20px 72px; }

/* 下線式テキストリンク(黒の実線。このデザインの「ボタン」) */
.u-link {
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid var(--text); padding-bottom: 2px;
  align-self: flex-start;
}

/* 画像プレースホルダー(写真が入るまでの面) */
.img-ph { width: 100%; height: 100%; background: #F1EDE4; }
.photo { border-radius: 2px; overflow: hidden; background: #F1EDE4; }
.photo img { width: 100%; height: 100%; object-fit: cover; }

/* セクション見出し(小さく詰めた見出し+薄い罫線 = 本デザインの型) */
.sec { margin-top: 64px; display: flex; flex-direction: column; gap: 4px; }
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  border-bottom: 1px solid var(--rule); padding-bottom: 10px; margin-bottom: 6px;
}
.sec-head h2, .sec-head .h2 { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; }
.sec-head .aux { font-size: 11.5px; color: var(--text-label); flex-shrink: 0; }
.sec-head a.aux:hover { color: var(--link-hover); }

/* 点線罫の索引行 */
.dotted-row { border-bottom: 1px dotted var(--dotted); }

/* 仕切り(ディンバット) */
.dinbat { display: flex; justify-content: center; padding: 52px 0 0; }
.dinbat img { width: 26px; opacity: 0.55; }

/* 紙メモ(結論・編集部より・まとめ専用) */
.memo {
  background: var(--paper); padding: 44px 30px 38px;
  display: flex; flex-direction: column; gap: 16px;
}
.memo .label { font-size: 11px; letter-spacing: 0.24em; font-weight: 700; color: var(--text-label); }
.memo .label.accent { color: var(--accent); }
.memo .body { margin: 0; font-size: 14px; line-height: 2.15; color: var(--text-body); }
.memo .sign { font-size: 11px; color: var(--text-label); align-self: flex-end; letter-spacing: 0.08em; }
.memo .memo-link {
  font-size: 14px; font-weight: 700; line-height: 1.7;
  border-bottom: 1px solid var(--text); align-self: flex-start; padding-bottom: 2px;
}

/* ---------------------------------------------------- ヘッダー */
.site-header {
  border-bottom: 1px solid var(--header-line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.site-header .inner {
  max-width: 720px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 26px; height: 33px; object-fit: contain; }
.brand .names { display: flex; flex-direction: column; gap: 2px; }
.brand .name { font-size: 16px; font-weight: 700; letter-spacing: 0.14em; line-height: 1; }
.brand .tagline { font-size: 9px; letter-spacing: 0.22em; color: var(--text-label); line-height: 1; }
.header-nav { display: flex; align-items: center; gap: 18px; }
.header-nav .search-link { display: flex; align-items: center; }
.menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px 0; cursor: pointer;
}
.menu-btn span { display: block; width: 20px; height: 1.8px; background: var(--text); }

/* メニューパネル */
.menu-panel { display: none; border-bottom: 1px solid var(--header-line); background: #FFFFFF; }
.menu-panel.open { display: block; }
.menu-panel .inner { max-width: 720px; margin: 0 auto; padding: 8px 20px 24px; }
.menu-panel .group-label {
  display: block; font-size: 11px; letter-spacing: 0.2em; font-weight: 700;
  color: var(--text-label); padding: 18px 0 6px;
}
.menu-panel a { display: block; font-size: 13.5px; padding: 10px 0; border-bottom: 1px dotted var(--dotted); }
.menu-panel .cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0 24px; }

/* ---------------------------------------------------- フッター */
.site-footer { border-top: 1px solid var(--rule); background: var(--paper); margin-top: auto; }
.site-footer .inner {
  max-width: 720px; margin: 0 auto; padding: 48px 20px 32px;
  display: flex; flex-direction: column; gap: 28px;
}
.foot-brand { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.site-footer .brand-name { font-size: 15px; font-weight: 700; letter-spacing: 0.14em; }
.site-footer .desc { margin: 12px 0 0; font-size: 12.5px; line-height: 2; color: var(--text-sub2); }
.foot-logo { width: 44px; opacity: 0.8; flex-shrink: 0; }
.site-footer nav { display: flex; gap: 20px; font-size: 12px; flex-wrap: wrap; }
.site-footer nav a { color: var(--text-sub2); }
.site-footer .copy { font-size: 10.5px; color: var(--text-weak); letter-spacing: 0.06em; }

/* ---------------------------------------------------- パンくず */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; padding: 16px 0 0;
  font-size: 11px; color: var(--text-label); letter-spacing: 0.04em; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-label); }
.breadcrumb .sep { color: var(--dotted); }
.breadcrumb .current { color: var(--text-weak); }

/* ---------------------------------------------------- トップ: 表紙 */
.cover { padding: 44px 0 40px; display: flex; flex-direction: column; gap: 22px; }
.cover .art { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.cover .art img {
  flex: 1 1 auto; min-width: 0; max-width: 200px; height: 264px;
  object-fit: contain; object-position: left top; display: block; margin-left: -6px;
}
.cover h1 {
  margin: 0; writing-mode: vertical-rl;
  font-size: 24px; font-weight: 700; line-height: 2.05; letter-spacing: 0.16em;
  height: 264px; flex-shrink: 0;
}
.cover .caption {
  margin: 0; font-size: 11px; letter-spacing: 0.1em; color: var(--text-meta);
  border-top: 1px solid var(--rule); padding-top: 12px;
}

/* ---------------------------------------------------- トップ: 今週の特集 */
.feature { padding: 8px 0 0; display: flex; flex-direction: column; gap: 18px; }
.feature .label { font-size: 11px; letter-spacing: 0.24em; font-weight: 700; color: var(--accent); }
.feature a { display: flex; flex-direction: column; gap: 18px; }
.feature h2 { margin: 0; font-size: 27px; font-weight: 700; line-height: 1.55; letter-spacing: 0.02em; text-wrap: pretty; }
.feature .photo { width: 100%; aspect-ratio: 16 / 10; }
.feature .lead { margin: 0; font-size: 14px; line-height: 2.1; color: var(--text-sub); }

/* ---------------------------------------------------- トップ: 人気の記録 */
.rank-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.rank-list a { display: flex; align-items: baseline; gap: 12px; padding: 15px 0; }
.rank-list .no { font-size: 12px; font-weight: 700; color: var(--accent); flex-shrink: 0; width: 20px; }
.rank-list .title { font-size: 14px; font-weight: 400; line-height: 1.7; min-width: 0; }
.rank-list li:first-child .title { font-size: 15px; font-weight: 600; }
.rank-list .spacer { flex: 1; min-width: 24px; }
.rank-list .cat { font-size: 11px; color: var(--text-label); flex-shrink: 0; }

/* ---------------------------------------------------- 目次風の記事行(新着・関連・検索・一覧) */
.toc-row { display: flex; flex-direction: column; gap: 5px; padding: 16px 0; }
.toc-row .meta { font-size: 10px; letter-spacing: 0.08em; color: var(--text-meta); }
.toc-row .title { font-size: 15px; font-weight: 500; line-height: 1.75; }
.toc-row .excerpt {
  margin: 0; font-size: 13px; line-height: 1.9; color: var(--text-sub);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.toc-row.lg { padding: 20px 0; }
.toc-row.lg .title { font-size: 15.5px; }

/* ---------------------------------------------------- 分類索引 */
.idx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); column-gap: 32px; }
.idx-row { display: flex; align-items: baseline; gap: 10px; padding: 13px 0; }
.idx-row .name { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; }
.idx-row .spacer { flex: 1; min-width: 16px; }
.idx-row .count { font-size: 12px; color: var(--text-label); }

/* ---------------------------------------------------- トップ: 研究所について+判子 */
.about-lab { margin-top: 72px; display: flex; gap: 20px; align-items: flex-start; }
.about-lab .texts { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.about-lab h2 { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; }
.about-lab p { margin: 0; font-size: 13.5px; line-height: 2.15; color: var(--text-sub); }
.about-lab .u-link { font-size: 12.5px; }
.hanko {
  writing-mode: vertical-rl; font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  color: var(--accent); border: 1.5px solid var(--accent);
  padding: 10px 6px; flex-shrink: 0; margin-top: 4px;
}

/* ---------------------------------------------------- 記事ページ */
.article-header { padding: 28px 0 24px; display: flex; flex-direction: column; gap: 16px; }
.record-line { font-size: 10.5px; letter-spacing: 0.1em; color: var(--accent); font-weight: 500; }
.article-header h1 { margin: 0; font-size: 25px; font-weight: 700; line-height: 1.6; letter-spacing: 0.01em; text-wrap: pretty; }
.article-header .lead { margin: 0; font-size: 14px; line-height: 2; color: var(--text-sub); }
.article-meta {
  display: flex; align-items: baseline; gap: 14px; font-size: 10.5px;
  color: var(--text-meta); flex-wrap: wrap;
  border-top: 1px solid var(--rule); padding-top: 12px;
}
.pr-notice { margin: 0; font-size: 10px; color: var(--text-weak); letter-spacing: 0.04em; }

/* 結論(紙メモ) */
.conclusion .text { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.85; }
.conclusion .key-fig { font-size: 20px; font-weight: 700; }
.conclusion ol { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.conclusion li { display: flex; gap: 12px; align-items: baseline; padding: 10px 0; border-top: 1px dotted var(--dotted); }
.conclusion .no { font-size: 11.5px; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.conclusion li p { margin: 0; font-size: 13.5px; line-height: 1.9; }

.article-hero { width: 100%; aspect-ratio: 16 / 10; margin-top: 32px; border-radius: 2px; overflow: hidden; background: #F1EDE4; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

/* 目次 */
.toc { margin-top: 48px; display: flex; flex-direction: column; gap: 4px; }
.toc .sec-head { justify-content: flex-start; }
.toc ol { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.toc ol a {
  display: flex; align-items: baseline; gap: 12px; padding: 12px 0;
  border-bottom: 1px dotted var(--dotted); font-size: 13.5px; line-height: 1.6;
}
.toc .no { font-size: 11px; font-weight: 700; color: var(--accent); flex-shrink: 0; width: 20px; }

/* 本文 */
.article-body { display: flex; flex-direction: column; }
.article-body .h2-block { margin-top: 56px; display: flex; flex-direction: column; gap: 6px; }
.article-body .h2-no { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); }
.article-body h2 { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.65; scroll-margin-top: 80px; }
.article-body p { margin: 20px 0 0; font-size: 15px; line-height: 2.1; }
.article-body ul, .article-body ol:not(.steps-list) { margin: 20px 0 0; font-size: 15px; line-height: 2.1; padding-left: 1.4em; }
.article-body a { border-bottom: 1px solid var(--text); padding-bottom: 1px; }
.article-body img { border-radius: 2px; margin-top: 24px; }

/* 状況別の目安 */
.guide-box { margin-top: 28px; display: flex; flex-direction: column; }
.guide-box .box-label {
  font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: var(--text-label);
  border-bottom: 1px solid var(--rule); padding-bottom: 8px;
}
.guide-rows { display: flex; flex-direction: column; }
.guide-row {
  display: flex; align-items: baseline; gap: 12px; padding: 11px 0;
  border-bottom: 1px dotted var(--dotted); font-size: 13.5px;
}
.guide-label { color: var(--text-sub); }
.guide-row::after { content: ""; order: 1; flex: 1; min-width: 16px; }
.guide-label { order: 0; }
.guide-value { order: 2; font-weight: 700; flex-shrink: 0; }

/* 手順ステップ */
.steps-list { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.step-item { display: flex; gap: 14px; align-items: baseline; padding: 16px 0; border-bottom: 1px dotted var(--dotted); }
.step-no { font-size: 12px; font-weight: 700; color: var(--accent); flex-shrink: 0; width: 20px; }
.step-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.step-title { font-size: 15px; font-weight: 700; line-height: 1.7; }
.step-body { margin: 0 !important; font-size: 13.5px !important; line-height: 1.95 !important; color: var(--text-sub); }

/* NG例 */
.ng-list { margin: 20px 0 0 !important; padding: 0 !important; list-style: none; display: flex; flex-direction: column; }
.ng-item { display: flex; gap: 14px; align-items: baseline; padding: 16px 0; border-bottom: 1px dotted var(--dotted); }
.ng-badge { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--warn-text); flex-shrink: 0; }
.ng-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ng-title { font-size: 15px; font-weight: 700; line-height: 1.7; }
.ng-body { margin: 0 !important; font-size: 13.5px !important; line-height: 1.95 !important; color: var(--text-sub); }

/* 注意 */
.caution-box {
  margin: 20px 0 0 !important; padding: 14px 16px; background: var(--warn-bg);
  font-size: 13px !important; line-height: 1.9 !important; color: var(--warn-text);
}
.caution-label { font-weight: 700; letter-spacing: 0.08em; margin-right: 8px; }

/* 編集部メモ(記事内の小さなアサイド) */
.edit-memo {
  margin: 28px 0 0; padding: 14px 2px;
  border-top: 1px dotted var(--dotted); border-bottom: 1px dotted var(--dotted);
  display: flex; flex-direction: column; gap: 6px;
}
.edit-memo .memo-label { font-size: 10.5px; letter-spacing: 0.2em; font-weight: 700; color: var(--text-label); }
.edit-memo p { margin: 0 !important; font-size: 13px !important; line-height: 1.95 !important; color: var(--text-sub); }

/* 比較表 */
.compare-intro { margin: 16px 0 0 !important; font-size: 13.5px !important; line-height: 1.9 !important; color: var(--text-sub2); }
.table-scroll { overflow-x: auto; margin-top: 20px; }
.compare-table { border-collapse: collapse; width: 100%; min-width: 480px; font-size: 13px; }
.compare-table th { text-align: left; font-weight: 700; padding: 10px 12px; border-bottom: 1px solid var(--dotted); white-space: nowrap; }
.compare-table th.row-label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-label); font-weight: 500; padding: 10px 12px 10px 0; }
.compare-table td { padding: 11px 12px; border-bottom: 1px dotted var(--dotted); }
.compare-table td.row-label { padding: 11px 12px 11px 0; color: var(--text-label); white-space: nowrap; }

/* おすすめ商品: 総合1位(罫線の区画。カードにしない) */
.product-featured {
  margin-top: 32px; border-top: 1px solid var(--dotted); border-bottom: 1px solid var(--dotted);
  padding: 28px 0; display: flex; flex-direction: column; gap: 16px;
}
.product-featured .badge { font-size: 11px; letter-spacing: 0.24em; color: var(--accent); font-weight: 700; }
.product-featured .row { display: flex; gap: 18px; align-items: flex-start; }
.product-featured .thumb { width: 104px; height: 104px; flex-shrink: 0; border-radius: 2px; overflow: hidden; background: #F1EDE4; }
.product-featured .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-featured .texts { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1; }
.product-featured .name { font-size: 15.5px; font-weight: 700; line-height: 1.6; }
.product-featured .note { font-size: 13px; color: var(--text-sub); line-height: 1.9; }
.product-featured .price { font-size: 14px; font-weight: 700; margin-top: 2px; }
.cta-btn {
  display: flex; align-items: center; justify-content: center;
  background: var(--cta); color: #FFFFFF; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.08em; padding: 14px 20px; transition: background 0.15s;
}
.cta-btn:hover { background: var(--cta-hover); color: #FFFFFF; }
.disclosure { font-size: 10.5px; color: var(--text-weak); line-height: 1.7; }

/* 代替の2本(文字だけの行) */
.product-alts { display: flex; flex-direction: column; }
.product-alt { display: flex; gap: 14px; align-items: baseline; padding: 16px 0; border-bottom: 1px dotted var(--dotted); }
.product-alt .texts { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.product-alt .badge { font-size: 11px; letter-spacing: 0.1em; color: var(--text-label); font-weight: 700; }
.product-alt .name { font-size: 14px; font-weight: 700; line-height: 1.6; }
.product-alt .note { font-size: 12.5px; color: var(--text-sub); line-height: 1.8; }
.product-alt .right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.product-alt .price { font-size: 12.5px; font-weight: 700; }
.product-alt .link { font-size: 12px; font-weight: 500; border-bottom: 1px solid var(--text); padding-bottom: 1px; white-space: nowrap; }

/* FAQ */
.faq dl { margin: 0; display: flex; flex-direction: column; }
.faq .qa { display: flex; flex-direction: column; gap: 7px; border-bottom: 1px dotted var(--dotted); padding: 16px 0; }
.faq dt { font-size: 14.5px; font-weight: 700; line-height: 1.7; display: flex; gap: 10px; }
.faq dt .q { color: var(--accent); flex-shrink: 0; }
.faq dd { margin: 0; font-size: 13.5px; line-height: 2; color: var(--text-sub); padding-left: 24px; }

/* 出典 */
.sources { margin-top: 48px; display: flex; flex-direction: column; gap: 4px; }
.sources ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.sources li { font-size: 12px; line-height: 1.8; color: var(--text-label); padding: 10px 0; border-bottom: 1px dotted var(--dotted); }
.sources a { color: var(--text-label); border-bottom: 1px solid var(--dotted); padding-bottom: 1px; }

/* ---------------------------------------------------- 一覧ページ(分類・記事一覧) */
.listing-header { padding: 32px 0 0; display: flex; flex-direction: column; gap: 12px; }
.listing-header .label { font-size: 11px; letter-spacing: 0.24em; font-weight: 700; color: var(--accent); }
.listing-header .h1row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.listing-header h1 { margin: 0; font-size: 30px; font-weight: 700; letter-spacing: 0.06em; line-height: 1.3; }
.listing-header .count { font-size: 12px; color: var(--text-label); padding-bottom: 6px; flex-shrink: 0; }
.listing-header .lead { margin: 0; font-size: 13.5px; line-height: 2; color: var(--text-sub); }

/* 下線式タブ */
.cat-tabs {
  display: flex; gap: 18px; padding: 24px 0 14px;
  border-bottom: 1px solid var(--rule); overflow-x: auto; flex-wrap: wrap;
}
.cat-tab { font-size: 13px; font-weight: 400; color: var(--text-label); border-bottom: 2px solid transparent; padding-bottom: 4px; white-space: nowrap; }
.cat-tab.current { font-weight: 700; color: var(--text); border-bottom-color: var(--text); }

/* ページ送り */
.pagination { display: flex; align-items: baseline; justify-content: space-between; padding-top: 32px; gap: 16px; }
.pagination .pos { font-size: 12px; color: var(--text-label); }
.pagination .nav-links { display: flex; gap: 20px; }
.pagination .nav-links a { font-size: 13px; font-weight: 500; border-bottom: 1px solid var(--text); padding-bottom: 2px; }

/* ---------------------------------------------------- 検索ページ */
.search-head { padding: 40px 0 0; display: flex; flex-direction: column; gap: 18px; }
.search-head h1 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: 0.06em; }
.search-form { display: flex; gap: 14px; align-items: flex-end; }
.search-input-wrap { flex: 1; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--text); min-width: 0; }
.search-input-wrap svg { flex-shrink: 0; }
.search-input-wrap input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  padding: 10px 0; min-width: 0;
}
.search-submit {
  background: var(--cta); color: #FFFFFF; border: none; padding: 12px 17px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; cursor: pointer;
  flex-shrink: 0; transition: background 0.15s;
}
.search-submit:hover { background: var(--cta-hover); }
.hot-keywords { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; font-size: 12px; }
.hot-keywords .label { color: var(--text-label); margin-right: 4px; }
.hot-chip {
  font-size: 12.5px; color: var(--text-sub); background: none; border: none;
  border-bottom: 1px solid var(--dotted); padding: 0 0 2px; cursor: pointer; margin-right: 12px;
}
.search-results { display: flex; flex-direction: column; margin-top: 36px; }
.search-empty { padding: 56px 0 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.search-empty img { width: 44px; opacity: 0.45; }
.search-empty .msg { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.8; }
.search-empty .hint { margin: 0; font-size: 12.5px; line-height: 2; color: var(--text-label); }
.search-fallback { display: flex; flex-direction: column; gap: 4px; }

/* ---------------------------------------------------- 固定ページ */
.static-page { padding: 8px 0 0; }
.static-page .page-header { padding: 32px 0 0; display: flex; flex-direction: column; gap: 12px; }
.static-page h1 { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: 0.04em; line-height: 1.5; }
.static-page .page-lead { margin: 0; font-size: 13.5px; line-height: 2; color: var(--text-sub); }
.prose { margin-top: 8px; }
.prose h2 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  margin: 52px 0 0; padding-bottom: 10px; border-bottom: 1px solid var(--rule);
}
.prose h3 { font-size: 15px; font-weight: 700; margin: 30px 0 0; }
.prose p { margin: 18px 0 0; font-size: 14px; line-height: 2.1; color: var(--text-sub); }
.prose ul, .prose ol { margin: 18px 0 0; padding-left: 1.4em; font-size: 14px; line-height: 2.1; color: var(--text-sub); }
.prose a { border-bottom: 1px solid var(--text); padding-bottom: 1px; }

/* 404 */
.notfound { padding: 64px 0 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.notfound img { width: 44px; opacity: 0.45; }
.notfound .code { font-size: 11px; letter-spacing: 0.24em; font-weight: 700; color: var(--accent); }
.notfound .msg { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.8; }
.notfound .hint { margin: 0; font-size: 12.5px; line-height: 2; color: var(--text-label); }

/* ---------------------------------------------------- 品質の床 */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--text); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
