/* =========================================================
   Smart Select — Design System
   仕事の質は、道具で変わる。
   設計思想: 足すのではなく、削る。
   モバイルファースト（基準）→ PCへ自然拡張
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color — 背景は白、文字は黒とダークグレー、アクセントは最小限 */
  --ink: #1a1a1a;          /* 主要テキスト（墨黒） */
  --ink-soft: #555555;     /* 副次テキスト（ダークグレー） */
  --ink-faint: #8a8a8a;    /* 補助・メタ情報 */
  --line: #ececec;         /* 罫線 */
  --line-strong: #dcdcdc;
  --paper: #ffffff;        /* 背景 */
  --paper-warm: #faf9f7;   /* わずかに温かい白（セクション切替） */
  --accent: #9a5b34;       /* クレイ — アクセントは1色のみ、ごく控えめに */

  /* Typography */
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
          "Yu Gothic", sans-serif;

  /* Spacing scale — 余白を主役に */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4.5rem;
  --s7: 7rem;

  /* Layout */
  --gutter: 1.5rem;        /* スマホ左右余白 */
  --maxw: 1180px;
  --read: 680px;           /* 本文の読みやすい行長 */

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Elevation — 影は控えめ */
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);

  /* Radius — 角丸は控えめ */
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--accent); color: #fff; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--s6) var(--s2); }
.section--warm { background: var(--paper-warm); }

/* スクリーンリーダー専用 */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 0.6rem 1.2rem;
  border-radius: var(--radius); z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.serif { font-family: var(--serif); }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.4; letter-spacing: 0.01em; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.section-head .link-more {
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: nowrap;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.section-head .link-more:hover { color: var(--accent); border-color: var(--accent); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.brand__mark {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-family: var(--sans);
}
/* 片手操作 — メニューは親指の届く挙動。ヘッダーはシンプルに */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  margin-right: -10px;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 22px;
  background: var(--ink); margin-left: auto;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), width 0.3s var(--ease);
}
.nav-toggle span:nth-child(2) { width: 16px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* ヘッダーナビ — モバイルでも表示（ハンバーガー廃止） */
.desktop-nav { display: flex; align-items: center; gap: var(--s3); }
.desktop-nav a { font-size: 0.85rem; letter-spacing: 0.08em; color: var(--ink-soft); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 58px 0 0 0;
  background: var(--paper);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 99;
  overflow-y: auto;
  padding: var(--s4) var(--gutter) var(--s6);
}
body.nav-open .mobile-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
body.nav-open { overflow: hidden; }
.mobile-nav .eyebrow { margin-bottom: var(--s3); }
.mobile-nav ul { display: grid; gap: 2px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a .cat-en {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.mobile-nav__foot { margin-top: var(--s5); display: grid; gap: var(--s2); }
.mobile-nav__foot a { font-family: var(--sans); font-size: 0.95rem; color: var(--ink-soft); border: none; padding: 0; }

/* =========================================================
   Hero — 1画面1メッセージ・写真は画面いっぱい
   ========================================================= */
.hero {
  position: relative;
  min-height: 44svh;
  max-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.1) 100%);
}
.hero__inner { padding-block: var(--s6) var(--s5); }
.hero .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: var(--s3); }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 9vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: var(--s3);
  text-shadow: 0 1px 30px rgba(0,0,0,0.25);
}
.hero__lead {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 30ch;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s4);
}
.hero__scroll {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero__scroll .bar {
  display: block; width: 1px; height: 28px;
  background: rgba(255,255,255,0.6); position: relative; overflow: hidden;
}
.hero__scroll .bar::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  animation: scrollbar 2.2s var(--ease) infinite;
}
@keyframes scrollbar {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.06em;
  border-radius: var(--radius);
  min-height: 48px;            /* 押しやすいサイズ */
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { border: 1px solid currentColor; }
.btn--block { width: 100%; justify-content: center; }
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* =========================================================
   Feature (おすすめ) — 大きな写真主役
   ========================================================= */
.feature { display: grid; gap: var(--s4); }
.feature__card {
  display: grid;
  gap: var(--s3);
}
.feature__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-warm);
}
.feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.feature__card:hover .feature__media img { transform: scale(1.04); }
.feature__cat {
  position: absolute; top: var(--s2); left: var(--s2);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.68rem; letter-spacing: 0.16em;
  padding: 0.35rem 0.8rem; border-radius: 100px;
  font-weight: 500;
}
.feature__body { padding-inline: 2px; }
.feature__title {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600; line-height: 1.55;
  margin-bottom: var(--s1);
}
.feature__excerpt { color: var(--ink-soft); font-size: 0.92rem; }
.feature__meta {
  margin-top: var(--s2);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.08em;
}
.feature__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }

