/* ============================================================
   redesign.css — サイトリデザイン（レトロポップ×紙）共通スタイル
   まずは商品詳細ページから適用（redesign/detail-v1 ブランチ）
   デザイン言語: docs/design-benchmark-atnndesign.md ／
   検証モック: design-samples/redesign-detail-v1.html
   フォント3声: Zen Maru Gothic(本文) × Shippori Mincho B1(声色) × IBM Plex Mono(ラベル)
   ============================================================ */
:root {
  --paper:      #FDFBF4;
  --buttermilk: #FFF2DE;
  --ink:        #232D53;
  --coral:      #F5766B;
  --coral-deep: #CC4437;   /* 文字入りボタン用（紙色文字で4.56:1 AA合格）*/
  --mustard:    #F5A31A;
  --leaf:       #7FB069;
  --sky:        #55A6D9;
  --lav:        #9D8FE0;
  --sand:       #E8D9BD;
  --avocado:    #E3E76F;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; } /* height属性付きimgの縦横比崩れ防止 */
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.hidden { display: none !important; }  /* JSトグル用ユーティリティ（旧style.css互換） */

.mono { font-family: "IBM Plex Mono", monospace; letter-spacing: 0.12em; font-size: 0.72rem; text-transform: uppercase; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* 柄 */
/* チェッカー柄：セルを正方形に（旧: 14x7px の横長で市松が崩れて見えた） */
.checker { height: 18px; background: repeating-conic-gradient(var(--ink) 0% 25%, var(--buttermilk) 0% 50%) 0 0 / 18px 18px; }
.graph-bg {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(35,45,83,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,45,83,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* ---- ヘッダー ---- */
.rd-header { background: var(--paper); border-bottom: 2px solid var(--ink); position: sticky; top: 0; z-index: 50; }
.rd-head-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 24px; max-width: 1200px; margin: 0 auto; }
.rd-logo { font-weight: 900; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; line-height: 1.3; }
.rd-logo .dot { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--coral); border: 2px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--paper); font-weight: 900; }
.rd-nav { display: flex; gap: 22px; font-weight: 700; font-size: 0.88rem; }
.rd-nav a:hover { color: var(--coral); }
.rd-head-right { display: flex; align-items: center; gap: 12px; }

/* 言語スイッチ（静かなユーティリティ） */
.language-switcher { display: inline-flex; border: 1.5px solid var(--ink); border-radius: 8px; background: var(--paper); overflow: hidden; opacity: 0.9; }
.language-switcher .lang-btn { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; font-size: 0.74rem; border: none; background: transparent; color: var(--ink); opacity: 0.55; padding: 6px 11px; cursor: pointer; line-height: 1; }
.language-switcher .lang-btn.active { background: var(--buttermilk); opacity: 1; }
.language-switcher .lang-btn + .lang-btn { border-left: 1.5px solid var(--ink); }

/* ボタン */
.rd-btn {
  background: var(--coral-deep); color: var(--paper);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 10px 22px; font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 0.9rem;
  box-shadow: 3px 3px 0 var(--ink); transition: transform .1s, box-shadow .1s;
  display: inline-block; cursor: pointer; text-align: center;
}
.rd-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.rd-btn.ghost { background: var(--paper); color: var(--ink); }

/* ---- パンくず＋PR ---- */
.rd-top-strip { padding: 16px 0 0; }
.rd-crumbs { font-size: 0.78rem; opacity: 0.75; }
.rd-crumbs b { opacity: 1; }
.rd-pr-note { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; opacity: 0.8; margin-top: 8px; }
.rd-pr-badge { flex: none; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; border: 1.5px solid var(--ink); border-radius: 4px; padding: 1px 6px; background: var(--buttermilk); }

/* ---- 商品ヒーロー ---- */
.rd-item-hero { padding: 26px 0 34px; }
.rd-item-hero h1 { font-weight: 900; font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.3; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rd-pri-badge { font-weight: 900; font-size: 0.78rem; border: 2px solid var(--ink); border-radius: 10px; padding: 4px 12px; background: var(--coral); color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.rd-pri-badge.pri2 { background: var(--mustard); }
.rd-pri-badge.pri3 { background: var(--leaf); }
.rd-pri-badge.pri4 { background: var(--paper); color: var(--ink); opacity: 0.75; }
.rd-pri-badge.pri5 { background: var(--paper); color: var(--ink); opacity: 0.55; }
.rd-item-hero .rd-desc { margin: 12px 0 0; max-width: 40em; }

/* えらびかたメモ（破線のメモ書き表現＝タイトルより格下） */
.rd-guide { border: 1.5px dashed rgba(35,45,83,0.55); border-radius: 14px; background: transparent; padding: 18px 20px 14px; margin-top: 22px; position: relative; }
.rd-guide .rd-memo-label { position: absolute; top: -12px; left: 16px; background: var(--lav); color: var(--ink); border: 1.5px solid var(--ink); border-radius: 6px; font-size: 0.68rem; font-weight: 900; padding: 1px 10px; box-shadow: 2px 2px 0 var(--ink); }
.rd-guide h3 { font-weight: 900; font-size: 0.92rem; margin-bottom: 8px; }
.rd-guide ul { list-style: none; }
.rd-guide li { font-size: 0.84rem; padding-left: 1.4em; position: relative; margin-bottom: 6px; }
.rd-guide li::before { content: "✿"; position: absolute; left: 0; color: var(--coral); }

/* ---- パーソナライズ帯（フルブリード） ---- */
.rd-personal-band { background: var(--buttermilk); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 28px 0; }
.rd-personal-note { display: flex; gap: 24px; align-items: center; padding-top: 14px; }
.rd-pn-avatar { flex: none; width: 112px; position: relative; filter: drop-shadow(2px 2px 0 var(--ink)); }
.rd-pn-avatar .shape { width: 112px; height: 112px; background: var(--tc, var(--coral)); overflow: hidden; position: relative; clip-path: url(#rdClipFlower); }
.rd-pn-avatar img { width: 265%; max-width: none; position: absolute; left: 50%; top: -12%; transform: translateX(-50%); }
.rd-pn-tag { position: absolute; top: -16px; left: 50%; transform: translateX(-54%) rotate(-4deg); z-index: 2; background: var(--avocado); border: 1.5px solid var(--ink); font-size: 0.6rem; font-weight: 900; line-height: 1.45; padding: 2px 9px; box-shadow: 2px 2px 0 var(--ink); text-align: center; width: max-content; max-width: 114px; }
.rd-personal-note .t { font-weight: 900; font-size: 0.92rem; }
.rd-personal-note p { font-size: 0.85rem; }
.rd-pn-chips { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.rd-mini-chip { font-weight: 700; font-size: 0.72rem; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 999px; padding: 2px 10px; }

/* ---- 妻のひとこと帯 ---- */
.rd-wife-band { background: #F3EFFC; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 34px 0; }
.rd-wife-card { display: flex; gap: 18px; align-items: flex-start; max-width: 720px; margin: 0 auto; }
.rd-wife-avatar { flex: none; width: 72px; }
.rd-wife-avatar .cir { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--ink); background: var(--lav); overflow: hidden; position: relative; box-shadow: 3px 3px 0 var(--ink); }
.rd-wife-avatar img { width: 300%; max-width: none; position: absolute; left: 50%; top: -8%; transform: translateX(-50%); }
.rd-wife-tag { display: inline-block; background: var(--avocado); border: 2px solid var(--ink); font-size: 0.66rem; font-weight: 900; padding: 2px 10px; transform: rotate(-3deg); margin-bottom: 8px; box-shadow: 2px 2px 0 var(--ink); }
.rd-wife-q { font-family: "Shippori Mincho B1", serif; font-weight: 600; font-size: 1.05rem; line-height: 2; }
.rd-wife-by { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; opacity: 0.65; margin-top: 6px; }

/* ---- セクション共通 ---- */
.rd-section { padding: 56px 0; }
.rd-sec-num { font-family: "IBM Plex Mono", monospace; font-size: 0.75rem; border: 1.5px solid var(--ink); background: var(--paper); border-radius: 6px; padding: 2px 8px; letter-spacing: 0.12em; }
.rd-sort-note { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; background: var(--paper); border: 1.5px dashed var(--ink); border-radius: 12px; padding: 10px 16px; font-size: 0.82rem; font-weight: 700; margin: 14px 0 26px; }
.rd-sort-note .mono { color: var(--sky); }
.rd-season-note { background: var(--paper); border: 1.5px dashed var(--ink); border-radius: 12px; padding: 10px 16px; font-size: 0.82rem; font-weight: 700; margin: 14px 0 26px; }

/* ---- おすすめ商品カード ---- */
.rd-prod-card {
  background: #fff; border: 2px solid var(--ink); border-radius: 18px;
  margin-bottom: 20px; overflow: hidden; box-shadow: 4px 4px 0 rgba(35,45,83,0.15);
  display: grid; grid-template-columns: 200px 1fr; position: relative;
}
.rd-prod-img { background: var(--paper); border-right: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; padding: 18px; position: relative; min-height: 170px; }
.rd-prod-img img { max-height: 170px; object-fit: contain; }
.rd-rank { position: absolute; top: 10px; left: 10px; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--buttermilk); font-family: "IBM Plex Mono", monospace; font-weight: 600; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); }
.rd-rank.lightest { background: var(--sky); }
.rd-prod-body { padding: 18px 22px 26px; }
.rd-prod-body h3 { font-weight: 900; font-size: 1.08rem; line-height: 1.5; }
.rd-spec-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.rd-spec { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; border: 1.5px solid var(--ink); border-radius: 6px; padding: 3px 9px; background: var(--paper); }
.rd-spec.hl { background: var(--sky); color: var(--ink); font-weight: 600; }
.rd-spec.warn { background: var(--buttermilk); }
.rd-prod-note { font-size: 0.8rem; opacity: 0.85; }
.rd-prod-sub { font-size: 0.72rem; opacity: 0.6; }
.rd-price-row { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 4px; }
.rd-price { font-weight: 900; font-size: 1.3rem; }
.rd-price small { font-size: 0.68rem; font-weight: 500; opacity: 0.6; }
.rd-buy-row { display: flex; gap: 10px; align-items: center; margin-top: 10px; flex-wrap: wrap; }
.rd-buy-btn { border: 2px solid var(--ink); border-radius: 999px; font-weight: 900; font-size: 0.82rem; padding: 8px 18px; cursor: pointer; box-shadow: 2px 2px 0 var(--ink); display: inline-block; }
.rd-buy-btn:hover { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
/* Amazon: 明るい地＋濃紺文字（コントラスト優先）＋マスタード影で識別 */
.rd-buy-btn.amazon { background: var(--buttermilk); color: var(--ink); box-shadow: 2px 2px 0 var(--mustard); }
.rd-buy-btn.rakuten { background: #BF3B4A; color: var(--paper); }
/* PRバッジ＝カード枠の右下 */
.rd-pr-inline { font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; border: 1.5px solid var(--ink); border-radius: 4px; padding: 1px 6px; background: var(--buttermilk); position: absolute; right: 10px; bottom: 8px; }

/* ---- 周辺アイテム ---- */
.rd-acc-sec { border-top: 2px solid var(--ink); }
.rd-acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.rd-acc-card { background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; overflow: hidden; position: relative; }
.rd-acc-img { height: 120px; background: #fff; border-bottom: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; padding: 10px; }
.rd-acc-img img { max-height: 100px; object-fit: contain; }
.rd-acc-body { padding: 12px 14px 26px; }
.rd-acc-body .nm { font-weight: 700; font-size: 0.85rem; line-height: 1.5; }
.rd-acc-body .desc { font-size: 0.74rem; opacity: 0.75; margin-top: 4px; }
.rd-acc-body .p { font-weight: 900; font-size: 0.95rem; margin-top: 6px; }
.rd-acc-links { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.rd-acc-links .rd-buy-btn { font-size: 0.72rem; padding: 6px 12px; }
.rd-acc-note { font-size: 0.76rem; opacity: 0.7; margin-top: 12px; }

/* ---- 戻る帯・フッター ---- */
.rd-back-band { text-align: center; padding: 42px 0; }
.rd-footer { background: var(--ink); color: var(--buttermilk); padding: 40px 0 28px; }
.rd-footer .rd-foot-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 0.85rem; margin-bottom: 18px; }
.rd-footer .rd-foot-links a { opacity: 0.85; }
.rd-footer .rd-foot-links a:hover { opacity: 1; }
.rd-footer p { text-align: center; font-size: 0.75rem; opacity: 0.75; }
.rd-footer .affiliate-disclosure { font-size: 0.68rem; opacity: 0.55; margin-top: 12px; line-height: 1.9; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---- モバイルナビ（ハンバーガー。js/rd-nav.js が組み立て） ---- */
.rd-mobile-toggle {
  display: none; flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4.5px;
  padding: 0; transition: transform .1s;
}
.rd-mobile-toggle:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.rd-mobile-toggle span { display: block; width: 17px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .18s, opacity .18s; }
.rd-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rd-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.rd-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rd-mobile-panel {
  position: fixed; inset: 0; z-index: 49; background: var(--buttermilk);
  display: flex; flex-direction: column; justify-content: center; gap: 26px;
  padding: 92px 30px 44px; opacity: 0; pointer-events: none; transition: opacity .18s;
}
.rd-mobile-panel.open { opacity: 1; pointer-events: auto; }
.rd-mobile-menu { display: flex; flex-direction: column; }
.rd-mobile-menu a { display: flex; align-items: center; gap: 16px; font-weight: 900; font-size: 1.28rem; padding: 15px 4px; border-bottom: 1.5px dashed var(--sand); color: var(--ink); text-decoration: none; }
.rd-mobile-menu a:last-child { border-bottom: none; }
.rd-mobile-menu a .mono { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--coral); }
.rd-mobile-cta { align-self: flex-start; }
.rd-mobile-lang { align-self: flex-start; }
html.rd-noscroll, html.rd-noscroll body { overflow: hidden; }

/* ---- レスポンシブ（ATNN準拠3段：900 / 760 / 480） ---- */
@media (max-width: 900px) {
  /* ヘッダーはロゴ＋ハンバーガーに集約（ナビ/言語/CTAはパネルへ） */
  .rd-nav { display: none; }
  .rd-head-right .language-switcher,
  .rd-head-right .rd-btn,
  .rd-head-right #retakeQuizBtn,
  .rd-head-right #startHeaderQuizBtn { display: none !important; }
  .rd-mobile-toggle { display: flex; }
}
@media (max-width: 760px) {
  .rd-logo { font-size: 0.95rem; }
  .rd-personal-note { flex-direction: row; gap: 16px; }
  .rd-pn-avatar { width: 88px; }
  .rd-pn-avatar .shape { width: 88px; height: 88px; }
  .rd-prod-card { grid-template-columns: 1fr; }
  .rd-prod-img { border-right: none; border-bottom: 2px solid var(--ink); }
  .rd-acc-grid { grid-template-columns: 1fr 1fr; }
  .rd-wife-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .rd-acc-grid { grid-template-columns: 1fr; }
  .rd-personal-note { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   リストページ（index.html）用スタイル
   検証モック: design-samples/redesign-list-v1.html
   注意：既存JSが参照するID/クラス（main.js/quiz.js/lead-offers.js/i18n.js）は
   そのまま維持し、見た目だけをrd-トーンに合わせる。
   ============================================================ */

/* ---- ヘッダー内 CTA（未診断時の主導線） ---- */
.rd-head-right #startHeaderQuizBtn { display: inline-block; }

/* ---- 診断結果サマリー帯（result-band） ---- */
.quiz-result-summary {
  background: var(--buttermilk);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 34px 0 30px;
  margin: 0 0 0;
  max-width: none;
}
.quiz-result-summary .wrap,
.quiz-result-summary > * { max-width: 880px; margin-left: auto; margin-right: auto; }
.quiz-result-header { display: none; } /* 見出しは prep-type-card 内で表現するため非表示 */
.quiz-result-content { background: transparent; padding: 0 24px; }

.prep-type-card {
  background: transparent;
  padding: 0;
  margin: 0 0 18px;
}
.prep-type-heading { display: none; }
.prep-type-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.prep-type-illust {
  width: 128px; height: 128px;
  position: static;
  flex-shrink: 0;
  filter: drop-shadow(3px 3px 0 var(--ink));
  clip-path: url(#rdClipFlower);
  background: var(--coral);
  overflow: hidden;
}
.prep-type-illust img { width: 190%; max-width: none; height: auto; object-fit: cover; position: relative; left: -34%; top: -6%; }
.prep-type-illust-placeholder {
  border: 1.5px dashed var(--ink); border-radius: 0; background: var(--paper);
  color: var(--ink); width: 100%; height: 100%;
}
.prep-type-body { flex: 1; }
.prep-type-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.4;
}
.prep-type-name::before { content: ""; }
.prep-type-catch {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  color: var(--coral);
  font-size: 1rem;
  margin: 0 0 10px;
}
.prep-type-desc { font-size: 0.9rem; color: var(--ink); opacity: 0.85; margin: 0 0 12px; }
.prep-type-summary p { font-size: 0.88rem; color: var(--ink); opacity: 0.85; margin: 0 0 6px; }
.prep-type-tips { background: var(--paper); border: 1.5px solid var(--ink); border-radius: 12px; padding: 12px 16px; margin-bottom: 12px; }
.prep-type-tips-label { color: var(--ink); font-weight: 900; font-size: 0.78rem; }
.prep-type-tip { background: var(--paper); border: 1.5px solid var(--ink); border-radius: 999px; box-shadow: 2px 2px 0 var(--ink); color: var(--ink); }

.quiz-result-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px; }
.result-tag {
  font-weight: 700; font-size: 0.78rem;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 3px 12px; box-shadow: 2px 2px 0 var(--ink);
}

.prep-type-share {
  background: var(--coral-deep); color: var(--paper);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 9px 20px; font-weight: 900; font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--ink); cursor: pointer;
  transition: transform .1s, box-shadow .1s;
}
.prep-type-share:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); background: var(--coral); }

.prep-type-note { display: none; } /* 冗長な注記はモバイル含め非表示（週数ホームの注記に統一） */
.quiz-result-retake-note { font-size: 0.78rem; opacity: 0.75; margin-top: 10px; }
.quiz-result-retake-note a { font-weight: 700; border-bottom: 1.5px solid var(--mustard); }

/* ---- 進捗バー（result-band直下・checkedItemsから算出） ---- */
.rd-progress-row { display: flex; align-items: center; gap: 14px; margin: 18px 24px 0; max-width: 880px; margin-left: auto; margin-right: auto; }
.rd-progress-track { flex: 1; height: 16px; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper); overflow: hidden; }
.rd-progress-fill { height: 100%; width: 0%; background: repeating-linear-gradient(45deg, var(--leaf) 0 10px, #8fc07e 10px 20px); border-right: 2px solid var(--ink); transition: width .25s; }
.rd-progress-num { font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
@media (max-width: 760px) {
  .rd-progress-row { margin: 16px 16px 0; }
}

/* ---- 週数パーソナルホーム（result-band内・rdトーン） ---- */
.week-home-block { max-width: 880px; margin: 22px auto 0; padding: 20px 24px 0; border-top: 1.5px dashed var(--ink); }
.week-home-countdown {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 14px;
  padding: 16px 18px; text-align: center; box-shadow: 3px 3px 0 rgba(35,45,83,0.15);
  margin-bottom: 14px;
}
.week-home-note { font-size: 0.76rem; opacity: 0.7; line-height: 1.6; margin: 10px 0 0; }

/* カウントダウン：残日数の数字を主役に（2026-07-07 CEO指示） */
/* 3要素（ラベル・残日数・週数サブ）は縦中央で揃える（baselineだと2行サブとズレるため） */
.whc-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 12px; padding-bottom: 4px; }
.whc-label { font-weight: 700; font-size: 0.92rem; color: var(--ink); opacity: 0.8; }
.whc-num { white-space: nowrap; }
.whc-num b {
  color: var(--coral); font-family: "IBM Plex Mono", monospace; font-weight: 600;
  font-size: clamp(2.7rem, 6.5vw, 3.8rem); line-height: 1; letter-spacing: -0.02em;
}
.whc-unit { color: var(--coral); font-weight: 900; font-size: 1.05rem; margin-left: 3px; }
.whc-sub { font-size: 0.85rem; line-height: 1.55; color: var(--ink); opacity: 0.75; text-align: left; }

/* プルダウン3種：中身は枠・強調ラインなしの素直な箇条書きに（2026-07-07 CEO指示） */
.week-home-details { background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.week-home-summary { font-weight: 900; color: var(--ink); padding: 12px 16px; cursor: pointer; }
.week-home-summary::after { color: var(--coral); }
.week-home-details[open] > .week-home-summary { border-bottom: 1.5px dashed var(--sand); color: var(--coral); }
.week-home-details > ul { list-style: none; margin: 0; padding: 10px 18px 14px; }

/* 1) 今週やること＝シンプルなチェック行 */
.week-home-todo {
  display: flex; align-items: flex-start; gap: 10px;
  background: transparent; border: none; padding: 7px 0; cursor: pointer;
}
.week-home-todo + .week-home-todo { border-top: 1px dashed rgba(35,45,83,0.18); }
.week-home-todo .box {
  flex: none; width: 18px; height: 18px; margin-top: 5px;
  border: 2px solid var(--ink); border-radius: 5px; background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
}
.week-home-todo.done .box { background: var(--leaf); border-color: var(--ink); }
.week-home-todo.done .box::after { content: "✓"; color: var(--ink); font-size: 0.7rem; font-weight: 900; line-height: 1; }
.week-home-todo .txt { font-size: 0.9rem; line-height: 1.7; }
.week-home-todo.done .txt { text-decoration: line-through; opacity: 0.5; }

/* 2) そろえておきたいもの・3) おすすめ記事＝矢印マーカーの箇条書きリンク */
.week-home-links li, .week-home-articles li { padding: 6px 0 6px 1.5em; position: relative; }
.week-home-links li + li, .week-home-articles li + li { border-top: 1px dashed rgba(35,45,83,0.18); }
.week-home-links li::before, .week-home-articles li::before {
  content: "→"; position: absolute; left: 0; top: 6px; color: var(--coral); font-weight: 900;
}
.week-home-links li a, .week-home-articles li a {
  display: inline; background: transparent; border: none; padding: 0;
  color: var(--ink); font-size: 0.9rem; line-height: 1.7;
  border-bottom: 1.5px dashed rgba(35,45,83,0.35);
}
.week-home-links li a:hover, .week-home-articles li a:hover { color: var(--coral); border-bottom-color: var(--coral); }
.week-home-links li a::after { content: none; }

/* ---- 検索＋優先度フィルタ（コントロールバー） ---- */
.search-section {
  position: sticky; top: 62px; z-index: 40;
  background: var(--paper); border-bottom: 2px solid var(--ink);
  padding: 14px 24px; margin: 0 0 0;
  max-width: none;
}
.search-section .search-box { max-width: 880px; margin: 0 auto; }
.search-box { display: flex; align-items: center; gap: 8px; border: 2px solid var(--ink); border-radius: 999px; background: #fff; padding: 8px 16px; }
.search-box input {
  border: none; outline: none; font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.9rem; width: 100%; background: transparent; color: var(--ink);
  padding: 0; border-radius: 0; box-shadow: none;
}
.search-icon { position: static; transform: none; color: var(--ink); opacity: 0.6; }

.filter-section { max-width: 880px; margin: 14px auto 0; padding: 0 24px; }
.filter-buttons { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-start; }
.filter-btn {
  border: 2px solid var(--ink); border-radius: 999px; background: var(--paper);
  font-weight: 700; font-size: 0.8rem; padding: 6px 14px; cursor: pointer;
  color: var(--ink); transition: none;
}
.filter-btn:hover { border-color: var(--ink); background: var(--buttermilk); }
.filter-btn.active,
.filter-btn[data-priority].active {
  background: var(--ink); border-color: var(--ink); color: var(--buttermilk);
  box-shadow: 2px 2px 0 rgba(35,45,83,0.35);
}
@media (max-width: 760px) {
  .search-section { top: 58px; padding: 12px 16px; }
  .filter-section { padding: 0 16px; margin-top: 12px; }
}

/* ---- PR表記（リスト上部） ---- */
.affiliate-notice {
  max-width: 880px; margin: 22px auto 0; padding: 0 24px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; opacity: 0.8;
}
.affiliate-notice .pr-badge {
  flex: none; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem;
  border: 1.5px solid var(--ink); border-radius: 4px; padding: 1px 6px;
  background: var(--buttermilk); color: var(--ink); margin-left: 0;
}

/* ---- 商品リスト本体（priority-group → カテゴリ見出し／checklist-item → item行） ---- */
#productsList { max-width: 880px; margin: 26px auto 70px; padding: 0 24px; }
.priority-group { margin-bottom: 8px; }
.priority-group-header {
  display: flex; align-items: center; gap: 12px;
  font-family: "IBM Plex Mono", monospace; font-weight: 600; letter-spacing: 0.08em;
  font-size: 0.95rem; text-transform: none;
  background: var(--lav); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 10px;
  padding: 8px 16px; margin: 34px 0 14px;
  box-shadow: 2px 2px 0 var(--ink);
}
.priority-group:first-child .priority-group-header { margin-top: 0; }
.priority-group-header.必須 { background: var(--coral); color: var(--ink); }
.priority-group-header.推奨 { background: var(--mustard); color: var(--ink); }
.priority-group-header.便利 { background: var(--leaf); color: var(--ink); }
.priority-group-header.低優先 { background: var(--paper); color: var(--ink); opacity: 0.85; }
.priority-group-header.不要 { background: var(--paper); color: var(--ink); opacity: 0.65; }

.checklist-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 2px solid var(--ink); border-radius: 14px;
  padding: 13px 16px; margin-bottom: 10px;
  box-shadow: 3px 3px 0 rgba(35,45,83,0.12);
  transition: transform .1s;
  border-left: 2px solid var(--ink); /* 旧デザインのカラーborder-leftを打ち消し統一 */
}
.checklist-item:hover { transform: translateY(-1px); background: #fff; }
.checklist-item.不要 { background: var(--paper); box-shadow: none; }
.checklist-item.checked { opacity: 1; text-decoration: none; }
.checklist-item.checked .checklist-name { text-decoration: line-through; opacity: 0.45; }

.checklist-checkbox {
  flex: none; width: 26px; height: 26px;
  border: 2px solid var(--ink); border-radius: 50%;
  background: var(--paper); margin-right: 0;
  display: flex; align-items: center; justify-content: center;
}
.checklist-checkbox svg { width: 15px; height: 15px; stroke: var(--paper); }
.checklist-checkbox.checked { background: var(--leaf); border-color: var(--ink); }
.checklist-checkbox.checked svg { display: block; }

.checklist-content { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.checklist-name { font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.checklist-description { font-size: 0.76rem; opacity: 0.7; line-height: 1.6; color: var(--ink); margin-top: 2px; }

.checklist-actions .btn-small {
  flex: none; font-weight: 900; opacity: 0.5;
  background: transparent; border: none; color: var(--ink);
  font-size: 1.1rem; padding: 4px 8px; cursor: pointer;
}
.checklist-item:hover .checklist-actions .btn-small { opacity: 1; color: var(--coral); }

@media (max-width: 760px) {
  /* 行レイアウトは維持：テキスト塊(flex:1)＋詳細リンク(右端・縦中央)。重なり防止 */
  .checklist-item { gap: 10px; padding: 12px 14px; }
  .checklist-content { gap: 8px; }
  .checklist-actions .btn-small { font-size: 0.9rem; padding: 4px 2px; opacity: 0.65; }
}

/* ---- 高単価リードオファー（カテゴリ末尾） ---- */
.lead-offer-card {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--paper); border: 1.5px dashed var(--ink); border-radius: 14px;
  padding: 16px 18px; text-decoration: none; margin: 10px 0 0;
}
.lead-offer-card:hover { background: var(--buttermilk); }
.lead-offer-card-in-category { border-left: 1.5px dashed var(--ink); }
.lead-offer-pr-badge {
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem;
  border: 1.5px solid var(--ink); border-radius: 4px; padding: 1px 6px;
  background: var(--buttermilk); color: var(--ink); align-self: flex-start;
}
.lead-offer-title { font-weight: 900; color: var(--ink); font-size: 1rem; }
.lead-offer-desc { color: var(--ink); opacity: 0.75; font-size: 0.85rem; line-height: 1.6; }
.lead-offer-cta {
  display: inline-block; align-self: flex-start;
  background: var(--coral-deep); color: var(--paper); font-weight: 900; font-size: 0.85rem;
  padding: 8px 18px; margin-top: 6px; border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}
.lead-offer-card-with-banner .lead-offer-cta { align-self: center; }
.lead-offer-banner { border-radius: 8px; margin: -2px -2px 6px; }

/* ---- サイト運営者の推し（owner picks） ---- */
.owner-picks {
  max-width: 880px; margin: 40px auto 0; padding: 28px 24px 0;
  background: transparent; border: none; border-radius: 0;
}
.owner-picks-header { text-align: left; margin-bottom: 18px; }
.owner-picks-header h2 {
  font-weight: 900; font-size: 1.15rem; color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif; margin: 0 0 6px;
}
.owner-picks-header p { font-size: 0.85rem; opacity: 0.75; max-width: none; margin: 0; }
.owner-picks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.owner-pick-card {
  background: #fff; border: 2px solid var(--ink); border-radius: 14px;
  padding: 16px 18px; box-shadow: 3px 3px 0 rgba(35,45,83,0.12);
  display: flex; gap: 0; transition: transform .1s;
}
.owner-pick-card:hover { transform: translateY(-2px); box-shadow: 3px 3px 0 rgba(35,45,83,0.12); }
.owner-pick-badge {
  display: inline-block; background: var(--avocado); color: var(--ink);
  font-size: 0.66rem; font-weight: 900; padding: 2px 10px;
  border: 1.5px solid var(--ink); border-radius: 999px; margin-bottom: 8px;
}
.owner-pick-name { font-weight: 900; font-size: 0.98rem; color: var(--ink); margin: 0 0 8px; }
.owner-pick-comment { font-size: 0.82rem; color: var(--ink); opacity: 0.8; line-height: 1.8; margin: 0 0 10px; font-style: normal; }
.owner-pick-link { font-size: 0.82rem; font-weight: 700; color: var(--ink); border-bottom: 1.5px solid var(--mustard); }
.owner-pick-link:hover { color: var(--coral); }
@media (max-width: 760px) {
  .owner-picks { padding: 24px 16px 0; }
  .owner-pick-card { flex-direction: column; }
}

/* ---- 公式LINE誘導（下部CTA） ---- */
.line-cta-section { max-width: none; margin: 46px 0 0; }
.week-home-line-cta {
  background: var(--buttermilk); border-top: 2px solid var(--ink);
  border-radius: 0; padding: 42px 24px; text-align: center; margin: 0;
}
.week-home-line-title { font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.week-home-line-btn {
  background: #06C755; color: #fff; border: 2px solid var(--ink);
  border-radius: 999px; font-weight: 900; padding: 10px 26px;
  box-shadow: 3px 3px 0 var(--ink); transition: transform .1s, box-shadow .1s;
}
.week-home-line-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); opacity: 1; }
.week-home-line-note { font-size: 0.76rem; opacity: 0.7; margin-top: 12px; }

/* ---- 診断モーダル（quiz.js 既存ロジック・見た目のみrd化） ----
   旧style.cssを読まなくなったため、配置ルール（fixed中央寄せ・active表示）もここで定義する */
.modal {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(35,45,83,0.55); backdrop-filter: blur(2px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal.active { display: flex; }
.modal-content {
  position: relative; width: 100%; max-width: 640px; max-height: 88vh; overflow-y: auto;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink); padding: 28px 26px 24px;
}
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  background: var(--paper); border: 2px solid var(--ink); color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.modal-close:hover { background: var(--buttermilk); color: var(--ink); }
/* 診断モーダルの戻る/次へ（旧 .btn クラスのままrd風に） */
.quiz-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.quiz-footer .btn {
  border: 2px solid var(--ink); border-radius: 999px; cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 0.92rem;
  padding: 11px 28px; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .1s, box-shadow .1s;
}
.quiz-footer .btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.quiz-footer .btn-primary { background: var(--coral-deep); color: var(--paper); margin-left: auto; }
.quiz-footer .btn-secondary { background: var(--paper); color: var(--ink); }
.quiz-header h2 { color: var(--ink); font-weight: 900; font-family: "Zen Maru Gothic", sans-serif; }
.quiz-subtitle { color: var(--ink); opacity: 0.7; }
.quiz-progress { background: var(--sand); border: 1.5px solid var(--ink); border-radius: 999px; height: 12px; }
.quiz-progress-bar { background: var(--coral); border-radius: 999px 0 0 999px; }
.quiz-step { color: var(--ink); opacity: 0.7; font-family: "IBM Plex Mono", monospace; }
.quiz-question h3 { color: var(--ink); font-weight: 900; }
.quiz-option {
  border: 2px solid var(--ink); border-radius: 12px; background: #fff;
  box-shadow: 2px 2px 0 rgba(35,45,83,0.12);
}
.quiz-option:hover { border-color: var(--coral); background: var(--buttermilk); box-shadow: 2px 2px 0 var(--ink); }
.quiz-option.selected { border-color: var(--ink); background: var(--coral-deep); color: var(--paper); box-shadow: 3px 3px 0 var(--ink); }
.quiz-date-input {
  border: 2px solid var(--ink) !important; border-radius: 12px !important;
  background: #fff !important; font-family: "Zen Maru Gothic", sans-serif !important;
}
.quiz-date-input:focus { border-color: var(--coral) !important; }
.quiz-footer .btn { border-radius: 999px; font-weight: 900; }
.btn.btn-primary {
  background: var(--coral-deep); color: var(--paper); border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink); transition: transform .1s, box-shadow .1s;
}
.btn.btn-primary:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); background: var(--coral); }
.btn.btn-secondary {
  background: var(--paper); color: var(--ink); border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink); transition: transform .1s, box-shadow .1s;
}
.btn.btn-secondary:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* ---- 診断前CTAバナー（quizCtaBanner） ---- */
.quiz-cta-banner {
  max-width: 880px; margin: 22px auto 0 !important; padding: 24px !important;
  background: var(--buttermilk) !important; border: 2px solid var(--ink) !important;
  border-radius: 16px !important; box-shadow: 4px 4px 0 rgba(35,45,83,0.15);
}
.quiz-cta-banner h3 { color: var(--ink) !important; font-family: "Zen Maru Gothic", sans-serif; font-weight: 900 !important; }
.quiz-cta-banner p { color: var(--ink) !important; opacity: 0.75; }
.quiz-cta-banner .btn.btn-primary { padding: 10px 26px !important; }

/* ---- 広告スペース（既存） ---- */
.ad-space {
  max-width: 880px; margin: 22px auto 0 !important;
  background: var(--paper) !important; border: 1.5px dashed var(--ink) !important;
  border-radius: 12px !important; padding: 16px !important;
}
.ad-space p { color: var(--ink) !important; opacity: 0.6; }

/* ---- main配下の余白リセット（旧 .container / .main を rd-wrap で代替） ---- */
.main { padding: 0 0 0; min-height: auto; }
.main > .container { max-width: none; margin: 0; padding: 0; }

/* ---- 言語別テキスト切替（.lang-ja / .lang-en・i18n.jsが documentElement.lang を切替） ---- */
.lang-en { display: none; }
.lang-ja { display: revert; }
html[lang="en"] .lang-ja { display: none; }
html[lang="en"] .lang-en { display: revert; }

/* ============================================================
   コラム記事ページ（column-*.html）用スタイル
   雛形: column-01.html（redesign/detail-v1 ブランチ）
   スコープ：.rd-article 配下のみ（他ページの .content-page 等に影響させない）
   本文HTML構造・クラス名は既存のまま（.article-hero/.toc/.highlight-box/
   .article-cta/.related-articles 等）。ここでは見た目のみ rd トーンに上書きする。
   ============================================================ */

/* 読了プログレスバー（column-*.html 共通） */
.reading-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: var(--coral);
  z-index: 9999; transition: width 0.1s linear;
}

/* 記事ラッパー（旧 .content-page の余白を rd の .wrap に合わせる） */
.rd-article.content-page {
  max-width: 880px; margin: 0 auto; padding: 8px 24px 60px;
  background: transparent; border-radius: 0;
}

/* ---- 記事ヒーロー（タイトル・公開日・カテゴリ） ---- */
.rd-article .article-hero {
  background: transparent; padding: 18px 0 30px; margin: 0 0 8px;
  border-radius: 0; text-align: left; overflow: visible;
}
.rd-article .article-hero::before { content: none; }
.rd-article .article-hero-img {
  border-radius: 14px; box-shadow: 4px 4px 0 rgba(35,45,83,0.15);
  margin: 0 0 22px;
  width: 100%; max-width: 100%; height: auto; /* PNG内に枠があるためCSS枠は付けない（二重回避） */
}
.rd-article .article-hero h1 {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.5;
  color: var(--ink); text-align: left; margin-bottom: 16px;
}
.rd-article .article-hero-meta {
  justify-content: flex-start; gap: 10px; padding: 0;
}
.rd-article .article-hero-meta span {
  font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.06em;
  background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink);
  border-radius: 6px; padding: 3px 10px; box-shadow: none;
}

.rd-article .page-intro {
  font-family: "Zen Maru Gothic", sans-serif; font-size: 1rem; line-height: 1.9;
  color: var(--ink); opacity: 0.88; margin-bottom: 2rem;
}

/* ---- 目次（破線枠のメモ風） ---- */
.rd-article .toc {
  background: var(--paper); border: 1.5px dashed var(--ink); border-radius: 14px;
  padding: 20px 22px; margin: 2rem 0 2.5rem; box-shadow: none; position: relative;
}
.rd-article .toc h2 {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 0.95rem;
  color: var(--ink); border: none; padding: 0; margin: 0 0 12px;
}
.rd-article .toc h2::before { content: none; }
.rd-article .toc ul { list-style: none; padding: 0; margin: 0; }
.rd-article .toc li { margin: 0; }
.rd-article .toc a {
  padding: 8px 0; color: var(--ink); opacity: 0.85;
  border-bottom: 1px dashed rgba(35,45,83,0.2); font-size: 0.9rem;
}
.rd-article .toc a:hover { color: var(--coral); opacity: 1; padding-left: 6px; }
.rd-article .toc a::before { content: "→"; color: var(--coral); }

/* ---- 本文タイポグラフィ ---- */
.rd-article article,
.rd-article .content-page { counter-reset: none; }
.rd-article p {
  font-family: "Zen Maru Gothic", sans-serif; line-height: 1.9; font-size: 1rem;
  color: var(--ink); opacity: 0.9; margin-bottom: 1.5rem;
}
.rd-article h2 {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900;
  font-size: 1.4rem; color: var(--ink);
  margin-top: 3.2rem; margin-bottom: 1.4rem;
  padding-bottom: 0; border-bottom: none;
  padding-left: 1.3em; position: relative;
}
.rd-article h2::before {
  content: "✿"; position: absolute; left: 0; top: 0.1em;
  color: var(--coral); font-size: 0.85em; width: auto; height: auto; background: none;
}
.rd-article h3 {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--ink);
  margin-top: 2.2rem; margin-bottom: 0.9rem;
  border-left: 3px solid var(--coral); padding-left: 0.9rem;
}
.rd-article ul, .rd-article ol { margin: 1.2rem 0; padding-left: 1.5rem; }
.rd-article li {
  font-family: "Zen Maru Gothic", sans-serif; line-height: 1.9; font-size: 1rem;
  color: var(--ink); opacity: 0.9; margin-bottom: 0.6rem;
}
.rd-article strong {
  color: var(--ink); opacity: 1; font-weight: 700;
  background: linear-gradient(transparent 60%, var(--buttermilk) 60%);
  padding: 0 2px;
}
.rd-article a { color: var(--ink); font-weight: 700; border-bottom: 1.5px solid var(--mustard); }
.rd-article a:hover { color: var(--coral); border-bottom-color: var(--coral); }

/* ---- 注意書き・Disclaimerボックス（highlight-box / warning-box） ---- */
.rd-article .highlight-box,
.rd-article .warning-box {
  background: var(--paper); border: 1.5px solid var(--ink); border-left: 1.5px solid var(--ink);
  border-radius: 12px; padding: 1.4rem 1.6rem; margin: 2rem 0;
  box-shadow: 3px 3px 0 rgba(35,45,83,0.12);
}
.rd-article .highlight-box::before { content: none; }
.rd-article .highlight-box p,
.rd-article .warning-box p { margin-bottom: 0.5rem; }
.rd-article .highlight-box ul,
.rd-article .warning-box ul { margin: 0.5rem 0 0; }

/* ---- 記事末尾CTA ---- */
.rd-article .article-cta {
  background: var(--buttermilk); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 16px;
  padding: 2.2rem 2rem; text-align: center; margin: 3rem 0;
  box-shadow: 4px 4px 0 rgba(35,45,83,0.15); overflow: visible;
}
.rd-article .article-cta::before { content: none; }
.rd-article .article-cta h3 {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; color: var(--ink);
  border: none; padding: 0; margin: 0 0 0.8rem; font-size: 1.2rem;
}
.rd-article .article-cta p { color: var(--ink); opacity: 0.85; }
.rd-article .article-cta-btn {
  background: var(--coral-deep); color: var(--paper); font-weight: 900;
  border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink); padding: 10px 26px;
  transition: transform .1s, box-shadow .1s;
}
.rd-article .article-cta-btn:hover {
  transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); color: var(--paper);
}

