@charset "UTF-8";
/* ========================================
 * COLORS
 * ====================================== */
/* ========================================
 * BACKGROUND
 * ====================================== */
/* ========================================
 * TEXT
 * ====================================== */
/* ========================================
 * BORDER
 * ====================================== */
/* ========================================
 * SHADOW
 * ====================================== */
/* ========================================
* FONT SIZE
* ====================================== */
/* ========================================
* LINE HEIGHT
* ====================================== */
/* ========================================
* FONT WEIGHT
* ====================================== */
/* ========================================
 * RADIUS
 * ====================================== */
/* ========================================
 * SPACING
 * ====================================== */
/* ========================================
 * TRANSITION
 * ====================================== */
/* ========================================
 * LAYOUT
 * ====================================== */
/* ========================================
 * Z-INDEX
 * ====================================== */
/* ========================================
 * MEDIA SIZE
 * ====================================== */
/* =========================================================================
 * /css/gaming/compact.css — /gaming/compact.php 専用追加スタイル
 *
 * 【スコープ】
 *   .gpc-compact は <main class="dark-mode"> > <div class="container gpc-unique gpc-compact"> に付与。
 *   .gpc-unique と併用し、unique.css のフレームワークを流用。
 *
 * 【前提】
 *   unique.php と同じ CSS スタック読み込む前提。
 *   unique.css を編集せずに、compact 専用要素だけ本ファイルで追記する。
 * =========================================================================*/
/* =====================================================================
 * ファーストビュー拡張（数値オーバーレイ・装飾要素）
 * ===================================================================*/
.gpc-compact {
  --c-grid-line: rgba(91, 209, 255, 0.10);
}
.gpc-compact .gpc-sub-hero {
  background: linear-gradient(135deg, rgba(91, 209, 255, 0.12) 0%, rgba(255, 176, 63, 0.05) 50%, transparent 100%), linear-gradient(180deg, #0f1c33 0%, #0a1320 100%);
}
.gpc-compact .gpc-sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--c-grid-line) 1px, transparent 1px), linear-gradient(to bottom, var(--c-grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* hero内の数値スペック・チップ */
.c-hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  list-style: none;
}
.c-hero-stat {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 110px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(91, 209, 255, 0.22);
  backdrop-filter: blur(4px);
}
.c-hero-stat__value {
  display: block;
  color: #f2f6fd;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #b8e9ff 0%, #5bd1ff 50%, #ffb03f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.c-hero-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #8a9bb5;
  text-transform: uppercase;
}
.c-hero {
  /* ヒーロー画像右下に貼り付ける性能バッジ */
}
.c-hero__visual {
  position: relative;
}
.c-hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 20, 34, 0.72);
  border: 1px solid rgba(91, 209, 255, 0.4);
  backdrop-filter: blur(6px);
  color: #f2f6fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.c-hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5bd1ff;
  -webkit-box-shadow: 0 0 12px rgba(91, 209, 255, 0.7);
          box-shadow: 0 0 12px rgba(91, 209, 255, 0.7);
}

/* =====================================================================
 * Sec.2-1 メリット / デメリット表（compact固有）
 * ===================================================================*/