/* =========================================================
   Category grid
   ========================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.cat-tile {
  position: relative;
  background: var(--paper);
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s3);
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.cat-tile__img { position: absolute; inset: 0; z-index: 0; }
.cat-tile__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.0; transition: opacity 0.5s var(--ease), transform 1s var(--ease); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0)); opacity: 0; transition: opacity 0.4s var(--ease); z-index: 1; }
.cat-tile:hover .cat-tile__img img { opacity: 1; transform: scale(1.05); }
.cat-tile:hover::after { opacity: 1; }
.cat-tile:hover .cat-tile__ja, .cat-tile:hover .cat-tile__en { color: #fff; }
.cat-tile__content { position: relative; z-index: 2; transition: color 0.3s var(--ease); }
.cat-tile__en { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); transition: color 0.3s var(--ease); }
.cat-tile__ja { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-top: 0.3rem; transition: color 0.3s var(--ease); }

/* 目的から選ぶ — 写真・アニメーションなしのプレーン版 */
/* モバイル: 縦1列・コンパクト・英字とのゆとり */
.cat-grid--plain {
  grid-template-columns: 1fr;
}
.cat-grid--plain .cat-tile {
  aspect-ratio: auto;
  min-height: auto;
  padding: 1rem 1.4rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: none;
}
.cat-grid--plain .cat-tile::after { content: none; }
.cat-grid--plain .cat-tile__en { display: none; }
.cat-grid--plain .cat-tile__ja { font-size: 1rem; margin-top: 0; }
.cat-grid--plain .cat-tile__arrow {
  position: relative; z-index: 2;
  color: var(--line-strong);
  font-size: 0.95rem;
  flex: none;
}
.cat-grid--plain .cat-tile:hover .cat-tile__arrow { color: var(--accent); }
.cat-grid--plain .cat-tile:hover .cat-tile__ja { color: var(--accent); }

/* 最新の記事と同じ配色: ウォームのインセットパネル + 線の区切り */
.cat-grid--panel {
  background: var(--paper-warm);
  border-radius: var(--radius);
  border-block: none;
  padding: 0 var(--s3);
  gap: 0;
}
.cat-grid--panel .cat-tile { background: transparent; border-bottom: 1px solid var(--line); }

/* =========================================================
   List rows (人気/最新)
   ========================================================= */
.post-list { display: grid; gap: 2px; }
.post-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s3);
  align-items: center;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
}
.post-row__media { aspect-ratio: 3/2; overflow: hidden; border-radius: var(--radius); background: var(--paper-warm); }
.post-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-row:hover .post-row__media img { transform: scale(1.05); }

/* ページ送り */
.pager { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: var(--s4); }
.pager__num, .pager__next {
  min-width: 42px; min-height: 42px; padding: 0 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); background: var(--paper);
  border-radius: var(--radius); font-size: 0.88rem; color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pager__num.is-active { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 500; }
.pager__num:hover:not(.is-active), .pager__next:hover:not(:disabled) { border-color: var(--ink); color: var(--ink); }
.pager__next { letter-spacing: 0.04em; }
.pager__next:disabled { opacity: 0.35; cursor: default; }
.post-row__cat { display: block; font-size: 0.68rem; letter-spacing: 0.14em; color: var(--accent); font-weight: 500; }
.post-row__title { display: block; font-family: var(--serif); font-size: 1.02rem; font-weight: 600; line-height: 1.55; margin-top: 0.25rem; }
.post-row__meta { display: block; font-size: 0.72rem; color: var(--ink-faint); margin-top: 0.4rem; letter-spacing: 0.06em; }
.post-row__rank {
  font-family: var(--serif); font-size: 1.5rem; color: var(--line-strong); font-weight: 600;
  width: 1.4em; text-align: center;
}
.post-row--ranked { grid-template-columns: auto 72px 1fr; }