/* ---- 関連記事（コーラル矢印の箇条書き＝週数ホームと同トーン） ---- */
.rd-article .related-articles {
  background: transparent; padding: 0; margin: 3rem 0 1rem;
  border-top: 1.5px dashed var(--ink); padding-top: 1.6rem;
}
.rd-article .related-articles h3 {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; color: var(--ink);
  text-align: left; font-size: 1rem; margin-bottom: 0.8rem;
}
.rd-article .related-articles ul {
  display: block; list-style: none; padding: 0; margin: 0;
}
.rd-article .related-articles li { padding: 6px 0 6px 1.5em; position: relative; }
.rd-article .related-articles li + li { border-top: 1px dashed rgba(35,45,83,0.18); }
.rd-article .related-articles li::before {
  content: "→"; position: absolute; left: 0; top: 6px; color: var(--coral); font-weight: 900;
}
.rd-article .related-articles a {
  display: inline; background: transparent; border: none; border-bottom: 1.5px dashed rgba(35,45,83,0.35);
  color: var(--ink); font-weight: 400; font-size: 0.92rem; line-height: 1.7; padding: 0;
}
.rd-article .related-articles a:hover {
  transform: none; box-shadow: none; color: var(--coral); border-bottom-color: var(--coral);
}

@media (max-width: 760px) {
  .rd-article.content-page { padding: 6px 16px 48px; }
}

