/* kintoneプラグイン大全 共通スタイル
   全ページ(TOP/category/all/about)で使用
   DESIGN.md 正本準拠 */
:root {
  --primary: #2A5772;
  --primary-dark: #1F4258;
  --on-primary: #FFFFFF;
  --bg: #F2F2F2;
  --bg-alt: #EBEBEB;
  --surface: #FFFFFF;
  --surface-muted: #FAFAFA;
  --text: #545454;
  --text-strong: #1A1A1A;
  --text-sub: #888888;
  --divider: #E4EAEB;
  --divider-strong: #D4DCE0;
  --cta: #F0B90B;
  --cta-hover: #E0A800;
  --cta-text: #2A5772;
  --free: #28A745;
  --free-bg: #E8F4EC;
  --shadow: 0 2px 5px rgba(0,0,0,0.06);
  --r-sm: 4px; --r-md: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic UI", sans-serif;
  background: var(--bg); color: var(--text);
  margin: 0; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color .12s ease; }
a:hover { color: var(--primary-dark); }
.l-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.num { font-family: "Jost", sans-serif; font-feature-settings: "tnum" 1; }

/* ============ HEADER ============ */
.t-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
}
.t-header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: 20px;
}
.t-logo {
  color: var(--primary);
  font-weight: 700; font-size: 18px;
  letter-spacing: 0.02em; line-height: 1;
}
.t-logo small {
  display: block; color: var(--text-sub);
  font-family: "Jost", sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; margin-top: 4px;
}
.t-nav {
  margin-left: auto;
  display: flex; align-items: center; gap: 20px;
  font-size: 13px;
}
.t-nav a { color: var(--text); font-weight: 500; }
.t-nav a:hover { color: var(--primary); }
.t-compare {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text); font-size: 13px;
}
.t-compare-n {
  background: var(--text-sub); color: white;
  padding: 1px 7px; border-radius: 999px;
  font-family: "Jost", sans-serif; font-weight: 600;
  font-size: 11px; min-width: 18px; text-align: center;
}
.t-compare[data-count="0"] .t-compare-n { background: var(--divider-strong); color: var(--text-sub); }
.t-cta-btn {
  background: var(--cta); color: var(--cta-text);
  padding: 8px 16px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 13px;
}
.t-cta-btn:hover { background: var(--cta-hover); color: var(--cta-text); }

/* ============ BREADCRUMB ============ */
.crumb {
  font-size: 12px; color: var(--text-sub);
  padding: 12px 0 0;
}
.crumb a { color: var(--text-sub); }
.crumb a:hover { color: var(--primary); }
.crumb__sep { margin: 0 6px; opacity: 0.5; }

/* ============ SEARCH (reused) ============ */
.search {
  display: flex; max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,87,114,0.08);
}
.search__icon {
  padding: 0 0 0 16px;
  display: flex; align-items: center; color: var(--text-sub);
}
.search input {
  flex: 1; border: none; outline: none;
  padding: 14px 14px;
  font-size: 15px; font-family: inherit;
  background: transparent; color: var(--text-strong);
}
.search input::placeholder { color: var(--text-sub); }
.search button {
  border: none; cursor: pointer;
  padding: 0 26px;
  background: var(--cta); color: var(--cta-text);
  font-weight: 600; font-size: 14px;
  font-family: inherit;
  transition: background .15s ease;
}
.search button:hover { background: var(--cta-hover); }

