@charset "UTF-8";
/* global.css scoped under .bo-wrap (comparison-site base) */


/* ==========================================================================
  Reset & Base Settings
  =========================================================================== */
:root {
  /* Colors - Premium Blue Palette */
  --primary-blue: #0353b0;
  --dark-blue: #0a2540;
  --light-blue: #f0f5ff;
  --accent-gold: #fcdb0f;
  --accent-red: #af0005;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-gray: #f5f5f5;
  --border-color: #dddddd;

  /* Font Sizes */
  --font-size-base: 16px;
  
  /* Type variants */
  --type-green: #43a047;
  --type-purple: #673ab7;
  --type-orange: #ff9800;
  --type-blue: #2196f3;
}
.bo-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.bo-wrap html {
  font-size: var(--font-size-base);
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  scroll-behavior: smooth;
}
.bo-wrap body {
  line-height: 1.6;
  background-color: var(--bg-gray);
}
.bo-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}
.bo-wrap a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
.bo-wrap a:hover {
  opacity: 0.8;
}
.bo-wrap ul, .bo-wrap ol {
  list-style: none;
}
.bo-wrap /* ==========================================================================
  Typography
  =========================================================================== */
.txt-sm { font-size: 0.875rem; }
.bo-wrap .txt-md { font-size: 1rem; }
.bo-wrap .txt-lg { font-size: 1.125rem; }
.bo-wrap .txt-xl { font-size: 1.5rem; }
.bo-wrap .txt-bold { font-weight: 700; }
.bo-wrap .txt-center { text-align: center; }
.bo-wrap .txt-blue { color: var(--primary-blue); }
.bo-wrap /* ==========================================================================
  Layout Components
  =========================================================================== */
.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.bo-wrap .inner {
  width: 100%;
  max-width: 1010px;
  padding: 0 20px;
  margin: 0 auto;
}
.bo-wrap .section {
  padding: 4rem 0;
}
.bo-wrap .section-ttl {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: bold;
}
.bo-wrap .section-ttl span {
  display: block;
}
.bo-wrap .section-ttl--sub {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}
.bo-wrap /* ==========================================================================
  Common Components
  =========================================================================== */
