/* THE SPOTTING FILES */
:root {
  --paper: #ffffff;
  --wash: #f2f4f6;
  --ink: #14181c;
  --ink-2: #505a64;
  --line: #dde2e7;
  --accent: #0a5aa8;
  --sign: #ffc72c;
  --sign-ink: #14181c;
  --pr-bg: #fff8e1;
  --pr-line: #e3bd4f;
  --note-bg: #edf4fc;
  --note-line: #7fa9d6;
  --point-bg: #edf7f1;
  --point-line: #6db38c;
  --warn-bg: #fdf1ec;
  --warn-line: #de8a64;
  --btn: #14181c;
  --btn-ink: #ffffff;
  --shadow: 0 1px 2px rgba(20, 24, 28, .06), 0 6px 20px rgba(20, 24, 28, .06);
  --font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, system-ui, sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0f1215; --wash: #171b20; --ink: #e7eaed; --ink-2: #9aa3ad; --line: #2a3139;
    --accent: #7db3ff; --pr-bg: #2a2412; --pr-line: #8a7230;
    --note-bg: #152232; --note-line: #3d6590; --point-bg: #13261c; --point-line: #3f7a58;
    --warn-bg: #2b1a13; --warn-line: #8d5236; --btn: #e7eaed; --btn-ink: #0f1215;
    --shadow: none;
    color-scheme: dark;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.8; letter-spacing: .02em;
  font-feature-settings: "palt" 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 8px; background: var(--paper); padding: 6px 10px; z-index: 10; }

.wrap { max-width: 1100px; margin-inline: auto; padding-inline: 20px; }
.narrow { max-width: 760px; }
@media (max-width: 520px) { .wrap { padding-inline: 16px; } }

/* ── header ── */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); }
.header-inner { display: flex; align-items: center; gap: 12px 28px; flex-wrap: wrap; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 4px;
  background: var(--sign-ink); color: var(--sign); font-family: var(--font-label); font-weight: 700; font-size: 17px; letter-spacing: .02em;
}
@media (prefers-color-scheme: dark) { .brand-mark { outline: 1px solid var(--sign); } }
.brand-name { font-family: var(--font-label); font-weight: 700; font-size: 22px; letter-spacing: .06em; line-height: 1; }
.site-nav { flex: 1 1 auto; min-width: 0; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px 18px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; }
.site-nav a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .header-inner { padding-block: 10px 0; }
  .site-nav { flex-basis: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav ul { flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 10px; }
}

/* ── labels ── */
.file-no {
  display: inline-block; font-family: var(--font-label); font-weight: 700; font-size: 13px; letter-spacing: .12em;
  background: var(--sign-ink); color: var(--sign); padding: 1px 8px 0; border-radius: 3px; line-height: 1.6;
}
@media (prefers-color-scheme: dark) { .file-no { outline: 1px solid var(--sign); } }

/* ── breadcrumbs ── */
.crumbs ol { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 2px 0; font-size: 12.5px; color: var(--ink-2); }
.crumbs li { overflow-wrap: anywhere; }
.crumbs li + li::before { content: "›"; margin: 0 .5em; color: var(--ink-2); }
.crumbs a { color: var(--ink-2); }

/* ── article ── */
.post-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 20px 0 8px; font-size: 14px; font-weight: 700; }
.post-kicker a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--sign); }
.post-title { font-size: clamp(25px, 4.2vw, 36px); line-height: 1.45; margin: 0 0 12px; letter-spacing: .01em; text-wrap: balance; word-break: auto-phrase; }
.post-meta { display: flex; flex-wrap: wrap; gap: 4px 18px; margin: 0 0 14px; font-size: 13px; color: var(--ink-2); }
.post-meta a { color: var(--ink-2); }
.pr {
  margin: 0 0 22px; padding: 8px 12px; font-size: 13px; line-height: 1.6;
  background: var(--pr-bg); border-left: 4px solid var(--pr-line); border-radius: 2px;
}
.lede { font-size: 16px; color: var(--ink-2); max-width: 46em; margin: 0 0 24px; }