/* =========================================================
   Brand block (ブランドについて)
   ========================================================= */
.brand-block { text-align: center; }
.brand-block .eyebrow { margin-bottom: var(--s3); }
.brand-block__statement {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 6.5vw, 2rem);
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin-bottom: var(--s4);
}
.brand-block__statement em { font-style: normal; color: var(--accent); }
.brand-block__text { color: var(--ink-soft); max-width: var(--read); margin-inline: auto; margin-bottom: var(--s4); font-size: 0.96rem; }

/* お問い合わせフォーム（独自デザイン） */
.ss-form { margin-top: var(--s4); }
.ss-form .field { margin-bottom: var(--s4); }
.ss-form label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 0.55rem; letter-spacing: 0.02em; }
.ss-form .req { color: var(--accent); margin-left: 0.15em; }
.ss-form input,
.ss-form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; line-height: 1.7;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.85rem 0.95rem; transition: border-color 0.2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.ss-form textarea { min-height: 168px; resize: vertical; }
.ss-form input::placeholder,
.ss-form textarea::placeholder { color: var(--ink-faint); }
.ss-form input:focus,
.ss-form textarea:focus { outline: none; border-color: var(--accent); }
.ss-form .actions { margin-top: var(--s4); }
.ss-form button.btn { border: 0; cursor: pointer; font: inherit; }
.form-note { color: var(--ink-soft); font-size: 0.86rem; }
.form-success { border: 1px solid var(--line-strong); border-radius: var(--radius); padding: var(--s4); background: var(--paper-warm); }
.form-success .serif { margin-bottom: var(--s2); }

/* お問い合わせページを中央寄せに */
.contact-body { max-width: 600px; margin-inline: auto; text-align: center; }
.contact-body .ss-form { text-align: left; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { border-top: 1px solid var(--line); padding-block: var(--s6) var(--s4); }
.footer-grid { display: grid; gap: var(--s5); }
.footer-brand .brand { font-size: 1.3rem; margin-bottom: var(--s2); }
.footer-brand p { color: var(--ink-soft); font-size: 0.88rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: var(--s2); font-weight: 500; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--s2);
  font-size: 0.76rem; color: var(--ink-faint);
}

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb { padding-block: var(--s3) 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.74rem; color: var(--ink-faint); }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line-strong); }
.breadcrumb a { transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current] { color: var(--ink-soft); }

/* =========================================================
   Article
   ========================================================= */
.article-hero { }
.article-hero__media { aspect-ratio: 3/2; overflow: hidden; background: var(--paper-warm); border-radius: var(--radius); }
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.article-header { max-width: var(--read); margin-inline: auto; padding-block: var(--s5) var(--s4); }
.article-cat { display: inline-block; font-size: 0.72rem; letter-spacing: 0.16em; color: var(--accent); font-weight: 500; margin-bottom: var(--s2); }
.article-title { font-family: var(--serif); font-size: clamp(1.7rem, 7vw, 2.3rem); font-weight: 600; line-height: 1.6; letter-spacing: 0.02em; }
.article-sub { color: var(--ink-soft); margin-top: var(--s3); font-size: 1rem; }
.article-meta { display: flex; align-items: center; gap: 0.8rem; margin-top: var(--s3); font-size: 0.76rem; color: var(--ink-faint); letter-spacing: 0.06em; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }

.article-body { max-width: var(--read); margin-inline: auto; }
.article-body > * + * { margin-top: var(--s3); }
.article-body p { color: var(--ink); font-size: 1.05rem; line-height: 1.9; letter-spacing: 0.01em; }

/* 5部構成のセクション — ヘアラインで章を区切り、見出しだけで内容が分かる */
.a-section { margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line); }
.a-section:first-child { margin-top: var(--s4); padding-top: 0; border-top: none; }
.a-section__num {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--serif); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.14em;
}
.a-section__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 6vw, 1.6rem);
  font-weight: 600; line-height: 1.5; letter-spacing: 0.02em;
  margin-top: 0.5rem; margin-bottom: var(--s3);
}

/* おすすめ対象リスト */
.fit-list { display: grid; gap: var(--s1); }
.fit-list li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: var(--s2) 0; border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.fit-list li::before {
  content: ""; flex: none; width: 7px; height: 7px; margin-top: 0.65em;
  border-radius: 50%; border: 1.5px solid var(--accent);
}