/* ============ SUPPORT BAND ============ */
.support {
  background: var(--primary); color: white;
  padding: 14px 0;
}
.support__inner {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.support__text { font-size: 13px; font-weight: 500; flex: 1; min-width: 240px; line-height: 1.6; }
.support__text strong { color: var(--cta); font-weight: 700; }
.support__cta {
  background: var(--cta); color: var(--cta-text);
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
}
.support__cta:hover { background: var(--cta-hover); color: var(--cta-text); }

/* ============ COMMON SECTION ============ */
section.s { padding: 32px 0; }
.s__head { margin-bottom: 16px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.s h2 {
  font-weight: 700; font-size: 20px;
  color: var(--text-strong);
  margin: 0; line-height: 1.4;
}
.s h2 .count {
  font-family: "Jost", sans-serif; font-weight: 500;
  color: var(--text-sub); font-size: 14px;
  margin-left: 10px;
}
.s__more { font-size: 13px; color: var(--primary); font-weight: 600; }
.s__more:hover { text-decoration: underline; }

/* ============ CATEGORY GRID ============ */
.cats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 980px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .cats { grid-template-columns: repeat(2, 1fr); } }
.cat {
  background: var(--surface);
  padding: 16px 16px 14px;
  text-decoration: none; color: inherit;
  transition: background .12s ease;
  display: block;
}
.cat:hover { background: var(--bg); }
.cat__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cat__icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat__icon svg { width: 24px; height: 24px; }
.cat__num {
  font-family: "Jost", sans-serif; font-weight: 500;
  font-size: 11px; color: var(--text-sub);
  letter-spacing: 0.08em;
}
.cat__name { font-weight: 700; font-size: 14px; color: var(--text-strong); margin: 0 0 4px; line-height: 1.4; }
.cat__count { font-family: "Jost", sans-serif; font-size: 12px; color: var(--text-sub); margin-bottom: 6px; }
.cat__count .b { color: var(--text-strong); font-weight: 500; font-size: 18px; margin-right: 2px; }
.cat__chips { display: flex; flex-wrap: wrap; gap: 4px; font-size: 11px; color: var(--text-sub); }
.cat__chips span:not(:last-child)::after { content: "・"; margin: 0 2px; }

/* ============ BOTTOM CTA ============ */
.cta { background: var(--primary); color: white; padding: 40px 0; }
.cta__sub {
  font-family: "Jost", sans-serif; font-weight: 500;
  font-size: 11px; color: var(--cta);
  letter-spacing: 0.16em; margin: 0 0 8px;
}
.cta h2 { font-size: 24px; font-weight: 700; margin: 0 0 12px; color: white; }
.cta__lead { font-size: 14px; opacity: 0.88; margin: 0 0 24px; max-width: 760px; line-height: 1.8; }
.cta__list {
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  padding: 18px 24px;
  margin: 0 0 24px; max-width: 760px;
  list-style: none;
}
.cta__list li {
  padding: 6px 0; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: baseline; gap: 12px;
}
.cta__list li:last-child { border-bottom: none; }
.cta__list li strong { color: var(--cta); font-weight: 700; min-width: 200px; }
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta__btn {
  padding: 12px 24px;
  background: var(--cta); color: var(--cta-text);
  font-weight: 600; font-size: 14px;
  border-radius: var(--r-sm);
}
.cta__btn:hover { background: var(--cta-hover); color: var(--cta-text); }
.cta__btn--ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); }
.cta__btn--ghost:hover { background: rgba(255,255,255,0.1); color: white; }

/* ============ FOOTER ============ */
.footer { background: #1A2E3A; color: #B8C8D2; padding: 20px 0; font-size: 12px; }
.footer p { margin: 0 0 4px; }
.footer a { color: #E4EAEB; }

/* ============ PLUGIN LIST / TABLE ============ */
.ptable {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  font-size: 13px;
}
.ptable th, .ptable td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--divider);
  text-align: left;
  vertical-align: top;
}
.ptable thead th {
  background: var(--surface-muted);
  color: var(--text-strong);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--primary);
  white-space: nowrap;
  position: sticky; top: 49px;
}
.ptable tbody tr { cursor: pointer; transition: background .1s ease; }
.ptable tbody tr:hover { background: var(--bg); }
.ptable__chk { width: 28px; }
.ptable__chk input { cursor: pointer; }
.ptable__name { font-weight: 600; color: var(--text-strong); }
.ptable__name small { display: block; color: var(--text-sub); font-weight: 400; font-size: 11px; margin-top: 2px; }
.ptable__vendor { color: var(--text); font-size: 12px; }
.ptable__cat   { color: var(--text-sub); font-size: 11px; line-height: 1.4; max-width: 200px; }
.ptable__price { font-family: "Jost", sans-serif; font-weight: 600; color: var(--text-strong); text-align: right; white-space: nowrap; }
.ptable__price .u { font-size: 10px; color: var(--text-sub); font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 400; margin-left: 2px; }
.ptable__price--free { color: var(--free); }
.ptable__action { width: 60px; text-align: right; }
.ptable__action a { color: var(--primary); font-size: 12px; }