.post-body { font-size: 17px; line-height: 1.95; padding-bottom: 40px; }
.post-body > p, .post-body li { overflow-wrap: anywhere; }
.post-body p { margin: 0 0 1.3em; }
.post-body h2 {
  font-size: 23px; line-height: 1.5; margin: 2.4em 0 .9em; padding-top: .7em;
  border-top: 2px solid var(--ink); text-wrap: balance; word-break: auto-phrase;
}
.post-body h3 { font-size: 19px; line-height: 1.55; margin: 1.9em 0 .6em; }
.post-body h2 + h3 { margin-top: 1em; }
.post-body ul, .post-body ol { padding-left: 1.4em; margin: 0 0 1.3em; }
.post-body li { margin: .25em 0; }
.post-body strong { background: linear-gradient(transparent 62%, color-mix(in srgb, var(--sign) 55%, transparent) 62%); }
.post-body hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }

/* ── photos ── */
.photo { margin: 1.8em 0; }
.photo.wide { max-width: 1100px; margin: 8px auto 28px; padding-inline: 20px; }
@media (max-width: 520px) { .photo.wide { padding-inline: 0; } }
.photo picture img { width: 100%; border-radius: 2px; background: var(--wash); }
.photo figcaption { margin-top: 8px; display: grid; gap: 2px; font-size: 13px; line-height: 1.6; color: var(--ink-2); }
.photo.wide figcaption { max-width: 760px; margin-inline: auto; padding-inline: 20px; }
@media (max-width: 520px) { .photo.wide figcaption { padding-inline: 16px; } }
.photo .cap { color: var(--ink); }
.photo .exif { font-size: 12px; letter-spacing: 0; }
.photo.pair .pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo.pair .pair-grid .exif { display: block; margin-top: 4px; font-size: 11.5px; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 520px) { .photo.pair .pair-grid { grid-template-columns: 1fr; } }