/* 結論ボックス */
.verdict {
  background: var(--paper-warm);
  border-radius: var(--radius);
  padding: var(--s4);
  border-left: 2px solid var(--accent);
}
.verdict p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.95; font-weight: 500; }

/* 特徴カード */
.merits { display: grid; gap: var(--s4); margin-top: var(--s2); }
.merit { }
.merit__label { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; display: flex; align-items: baseline; gap: 0.7rem; }
.merit__label .i { font-size: 0.78rem; color: var(--ink-faint); font-family: var(--sans); letter-spacing: 0.1em; }
.merit p { color: var(--ink-soft); font-size: 0.96rem; }

/* ブランド比較 */
.compare { margin-top: var(--s2); border-top: 1px solid var(--line); }
.compare__row {
  display: grid; grid-template-columns: 6.5em 1fr; gap: var(--s2);
  padding: var(--s2) 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.compare__name { font-family: var(--serif); font-weight: 600; font-size: 0.98rem; }
.compare__desc { color: var(--ink-soft); font-size: 0.92rem; }
.compare__row--this { background: var(--paper-warm); border-radius: var(--radius); padding-inline: var(--s2); border-bottom: none; }
.compare__row--this .compare__name { color: var(--accent); }

/* メリット / デメリット */
.pros-cons { display: grid; gap: var(--s4); margin-top: var(--s5); }
.pros-cons__head {
  font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  padding-bottom: var(--s1); margin-bottom: var(--s1);
  border-bottom: 2px solid var(--accent); display: inline-block;
}
.pros-cons__head--con { border-bottom-color: var(--line-strong); color: var(--ink-soft); }
.fit-list--con li::before { border-color: var(--line-strong); }
@media (min-width: 700px) {
  .pros-cons { grid-template-columns: 1fr 1fr; gap: var(--s5); }
}

/* スコア */
.score-grid { display: grid; gap: var(--s3); }
.score { display: grid; gap: 0.5rem; }
.score__head { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; }
.score__head b { font-family: var(--serif); font-size: 1.05rem; }
.score__bar { height: 4px; background: var(--line); border-radius: 100px; overflow: hidden; }
.score__bar i { display: block; height: 100%; background: var(--ink); border-radius: 100px; transform-origin: left; }
.score-total { text-align: center; padding: var(--s4) 0; }
.score-total__num { font-family: var(--serif); font-size: 3rem; font-weight: 600; line-height: 1; }
.score-total__num span { font-size: 1.2rem; color: var(--ink-faint); }
.score-total__label { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-top: var(--s2); }

/* 引用 */
.pull-quote {
  font-family: var(--serif); font-size: clamp(1.15rem, 5vw, 1.4rem); line-height: 1.85; font-weight: 500;
  text-align: center; padding: var(--s4) 0; color: var(--ink);
}

/* CTA */
.article-cta { max-width: var(--read); margin: var(--s6) auto 0; text-align: center; padding: var(--s5) var(--gutter); background: var(--paper-warm); border-radius: var(--radius); }
.article-cta p { color: var(--ink-soft); margin-bottom: var(--s3); font-size: 0.92rem; }

/* 商品情報カード（公式リンク／画像なしでも成立） */
.product-card {
  margin-top: var(--s6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s4);
  background: var(--paper);
}
.product-card__name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; line-height: 1.5; }
.product-card__price { font-family: var(--serif); font-size: 1.05rem; margin-top: 0.4rem; color: var(--ink); }
.product-card__desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: var(--s2); line-height: 1.8; }
.product-card__btn { margin-top: var(--s3); }
.product-card__note { font-size: 0.72rem; color: var(--ink-faint); margin-top: var(--s2); line-height: 1.6; }

/* 関連記事 */
.related { border-top: 1px solid var(--line); margin-top: var(--s6); }

/* =========================================================
   Page intro (category / about)
   ========================================================= */
.page-intro { padding-block: var(--s5) var(--s4); }
.page-intro .eyebrow { margin-bottom: var(--s2); }
.page-intro h1 { font-family: var(--serif); font-size: clamp(2rem, 9vw, 2.8rem); font-weight: 600; letter-spacing: 0.04em; line-height: 1.4; }
.page-intro p { color: var(--ink-soft); max-width: var(--read); margin-top: var(--s3); }