/* ============================================================
   ホームFV（#homeIntro）— 未診断ユーザー向け導入 ＋ index.html#home で再表示
   モック design-samples/redesign-top-v1.html（v7）の移植・2026-07-07
   ============================================================ */
.hi-hero { position: relative; overflow: hidden; background: var(--paper); }
.hi-hero-in { max-width: 1200px; margin: 0 auto; padding: 56px 24px 0; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; align-items: end; }
.hi-copy { padding-bottom: 52px; position: relative; z-index: 3; }
.hi-label { display: inline-block; border: 1.5px solid var(--ink); border-radius: 999px; padding: 4px 14px; margin-bottom: 22px; background: var(--buttermilk); }
.hi-hero h1 { font-weight: 900; font-size: clamp(2.2rem, 4.8vw, 3.6rem); line-height: 1.32; letter-spacing: 0.02em; }
.hi-line { display: block; white-space: nowrap; }
.hi-tw { font-family: "Shippori Mincho B1", serif; font-weight: 800; color: var(--coral); border-right: 4px solid var(--ink); padding-right: 6px; white-space: nowrap; }
.hi-tw.blink { animation: hiCaret .9s step-end infinite; }
@keyframes hiCaret { 0%,100% { border-color: var(--ink); } 50% { border-color: transparent; } }
.hi-tw .tw-no { font-size: calc(1em - 5px); }
.hi-lead { margin: 18px 0 24px; font-size: 1rem; max-width: 27em; }
.hi-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hi-free-note { margin-top: 12px; font-size: 0.82rem; font-weight: 700; }
.hi-free-note b { background: linear-gradient(transparent 62%, var(--avocado) 62%); padding: 0 2px; }
.hi-illust { position: relative; height: 100%; min-height: 460px; }
.hi-main-img { position: absolute; bottom: -18px; right: -70px; width: 560px; max-width: none; clip-path: inset(5% 0 3% 6%); }
.hi-name-tag {
  position: absolute; bottom: 140px; left: -4px; z-index: 4;
  background: var(--avocado); color: var(--ink);
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  padding: 6px 14px 7px; transform: rotate(-7deg); text-align: center; line-height: 1.3;
}
.hi-name-tag .mono { display: block; font-size: 0.56rem; opacity: 0.75; }
.hi-name-tag .nm { font-family: "Shippori Mincho B1", serif; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.04em; }
.hi-arrow { position: absolute; left: -46px; bottom: 208px; width: 120px; z-index: 4; transform: rotate(8deg); }
.hi-spin { position: absolute; z-index: 5; width: 92px; height: 92px; right: 280px; bottom: 14px; filter: drop-shadow(3px 3px 0 rgba(35,45,83,0.9)); }
.hi-spin svg { width: 100%; height: 100%; }