.c-prosncons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.c-prosncons__col {
  padding: 22px 24px;
  border: 1px solid #2c4769;
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(#131e30), to(#0c1726));
  background: linear-gradient(180deg, #131e30 0%, #0c1726 100%);
}
.c-prosncons__col--pros {
  border-color: rgba(91, 209, 255, 0.35);
  -webkit-box-shadow: inset 0 0 0 1px rgba(91, 209, 255, 0.05);
          box-shadow: inset 0 0 0 1px rgba(91, 209, 255, 0.05);
}
.c-prosncons__col--pros .c-prosncons__head {
  color: #5bd1ff;
}
.c-prosncons__col--pros .c-prosncons__item::before {
  background: #5bd1ff;
  -webkit-box-shadow: 0 0 8px rgba(91, 209, 255, 0.5);
          box-shadow: 0 0 8px rgba(91, 209, 255, 0.5);
}
.c-prosncons__col--cons {
  border-color: rgba(255, 176, 63, 0.32);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 176, 63, 0.05);
          box-shadow: inset 0 0 0 1px rgba(255, 176, 63, 0.05);
}
.c-prosncons__col--cons .c-prosncons__head {
  color: #ffb03f;
}
.c-prosncons__col--cons .c-prosncons__item::before {
  background: #ffb03f;
  -webkit-box-shadow: 0 0 8px rgba(255, 176, 63, 0.4);
          box-shadow: 0 0 8px rgba(255, 176, 63, 0.4);
}
.c-prosncons__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.c-prosncons__head svg {
  width: 18px;
  height: 18px;
}
.c-prosncons__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-prosncons__item {
  display: grid;
  grid-template-columns: 14px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(91, 209, 255, 0.18);
  font-size: 15px;
  line-height: 1.7;
  color: #c7d3e6;
}
.c-prosncons__item:first-child {
  padding-top: 0;
  border-top: 0;
}
.c-prosncons__item::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
}
.c-prosncons__item strong {
  margin-right: 6px;
  font-weight: 700;
  color: #f2f6fd;
}

/* =====================================================================
 * Sec.3 診断／チェックリスト（compact固有）
 * ===================================================================*/