/* About イントロ — モバイルは折り返し、PCは1行 */
.page-intro .intro-center { max-width: var(--read); margin-inline: auto; text-align: center; }
.page-intro .intro-lead { max-width: none; color: var(--ink-soft); margin-top: var(--s4); }
@media (min-width: 960px) {
  .page-intro .intro-center { max-width: 880px; }
  .page-intro .intro-lead { white-space: nowrap; }
}

/* About long-form */
.prose { max-width: var(--read); margin-inline: auto; }
.prose > * + * { margin-top: var(--s3); }
/* モバイル基準: 詰まりすぎず、間延びしすぎない読みやすさ */
.prose p { font-size: 1.05rem; line-height: 1.95; color: var(--ink); letter-spacing: 0.01em; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.45rem, 6vw, 1.8rem); font-weight: 600; margin-top: var(--s5); line-height: 1.55; }
.prose h2 + p { margin-top: var(--s2); }
.criteria { display: grid; gap: var(--s2); margin-top: var(--s3); counter-reset: c; }
.criteria li { display: grid; grid-template-columns: 1.8em 1fr; column-gap: var(--s2); padding: 0.4rem 0 var(--s2); border-bottom: 1px solid var(--line); }
.criteria li::before { counter-increment: c; content: counter(c, decimal-leading-zero); font-family: var(--serif); font-size: 1rem; color: var(--accent); line-height: 1.7; }
.criteria b { font-family: var(--serif); font-size: 1.05rem; display: block; margin-bottom: 0.2rem; line-height: 1.6; }
.criteria span { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.75; }

/* =========================================================
   Reveal animation — スクロールが気持ちいい
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Tablet / Desktop — スマホデザインを自然に拡張
   ========================================================= */
@media (min-width: 700px) {
  :root { --gutter: 2.5rem; }
  .feature { grid-template-columns: repeat(2, 1fr); gap: var(--s5) var(--s4); }
  .feature__card:first-child { grid-column: 1 / -1; grid-template-columns: 1.1fr 1fr; align-items: center; gap: var(--s5); }
  .feature__card:first-child .feature__media { aspect-ratio: 4/3; }
  .feature__card:first-child .feature__title { font-size: 1.7rem; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
  .post-list--two { grid-template-columns: repeat(2, 1fr); display: grid; gap: 0 var(--s5); }
  .merits { grid-template-columns: repeat(2, 1fr); gap: var(--s5) var(--s4); }
  /* 記事: PCでは章間と本文をゆったりと */
  .article-body p { font-size: 1.06rem; line-height: 2; }
  .a-section { margin-top: var(--s6); padding-top: var(--s5); }
  .a-section__title { font-size: 1.7rem; margin-bottom: var(--s4); }
  /* PCでは余白をゆったり戻す */
  .prose p { font-size: 1.06rem; line-height: 2; }
  .prose h2 { margin-top: var(--s6); }
  .prose h2 + p { margin-top: var(--s3); }
  .criteria { gap: var(--s3); margin-top: var(--s4); }
  .criteria li { grid-template-columns: 2em 1fr; column-gap: var(--s3); padding-bottom: var(--s3); }
}

@media (min-width: 960px) {
  :root { --gutter: 3rem; }
  .nav-toggle { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: var(--s4); }
  .desktop-nav a { font-size: 0.85rem; letter-spacing: 0.08em; color: var(--ink-soft); position: relative; padding: 0.3rem 0; transition: color 0.2s var(--ease); }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--ink); transition: width 0.3s var(--ease); }
  .desktop-nav a:hover { color: var(--ink); }
  .desktop-nav a:hover::after { width: 100%; }
  .site-header__inner { height: 68px; }
  .mobile-nav { inset: 68px 0 0 0; }
  .hero__inner { padding-block: var(--s7); }
  .hero__title { max-width: 16ch; }
  .section-title { font-size: 2.2rem; }
  .feature__card:first-child .feature__title { font-size: 2rem; }
  .brand-block__statement { font-size: 2.3rem; max-width: 22ch; margin-inline: auto; }
  .score-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--s5); }
}

@media (min-width: 1200px) {
  .hero__title { font-size: 3.4rem; }
}