.hi-marquee { background: var(--ink); color: var(--buttermilk); overflow: hidden; padding: 9px 0; }
.hi-marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: hiMq 22s linear infinite; width: max-content; }
@keyframes hiMq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hi-marquee span { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; letter-spacing: 0.14em; }
.hi-marquee b { color: var(--mustard); }

.hi-list-sec { background: var(--buttermilk); padding: 64px 0; }
.hi-list-stage { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 40px; align-items: start; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hi-list-title { font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 14px; }
.hi-list-title .serif-i { font-family: "Shippori Mincho B1", serif; font-weight: 800; }
.hi-list-title .serif-i .em { color: var(--coral); }
.hi-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 16px; }
.hi-chip { font-weight: 700; font-size: 0.8rem; background: var(--sky); color: var(--ink); border: 2px solid var(--ink); border-radius: 999px; padding: 4px 13px; box-shadow: 2px 2px 0 var(--ink); }
.hi-list-note { font-size: 0.78rem; opacity: 0.65; margin-bottom: 22px; }
.hi-card { background: var(--paper); border: 2px solid var(--ink); border-radius: 20px; box-shadow: 5px 5px 0 var(--ink); overflow: hidden; }
.hi-card-head { display: flex; justify-content: space-between; align-items: center; background: var(--ink); color: var(--buttermilk); padding: 12px 20px; }
.hi-card-head .mono { color: var(--mustard); }
.hi-card-head strong { font-weight: 900; font-size: 0.95rem; }
.hi-row { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1.5px dashed var(--sand); }
.hi-row:last-child { border-bottom: none; }
.hi-badge { flex: none; font-weight: 900; font-size: 0.72rem; border: 2px solid var(--ink); border-radius: 8px; padding: 3px 9px; background: var(--bc, var(--coral)); color: var(--ink); }
.hi-badge.gray { background: var(--paper); color: var(--ink); opacity: 0.7; }
.hi-row .n { font-weight: 700; font-size: 0.96rem; }
.hi-row .w { font-size: 0.78rem; opacity: 0.72; }
.hi-row.skip .n { text-decoration: line-through; opacity: 0.55; }