/* Card view alternative */
.pcards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.pcard {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .12s ease;
}
.pcard:hover { border-color: var(--primary); }
.pcard__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.pcard__name { font-weight: 700; color: var(--text-strong); font-size: 14px; line-height: 1.4; }
.pcard__price { font-family: "Jost", sans-serif; font-weight: 600; font-size: 14px; color: var(--text-strong); white-space: nowrap; }
.pcard__price.free { color: var(--free); }
.pcard__vendor { font-size: 12px; color: var(--text); }
.pcard__cat   { font-size: 11px; color: var(--text-sub); margin-top: 4px; }
.pcard__sum   { font-size: 12px; color: var(--text); margin-top: 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard__foot  { margin-top: 8px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.pcard__chk { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-sub); cursor: pointer; }
.pcard__chk input { cursor: pointer; }

/* ============ FILTER RAIL ============ */
.layout-faceted {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 900px) { .layout-faceted { grid-template-columns: 1fr; } }
.rail {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 13px;
  align-self: start;
  position: sticky; top: 60px;
}
.rail__title {
  font-weight: 700; font-size: 13px; color: var(--text-strong);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--divider);
}
.rail__group { margin-bottom: 14px; }
.rail__group:last-child { margin-bottom: 0; }
.rail__group-label { font-size: 11px; font-weight: 700; color: var(--text-sub); letter-spacing: 0.04em; margin: 0 0 6px; text-transform: uppercase; }
.rail__opt {
  display: flex; align-items: center; gap: 6px;
  padding: 3px 0;
  font-size: 12px; color: var(--text);
  cursor: pointer;
}
.rail__opt input { cursor: pointer; }
.rail__opt:hover { color: var(--text-strong); }
.rail__opt .c { color: var(--text-sub); font-family: "Jost", sans-serif; font-size: 11px; margin-left: auto; }
.rail__reset {
  display: block; margin-top: 6px;
  font-size: 12px; color: var(--primary);
  cursor: pointer; text-align: right;
  background: none; border: none;
}
.rail__reset:hover { text-decoration: underline; }

/* ============ APPLIED FILTERS / CHIPS ============ */
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px;
  background: var(--primary); color: white;
  border-radius: 999px;
  font-size: 11px; font-weight: 500;
}
.chip__x { cursor: pointer; opacity: 0.7; }
.chip__x:hover { opacity: 1; }