.c-diag {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-diag__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.c-diag__result {
  padding: 28px;
  border-radius: 14px;
  background: radial-gradient(60% 80% at 30% 0%, rgba(91, 209, 255, 0.16), transparent 70%), -webkit-gradient(linear, left top, left bottom, from(#131e30), to(#0a1320));
  background: radial-gradient(60% 80% at 30% 0%, rgba(91, 209, 255, 0.16), transparent 70%), linear-gradient(180deg, #131e30 0%, #0a1320 100%);
  border: 1px solid #2c4769;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-diag__result-eyebrow {
  color: #5bd1ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.c-diag__result-title {
  margin: 0 0 14px;
  padding: 0;
  background: none;
  color: #f2f6fd;
  font-size: 22px;
  font-weight: 800;
}
.c-diag__result-desc {
  font-size: 15px;
  margin: 0 0 18px;
}
.c-diag__score {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(91, 209, 255, 0.1);
  border: 1px solid rgba(91, 209, 255, 0.4);
  color: #5bd1ff;
  font-size: 13px;
  font-weight: 700;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.c-diag__score.is-recommend {
  background: rgba(255, 175, 63, 0.1);
  border: 1px solid rgba(255, 176, 63, 0.4);
  color: #ffb03f;
}
.c-diag__score strong {
  font-size: 22px;
  color: #f2f6fd;
  font-weight: 800;
}
.c-diag__score #message {
  font-size: 22px;
  font-weight: 800;
}
.c-diag__item {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid #2c4769;
  color: #c7d3e6;
  font-size: 15px;
  line-height: 1.7;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-diag__item:hover {
  background: rgba(91, 209, 255, 0.07);
  border-color: rgba(91, 209, 255, 0.5);
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.c-diag__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
}
.c-diag__item label input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
}
.c-diag__item label input[type=checkbox] + i {
  margin-right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(91, 209, 255, 0.14);
  border: 1px solid rgba(91, 209, 255, 0.5);
  color: #5bd1ff;
}

/* =====================================================================
 * Sec.4 3 スタイル比較／縦カード（compact固有）
 * ===================================================================*/
.c-styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.c-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#131e30), to(#0b1422));
  background: linear-gradient(180deg, #131e30 0%, #0b1422 100%);
  border: 1px solid #2c4769;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-style:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(91, 209, 255, 0.5);
  -webkit-box-shadow: 0 18px 36px rgba(91, 209, 255, 0.2), 0 0 24px rgba(91, 209, 255, 0.15);
          box-shadow: 0 18px 36px rgba(91, 209, 255, 0.2), 0 0 24px rgba(91, 209, 255, 0.15);
}
.c-style__img {
  position: relative;
  aspect-ratio: 1/1;
  background: #1a2740;
  overflow: hidden;
}
.c-style__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-style__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), to(rgba(11, 20, 34, 0.65)));
  background: linear-gradient(180deg, transparent 55%, rgba(11, 20, 34, 0.65) 100%);
  pointer-events: none;
}
.c-style__index {
  position: absolute;
  left: 16px;
  top: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(11, 20, 34, 0.72);
  border: 1px solid rgba(91, 209, 255, 0.4);
  color: #5bd1ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  backdrop-filter: blur(4px);
}
.c-style__body {
  padding: 22px 22px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.c-style__name {
  margin: 0;
  padding: 0;
  background: none;
  color: #f2f6fd;
  font-size: 22px;
  font-weight: 800;
}
.c-style__catch {
  color: #5bd1ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}
.c-style__desc {
  color: #c7d3e6;
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}
.c-style__uses {
  list-style: none;
  padding: 14px 0 0;
  margin: 6px 0 0;
  border-top: 1px solid rgba(91, 209, 255, 0.18);
  display: grid;
  gap: 8px;
}
.c-style__uses li {
  color: #8a9bb5;
  font-size: 13px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.c-style__uses li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 1px;
  background: #5bd1ff;
}

/* =====================================================================
 * Sec.5 デザインパターン（横長カード、3 つ）（compact固有）
 * ===================================================================*/
.c-designs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.c-design {
  padding: 22px;
  border: 1px solid #2c4769;
  border-radius: 14px;
  background: radial-gradient(80% 80% at 100% 0%, rgba(91, 209, 255, 0.1), transparent 65%), -webkit-gradient(linear, left top, left bottom, from(#182843), to(#0d1a2e));
  background: radial-gradient(80% 80% at 100% 0%, rgba(91, 209, 255, 0.1), transparent 65%), linear-gradient(180deg, #182843 0%, #0d1a2e 100%);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}
.c-design:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(91, 209, 255, 0.5);
}
.c-design__chip {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 176, 63, 0.4);
  border-radius: 999px;
  background: rgba(255, 176, 63, 0.14);
  color: #ffb03f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.c-design__title {
  margin: 0 0 8px;
  padding: 0;
  background: none;
  color: #f2f6fd;
  font-size: 18px;
  font-weight: 700;
}
.c-design__catch {
  margin: 0 0 10px;
  color: #5bd1ff;
  font-size: 13px;
  font-weight: 700;
}
.c-design__desc {
  margin: 0 0 14px;
  color: #c7d3e6;
  font-size: 13px;
  line-height: 1.85;
}
.c-design__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-design__tags li {
  padding: 4px 10px;
  border: 1px solid #2c4769;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #8a9bb5;
  font-size: 11px;
}

/* =====================================================================
 * Sec.6 レーダーチャートラッパ（compact 固有）
 *    gpc-sub-radar-wrap は 2 カラム (radar + legend) 前提、
 *    compact では Section 6 を gpc-sub-split 内に入れるため 1 カラムに切り替え。
 * ===================================================================*/
.c-radar-wrap {
  grid-template-columns: 1fr;
}

/* =====================================================================
 * Sec.6-2 SVG エアフロー図のスタイル（compact固有）
 * ===================================================================*/
.c-airflow .c-airflow-fig {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 0;
  border: 1px solid #2c4769;
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(#131e30), to(#0b1422));
  background: linear-gradient(180deg, #131e30 0%, #0b1422 100%);
}
.c-airflow .c-airflow-fig text {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  fill: #c7d3e6;
}
.c-airflow .c-airflow-fig text.c-airflow-fig__part-label {
  fill: #f2f6fd;
  font-weight: 700;
}
.c-airflow .c-airflow-fig text.c-airflow-fig__intake-label, .c-airflow .c-airflow-fig text.c-airflow-fig__exhaust-label {
  font-weight: 700;
}
.c-airflow .c-airflow-fig text.c-airflow-fig__intake-label {
  fill: #5bd1ff;
}
.c-airflow .c-airflow-fig text.c-airflow-fig__exhaust-label {
  fill: #ffb03f;
}
.c-airflow .c-airflow-fig__case {
  fill: none;
  stroke: rgba(91, 209, 255, 0.55);
  stroke-width: 2;
}
.c-airflow .c-airflow-fig__panel {
  fill: rgba(91, 209, 255, 0.04);
  stroke: rgba(91, 209, 255, 0.25);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.c-airflow .c-airflow-fig__part {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1;
}
.c-airflow .c-airflow-fig__intake, .c-airflow .c-airflow-fig__exhaust {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.c-airflow .c-airflow-fig__intake {
  stroke: #5bd1ff;
}
.c-airflow .c-airflow-fig__exhaust {
  stroke: #ffb03f;
}
.c-airflow-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 0;
  list-style: none;
}
.c-airflow-legend li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #c7d3e6;
  font-size: 13px;
}
.c-airflow-legend .swatch {
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
}
.c-airflow-legend .swatch--intake {
  background: #5bd1ff;
}
.c-airflow-legend .swatch--exhaust {
  background: #ffb03f;
}

/* =====================================================================
 * Sec.7 確認ポイント 2 カラムグリッド（compact 固有）
 *    gpc-sub-checks__list を 2 カラム化。モバイルでは 1 カラムに。
 * ===================================================================*/
.c-check-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* =====================================================================
 * Sec.8 設置場所別カードグリッド（compact固有）
 * ===================================================================*/
.c-places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.c-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid #2c4769;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  -webkit-transition: border-color 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
}
.c-place:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  background: rgba(91, 209, 255, 0.06);
  border-color: rgba(91, 209, 255, 0.45);
}
.c-place__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(91, 209, 255, 0.35);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(91, 209, 255, 0.22), rgba(91, 209, 255, 0.06));
  color: #5bd1ff;
}
.c-place__icon svg {
  width: 22px;
  height: 22px;
}
.c-place__title {
  margin: 0;
  padding: 0;
  background: none;
  color: #f2f6fd;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.c-place__type {
  margin: 0;
  color: #5bd1ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.c-place__desc {
  margin: 0;
  color: #c7d3e6;
  font-size: 13px;
  line-height: 1.85;
}

/* =====================================================================
 * Sec.9 大型 vs 小型 比較ブロック（compact固有）
 * ===================================================================*/
.c-vs__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.c-vs__legend a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #2c4769;
  background: rgba(255, 255, 255, 0.03);
  color: #c7d3e6;
  font-size: 13px;
  font-weight: 600;
}
.c-vs__legend a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(91, 209, 255, 0.5);
}
.c-vs__legend a .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px rgba(91, 209, 255, 0.5);
          box-shadow: 0 0 8px rgba(91, 209, 255, 0.5);
}
.c-vs__legend a .dot--compact {
  background: #5bd1ff;
}
.c-vs__legend a .dot--big {
  background: #8a9bb5;
}

/* =====================================================================
 * レスポンシブ調整（compact 固有）
 * ===================================================================*/
@media (width <= 1024px) {
  .c-prosncons,
  .c-diag,
  .c-styles,
  .c-designs {
    grid-template-columns: 1fr;
  }
  .c-hero-stats {
    gap: 10px;
  }
  .c-hero-stat {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 10px);
            flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
  .c-places {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 767px) {
  .c-hero-stat__value {
    font-size: 22px;
  }
  .c-hero-badge {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .c-diag__result-title,
  .c-style__name {
    font-size: 18px;
  }
  .c-airflow-legend {
    gap: 0;
  }
  .c-places,
  .c-check-grid {
    grid-template-columns: 1fr;
  }
  .c-airflow .c-airflow-fig text {
    font-size: 22px;
  }
}