.btn-main {
  display: inline-block;
  background-color: var(--accent-red);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 0 #8b0000;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.bo-wrap .btn-main:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.bo-wrap .btn-main:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #8b0000;
}
.bo-wrap .btn-main--blue {
  background-color: var(--primary-blue);
  box-shadow: 0 4px 0 #023d82;
}
.bo-wrap /* Symbol Icons */
.symbol {
  font-size: 1.25rem;
  font-weight: bold;
}
.bo-wrap .symbol-double { color: #f44336; }
.bo-wrap /* ◎ */
.symbol-circle { color: #ff9800; }
.bo-wrap /* ○ */
.symbol-triangle { color: #8bc34a; }
.bo-wrap /* △ */
.symbol-cross { color: #757575; }
.bo-wrap /* × */

.ad-label {
  display: inline-block;
  background: #999;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 2px;
  line-height: 1;
}
.bo-wrap /* ==========================================================================
  Responsive Utilities
  =========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
}

/* ランキングカード内「{業者名}の特徴」見出し・説明文 */
.bo-wrap .deep-dive-box .feature-ttl {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e2e8f0;
}
.bo-wrap .deep-dive-box .feature-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.bo-wrap .deep-dive-box .feature-desc:last-of-type {
  margin-bottom: 1.2rem;
}

/* =========================================================
   早見表（ポジショニングマップ）SP対応
   散布図（十字線・象限配置）はそのまま維持し、
   ラベル（ロゴ・社名・バッジ）を縮小＆社名を細幅折り返しにして
   狭幅でも隣同士が重なりにくくする。
   ※ inline style / bo-ranking.css を上書きするため高詳細度＋!important
   ========================================================= */
@media (max-width: 768px) {
  .quick-reference .reference-map .ref-label {
    gap: 2px !important;
  }
  .quick-reference .reference-map .qr-badge {
    font-size: 0.42rem !important;
    padding: 1px 4px !important;
    white-space: normal !important;
    max-width: 74px;
    line-height: 1.15 !important;
    text-align: center;
  }
  .quick-reference .reference-map .qr-logo {
    max-width: 46px !important;
    height: 20px !important;
  }
  .quick-reference .reference-map .qr-name {
    font-size: 0.5rem !important;
    white-space: normal !important;
    width: 62px;
    text-align: center;
    line-height: 1.15 !important;
  }
}

/* =========================================================
   ランキングカード内 レーダーチャート（Chart.js）
   ========================================================= */
.bo-wrap .chart-section {
  margin: 0 auto 1rem;
}
.bo-wrap .chart-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 340px; */
  height: 240px;
  margin: 0 auto;
}
.bo-wrap .radar-canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 768px) {
  .bo-wrap .chart-wrapper {
    max-width: 100%;
    height: auto;
  }
}

/* =========================================================
   ランキングカード：レーダーチャート＋おすすめポイントの横並び
   ========================================================= */
.bo-wrap .chart-and-points {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.bo-wrap .chart-and-points .chart-col {
  flex: 0 0 46%;
  max-width: 46%;
}
.bo-wrap .chart-and-points .chart-section {
  margin: 0;
}
.bo-wrap .chart-and-points .chart-section .chart-wrapper {
  margin: 0 auto;
}
/* 読者満足度をレーダーチャートのすぐ下に */
.bo-wrap .chart-and-points .chart-col .total-rating-refined {
  margin-top: 0.5rem;
}
.bo-wrap .chart-and-points .card-features,
.bo-wrap .chart-and-points .chart-reason {
  flex: 1 1 0;
  min-width: 0;
}
/* チャート横に移動した「おすすめする理由」の見出し余白を調整 */
.bo-wrap .chart-and-points .chart-reason .box-ttl-main {
  margin-top: 0;
}
@media (max-width: 768px) {
  .bo-wrap .chart-and-points {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .bo-wrap .chart-and-points .chart-col {
    flex: none;
    max-width: 100%;
  }
}

/* =========================================================
   記事内 比較表（.hikaku-table）
   SPでは1列目（業者名）を固定して横スクロール
   ========================================================= */
.top-kanagawa-article .hikaku-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1em 0;
}
.top-kanagawa-article .hikaku-table {
  border-collapse: separate;   /* sticky時に枠線が消えないよう separate */
  border-spacing: 0;
  width: 100%;
  border-top: 1px solid #d9e1ec;
  border-left: 1px solid #d9e1ec;
}
.top-kanagawa-article .hikaku-table th,
.top-kanagawa-article .hikaku-table td {
  border-right: 1px solid #d9e1ec;
  border-bottom: 1px solid #d9e1ec;
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  background: #fff;
}
/* 見出し行（tbody内の最初のtr） */
.top-kanagawa-article .hikaku-table tr:first-child th {
  background: #0353b0;
  color: #fff;
  font-weight: 700;
}
.top-kanagawa-article .hikaku-table td:first-child {
  font-weight: 700;
}

@media (max-width: 768px) {
  .top-kanagawa-article .hikaku-table {
    min-width: 640px;   /* 横スクロールを発生させる */
  }
  /* 1列目を固定 */
  .top-kanagawa-article .hikaku-table th:first-child,
  .top-kanagawa-article .hikaku-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.08);
  }
  /* 固定列の背景（後ろの列が透けないように） */
  .top-kanagawa-article .hikaku-table td:first-child {
    background: #fff;
  }
  .top-kanagawa-article .hikaku-table tr:first-child th:first-child {
    background: #0353b0;
    z-index: 3;
  }
}

/* =========================================================
   ランキングカード：特徴／基本情報／口コミ タブ切り替え
   （engineer-engine.com のタブUIを移植し .bo-wrap にスコープ）
   ========================================================= */
.bo-wrap .ranking_inner_tab_wrap {
  margin-top: 1.5rem;
}
.bo-wrap .ranking_inner_tab_list {
  display: flex;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.bo-wrap .ranking_inner_tab_list li {
  width: 33.333%;
  height: 3.75rem;
  border: solid #022B89;
  border-width: 1px 1px 1px;
  overflow: hidden;
}
.bo-wrap .ranking_inner_tab_list li + li { border-left: 0; }
.bo-wrap .ranking_inner_tab_list li:first-child { border-radius: 0.75rem 0 0; }
.bo-wrap .ranking_inner_tab_list li:last-child { border-radius: 0 0.75rem 0 0; }
.bo-wrap .ranking_inner_tab_list button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #022B89;
  font-size: 1rem;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.bo-wrap .ranking_inner_tab_list button:hover { background: #eef3ff; }
.bo-wrap .ranking_inner_tab_list button.active {
  font-size: 1.0625rem;
  font-weight: bold;
  background: #D9E5FF;
}
.bo-wrap .ranking_inner_tab_block_wrap {
  padding: 2rem;
  border: 1px solid #012B8A;
  border-radius: 0 0 0.75rem 0.75rem;
}
.bo-wrap .ranking_inner_tab_block { display: none; }
.bo-wrap .ranking_inner_tab_block.active { display: block; }
/* タブ内に入れた既存要素の上マージンを詰める */
.bo-wrap .ranking_inner_tab_block .deep-dive-box,
.bo-wrap .ranking_inner_tab_block .review-slider-wrapper,
.bo-wrap .ranking_inner_tab_block .more-details { margin-top: 0; }
/* 特徴タブ内 deep-dive-box の背景・ボーダー装飾を除去 */
.bo-wrap .ranking_inner_tab_block .deep-dive-box {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .bo-wrap .ranking_inner_tab_list li { height: 4.5rem; }
  .bo-wrap .ranking_inner_tab_list button {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .bo-wrap .ranking_inner_tab_list button.active { font-size: 0.875rem; }
  .bo-wrap .ranking_inner_tab_block_wrap {
    padding: 1.375rem;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}

/* ==========================================================================
  Rekishi-Hike Reference Design Style
  =========================================================================== */

/* セクションタイトルラッパー */
.nfc-sec-wrapper {
  text-align: center;
  margin: 40px 0 28px;
}
.nfc-sec-wrapper .sub-ttl {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0353b0;
  margin-bottom: 0.4rem;
}
.nfc-sec-wrapper .section-ttl {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0a2540;
  line-height: 1.4;
  margin: 0 0 0.8rem;
  border: none;
  padding: 0;
  background: none;
}
.nfc-sec-wrapper .section-ttl::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0353b0;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* トラブル警鐘ボックス（編集部メモ風 / editorial-comment-box スタイル） */
.nfc-alert-editorial {
  background: #fff8f8;
  border: 2px solid #ffcdd2;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 32px;
  position: relative;
}
.nfc-alert-editorial-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #d32f2f;
  margin-bottom: 12px;
  border-bottom: 1px dashed #ffcdd2;
  padding-bottom: 8px;
}
.nfc-alert-editorial-head i {
  font-size: 1.25rem;
}
.nfc-alert-editorial-body {
  font-size: 0.98rem;
  color: #333333;
  line-height: 1.85;
}
.nfc-alert-editorial-img {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.nfc-alert-editorial-img img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}
.nfc-alert-editorial-cite {
  font-size: 0.82rem;
  color: #666666;
  text-align: right;
  margin-top: 6px;
}
.nfc-alert-editorial-cite a {
  color: #0353b0;
  text-decoration: underline;
}

/* 自治体ルールコールアウト */
.nfc-info-callout {
  background: #f0f5ff;
  border-left: 5px solid #0353b0;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #0a2540;
  margin-bottom: 32px;
}

/* 目次（この記事でわかること） */
.nfc-toc-box {
  background: #ffffff;
  border: 2px solid #0353b0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px -10px rgba(3, 83, 176, 0.15);
  margin: 32px 0;
}
.nfc-toc-header {
  background: #0353b0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nfc-toc-header i {
  color: #fcdb0f;
}
.nfc-toc-list {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nfc-toc-list li a, .nfc-toc-list li .nfc-toc-static {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  color: #0a2540;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nfc-toc-list li a:hover {
  background: #f0f5ff;
  border-color: #0353b0;
  color: #0353b0;
  transform: translateX(4px);
}
.nfc-toc-num {
  background: #0353b0;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.nfc-toc-arrow {
  margin-left: auto;
  color: #a0aec0;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.nfc-toc-list li a:hover .nfc-toc-arrow {
  color: #0353b0;
  transform: translateX(3px);
}

/* 神奈川県の不用品回収事情（ランキング記事向け editorial layout） */
.nfc-market {
  --market-navy: #0a2540;
  --market-blue: #0353b0;
  --market-blue-soft: #eef6ff;
  --market-text: #334155;
  --market-muted: #64748b;
  --market-line: #dce4ed;
  --market-alert: #c43d3d;
  --market-price: #16805c;
  margin: 72px 0 80px;
  color: var(--market-text);
}
.nfc-market *,
.nfc-market *::before,
.nfc-market *::after {
  box-sizing: border-box;
}
.nfc-market .sp_only { display: none; }
.nfc-market__header {
  position: relative;
  overflow: hidden;
  padding: 46px 48px 50px;
  background: var(--market-navy);
  color: #fff;
  text-align: center;
}
.nfc-market__header::before {
  content: "KANAGAWA";
  position: absolute;
  right: -12px;
  bottom: -24px;
  color: rgba(255,255,255,.045);
  font: 900 clamp(3.8rem, 10vw, 7rem)/1 Arial, sans-serif;
  letter-spacing: -.06em;
  pointer-events: none;
}
.nfc-market__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #79b8ff;
  font: 700 .7rem/1.4 Arial, sans-serif;
  letter-spacing: .2em;
}
.nfc-market__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}
.nfc-market__kicker::before,
.nfc-market__kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.55);
}
.nfc-market__title {
  position: relative;
  margin: 13px 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: #fff !important;
  font-size: clamp(1.75rem, 4vw, 2.45rem) !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  letter-spacing: .02em;
}
.nfc-market__title::before,
.nfc-market__title::after {
  display: none !important;
}
.nfc-market__lead {
  position: relative;
  max-width: 620px;
  margin: 0 auto !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .95rem !important;
  line-height: 1.9 !important;
}
.nfc-market__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: 1px solid var(--market-line);
  border-top: 0;
  background: #fff;
  box-shadow: 0 14px 32px rgba(10,37,64,.08);
}
.nfc-market__summary-item {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  margin: 0 !important;
  padding: 21px 20px !important;
  border-right: 1px solid var(--market-line);
}
.nfc-market__summary-item:last-child {
  border-right: 0;
}
.nfc-market__summary-num {
  color: var(--market-blue);
  font: 800 1.7rem/1 Arial, sans-serif;
  letter-spacing: -.04em;
}
.nfc-market__summary-item--alert .nfc-market__summary-num { color: var(--market-alert); }
.nfc-market__summary-item--price .nfc-market__summary-num { color: var(--market-price); }
.nfc-market__summary-text {
  color: var(--market-navy);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.55;
}
.nfc-market__details {
  margin-top: 48px;
  border-top: 1px solid var(--market-line);
}
.nfc-market__item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  border-bottom: 1px solid var(--market-line);
}
.nfc-market__index {
  padding: 38px 20px 38px 0;
  border-right: 1px solid var(--market-line);
  color: var(--market-blue);
  text-align: center;
}
.nfc-market__index span {
  display: block;
  margin-bottom: 5px;
  font: 700 .62rem/1 Arial, sans-serif;
  letter-spacing: .16em;
}
.nfc-market__index strong {
  display: block;
  font: 800 2.8rem/1 Arial, sans-serif;
  letter-spacing: -.07em;
}
.nfc-market__item--alert .nfc-market__index { color: var(--market-alert); }
.nfc-market__item--price .nfc-market__index { color: var(--market-price); }
.nfc-market__content {
  min-width: 0;
  padding: 38px 0 44px 42px;
}
.nfc-market__label {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--market-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.nfc-market__item--alert .nfc-market__label { color: var(--market-alert); }
.nfc-market__item--price .nfc-market__label { color: var(--market-price); }
.nfc-market__item-title {
  margin: 0 0 24px !important;
  padding: 0 0 16px !important;
  border: 0 !important;
  border-bottom: 2px solid var(--market-navy) !important;
  background: none !important;
  color: var(--market-navy) !important;
  font-size: clamp(1.2rem, 3vw, 1.55rem) !important;
  font-weight: 900 !important;
  line-height: 1.55 !important;
}
.nfc-market__item-title::before,
.nfc-market__item-title::after {
  display: none !important;
}
.nfc-market__content > p {
  margin: 0 0 16px !important;
  color: var(--market-text) !important;
  font-size: 1rem !important;
  line-height: 2 !important;
}
.nfc-market__content > p:last-child { margin-bottom: 0 !important; }
.nfc-market__content strong {
  color: var(--market-navy);
  font-weight: 800;
  background: linear-gradient(transparent 67%, #cfe5ff 0);
}
.nfc-market__source {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  align-items: end;
  gap: 22px;
  margin: 26px 0 24px !important;
  padding: 18px;
  background: #f7f9fc;
  border: 1px solid var(--market-line);
}
.nfc-market__source-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #fff;
  border: 1px solid #d8dee7;
}
.nfc-market__source-image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: top;
  transition: opacity .2s ease;
}
.nfc-market__source-image:hover img { opacity: .82; }
.nfc-market__source-link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 7px 10px;
  background: var(--market-navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
}
.nfc-market__source-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.nfc-market__source figcaption {
  padding-bottom: 4px;
  color: var(--market-muted);
  font-size: .78rem;
  line-height: 1.8;
}
.nfc-market__source figcaption::before {
  content: "PUBLIC SOURCE";
  display: block;
  margin-bottom: 6px;
  color: var(--market-blue);
  font: 700 .62rem/1 Arial, sans-serif;
  letter-spacing: .13em;
}
.nfc-market__source figcaption a {
  color: var(--market-blue) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nfc-market__source a:focus-visible {
  outline: 3px solid #f6b600;
  outline-offset: 3px;
}
.nfc-market__advice {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 4px solid var(--market-blue);
  background: var(--market-blue-soft);
}
.nfc-market__advice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--market-blue);
  color: #fff;
}
.nfc-market__advice-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.nfc-market__advice h4 {
  margin: 0 0 6px !important;
  color: var(--market-navy) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
}
.nfc-market__advice p {
  margin: 0 !important;
  color: var(--market-text) !important;
  font-size: .92rem !important;
  line-height: 1.85 !important;
}
@media (max-width: 768px) {
  .nfc-market { margin: 52px 0 60px; }
  .nfc-market .sp_only { display: block; }
  .nfc-market__header { padding: 34px 20px 37px; }
  .nfc-market__header::before { bottom: -13px; font-size: 3.8rem; }
  .nfc-market__title { font-size: 1.65rem !important; }
  .nfc-market__lead { font-size: .88rem !important; text-align: left; }
  .nfc-market__summary { grid-template-columns: 1fr; }
  .nfc-market__summary-item { padding: 14px 17px !important; border-right: 0; border-bottom: 1px solid var(--market-line); }
  .nfc-market__summary-item:last-child { border-bottom: 0; }
  .nfc-market__summary-num { width: 34px; font-size: 1.35rem; }
  .nfc-market__details { margin-top: 34px; }
  .nfc-market__item { grid-template-columns: 62px minmax(0, 1fr); }
  .nfc-market__index { padding: 28px 8px 28px 0; }
  .nfc-market__index span { font-size: .5rem; letter-spacing: .08em; }
  .nfc-market__index strong { font-size: 2rem; }
  .nfc-market__content { padding: 27px 0 34px 18px; }
  .nfc-market__item-title { margin-bottom: 18px !important; font-size: 1.15rem !important; }
  .nfc-market__content > p { font-size: .95rem !important; line-height: 1.9 !important; }
  .nfc-market__source { grid-template-columns: 1fr; gap: 13px; margin: 21px 0 !important; padding: 12px; }
  .nfc-market__source figcaption { padding: 0 2px 2px; }
  .nfc-market__advice { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; padding: 18px 15px; }
  .nfc-market__advice-icon { width: 34px; height: 34px; }
  .nfc-market__advice-icon svg { width: 19px; height: 19px; }
  .nfc-market__advice p { font-size: .88rem !important; }
}
@media (prefers-reduced-motion: reduce) {
  .nfc-market__source-image img { transition: none; }
}