/* ============ TOOLBAR (sort + view) ============ */
.toolbar {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  padding: 8px 14px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text);
}
.toolbar__count { font-family: "Jost", sans-serif; color: var(--text-strong); font-weight: 600; }
.toolbar select {
  border: 1px solid var(--divider-strong); border-radius: var(--r-sm);
  padding: 4px 8px; font-size: 12px; font-family: inherit;
  background: var(--surface); color: var(--text);
}
.toolbar__view { margin-left: auto; display: flex; gap: 4px; }
.toolbar__view button {
  border: 1px solid var(--divider-strong);
  background: var(--surface); color: var(--text);
  padding: 4px 10px; font-size: 12px;
  cursor: pointer; border-radius: var(--r-sm);
  font-family: inherit;
}
.toolbar__view button.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ============ COMPARE TRAY ============ */
.tray {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--text-strong); color: white;
  padding: 10px 0;
  z-index: 90;
  display: none;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.18);
}
.tray.active { display: block; }
.tray__inner {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.tray__label { font-size: 13px; font-weight: 600; }
.tray__slots { display: flex; gap: 6px; flex: 1; min-width: 200px; flex-wrap: wrap; }
.tray__slot {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-sm); padding: 3px 8px;
  font-size: 11px; max-width: 200px;
}
.tray__slot__x { cursor: pointer; opacity: 0.7; }
.tray__btn {
  background: var(--cta); color: var(--cta-text);
  padding: 8px 18px; border: none; border-radius: var(--r-sm);
  font-weight: 600; font-size: 13px;
  cursor: pointer; font-family: inherit;
}
.tray__btn:hover:not(:disabled) { background: var(--cta-hover); }
.tray__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.tray__clear {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px; border-radius: var(--r-sm);
  font-size: 12px; cursor: pointer; font-family: inherit;
}
.tray__clear:hover { color: white; border-color: white; }

/* ============ DETAIL DRAWER ============ */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200; display: none;
}
.drawer-bg.active { display: block; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(540px, 92vw);
  background: var(--surface);
  z-index: 201;
  display: none;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.drawer.active { display: flex; }
.drawer__head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface);
}
.drawer__title { font-weight: 700; font-size: 16px; color: var(--text-strong); margin: 0; }
.drawer__close {
  background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--text-sub);
  padding: 0; width: 32px; height: 32px;
  border-radius: var(--r-sm);
}
.drawer__close:hover { background: var(--bg); color: var(--text-strong); }
.drawer__body { padding: 18px 20px; overflow-y: auto; flex: 1; }
.drawer__row { padding: 10px 0; border-bottom: 1px solid var(--divider); font-size: 13px; display: grid; grid-template-columns: 90px 1fr; gap: 12px; }
.drawer__row:last-child { border-bottom: none; }
.drawer__row dt { color: var(--text-sub); font-size: 12px; }
.drawer__row dd { margin: 0; color: var(--text-strong); }
.drawer__row dd.lg { font-family: "Jost", sans-serif; font-weight: 600; font-size: 18px; }
.drawer__row dd.free { color: var(--free); }
.drawer__cats { display: flex; flex-wrap: wrap; gap: 4px; }
.drawer__cats a {
  font-size: 11px; padding: 2px 8px;
  background: var(--bg); border-radius: var(--r-sm);
  color: var(--primary);
}
.drawer__cats a:hover { background: var(--primary); color: white; }
.drawer__foot {
  padding: 14px 20px;
  border-top: 1px solid var(--divider);
  background: var(--surface-muted);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.drawer__foot a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px;
  font-size: 13px; font-weight: 600;
  border-radius: var(--r-sm);
  background: var(--surface); color: var(--primary);
  border: 1px solid var(--divider-strong);
}
.drawer__foot a:hover { background: var(--bg); }
.drawer__foot a.primary { background: var(--cta); color: var(--cta-text); border-color: var(--cta); }
.drawer__foot a.primary:hover { background: var(--cta-hover); }

/* ============ COMPARE MODAL ============ */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300; display: none;
  align-items: flex-start; justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-bg.active { display: flex; }