/* ── toc ── */
.toc { margin: 1.6em 0 2em; padding: 16px 20px; background: var(--wash); border-radius: 6px; font-size: 15px; line-height: 1.7; }
.toc-title { margin: 0 0 6px; font-family: var(--font-label); font-weight: 700; letter-spacing: .14em; font-size: 14px; }
.toc ol { margin: 0; padding-left: 1.5em; }
.toc li { margin: .2em 0; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

/* ── callouts ── */
.callout { margin: 1.6em 0; padding: 12px 16px; border-left: 4px solid var(--c-line); background: var(--c-bg); border-radius: 2px; font-size: 15.5px; line-height: 1.85; }
.callout.note { --c-bg: var(--note-bg); --c-line: var(--note-line); }
.callout.point { --c-bg: var(--point-bg); --c-line: var(--point-line); }
.callout.warn { --c-bg: var(--warn-bg); --c-line: var(--warn-line); }
.callout-label { margin: 0 0 2px; font-size: 13px; font-weight: 700; }
.callout div > *:last-child { margin-bottom: 0; }

/* ── boxes (product / hotel / rental) ── */
.box {
  display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; align-items: start;
  margin: 1.8em 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: var(--shadow);
}
.box:not(:has(.box-img)) { grid-template-columns: minmax(0, 1fr); }
.box-img img { border-radius: 4px; aspect-ratio: 3 / 2; object-fit: cover; }
@media (max-width: 520px) { .box { grid-template-columns: minmax(0, 1fr); } .box-img { max-width: 220px; } }
.box-kicker { margin: 0; font-size: 12px; font-weight: 700; color: var(--ink-2); }
.box-name { margin: 2px 0 6px; font-size: 17px; font-weight: 700; line-height: 1.5; }
.box-note { margin: 0 0 10px; font-size: 14.5px; line-height: 1.75; color: var(--ink-2); }
.box-sub { margin: 12px 0 6px; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.facts { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 2px 14px; margin: 4px 0 10px; font-size: 14px; }
.facts div { display: contents; }
.facts dt { color: var(--ink-2); }
.facts dd { margin: 0; }
.btns { display: flex; flex-wrap: wrap; gap: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 6px 16px;
  border: 1.5px solid var(--btn); border-radius: 6px; color: var(--btn); background: transparent;
  font-size: 14px; font-weight: 700; text-decoration: none; line-height: 1.3;
}
.btn.primary { background: var(--btn); color: var(--btn-ink); }
.btn:hover { text-decoration: none; filter: brightness(1.12); }

/* ── tables ── */
.table-wrap { overflow-x: auto; margin: 1.6em 0; -webkit-overflow-scrolling: touch; }
.post-body table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.65; min-width: 520px; }
.post-body th, .post-body td { padding: 9px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.post-body thead th { background: var(--wash); font-size: 13.5px; }
.post-body tbody th { white-space: nowrap; font-weight: 700; }
.post-body td.num, .post-body th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── author ── */
.author { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 16px; margin: 3em 0 0; padding: 20px; background: var(--wash); border-radius: 8px; }
.author-mark {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sign-ink); color: var(--sign); font-family: var(--font-label); font-weight: 700; font-size: 20px;
}
.author-name { margin: 0; font-weight: 700; font-size: 16px; }
.author-name span { margin-left: .8em; font-family: var(--font-label); font-weight: 600; letter-spacing: .08em; color: var(--ink-2); font-size: 14px; }
.author-bio { margin: 6px 0; font-size: 14px; line-height: 1.8; color: var(--ink-2); }
.author-more { margin: 0; font-size: 14px; }

/* ── cards ── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px 20px; }
.card a { display: block; color: var(--ink); text-decoration: none; }
.card-img { aspect-ratio: 3 / 2; overflow: hidden; border-radius: 4px; background: var(--wash); }
.card-img picture, .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-type { width: 100%; height: 100%; display: grid; place-items: center; background: var(--sign-ink); }
.card-type span { font-family: var(--font-label); font-weight: 700; font-size: 26px; letter-spacing: .16em; color: var(--sign); }
.card-body { padding-top: 10px; }
.card-kicker { margin: 0; font-size: 12px; font-weight: 700; color: var(--ink-2); }
.card-title { margin: 2px 0 4px; font-size: 16px; line-height: 1.6; font-weight: 700; word-break: auto-phrase; }
.card a:hover .card-title { color: var(--accent); text-decoration: underline; }
.card-date { margin: 0; font-size: 12px; color: var(--ink-2); }

/* ── listing / home ── */
.listing { padding-bottom: 56px; }
.related { padding-block: 8px 56px; }
.related-title { font-size: 19px; margin: 0 0 16px; padding-top: 18px; border-top: 2px solid var(--ink); }
.empty { color: var(--ink-2); }

.home-hero { position: relative; background: #0d1014; color: #fff; }
.home-hero picture img { width: 100%; height: min(72vh, 620px); object-fit: cover; opacity: .92; }
.home-hero-text {
  position: absolute; left: 0; right: 0; bottom: 0; padding-block: 90px 34px;
  background: linear-gradient(to top, rgba(8, 10, 13, .82), rgba(8, 10, 13, 0));
}
.home-kicker { margin: 0 0 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--sign); }
.home-title { margin: 0 0 10px; font-size: clamp(26px, 4.6vw, 44px); line-height: 1.4; text-shadow: 0 1px 12px rgba(0,0,0,.35); word-break: auto-phrase; }
.home-lede { margin: 0; max-width: 40em; font-size: 15px; color: rgba(255,255,255,.88); }
.home-hero-cap { margin: 0; padding-block: 8px; font-size: 12px; color: rgba(255,255,255,.7); position: absolute; top: 0; right: 0; text-align: right; }
@media (max-width: 640px) {
  .home-hero picture img { height: 56vh; }
  .home-hero-text { position: static; background: #0d1014; padding-block: 20px 26px; }
  .home-hero-cap { position: static; text-align: left; padding-bottom: 14px; background: #0d1014; }
}
.feature { background: var(--wash); padding-block: 36px 40px; margin-bottom: 8px; }
.feature-kicker { margin: 0; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.feature-title { margin: 2px 0 6px; font-size: 24px; }
.feature-desc { margin: 0 0 20px; max-width: 46em; color: var(--ink-2); font-size: 15px; }
.home-block { padding-top: 40px; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 2px solid var(--ink); padding-top: 14px; }
.block-head h2 { margin: 0; font-size: 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.more { font-size: 14px; font-weight: 700; }
.block-desc { margin: 6px 0 18px; color: var(--ink-2); font-size: 14.5px; }
main > .wrap:last-child { padding-bottom: 56px; }

/* ── footer ── */
.site-footer { background: var(--wash); border-top: 1px solid var(--line); padding-block: 32px 28px; font-size: 14px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px 32px; margin-bottom: 18px; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand { margin: 0; font-family: var(--font-label); font-weight: 700; font-size: 20px; letter-spacing: .06em; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer-links a { color: var(--ink); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.fine { margin: 4px 0; font-size: 12.5px; color: var(--ink-2); line-height: 1.7; }

@media (prefers-reduced-motion: no-preference) {
  .card-img img { transition: transform .4s ease; }
  .card a:hover .card-img img { transform: scale(1.03); }
}

/* ── spec database ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.hero-tool { background: var(--wash); border-bottom: 1px solid var(--line); padding-block: 36px 30px; }
.hero-tool .home-kicker { color: var(--ink-2); margin: 0 0 6px; font-size: 13px; font-weight: 700; }
.hero-tool .home-title { margin: 0 0 10px; font-size: clamp(26px, 4.4vw, 40px); line-height: 1.35; text-shadow: none; word-break: auto-phrase; }
.hero-tool .home-lede { color: var(--ink-2); max-width: 44em; margin: 0 0 18px; font-size: 15.5px; }
.hero-search { display: flex; gap: 8px; max-width: 620px; }
.hero-search input { flex: 1 1 auto; min-width: 0; padding: 11px 14px; font-size: 16px; border: 1.5px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); }
.hero-search input:focus-visible { border-color: var(--accent); }
.hero-results { list-style: none; margin: 8px 0 0; padding: 0; max-width: 620px; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; }
.hero-results li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
.hero-results li:last-child { border-bottom: 0; }
.res-add a { font-size: 13px; white-space: nowrap; }
.hero-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 16px 0 0; font-size: 14px; font-weight: 700; }

.p-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.p-card { border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.p-card a { display: block; padding: 12px 14px; color: var(--ink); text-decoration: none; height: 100%; }
.p-card a:hover { border-color: var(--accent); }
.p-brand { margin: 0; font-size: 12px; color: var(--ink-2); }
.p-name { margin: 2px 0 8px; font-size: 16px; line-height: 1.5; }
.p-specs { margin: 0; display: grid; gap: 2px; font-size: 13px; color: var(--ink-2); }
.p-specs div { display: flex; gap: 8px; }
.p-specs dt { min-width: 5.5em; }
.p-specs dd { margin: 0; color: var(--ink); }

.filters { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 18px 0 6px; font-size: 14px; }
.filters label { display: flex; align-items: center; gap: 6px; }
.filters label.grow { flex: 1 1 220px; }
.filters select, .filters input { padding: 7px 10px; font-size: 15px; border: 1.5px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); }
.filters label.grow input { flex: 1 1 auto; min-width: 0; }
.filter-count { margin: 0 0 8px; font-size: 13px; color: var(--ink-2); }
table.db { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 700px; }
table.db th, table.db td { padding: 9px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.db thead th { background: var(--wash); font-size: 13px; position: sticky; top: 0; }
table.db tbody tr:hover { background: var(--wash); }
.pick { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; cursor: pointer; font-size: 13px; }
.compare-bar { position: sticky; bottom: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin: 0; padding: 12px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); font-size: 14px; }

table.spec { width: 100%; border-collapse: collapse; font-size: 15px; }
table.spec th { width: 34%; background: var(--wash); font-weight: 600; }
table.spec th, table.spec td { padding: 8px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.post-body .raw-specs { margin: 1.4em 0; border: 1px solid var(--line); border-radius: 6px; padding: 10px 14px; }
.post-body .raw-specs summary { cursor: pointer; font-size: 14px; font-weight: 700; }
.post-body .raw-specs table.spec { margin-top: 10px; font-size: 14px; }
.compare-cta { margin: 14px 0 0; }
.product .btns { margin-top: 12px; }

/* ── compare tool ── */
.compare-app { margin-top: 18px; display: grid; gap: 18px; }
.slots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 780px) { .slots { grid-template-columns: 1fr; } }
.slot { border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; background: var(--paper); }
.slot.empty-slot { background: var(--wash); }
.slot-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.slot-brand { margin: 0; font-size: 12px; color: var(--ink-2); }
.slot-remove { border: 0; background: none; color: var(--accent); font-size: 13px; cursor: pointer; padding: 0; }
.slot-name { margin: 2px 0 10px; font-size: 17px; font-weight: 700; line-height: 1.4; }
.slot-name a { color: var(--ink); text-decoration: none; }
.slot-name a:hover { color: var(--accent); text-decoration: underline; }
.slot-label { margin: 0 0 8px; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.slot-search { width: 100%; padding: 9px 12px; font-size: 15px; border: 1.5px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); }
.slot-list { list-style: none; margin: 8px 0 0; padding: 0; max-height: 220px; overflow-y: auto; }
.slot-list li { border-bottom: 1px solid var(--line); }
.slot-list li:last-child { border-bottom: 0; }
.slot-list button { width: 100%; text-align: left; padding: 7px 4px; border: 0; background: none; color: var(--ink); font-size: 14px; cursor: pointer; }
.slot-list button:hover { color: var(--accent); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.compare-table th, .compare-table td { padding: 9px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table thead th { background: var(--sign-ink); color: #fff; font-size: 14px; position: sticky; top: 0; }
.compare-table thead th:first-child { background: var(--sign-ink); }
.compare-table tbody th { background: var(--wash); font-weight: 600; width: 30%; }
.compare-table .group-row { background: var(--ink); color: var(--paper); font-size: 13px; letter-spacing: .06em; }
.compare-table td.best { background: color-mix(in srgb, var(--sign) 22%, transparent); font-weight: 700; }
.best-mark { display: inline-block; margin-left: 6px; font-size: 11px; font-weight: 700; color: var(--sign-ink); background: var(--sign); border-radius: 3px; padding: 0 5px; }
@media (prefers-color-scheme: dark) { .best-mark { color: #14181c; } }

/* ── A vs B ── */
.vs-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 1.2em 0; }
@media (max-width: 720px) { .vs-cols { grid-template-columns: 1fr; } }
.vs-col { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; background: var(--paper); }
.vs-col h3 { margin: 0 0 8px; font-size: 16px; }
.vs-col ul { margin: 0 0 12px; padding-left: 1.2em; font-size: 14.5px; }
.vs-col li { margin: 0 0 6px; }
.vs-col .btns { margin: 0; }
.post-body .verdict { font-weight: 700; border-left: 3px solid var(--accent); padding-left: 12px; }
.post-body .note { font-size: 14px; color: var(--ink-2); }
.vs-table td.win { background: color-mix(in srgb, var(--sign) 22%, transparent); font-weight: 700; }
.vs-table th .cond { display: block; font-size: 12px; font-weight: 400; color: var(--ink-2); }
.vs-list { list-style: none; margin: 0 0 1.4em; padding: 0; columns: 2; column-gap: 24px; }
@media (max-width: 720px) { .vs-list { columns: 1; } }
.vs-list li { margin: 0 0 6px; break-inside: avoid; font-size: 15px; }
.vs-index { padding-top: 0; }
.vs-index h2 { font-size: 18px; margin: 1.4em 0 .6em; }
ul.sources { font-size: 14px; color: var(--ink-2); }

.genre-head { font-size: 19px; margin: 1.8em 0 .7em; padding-bottom: 6px; border-bottom: 2px solid var(--line); }
.genre-head:first-of-type { margin-top: 1em; }

.p-brand { display: flex; justify-content: space-between; gap: 8px; }
.p-rel { color: var(--ink-2); font-size: 11px; white-space: nowrap; }
td.nowrap, th.nowrap { white-space: nowrap; }

.vs-table tr.same th, .vs-table tr.same td { color: var(--ink-2); }
.vs-col .pitch, .post-body .pitch { font-size: 14.5px; margin: 0 0 10px; }
.post-body .pitch { font-size: 16px; }