/* TOPランキングセクションのトンマナに統一 */
.nfc-market {
  --market-navy: var(--dark-blue, #0a2540);
  --market-blue: var(--primary-blue, #0353b0);
  --market-blue-soft: var(--light-blue, #f0f5ff);
  --market-gold: var(--accent-gold, #fcdb0f);
  --market-red: var(--accent-red, #af0005);
  margin: 64px 0 80px;
  font-family: 'Noto Sans JP', sans-serif;
}
.nfc-market__header {
  overflow: visible;
  padding: 0;
  background: transparent;
  color: #333;
  text-align: center;
}
.nfc-market__header::before { display: none; }
.nfc-market__kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--market-blue);
  font-size: 1.05rem;
  font-weight: 700;
}
.nfc-market__kicker::before,
.nfc-market__kicker::after { display: none; }
.nfc-market__title {
  margin: 0 0 14px !important;
  color: #333 !important;
  font-size: 2rem !important;
  line-height: 1.45 !important;
}
.nfc-market__lead {
  max-width: 680px;
  color: #64748b !important;
  font-size: .95rem !important;
  line-height: 1.8 !important;
}
.nfc-market__summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px !important;
  padding: 18px !important;
  border: 0;
  border-radius: 12px;
  background: var(--market-blue-soft);
  box-shadow: none;
}
.nfc-market__summary-item {
  justify-content: center;
  gap: 10px;
  padding: 17px 12px !important;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(10,37,64,.05);
}
.nfc-market__summary-item:last-child { border-right: 1px solid #dbe5f1; }
.nfc-market__summary-num {
  color: var(--market-blue);
  font-size: 1.45rem;
  font-weight: 900;
}
.nfc-market__summary-item--alert .nfc-market__summary-num { color: var(--market-red); }
.nfc-market__summary-item--price .nfc-market__summary-num { color: var(--market-blue); }
.nfc-market__summary-text {
  color: #334155;
  font-size: .86rem;
}
.nfc-market__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
  border: 0;
}
.nfc-market__item {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(10,37,64,.06);
  flex-direction: column;
}
.nfc-market__item:first-child {
  grid-column: 1 / -1;
  border: 1px solid #dbe2ea;
  /* border-top: 3px solid var(--market-blue); */
  box-shadow: 0 3px 14px rgba(10,37,64,.06);
}
.nfc-market__item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-bottom: 1px solid #e6edf5;
  background: #fff;
  color: var(--market-navy);
}
.nfc-market__item:first-child .nfc-market__item-head {
  background: #fff;
}
.nfc-market__index {
  display: flex;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--market-blue-soft);
  color: var(--market-blue) !important;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nfc-market__index span {
  margin: 0 0 2px;
  color: var(--market-blue);
  font-size: .42rem;
  letter-spacing: .08em;
}
.nfc-market__index strong {
  font-size: 1.15rem;
  letter-spacing: -.04em;
}
.nfc-market__heading { min-width: 0; }
.nfc-market__label {
  margin-bottom: 3px;
  color: var(--market-blue) !important;
  font-size: .7rem;
  letter-spacing: .02em;
}
.nfc-market__item-title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--market-navy) !important;
  font-size: 1.12rem !important;
  line-height: 1.5 !important;
}
.nfc-market__content {
  flex: 1;
  padding: 21px 22px 24px;
}
.nfc-market__content > p {
  color: #475569 !important;
  font-size: .95rem !important;
  line-height: 1.85 !important;
}
.nfc-market__copy p {
  margin: 0 0 15px !important;
  color: #475569 !important;
  font-size: .95rem !important;
  line-height: 1.85 !important;
}
.nfc-market__copy p:last-child { margin-bottom: 0 !important; }
.nfc-market__item:first-child .nfc-market__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 22px 26px;
  align-items: start;
}
.nfc-market__content strong {
  color: var(--market-blue);
  background: none;
  font-weight: 800;
}
.nfc-market__source {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 12px;
  border: 1px solid #dbe5f1;
  border-radius: 12px;
  background: var(--market-blue-soft);
}
.nfc-market__source-image {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10,37,64,.08);
}
.nfc-market__source-link {
  min-height: 36px;
  border-radius: 6px;
  background: var(--market-blue);
}
.nfc-market__source figcaption::before { color: var(--market-blue); }
.nfc-market__advice {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 17px 18px;
  border: 1px solid #dbeafe;
  border-left: 4px solid var(--market-blue);
  border-radius: 12px;
  background: var(--market-blue-soft);
}
.nfc-market__advice-icon { background: var(--market-blue); }
.nfc-market__advice h4 { color: var(--market-navy) !important; }
.nfc-market__advice p { color: #475569 !important; }
@media (max-width: 768px) {
  .nfc-market { margin: 48px 0 60px; }
  .nfc-market__header { padding: 0; }
  .nfc-market__kicker { font-size: .9rem; }
  .nfc-market__title { font-size: 1.5rem !important; }
  .nfc-market__lead { padding: 0 4px; font-size: .875rem !important; text-align: center; }
  .nfc-market__summary {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px !important;
    padding: 12px !important;
  }
  .nfc-market__summary-item {
    justify-content: flex-start;
    padding: 13px 15px !important;
    border-bottom: 1px solid #dbe5f1;
  }
  .nfc-market__summary-num { width: 32px; font-size: 1.25rem; }
  .nfc-market__details { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
  .nfc-market__item:first-child { grid-column: auto; }
  .nfc-market__item-head { gap: 13px; padding: 16px 14px; }
  .nfc-market__index {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }
  .nfc-market__index span { font-size: .43rem; }
  .nfc-market__index strong { font-size: 1.25rem; }
  .nfc-market__label { font-size: .68rem; }
  .nfc-market__item-title { font-size: 1rem !important; }
  .nfc-market__content { padding: 20px 16px 23px; }
  .nfc-market__item:first-child .nfc-market__content { display: block; }
  .nfc-market__copy { margin-bottom: 18px; }
  .nfc-market__content > p { font-size: .9rem !important; }
  .nfc-market__copy p { font-size: .9rem !important; }
  .nfc-market__source { margin-bottom: 18px !important; padding: 12px; }
  .nfc-market__advice { padding: 16px 14px; }
}

/* =========================================================
   参考画像準拠：インフォグラフィック・カードデザイン（最終上書き）
   ========================================================= */
.nfc-market {
  --market-navy: var(--dark-blue, #0a2540);
  --market-blue: var(--primary-blue, #0353b0);
  --market-blue-soft: #eaf3ff;
  --market-gold: var(--accent-gold, #fcdb0f);
  --market-red: var(--accent-red, #af0005);
  margin: 64px 0 80px;
  padding: 32px 28px 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #d8e9ff 0%, #eaf3ff 190px, #eaf3ff 100%);
  font-family: 'Noto Sans JP', sans-serif;
}
/* --- Header --- */
.nfc-market__header {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 34px 36px 36px;
  border-radius: 16px;
  background: linear-gradient(120deg, #0a2540 0%, #0353b0 100%);
  color: #fff;
  text-align: left;
}
.nfc-market__header::before {
  content: "";
  display: block;
  position: absolute;
  right: -40px; top: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 62%);
  pointer-events: none;
}
.nfc-market__kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #bcdcff;
  font-size: 1rem;
  font-weight: 700;
}
.nfc-market__kicker::before,
.nfc-market__kicker::after { display: none; }
.nfc-market__title {
  position: relative;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: #fff !important;
  font-size: clamp(1.7rem, 4.4vw, 2.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: .02em;
}
.nfc-market__title::before,
.nfc-market__title::after { display: none !important; }
.nfc-market__lead {
  position: relative;
  max-width: 640px;
  margin: 0 !important;
  color: rgba(255,255,255,.85) !important;
  font-size: .95rem !important;
  line-height: 1.9 !important;
}
/* --- Summary（3ポイント早見） --- */
.nfc-market__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 30px !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  list-style: none !important;
}
.nfc-market__summary-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 !important;
  padding: 15px 18px !important;
  border: 1px solid #d3e3f7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(10,37,64,.06);
}
.nfc-market__summary-item:last-child { border-right: 1px solid #d3e3f7; }
.nfc-market__summary-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--market-navy);
  color: #fff !important;
  font: 800 1.15rem/1 Arial, sans-serif;
}
.nfc-market__summary-item--alert .nfc-market__summary-num { background: var(--market-red); }
.nfc-market__summary-item--price .nfc-market__summary-num { background: var(--market-blue); }
.nfc-market__summary-text {
  color: var(--market-navy);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.4;
}
/* --- Details（全幅カードを縦積み） --- */
.nfc-market__details {
  display: block;
  margin-top: 0;
  border: 0;
}
.nfc-market__item {
  display: block;
  margin: 0 0 22px;
  border: 1px solid #d3e3f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(10,37,64,.08);
  overflow: hidden;
}
.nfc-market__item:last-child { margin-bottom: 0; }
.nfc-market__item:first-child { grid-column: auto; }
/* Head + navy badge */
.nfc-market__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px 0;
  border-bottom: 0;
  background: transparent;
}
.nfc-market__index {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: auto; height: auto;
  padding: 9px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--market-navy);
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(10,37,64,.26);
}
.nfc-market__item--alert .nfc-market__index { background: var(--market-red); }
.nfc-market__item--price .nfc-market__index { background: var(--market-blue); }
.nfc-market__index span {
  margin: 0;
  color: #fff;
  font: 700 .56rem/1 Arial, sans-serif;
  letter-spacing: .16em;
}
.nfc-market__index strong {
  color: #fff;
  font: 800 1.5rem/1 Arial, sans-serif;
  letter-spacing: -.03em;
}
.nfc-market__heading { min-width: 0; }
.nfc-market__label { display: none !important; }
.nfc-market__item-title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--market-navy) !important;
  font-size: clamp(1.3rem, 3.2vw, 1.68rem) !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
}
/* Content */
.nfc-market__content {
  padding: 16px 26px 28px;
}
.nfc-market__content > p,
.nfc-market__copy p {
  margin: 0 0 14px !important;
  color: #46586f !important;
  font-size: 1rem !important;
  line-height: 1.95 !important;
}
.nfc-market__content > p:last-child,
.nfc-market__copy p:last-child { margin-bottom: 0 !important; }
.nfc-market__content strong {
  color: var(--market-red);
  font-weight: 800;
  background: none;
}
/* POINT01：本文＋出典（左）／対策ボックス（右） */
.nfc-market .nfc-market__item--alert .nfc-market__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  grid-template-rows: auto 1fr;
  gap: 18px 26px;
  align-items: start;
}
.nfc-market__item--alert .nfc-market__copy { grid-column: 1; grid-row: 1; }
.nfc-market__item--alert .nfc-market__source { grid-column: 2; grid-row: 1 / span 2; align-self: start; }
.nfc-market__item--alert .nfc-market__advice { grid-column: 1; grid-row: 2; align-self: start; }
/* 出典カード */
.nfc-market__source {
  align-items: center;
  gap: 13px;
  margin: 0 !important;
  padding: 12px;
  border: 1px solid #d3e3f7;
  border-radius: 12px;
  background: #f5f9ff;
}
.nfc-market__source-image {
  position: relative;
  flex: 0 0 82px;
  width: 82px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid #d8dee7;
  border-radius: 8px;
  background: #fff;
}
.nfc-market__source-image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: top;
}
.nfc-market__source-link {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 24px;
  padding: 4px;
  background: var(--market-navy);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
}
.nfc-market__source-link svg {
  width: 11px; height: 11px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.nfc-market__source figcaption {
  color: #5b6b80;
  font-size: .82rem;
  line-height: 1.7;
}
.nfc-market__source figcaption::before {
  content: "参考資料";
  display: block;
  margin-bottom: 3px;
  color: var(--market-blue);
  font: 700 .6rem/1 Arial, sans-serif;
  letter-spacing: .1em;
}
.nfc-market__source figcaption a {
  color: var(--market-blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* 対策ボックス（チェックリスト） */
.nfc-market__advice {
  grid-column: 2;
  align-items: start;
  align-content: start;
  margin: 0 !important;
  padding: 20px 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #e9f3ff, #d9eaff);
  box-shadow: inset 0 0 0 1px #c4dcf6;
}
.nfc-market__advice-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--market-blue);
  color: #fff;
}
.nfc-market__advice-icon svg { width: 19px; height: 19px; }
.nfc-market__advice h4 {
  margin: 0 0 10px !important;
  color: var(--market-navy) !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
}
.nfc-market__checks {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.nfc-market__checks li {
  position: relative;
  margin: 0 0 9px !important;
  padding-left: 27px !important;
  color: #40546d;
  font-size: .9rem;
  line-height: 1.7;
  list-style: none !important;
}
.nfc-market__checks li:last-child { margin-bottom: 0 !important; }
.nfc-market__checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .1rem;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--market-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.nfc-market__checks strong {
  color: var(--market-navy);
  background: none;
  font-weight: 800;
}
/* POINT02/03：本文（左）＋ビジュアル（右） */
.nfc-market .nfc-market__item--price .nfc-market__content,
.nfc-market .nfc-market__item:last-child .nfc-market__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, .9fr);
  gap: 18px 28px;
  align-items: center;
}
.nfc-market__visual { margin: 0 !important; }
.nfc-market__visual img {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 12px;
}
/* サービスアイコン */
.nfc-market__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.nfc-market__services li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
  list-style: none !important;
}
.nfc-market__service-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--market-blue);
  box-shadow: inset 0 0 0 2px #cfe1fb;
}
.nfc-market__service-ico svg { width: 38px; height: 38px; }
.nfc-market__service-name {
  color: var(--market-navy);
  font-size: .92rem;
  font-weight: 800;
}
/* --- Responsive --- */
@media (max-width: 768px) {
  .nfc-market { margin: 44px 0 56px; padding: 18px 12px 26px; border-radius: 16px; }
  .nfc-market__header { margin-bottom: 22px; padding: 26px 18px 28px; text-align: center; }
  .nfc-market__header::before { right: -60px; top: -80px; }
  .nfc-market__kicker { font-size: .9rem; }
  .nfc-market__title { font-size: 1.5rem !important; }
  .nfc-market__lead { font-size: .87rem !important; }
  .nfc-market__summary { grid-template-columns: 1fr; gap: 10px; margin-bottom: 22px !important; }
  .nfc-market__summary-item { padding: 13px 15px !important; }
  .nfc-market__item { margin-bottom: 18px; }
  .nfc-market__item-head { gap: 13px; padding: 18px 15px 0; }
  .nfc-market__index { padding: 7px 13px; }
  .nfc-market__index strong { font-size: 1.32rem; }
  .nfc-market__item-title { font-size: 1.16rem !important; }
  .nfc-market__content { padding: 14px 15px 22px; }
  .nfc-market .nfc-market__item--alert .nfc-market__content { grid-template-columns: 1fr; grid-template-rows: auto; gap: 15px; }
  .nfc-market__item--alert .nfc-market__copy,
  .nfc-market__item--alert .nfc-market__source,
  .nfc-market__item--alert .nfc-market__advice { grid-column: 1; grid-row: auto; }
  .nfc-market .nfc-market__item--price .nfc-market__content,
  .nfc-market .nfc-market__item:last-child .nfc-market__content { grid-template-columns: 1fr; gap: 16px; }
  .nfc-market__visual { max-width: 420px; margin: 2px auto 0 !important; }
  .nfc-market__services { max-width: 340px; margin: 2px auto 0 !important; }
  .nfc-market__service-ico { width: 66px; height: 66px; }
  .nfc-market__service-ico svg { width: 33px; height: 33px; }
  .nfc-market__advice { padding: 16px 15px; }
  .nfc-market__content > p, .nfc-market__copy p { font-size: .92rem !important; }
}