.modal {
  background: var(--surface);
  border-radius: var(--r-md);
  max-width: 1100px; width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.modal__head {
  padding: 16px 24px;
  border-bottom: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: space-between;
}
.modal__title { font-weight: 700; font-size: 18px; color: var(--text-strong); margin: 0; }
.modal__body { padding: 0; overflow-x: auto; }
.modal table { width: 100%; border-collapse: collapse; font-size: 13px; }
.modal th, .modal td { padding: 10px 12px; border: 1px solid var(--divider); vertical-align: top; text-align: left; }
.modal th { background: var(--surface-muted); color: var(--text-strong); font-weight: 700; font-size: 12px; }
.modal td.label { background: var(--surface-muted); color: var(--text-sub); font-weight: 600; font-size: 12px; white-space: nowrap; }
.modal__foot {
  padding: 14px 24px;
  border-top: 1px solid var(--divider);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.modal__btn {
  padding: 10px 18px;
  background: var(--cta); color: var(--cta-text);
  border: none; border-radius: var(--r-sm);
  font-weight: 600; font-size: 13px;
  cursor: pointer; font-family: inherit;
}
.modal__btn:hover { background: var(--cta-hover); }
.modal__btn--ghost {
  background: transparent; color: var(--primary);
  border: 1px solid var(--divider-strong);
}
.modal__btn--ghost:hover { background: var(--bg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .l-container { padding: 0 16px; }
  .t-header__inner { padding: 10px 16px; gap: 12px; }
  .t-nav { gap: 12px; font-size: 12px; }
  .t-nav .t-compare { display: none; }
  section.s { padding: 24px 0; }
  .cta { padding: 28px 0; }
  .cta__list { padding: 14px 16px; }
  .cta__list li strong { min-width: auto; display: block; margin-bottom: 4px; }
  .ptable thead { display: none; }
  .ptable, .ptable tbody, .ptable tr, .ptable td { display: block; width: 100%; }
  .ptable tr { padding: 12px; border-bottom: 1px solid var(--divider); }
  .ptable td { padding: 2px 0; border: none; }
}

/* ============ DISCLAIMER BLOCK (本データベースについて) ============
   ページ下部、サイト共通フッターの直前に固定で表示。
   サイボウズ・各ベンダーへの公認/推薦の不存在、商標帰属、修正連絡先を明記。 */
.taizen-disclaimer {
  background: #FAFAFA;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 40px 0 48px;
  margin-top: 32px;
  color: #6B6B6B;
  font-size: 12.5px;
  line-height: 1.85;
}
.taizen-disclaimer .l-container { max-width: 880px; }
.taizen-disclaimer__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.taizen-disclaimer__body p {
  margin: 0 0 12px;
}
.taizen-disclaimer__body p:last-child { margin-bottom: 0; }
.taizen-disclaimer__body strong {
  color: #333;
  font-weight: 600;
}
.taizen-disclaimer__body a {
  color: var(--primary);
  text-decoration: underline;
}
.taizen-disclaimer__body a:hover { color: var(--primary-dark); }
.taizen-disclaimer__meta {
  font-size: 11.5px;
  color: var(--text-sub);
  margin-top: 16px !important;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
}
@media (max-width: 768px) {
  .taizen-disclaimer { padding: 28px 0 32px; font-size: 12px; }
  .taizen-disclaimer__title { font-size: 13.5px; }
}

/* ============ MAIN WRAPPER for WP integration ============ */
.taizen-main { /* 中身は元の section.{hero,support,value,s,cta} のまま */ }

/* ============ HERO ============ */
.hero { padding: 40px 0 28px; }
.hero__lead {
  color: var(--text-sub); font-size: 12px;
  letter-spacing: 0.16em; font-family: "Jost", sans-serif;
  font-weight: 500; margin: 0 0 10px;
}
.hero__title {
  color: var(--text-strong); font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.4; letter-spacing: 0.01em; margin: 0 0 12px;
}
.hero__title .accent { color: var(--primary); }
.hero__desc { color: var(--text); font-size: 15px; margin: 0 0 20px; max-width: 760px; }
.hero__stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 20px; padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-md); max-width: 760px;
}
.hero__stat { display: flex; align-items: baseline; gap: 8px; }
.hero__stat-n {
  font-family: "Jost", sans-serif;
  font-size: 28px; font-weight: 500;
  color: var(--text-strong); letter-spacing: -0.01em; line-height: 1;
}
.hero__stat-l { font-size: 12px; color: var(--text-sub); }
.hero__quick {
  margin-top: 12px;
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center; font-size: 12px;
}
.hero__quick > span { color: var(--text-sub); margin-right: 4px; }
.hero__quick a {
  padding: 3px 10px; background: var(--surface);
  border: 1px solid var(--divider); border-radius: 999px;
  color: var(--text); font-size: 12px;
}
.hero__quick a:hover { border-color: var(--text-sub); color: var(--text-strong); }
@media (max-width: 640px) {
  .hero { padding: 28px 0 20px; }
  .hero__stats { gap: 16px; padding: 12px 14px; }
  .hero__stat-n { font-size: 22px; }
}

/* ============ VALUE SECTION (元デザイン準拠: 共有ボーダーコンテナ) ============ */
.value { padding: 32px 0; }
.value__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  overflow: hidden;
}
.value__item {
  padding: 18px 20px;
  border-right: 1px solid var(--divider);
}
.value__item:last-child { border-right: none; }
.value__lab {
  font-size: 13px; font-weight: 700;
  color: var(--text-strong); margin-bottom: 4px;
}
.value__desc { font-size: 12px; color: var(--text); line-height: 1.6; }
@media (max-width: 720px) {
  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .value__item:nth-child(2n) { border-right: none; }
  .value__item:nth-child(1), .value__item:nth-child(2) { border-bottom: 1px solid var(--divider); }
}
@media (max-width: 480px) {
  .value__grid { grid-template-columns: 1fr; }
  .value__item { border-right: none; border-bottom: 1px solid var(--divider); }
  .value__item:last-child { border-bottom: none; }
}