.hi-steps { padding: 64px 0; }
.hi-steps-in { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hi-steps-title { font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 24px; }
.hi-steps-title .serif-i { font-family: "Shippori Mincho B1", serif; font-weight: 800; color: var(--leaf); }
.hi-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hi-step { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; padding: 24px 22px; box-shadow: 4px 4px 0 var(--ink); }
.hi-step .head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.hi-step .num { flex: none; font-family: "IBM Plex Mono", monospace; font-weight: 600; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; background: var(--sc, var(--coral)); color: var(--ink); }
.hi-step h3 { font-weight: 900; font-size: 1.02rem; line-height: 1.4; }
.hi-step p { font-size: 0.9rem; }

/* ---- 準備タイプ帯（多形状トリミング） ---- */
.hi-typeband { background: var(--buttermilk); padding: 46px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.hi-tb-in { display: flex; align-items: center; gap: 26px; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hi-tb-copy { flex: none; max-width: 240px; }
.hi-tb-copy h3 { font-weight: 700; font-size: 1.24rem; line-height: 1.55; }
.hi-tb-copy p { font-size: 0.8rem; opacity: 0.75; margin-top: 8px; }
.hi-tb-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 8px 2px 14px; align-items: flex-start; }
.hi-tb-chip { flex: none; width: 116px; text-align: center; }
.hi-tb-shape-wrap { width: 104px; height: 104px; margin: 0 auto 8px; filter: drop-shadow(3px 3px 0 var(--ink)); }
.hi-tb-shape { width: 100%; height: 100%; background: var(--cc, var(--coral)); overflow: hidden; position: relative; }
.hi-tb-shape img { width: 190%; max-width: none; position: absolute; left: 50%; top: -6%; transform: translateX(-50%); }
.hi-tb-shape.s-circle { border-radius: 50%; }
.hi-tb-shape.s-flower { clip-path: url(#rdClipFlower); }
.hi-tb-shape.s-scallop { clip-path: url(#rdClipScallop); }
.hi-tb-shape.s-clover { clip-path: url(#rdClipClover); }
.hi-tb-shape.s-burst { clip-path: url(#rdClipBurst); }
.hi-tb-name { font-weight: 700; font-size: 0.72rem; line-height: 1.4; }

/* ---- 03 / READ よまれているコラム ---- */
.hi-read { padding: 64px 0; }
.hi-read-in { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hi-read-title { font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 26px; }
.hi-read-title .serif-i { font-family: "Shippori Mincho B1", serif; font-weight: 800; }
.hi-read-title .serif-i.em { color: var(--lav); }
.hi-read-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hi-col-card { display: block; background: var(--paper); border: 2px solid var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 4px 4px 0 var(--ink); text-decoration: none; color: var(--ink); transition: transform .12s ease, box-shadow .12s ease; }
.hi-col-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.hi-col-thumb { position: relative; aspect-ratio: 1200 / 630; border-bottom: 2px solid var(--ink); background: var(--buttermilk); overflow: hidden; }
.hi-col-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hi-col-cat { position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--paper); font-size: 0.62rem; letter-spacing: 0.12em; padding: 3px 9px; border-radius: 5px; }
.hi-col-body { padding: 14px 16px 16px; }
.hi-col-body h3 { font-weight: 700; font-size: 0.96rem; line-height: 1.5; margin-bottom: 8px; }
.hi-col-body .mono { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ink); opacity: 0.6; }
.hi-read-more { display: inline-block; margin-top: 20px; font-weight: 900; font-size: 0.92rem; color: var(--ink); text-decoration: none; border-bottom: 3px solid var(--mustard); padding-bottom: 2px; }
.hi-read-more:hover { border-bottom-color: var(--coral); }
.hi-en-banner { margin-top: 48px; background: #EAF4FB; color: var(--ink); border: 2px solid var(--ink); border-radius: 20px; padding: 26px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hi-en-banner h3 { font-family: "Shippori Mincho B1", serif; font-weight: 800; font-size: 1.25rem; color: var(--ink); margin-bottom: 6px; }
.hi-en-banner p { font-size: 0.88rem; max-width: 40em; }
.hi-en-banner .rd-btn { flex: none; }

/* ---- 実体験の帯（運営者＝妻の実体験メモがベース。モック準拠：静かな帯） ---- */
.hi-madeby { background: var(--paper); border-top: 1.5px dashed var(--sand); padding: 30px 0; }
.hi-madeby-in { max-width: 760px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 18px; }
.hi-madeby-avatar { flex: none; width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--ink); background: var(--lav); overflow: hidden; }
.hi-madeby-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hi-madeby p { font-size: 0.85rem; line-height: 1.9; }
.hi-madeby a { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--mustard); white-space: nowrap; }

@media (max-width: 900px) {
  .rd-logo { font-size: 0.92rem; white-space: nowrap; }
  .rd-head-right .rd-btn { white-space: nowrap; padding: 8px 14px; font-size: 0.78rem; }
}
/* タブレット（〜900px）：ヒーロー1カラム化・コラム2列 */
@media (max-width: 900px) {
  .hi-hero-in { grid-template-columns: 1fr; padding-top: 36px; }
  .hi-copy { padding-bottom: 0; }
  .hi-illust { min-height: 410px; margin-top: 14px; }
  .hi-main-img { width: 375px; right: -40px; bottom: -10px; }
  .hi-name-tag { left: 10px; bottom: 72px; }
  .hi-arrow { display: none; }
  .hi-spin { width: 72px; height: 72px; right: auto; left: 12px; bottom: 8px; }
  .hi-list-stage { grid-template-columns: 1fr; }
  .hi-read-grid { grid-template-columns: repeat(2, 1fr); }
}
/* モバイル（〜760px）：縦積み中心 */
@media (max-width: 760px) {
  .hi-steps-grid { grid-template-columns: 1fr; }
  .hi-tb-in { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hi-tb-copy { max-width: none; }
  .hi-tb-scroll { width: 100%; }
  .hi-en-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .hi-madeby-in { flex-direction: column; text-align: center; }
  .hi-madeby a { display: inline-block; margin-top: 4px; }
  .rd-pb-stage { padding: 22px 18px 14px; }
  .rd-pb-stage .num { right: 12px; }
}
/* スマホ小（〜560px）：コラム1列・ヒーロー微調整 */
@media (max-width: 560px) {
  .hi-read-grid { grid-template-columns: 1fr; }
  /* FVイラスト整理（2026-07-07 CEO指示）: イラストを大きくトリミング表示、
     名札は小さく左上へ、回転バッジは小さく右下へ */
  .hi-illust { min-height: 430px; overflow: hidden; }
  .hi-main-img { width: 480px; right: -58px; bottom: -46px; clip-path: inset(4% 0 10% 8%); }
  .hi-name-tag { top: 12px; left: 4px; bottom: auto; padding: 4px 10px 5px; transform: rotate(-6deg); }
  .hi-name-tag .mono { font-size: 0.5rem; }
  .hi-name-tag .nm { font-size: 0.78rem; }
  .hi-spin { width: 54px; height: 54px; left: auto; right: 8px; bottom: 8px; }
  .hi-list-sec, .hi-steps, .hi-read { padding: 48px 0; }
}

/* ============================================================
   コラム一覧ページ（column.html）2026-07-07
   ============================================================ */
.column-hero { text-align: center; padding: 40px 24px 8px; max-width: 760px; margin: 0 auto; }
.column-hero h1 { font-weight: 900; font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: 0.02em; }
.column-hero p { margin-top: 12px; font-size: 0.95rem; opacity: 0.85; }
.column-hero strong { color: var(--coral); }

/* カテゴリフィルタ（ピル） */
.category-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 960px; margin: 20px auto 8px; padding: 0 24px; }
.category-filter-btn {
  font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; font-size: 0.8rem;
  border: 2px solid var(--ink); border-radius: 999px; background: var(--paper); color: var(--ink);
  padding: 6px 14px; cursor: pointer; transition: transform .1s, box-shadow .1s;
}
.category-filter-btn:hover { transform: translateY(-1px); }
.category-filter-btn.active { background: var(--ink); color: var(--paper); box-shadow: 2px 2px 0 rgba(35,45,83,0.3); }

/* カードグリッド */
.column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 24px auto 0; padding: 0 24px; }
.column-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 2px solid var(--ink); border-radius: 16px; overflow: hidden;
  box-shadow: 4px 4px 0 rgba(35,45,83,0.14); transition: transform .12s, box-shadow .12s;
}
.column-card:hover { transform: translateY(-3px); box-shadow: 6px 6px 0 rgba(35,45,83,0.18); }
.column-card-header { position: relative; border-bottom: 2px solid var(--ink); }
.column-card-img { width: 100%; height: auto; display: block; }
.column-card-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.06em;
  background: var(--ink); color: var(--paper); border-radius: 5px; padding: 3px 9px;
}
.column-card-body { padding: 15px 17px 16px; display: flex; flex-direction: column; flex: 1; }
.column-card-body h3 { font-weight: 900; font-size: 0.98rem; line-height: 1.5; }
.column-card-body p { font-size: 0.82rem; opacity: 0.78; line-height: 1.7; margin-top: 8px; flex: 1; }
.column-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1.5px dashed var(--sand); }
.column-card-readtime { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; opacity: 0.6; }
.column-card-cta { font-weight: 900; font-size: 0.82rem; color: var(--coral); }

/* ページネーション */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; margin: 40px auto; padding: 0 24px; }
.pagination a, .pagination button, .pagination .page-btn {
  font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 0.85rem;
  border: 2px solid var(--ink); border-radius: 8px; background: var(--paper); color: var(--ink);
  min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 10px; cursor: pointer;
}
.pagination .active, .pagination a.active, .pagination .page-btn.active { background: var(--ink); color: var(--paper); }
.pagination-info { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; opacity: 0.6; }
.pagination-ellipsis { opacity: 0.5; }

/* 検索なし状態 */
.no-results { text-align: center; padding: 60px 24px; font-weight: 700; opacity: 0.6; }
.no-results-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }

@media (max-width: 900px) { .column-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .column-grid { grid-template-columns: 1fr; } }

/* ============================================================
   産後リスト（postbirth.html）2026-07-07 デザインフィックス適用
   ============================================================ */
.rd-pb-hero { background: var(--buttermilk); border-bottom: 2px solid var(--ink); padding: 56px 0 48px; text-align: center; }
.rd-pb-hero .wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.rd-pb-hero .mono { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.16em; display: inline-block; border: 1.5px solid var(--ink); border-radius: 999px; padding: 4px 14px; background: var(--paper); margin-bottom: 18px; }
.rd-pb-hero h1 { font-weight: 900; font-size: clamp(1.6rem, 3.6vw, 2.4rem); line-height: 1.5; }
.rd-pb-hero h1 .serif-i { font-family: "Shippori Mincho B1", serif; font-weight: 800; color: var(--leaf); }
.rd-pb-hero .lead { margin: 16px auto 0; max-width: 40em; font-size: 0.95rem; line-height: 1.9; }
.rd-pb-main { max-width: 860px; margin: 0 auto; padding: 44px 24px 56px; }
.rd-pb-stage { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; box-shadow: 5px 5px 0 var(--ink); padding: 26px 28px 20px; margin: 0 0 30px; position: relative; }
.rd-pb-stage .num { position: absolute; top: -13px; right: 20px; font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.12em; background: var(--ink); color: var(--paper); border-radius: 6px; padding: 3px 10px; }
.rd-pb-badge { display: inline-block; background: var(--sc, var(--coral)); color: var(--ink); border: 2px solid var(--ink); border-radius: 999px; font-size: 0.8rem; font-weight: 900; padding: 4px 16px; box-shadow: 2px 2px 0 var(--ink); margin-bottom: 14px; }
.rd-pb-stage h2 { font-weight: 900; font-size: 1.25rem; margin: 0 0 6px; }
.rd-pb-stage .stage-lead { font-size: 0.9rem; line-height: 1.8; opacity: 0.85; margin-bottom: 12px; }
.rd-pb-items { list-style: none; padding: 0; margin: 0; }
.rd-pb-items li { padding: 14px 0; border-bottom: 1.5px dashed var(--sand); line-height: 1.7; }
.rd-pb-items li:last-child { border-bottom: none; }
.rd-pb-items .nm { font-weight: 700; }
.rd-pb-items .why { font-size: 0.85rem; opacity: 0.75; margin-top: 2px; }
.rd-pb-items .why.lang-ja { display: block; }
html[lang="en"] .rd-pb-items .why.lang-ja { display: none; }
html[lang="en"] .rd-pb-items .why.lang-en { display: block; }
.rd-pb-tip { background: var(--buttermilk); border: 2px solid var(--ink); border-radius: 16px; box-shadow: 4px 4px 0 var(--ink); padding: 22px 26px 18px; margin: 38px 0 0; position: relative; }
.rd-pb-tip .tip-label { position: absolute; top: -12px; left: 16px; background: var(--mustard); color: var(--ink); border: 1.5px solid var(--ink); border-radius: 6px; font-size: 0.68rem; font-weight: 900; padding: 1px 10px; box-shadow: 2px 2px 0 var(--ink); }
.rd-pb-tip p { font-size: 0.92rem; line-height: 1.9; }
.rd-pb-tip a { color: var(--ink); font-weight: 900; border-bottom: 2px solid var(--coral); text-decoration: none; }
.rd-pb-cta { text-align: center; margin: 40px 0 0; }

/* ============================================================
   アクセシビリティ（2026-07-07 UIUXレビュー反映）
   ============================================================ */
/* OSの「視差効果を減らす」設定に追従：動きの演出を停止（WCAG 2.2.2 / 2.3.3） */
@media (prefers-reduced-motion: reduce) {
  .hi-marquee-track { animation: none; transform: none; }
  .hi-tw.blink { animation: none; }
  .rd-btn, .hi-col-card, .checklist-item, .rd-mobile-toggle span, .rd-mobile-panel { transition: none; }
  html { scroll-behavior: auto; }
}

/* ナビ現在地（rd-nav.js が aria-current を自動付与） */
.rd-nav a[aria-current="page"] { border-bottom: 3px solid var(--mustard); padding-bottom: 2px; }
.rd-mobile-menu a[aria-current="page"] .t { border-bottom: 3px solid var(--mustard); }

/* ---- LINE保存導線（診断結果の直上・2026-07-07 UIUXレビュー反映） ---- */
.rd-line-save { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: var(--buttermilk); border: 2px solid var(--ink); border-radius: 16px; box-shadow: 4px 4px 0 var(--ink); padding: 18px 22px; margin-bottom: 22px; }
.rd-line-save .t { font-weight: 900; font-size: 0.98rem; }
.rd-line-save .s { font-size: 0.82rem; opacity: 0.8; margin-top: 2px; line-height: 1.7; }
.rd-line-save .rd-btn.line { flex: none; background: #06C755; }

/* ---- SP粘着CTAバー（記事→診断ブリッジ。js/rd-nav.js が生成・900px以下のみ） ---- */
.rd-sticky-cta { display: none; }
@media (max-width: 900px) {
  .rd-sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 48;
    display: flex; align-items: center; gap: 10px;
    background: var(--paper); border-top: 2px solid var(--ink);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }
  .rd-sticky-cta .rd-btn { flex: 1; font-size: 0.88rem; padding: 11px 10px; }
  .rd-sticky-close { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--ink); background: var(--paper); color: var(--ink); font-size: 1.1rem; font-weight: 900; cursor: pointer; line-height: 1; }
  html.rd-has-sticky body { padding-bottom: 70px; }
}

/* ---- 運営者コーナーのフィーチャー帯（準備タイプ帯と同格・2026-07-07） ---- */
.hi-founders { background: var(--buttermilk); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 52px 0; }
.hi-fd-in { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 44px; }
.hi-fd-visual { flex: none; width: 190px; height: 190px; filter: drop-shadow(4px 4px 0 var(--ink)); }
.hi-fd-visual .shape { width: 100%; height: 100%; background: var(--buttermilk); border: 2px solid var(--ink); border-radius: 22px; overflow: hidden; position: relative; }
.hi-fd-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hi-fd-copy .mono { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.16em; display: inline-block; border: 1.5px solid var(--ink); border-radius: 999px; padding: 3px 12px; background: var(--paper); }
.hi-fd-copy h3 { font-weight: 900; font-size: clamp(1.35rem, 2.6vw, 1.8rem); line-height: 1.55; margin: 12px 0 10px; }
.hi-fd-copy h3 .serif-i { font-family: "Shippori Mincho B1", serif; font-weight: 800; color: var(--lav); }
.hi-fd-copy p { font-size: 0.92rem; line-height: 1.9; max-width: 36em; }
.hi-fd-copy .sub { font-size: 0.82rem; opacity: 0.75; margin: 4px 0 16px; }
@media (max-width: 760px) {
  .hi-founders { padding: 44px 0; }
  .hi-fd-in { flex-direction: column; text-align: center; gap: 24px; }
  .hi-fd-visual { width: 150px; height: 150px; }
  .hi-fd-copy p { max-width: none; }
}