/* =========================================================
   参考画像準拠：生成イラストの組み込み（ヒーロー／女性／マップ／サービス）
   ========================================================= */
/* Header：横浜ヒーロー写真＋左に白グラデ＋ダーク見出し */
.nfc-market__header {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 52%, rgba(255,255,255,.5) 100%),
    url(../img/kanagawa/hero.png) right bottom / cover no-repeat;
  color: #0a2540;
}
.nfc-market__header::before { display: none !important; }
.nfc-market__kicker { color: var(--market-blue); }
.nfc-market__title {
  color: #0a2540 !important;
  text-shadow: 0 1px 2px rgba(255,255,255,.55);
}
.nfc-market__lead {
  max-width: 430px;
  color: #3f5b7a !important;
  text-shadow: 0 1px 2px rgba(255,255,255,.5);
}
/* POINTバッジは参考画像に合わせ3つともネイビーで統一 */
.nfc-market__item--alert .nfc-market__index,
.nfc-market__item--price .nfc-market__index { background: var(--market-navy); }
/* POINT01：女性イラストを右下に重ねる */
.nfc-market .nfc-market__item--alert .nfc-market__content { position: relative; }
.nfc-market__item--alert .nfc-market__advice { padding-bottom: 58px; }
.nfc-market__woman {
  position: absolute;
  left: 4px;
  bottom: -15px;
  width: 132px;
  height: auto !important;
  margin: 0 !important;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 4px 8px rgba(10,37,64,.14));
}
/* POINT03：サービスアイコンを生成画像に（CSS円は解除、白背景はカードに溶ける） */
.nfc-market__service-ico {
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.nfc-market__service-ico img {
  width: 108px;
  height: 108px;
  margin: 0 !important;
}
/* POINT02：マップ画像 */
.nfc-market__visual--map img { background: #fff; }
@media (max-width: 768px) {
  .nfc-market__header {
    min-height: 172px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 52%, rgba(255,255,255,.5) 100%),
      url(../img/kanagawa/hero.png) center bottom / cover no-repeat;
    text-align: left;
  }
  .nfc-market__item--alert .nfc-market__advice { padding-bottom: 16px; }
  .nfc-market__woman {
    position: absolute;
    left: -5px;
    bottom: -15px;
    width: 102px;
    height: auto !important;
    margin: 0 !important;
    pointer-events: none;
    z-index: 4;
    filter: drop-shadow(0 4px 8px rgba(10, 37, 64, .14));
  }
  .nfc-market__service-ico img { width: 88px; height: 88px; }
}

/* 優良業者の選び方・自治体比較（TOPランキング共通トーン） */
.nfc-criteria,
.nfc-compare {
  --nfc-blue: var(--primary-blue, #0353b0);
  --nfc-navy: var(--dark-blue, #0a2540);
  --nfc-light: var(--light-blue, #f0f5ff);
  --nfc-gold: var(--accent-gold, #fcdb0f);
  --nfc-red: var(--accent-red, #af0005);
  --nfc-green: #2f8b52;
  --nfc-green-dark: #256b3f;
  --nfc-mikan: #ec6a1a;
  --nfc-line: #dbe2ea;
  margin: 76px 0 82px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #475569;
}
.nfc-criteria *,
.nfc-criteria *::before,
.nfc-criteria *::after,
.nfc-compare *,
.nfc-compare *::before,
.nfc-compare *::after { box-sizing: border-box; }
.nfc-criteria .sp_only { display: none; }
.nfc-article-heading {
  margin-bottom: 30px;
  text-align: center;
}
.nfc-article-heading__sub {
  display: block;
  margin-bottom: 5px;
  color: var(--nfc-blue);
  font-size: 1.05rem;
  font-weight: 700;
}
.nfc-article-heading__title {
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: #333 !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  text-align: center !important;
}
.nfc-article-heading__title::before,
.nfc-article-heading__title::after { display: none !important; }
.nfc-article-heading__lead {
  max-width: 720px;
  margin: 0 auto !important;
  color: #64748b !important;
  font-size: .95rem !important;
  line-height: 1.8 !important;
}

/* 4つの選定基準 */
.nfc-crit { margin: 0; }
.nfc-crit__eyebrow {
  display: block;
  margin: 0;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, var(--nfc-navy), var(--nfc-blue));
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
}
.nfc-crit__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid #dbe5f1;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: var(--nfc-light);
  list-style: none !important;
}
.nfc-crit__row {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  margin: 0 !important;
  padding: 14px 15px !important;
  border: 1px solid #dbe5f1 !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(10,37,64,.04);
}
.nfc-crit__check {
  display: flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nfc-blue);
  color: #fff;
}
.nfc-crit__check svg { display: block; width: 17px; height: 17px; }
.nfc-crit__rlabel {
  color: #334155;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
}
.nfc-crit__note {
  margin: 20px 0 34px !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: none;
  color: #475569 !important;
  font-size: .93rem !important;
  line-height: 1.85 !important;
}
.nfc-crit__note b { color: var(--nfc-navy); font-weight: 800; }
.nfc-crit__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  border: 0;
}
.nfc-crit__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--nfc-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10,37,64,.07);
}
.nfc-crit__item:first-child {
  border: 2px solid var(--nfc-blue);
  box-shadow: 0 8px 30px rgba(3,83,176,.10);
}
.nfc-crit__index {
  display: flex;
  min-height: 0;
  padding: 13px 18px;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  background: var(--nfc-navy);
  color: #fff;
}
.nfc-crit__item:first-child .nfc-crit__index {
  background: linear-gradient(135deg, var(--nfc-navy), var(--nfc-blue));
}
.nfc-crit__ilabel {
  display: block;
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.nfc-crit__inum {
  display: block;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.nfc-crit__body { min-width: 0; padding: 20px 20px 24px; }
.nfc-crit__figure {
  overflow: hidden;
  width: 100%;
  margin: 0 0 20px !important;
  border-radius: 8px;
  aspect-ratio: 16/9;
  background: #eef2f6;
}
.nfc-crit__figure img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
}
.nfc-crit__titlerow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}
.nfc-crit__title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--nfc-navy) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}
.nfc-crit__title::before,
.nfc-crit__title::after { display: none !important; }
.nfc-crit__tag {
  display: inline-block;
  padding: 4px 9px;
  border: 0;
  border-radius: 6px;
  background: var(--nfc-gold);
  color: #5b4a00;
  font-size: .68rem;
  font-weight: 900;
  white-space: nowrap;
}
.nfc-crit__body p {
  margin: 0 0 14px !important;
  color: #475569 !important;
  font-size: .95rem !important;
  line-height: 1.9 !important;
}
.nfc-crit__body p:last-child { margin-bottom: 0 !important; }
.nfc-crit__body .keiko_blue { color: var(--nfc-blue); font-weight: 700; background: none; }