/* ============ VENDOR LIST / PRICING LIST (元デザイン準拠) ============ */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .twocol { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  overflow: hidden;
}
.card__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--divider);
}
.card__head h2 { font-size: 16px; font-weight: 700; color: var(--text-strong); margin: 0; }
.card__head .badge {
  font-size: 11px; font-family: "Jost", sans-serif;
  color: var(--text-sub); background: var(--bg);
  padding: 2px 8px; border-radius: 999px;
}

/* ベンダーリスト */
.vlist__item {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--divider);
  text-decoration: none; color: inherit;
  font-size: 13px;
  transition: background .12s ease;
}
.vlist__item:last-child { border-bottom: none; }
.vlist__item:hover { background: var(--bg); }
.vlist__rank {
  font-family: "Jost", sans-serif;
  font-weight: 500; font-size: 13px;
  color: var(--text-sub); text-align: center;
}
.vlist__item.top .vlist__rank { color: var(--text-strong); font-weight: 700; }
.vlist__name { color: var(--text-strong); font-weight: 500; font-size: 13px; }
.vlist__count {
  font-family: "Jost", sans-serif; font-weight: 500;
  color: var(--text-strong); font-size: 14px;
}
.vlist__count .u {
  font-family: "Zen Kaku Gothic New", sans-serif; font-size: 10px;
  color: var(--text-sub); margin-left: 2px; font-weight: 400;
}

/* 価格帯リスト */
.plist__item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--divider);
  text-decoration: none; color: inherit;
  transition: background .12s ease;
}
.plist__item:last-child { border-bottom: none; }
.plist__item:hover { background: var(--bg); }
.plist__main { display: flex; align-items: center; gap: 10px; }
.plist__badge {
  display: inline-block; text-align: center;
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: var(--r-sm);
  background: var(--bg); color: var(--text);
  min-width: 56px;
}
.plist__badge.free { background: var(--free-bg); color: var(--free); font-weight: 700; }
.plist__lab { font-size: 13px; font-weight: 500; color: var(--text-strong); }
.plist__cnt {
  font-family: "Jost", sans-serif; font-weight: 500;
  color: var(--text-strong); font-size: 14px;
}
.plist__cnt .u {
  font-family: "Zen Kaku Gothic New", sans-serif; font-size: 10px;
  color: var(--text-sub); margin-left: 2px; font-weight: 400;
}

/* WP shell-d HBFooter との干渉防止。HBFooter は React で別マウントされる。 */
body.taizen-route .footer-elementor,
body.taizen-route .hfe-footer { display: none !important; }

