/* =========================================================================
   article: ゲーミングチェアとオフィスチェア、長時間座る腰にはどっち?
   Additive-only — global style.css の変数・クラスを継承し、記事用の最小差分のみ足す。
   ========================================================================= */

.article-wrap { padding-block: clamp(48px, 8vw, 88px) clamp(64px, 9vw, 108px); }

.article-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-top: -10px;
  margin-bottom: 34px;
}

.article-hero {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 40px;
}
.article-hero img { width: 100%; height: auto; display: block; }

.article-lead {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  line-height: 1.98;
  letter-spacing: 0.02em;
  max-width: 42em;
  margin-bottom: 44px;
}

.article-body h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 56px;
  margin-bottom: 18px;
}
.article-body h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  font-size: 15.5px;
  letter-spacing: 0.02em;
  margin-top: 30px;
  margin-bottom: 12px;
}
.article-body p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.95;
  margin-bottom: 18px;
  max-width: 44em;
}
.article-body ul {
  margin: 0 0 18px 0;
  padding-left: 1.3em;
  max-width: 44em;
}
.article-body li {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.9;
  margin-bottom: 8px;
}
.article-body strong { color: var(--ink); font-weight: 600; }

/* --- かなめらしい構造の視点（骨盤・仙骨の支え方）を静かに区切るブロック --- */
.article-callout {
  border-left: 2px solid var(--rust);
  background: var(--rust-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(18px, 3vw, 28px) clamp(20px, 3vw, 30px);
  margin: 30px 0 40px;
}
.article-callout p {
  font-family: var(--font-sans);
  color: var(--ink);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.98;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.article-callout p + p { margin-top: 14px; }

/* --- 構造比較表（オフィスチェア vs ゲーミングチェア） --- */
.compare-table-wrap {
  overflow-x: auto;
  margin: 24px 0 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  background: var(--graphite-2);
}
.compare-table tbody th {
  font-family: var(--font-mono);
  color: var(--rust-bright);
  white-space: nowrap;
  font-weight: 500;
}
.compare-table td { color: var(--ink-dim); line-height: 1.8; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table-note {
  font-size: 11.5px;
  color: var(--ink-faint);
  line-height: 1.8;
  margin-top: -26px;
  margin-bottom: 40px;
}

/* --- 記事内の商品セクション見出し --- */
.article-products-lead {
  font-size: 13.5px;
  color: var(--ink-faint);
  max-width: 44em;
  margin-bottom: 26px;
}

/* --- あわせて読みたい --- */
.reading-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  max-width: 44em;
}
.reading-list li {
  border-top: 1px solid var(--line);
  padding-block: 16px;
}
.reading-list li:last-child { border-bottom: 1px solid var(--line); }
.reading-list a {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.reading-list a:hover { color: var(--ink); }

.ref-note {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.9;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 46em;
}