/* 自治体と不用品回収業者の比較 */
.nfc-compare__visual {
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto 28px !important;
  border: 1px solid var(--nfc-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10,37,64,.07);
}
.nfc-compare__visual img {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}
.nfc-vs { margin: 0; color: #475569; }
.nfc-vs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: stretch;
}
.nfc-vs__panel {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 0 22px 24px;
  border: 1px solid var(--nfc-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10,37,64,.07);
  flex-direction: column;
}
.nfc-vs__panel--pick {
  border: 2px solid var(--nfc-green);
  box-shadow: 0 8px 30px rgba(47,139,82,.12);
}
.nfc-vs__panel--pick::before { display: none; }
.nfc-vs__cat {
  display: block;
  align-self: stretch;
  margin: 0 -22px 18px;
  padding: 13px 14px;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--nfc-navy) !important;
  color: #fff !important;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
}
.nfc-vs__panel--pick .nfc-vs__cat {
  background: linear-gradient(135deg, var(--nfc-green-dark), var(--nfc-green)) !important;
}
.nfc-vs__name {
  margin: 0 0 5px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--nfc-navy) !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: center;
}
.nfc-vs__panel--pick .nfc-vs__name { color: var(--nfc-green-dark) !important; }
.nfc-vs__name::before,
.nfc-vs__name::after { display: none !important; }
.nfc-vs__for {
  min-height: 2.6em;
  margin: 0 0 14px !important;
  color: #64748b !important;
  font-size: .8rem !important;
  line-height: 1.6 !important;
  text-align: center;
}
.nfc-vs__fig {
  margin: 0 0 12px !important;
  padding: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fafd, #eef3f8);
  overflow: hidden;
}
.nfc-vs__panel--pick .nfc-vs__fig {
  background: linear-gradient(180deg, #f4faf6, #eaf4ee);
}
.nfc-vs__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
.nfc-vs__list {
  margin: 0 !important;
  padding: 2px 0 0 !important;
  border-top: 1px solid var(--nfc-line);
  list-style: none !important;
}
.nfc-vs__li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 0 !important;
  padding: 13px 2px !important;
  color: #334155;
  font-size: .88rem;
  line-height: 1.6;
}
.nfc-vs__li + .nfc-vs__li { border-top: 1px solid #edf1f5; }
.nfc-vs__mk {
  display: flex;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}
.nfc-vs__mk--o { color: var(--nfc-blue); }
.nfc-vs__mk--w { color: var(--nfc-blue); }
.nfc-vs__panel--pick .nfc-vs__mk--o { color: var(--nfc-green); }
.nfc-vs__txt { display: block; }
.nfc-vs__h {
  display: block;
  margin-bottom: 3px;
  color: var(--nfc-blue);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.5;
}
.nfc-vs__panel--pick .nfc-vs__h { color: var(--nfc-green-dark); }
.nfc-vs__d {
  display: block;
  color: #64748b;
  font-size: .8rem;
  line-height: 1.65;
}
.nfc-vs__vs { display: flex; align-items: center; justify-content: center; }
.nfc-vs__vs span {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--nfc-gold);
  border-radius: 50%;
  background: var(--nfc-navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10,37,64,.2);
  font-size: .86rem;
  font-style: italic;
  font-weight: 900;
}
.nfc-vs__note {
  margin: 22px 0 0 !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: none;
  color: #475569 !important;
  font-size: .93rem !important;
  line-height: 1.85 !important;
}
.nfc-vs__note b { color: var(--nfc-navy); font-weight: 800; }
.nfc-vs__closing {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 25px 150px 33px 26px;
  border: 1px solid #f0e2b0;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffdf5, #fff8e6);
  box-shadow: 0 4px 20px rgba(191,162,60,.08);
}
.nfc-vs__closing-icon {
  display: flex;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff4cc;
  color: #f2b705;
}
.nfc-vs__closing-icon svg { width: 30px; height: 30px; }
.nfc-vs__closing-txt {
  flex: 1 1 auto;
  margin: 0 !important;
  color: #4b5563 !important;
  font-size: .95rem !important;
  line-height: 1.9 !important;
}
.nfc-vs__closing-txt b { color: var(--nfc-navy); font-weight: 800; }
.nfc-vs__closing-em { color: var(--nfc-mikan) !important; }
.nfc-vs__closing-woman {
  position: absolute;
  right: 18px;
  bottom: -9px;
  width: 120px;
  height: auto;
  z-index: 3;
}
@media (max-width: 768px) {
  .nfc-criteria,
  .nfc-compare { margin: 56px 0 64px; }
  .nfc-criteria .sp_only { display: block; }
  .nfc-article-heading { margin-bottom: 24px; }
  .nfc-article-heading__sub { font-size: .9rem; }
  .nfc-article-heading__title { font-size: 1.45rem !important; }
  .nfc-article-heading__lead { padding: 0 4px; font-size: .875rem !important; }
  .nfc-crit__eyebrow { padding: 13px 10px; font-size: .7rem; }
  .nfc-crit__list { grid-template-columns: 1fr; gap: 8px; padding: 12px !important; }
  .nfc-crit__row { padding: 12px !important; }
  .nfc-crit__rlabel { font-size: .85rem; }
  .nfc-crit__note { margin-bottom: 26px !important; padding: 0 !important; font-size: .88rem !important; }
  .nfc-crit__items { grid-template-columns: 1fr; gap: 22px; }
  .nfc-crit__item { grid-template-columns: 1fr; }
  .nfc-crit__index {
    min-height: 0;
    padding: 12px 16px;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;
  }
  .nfc-crit__ilabel { margin: 0; color: rgba(255,255,255,.8); }
  .nfc-crit__inum { font-size: 1.2rem; }
  .nfc-crit__body { padding: 16px 14px 20px; }
  .nfc-crit__figure { margin-bottom: 16px !important; aspect-ratio: 16/9; }
  .nfc-crit__title { font-size: 1.08rem !important; }
  .nfc-crit__body p { font-size: .9rem !important; }
  .nfc-compare__visual { margin-bottom: 22px !important; }
  .nfc-vs__grid { grid-template-columns: 1fr; }
  .nfc-vs__vs { padding: 10px 0; }
  .nfc-vs__vs span { width: 42px; height: 42px; }
  .nfc-vs__panel { padding: 0 16px 18px; }
  .nfc-vs__cat { margin: 0 -16px 15px; }
  .nfc-vs__name { font-size: 1.15rem !important; }
  .nfc-vs__for { min-height: 0; }
  .nfc-vs__fig { margin-bottom: 10px !important; }
  .nfc-vs__li { font-size: .86rem; }
  .nfc-vs__h { font-size: .9rem; }
  .nfc-vs__d { font-size: .78rem; }
  .nfc-vs__note { padding: 0 !important; font-size: .88rem !important; }
  .nfc-vs__closing {
    /* flex-wrap: wrap; */
    gap: 2px 7px;
    padding: 18px 18px 12px 16px;
  }
  .nfc-vs__closing-icon { width: 44px; height: 44px; }
  .nfc-vs__closing-icon svg { width: 24px; height: 24px; }
  .nfc-vs__closing-txt {
    order: 3;
    flex: 1 1 100%;
    font-size: .87rem !important;
    line-height: 1.8 !important;
  }
  .nfc-vs__closing-woman {
    right: 6px;
    width: 78px;
  }
}

/* =========================================================
   参考カンプ準拠：優良な不用品回収業者の特徴（CHECK POINTS）最終上書き
   ========================================================= */
/* Header：横浜ヒーロー背景＋左寄せ＋「特徴」を青く */
.nfc-criteria .nfc-article-heading {
  margin-bottom: 30px;
  text-align: center;
}
.nfc-criteria .nfc-crit-titlerow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  margin-bottom: 14px;
}
.nfc-criteria .nfc-article-heading__sub {
  margin: 0;
  color: var(--nfc-blue);
  white-space: nowrap;
}
.nfc-criteria .nfc-article-heading__title {
  margin: 0 !important;
  text-align: center !important;
  color: var(--nfc-navy) !important;
  font-size: clamp(1.7rem, 4.2vw, 2.4rem) !important;
  font-weight: 900 !important;
}
.nfc-crit-accent { color: var(--nfc-blue) !important; }
.nfc-criteria .nfc-article-heading__lead {
  max-width: 620px;
  margin: 0 auto !important;
  color: #46586f !important;
}
/* CHECK POINTS 見出し＋ドット */
.nfc-crit { margin: 0; }
.nfc-crit__cp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin: 6px 0 30px;
}
.nfc-crit__cp-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--nfc-navy);
  font: 800 1.35rem/1 Arial, sans-serif;
  letter-spacing: .14em;
}
.nfc-crit__cp-title::before,
.nfc-crit__cp-title::after {
  content: "";
  width: 48px; height: 2px;
  background: var(--nfc-blue);
}
.nfc-crit__cp-dots { display: flex; gap: 6px; }
.nfc-crit__cp-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nfc-blue);
  opacity: .55;
}
/* 特徴カード（全幅・縦積み・3カラム） */
.nfc-crit__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 0;
}
.nfc-crit__item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(280px, 40%);
  grid-template-rows: none;
  align-items: start;
  gap: 4px 26px;
  overflow: visible;
  padding: 26px 30px;
  border: 1px solid var(--nfc-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(10,37,64,.08);
}
.nfc-crit__item:first-child {
  border: 1px solid var(--nfc-line);
  box-shadow: 0 8px 26px rgba(10,37,64,.08);
}
/* 特徴バッジ（丸） */
.nfc-crit__index {
  grid-column: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 4px 0 0;
  background: none;
  color: var(--nfc-navy);
}
.nfc-crit__item:first-child .nfc-crit__index { background: none; }
.nfc-crit__ilabel {
  color: var(--nfc-navy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.nfc-crit__inum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--nfc-navy);
  color: #fff;
  font: 800 1.5rem/1 Arial, sans-serif;
  box-shadow: 0 6px 14px rgba(10,37,64,.25);
}
/* 中央カラム：タイトル＋本文 */
.nfc-crit__main { grid-column: 2; min-width: 0; align-self: start; }
.nfc-crit__titlerow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.nfc-crit__title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--nfc-navy) !important;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
}
.nfc-crit__title::before,
.nfc-crit__title::after { display: none !important; }
.nfc-crit__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 0;
  border-radius: 6px;
  background: var(--nfc-gold);
  color: #5b4a00;
  font-size: .7rem;
  font-weight: 900;
  white-space: nowrap;
}
.nfc-crit__text p {
  margin: 0 0 12px !important;
  color: #475569 !important;
  font-size: .95rem !important;
  line-height: 1.9 !important;
}
.nfc-crit__text p:last-child { margin-bottom: 0 !important; }
.nfc-crit__text .keiko_blue { color: var(--nfc-blue); font-weight: 700; background: none; }
/* 右カラム：イラスト */
.nfc-crit__figure {
  grid-column: 3;
  align-self: center;
  overflow: visible;
  width: 100%;
  margin: 0 !important;
  border-radius: 0;
  aspect-ratio: auto;
  background: none;
}
.nfc-crit__figure img {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain;
}
/* 締めのコールアウト */
.nfc-crit__closing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding: 22px 28px;
  border: 1px solid #d3e3f7;
  border-radius: 16px;
  background: var(--nfc-light);
}
.nfc-crit__closing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--nfc-blue);
  box-shadow: 0 3px 10px rgba(10,37,64,.12);
}
.nfc-crit__closing-icon svg { width: 27px; height: 27px; }
.nfc-crit__closing p {
  margin: 0 !important;
  color: var(--nfc-navy) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
}
.nfc-crit__closing b { color: var(--nfc-blue); font-weight: 900; }
@media (max-width: 768px) {
  .nfc-criteria .nfc-article-heading { text-align: center; }
  .nfc-criteria .nfc-article-heading__title { text-align: center !important; font-size: 1.5rem !important; }
  .nfc-criteria .nfc-article-heading__lead { max-width: none; text-align: center; }
  .nfc-crit__cp { margin: 4px 0 24px; }
  .nfc-crit__cp-title { font-size: 1.1rem; }
  .nfc-crit__cp-title::before,
  .nfc-crit__cp-title::after { width: 30px; }
  .nfc-crit__items { gap: 16px; }
  .nfc-crit__item { grid-template-columns: 1fr; gap: 0; padding: 20px 16px; }
  .nfc-crit__index {
    grid-column: 1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 0;
  }
  .nfc-crit__inum { width: 44px; height: 44px; font-size: 1.2rem; }
  .nfc-crit__main { grid-column: 1; }
  .nfc-crit__title { font-size: 1.12rem !important; }
  .nfc-crit__text p { font-size: .9rem !important; }
  .nfc-crit__figure {
    grid-column: 1;
    align-self: stretch;
    max-width: 360px;
    margin: 16px auto 0 !important;
  }
  .nfc-crit__closing { flex-direction: column; gap: 12px; padding: 18px 16px; text-align: center; }
  .nfc-crit__closing p { font-size: .98rem !important; }
}

/* 早見表・比較表のロゴから各業者カードへジャンプ時、固定ナビ分のオフセット */
.ranking-card{scroll-margin-top:70px}
