

:root {
  --indigo-950: #0f0a2e;
  --indigo-900: #1e1654;
  --indigo-800: #2d2272;
  --indigo-700: #3d2e90;
  --indigo-500: #6d56c9;
  --indigo-300: #a99de8;
  --indigo-200: #c5bcf2;
  --indigo-100: #ddd9f8;
  --fuchsia-600: #c026d3;
  --fuchsia-500: #d946ef;
  --fuchsia-400: #e879f9;
  --fuchsia-300: #f0abfc;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gold: #f5c518;
  --green: #4ade80;
  --orange: #fb923c;
  --red-400: #f87171;
  --text: #ddd9f8;
  --sub: #a99de8;
  --mincho-font: "Helvetica Neue", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --sans-font: "Helvetica Neue", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ===== ベース ===== */
body.vn-single { background-color: var(--indigo-950) !important; color: var(--text) !important; margin: 0 !important; padding: 0 !important; }
body.vn-single #container, body.vn-single #contents, body.vn-single #header, body.vn-single #footer,
body.vn-single .navi, body.vn-single .breadcrumb-wrap, body.vn-single .sidebar, body.vn-single #sidebar,
body.vn-single .sns-share, body.vn-single .sns-follow, body.vn-single .pagination,
body.vn-single .related-entry-cards-wrap, body.vn-single .toc-box,
body.vn-single #toc_container, body.vn-single .ez-toc-container { display: none !important; }
body.vn-single .vn-single-outer { display: block !important; }

.vn-article { font-family: var(--mincho-font); background-color: var(--indigo-950); color: var(--text); line-height: 1.8; font-size: 15px; letter-spacing: 0.02em; }
.vn-article * { box-sizing: border-box; }
.vn-article a { color: inherit; text-decoration: none; }
.sans { font-family: var(--sans-font); letter-spacing: normal; }

@keyframes pulse-neon {
  0%   { box-shadow: 0 0 5px rgba(192,38,211,0.5), 0 0 15px rgba(192,38,211,0.3); }
  50%  { box-shadow: 0 0 10px rgba(192,38,211,0.8), 0 0 25px rgba(192,38,211,0.5); }
  100% { box-shadow: 0 0 5px rgba(192,38,211,0.5), 0 0 15px rgba(192,38,211,0.3); }
}

/* ===== ヘッダー ===== */
.vn-header { background-color: rgba(3,7,18,0.95); backdrop-filter: blur(4px); border-bottom: 1px solid rgba(192,38,211,0.3); position: sticky; top: 0; z-index: 50; }
.vn-header-inner { max-width: 900px; margin: 0 auto; padding: 0 20px; height: 56px; display: flex; align-items: center; }
.vn-logo { display: flex; align-items: center; gap: 8px; font-family: var(--sans-font); }
.vn-logo-icon { width: 28px; height: 28px; border-radius: 50%; background-color: var(--fuchsia-600); box-shadow: 0 0 8px rgba(192,38,211,0.6); display: flex; align-items: center; justify-content: center; }
.vn-logo-icon svg { width: 14px; height: 14px; fill: white; margin-left: 2px; }
.vn-logo-text { font-weight: 900; font-size: 17px; background: linear-gradient(to right, var(--fuchsia-400), var(--indigo-300)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.vn-breadcrumb { font-size: 12px; color: var(--sub); max-width: 900px; margin: 0 auto; padding: 10px 20px; font-family: var(--sans-font); }
.vn-breadcrumb a { color: var(--sub); }
.vn-breadcrumb a:hover { color: var(--fuchsia-400); }
.vn-breadcrumb .current { color: var(--fuchsia-400); }

/* ===== ラッパー ===== */
.vn-wrapper { max-width: 900px; margin: 0 auto; padding: 0 20px 80px; }

/* ===== 記事ヘッド ===== */
.vn-article-head { padding: 16px 0 8px; margin-bottom: 12px; }
.vn-article-head h1 { font-size: clamp(18px, 3vw, 24px); font-weight: 900; line-height: 1.5; margin-bottom: 8px; color: white; border-left: 4px solid var(--fuchsia-500); padding-left: 16px; }
.vn-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--sub); font-family: var(--sans-font); border-bottom: 1px solid rgba(45,34,114,0.5); padding-bottom: 16px; }

/* ===== 結論ボックス ===== */
.vn-conclusion { background-color: rgba(30,22,84,0.6); border: 1px solid var(--indigo-700); border-left: 4px solid var(--fuchsia-500); border-radius: 8px; padding: 20px; margin-bottom: 24px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.vn-conclusion h3 { font-size: 15px; color: var(--gold); margin-bottom: 12px; font-family: var(--sans-font); font-weight: 700; }
.vn-conclusion ul { list-style: none; padding: 0; }
.vn-conclusion ul li { font-size: 14px; color: var(--indigo-100); margin-bottom: 8px; padding-left: 24px; position: relative; line-height: 1.6; font-family: var(--sans-font); }
.vn-conclusion ul li::before { content: '✔'; color: var(--green); position: absolute; left: 0; font-weight: bold; }

/* ===== FVカード ===== */
.vn-fv-card { background-color: rgba(30,22,84,0.5); border: 1px solid var(--gold); border-radius: 14px; padding: 24px; margin-bottom: 28px; backdrop-filter: blur(8px); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.vn-fv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; background-color: rgba(18,13,53,0.6); border: 1px solid rgba(45,34,114,0.5); border-radius: 12px; padding: 8px; margin-bottom: 24px; font-family: var(--sans-font); }
@media (max-width: 650px) { .vn-fv-grid { grid-template-columns: 1fr; gap: 0; } }
.vn-fv-col { padding: 8px; }
.vn-fv-col-1 { display: flex; align-items: center; gap: 12px; border-right: 1px solid rgba(45,34,114,0.5); }
.vn-fv-col-2 { display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(45,34,114,0.5); }
.vn-fv-col-3 { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 8px 16px; }
@media (max-width: 650px) { .vn-fv-col-1, .vn-fv-col-2 { border-right: none; border-bottom: 1px solid rgba(45,34,114,0.5); padding: 12px 8px; } }

.vn-service-logo { width: 60px; height: 60px; background: linear-gradient(135deg, var(--fuchsia-600), var(--indigo-700)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; color: white; text-align: center; flex-shrink: 0; }
.vn-fv-col-1 h2 { font-size: 18px; color: white; margin-bottom: 4px; font-weight: 900; }
.vn-fv-col-1 p { font-size: 11px; color: var(--sub); }
.vn-score-label { font-size: 11px; color: var(--sub); margin-bottom: 4px; }
.vn-score-value { font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; text-shadow: 0 0 8px rgba(245,197,24,0.3); }
.vn-score-value span { font-size: 14px; color: var(--sub); text-shadow: none; font-weight: normal; }
.vn-star-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.vn-star-row span:first-child { color: var(--sub); }
.vn-star-row .stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }

.vn-fv-quick { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; padding-top: 16px; border-top: 1px solid rgba(45,34,114,0.5); font-family: var(--sans-font); }
.vn-quick-item { text-align: center; }
.vn-quick-item .q-label { font-size: 11px; color: var(--sub); margin-bottom: 4px; }
.vn-quick-item .q-val { font-size: 14px; font-weight: 700; color: white; }

/* ===== CTAボタン ===== */
.vn-cta-block { margin: 24px 0 16px; position: relative; }
.vn-cta-glow { position: absolute; inset: 0; background-color: var(--fuchsia-600); filter: blur(15px); opacity: 0.4; border-radius: 8px; z-index: 0; }
.vn-cta-btn { display: block; position: relative; z-index: 1; background: linear-gradient(135deg, var(--fuchsia-600), var(--fuchsia-500)); color: white; text-align: center; padding: 18px; border-radius: 8px; font-size: 16px; font-weight: 900; text-decoration: none; letter-spacing: 0.5px; animation: pulse-neon 2s infinite; transition: transform 0.2s; font-family: var(--sans-font); }
.vn-cta-btn:hover { transform: scale(1.02); opacity: 1; }
.vn-cta-note { text-align: center; font-size: 11px; color: var(--sub); margin-top: 10px; font-family: var(--sans-font); }

/* ===== 目次 ===== */
.vn-toc { background-color: rgba(30,22,84,0.4); border: 1px solid rgba(109,86,201,0.3); border-radius: 10px; padding: 24px 36px; font-family: var(--sans-font); display: table; width: auto; min-width: 50%; max-width: 90%; margin: 0 auto 48px; }
.vn-toc h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--gold); }
.vn-toc ol { padding-left: 20px; }
.vn-toc li { margin-bottom: 8px; font-size: 14px; }
.vn-toc a { color: var(--indigo-200); }
.vn-toc a:hover { color: var(--fuchsia-400); }

/* ===== セクション ===== */
.vn-section { margin-bottom: 48px; }
.vn-section-title { font-size: 19px; font-weight: 900; padding: 12px 18px; background: linear-gradient(90deg, rgba(192,38,211,0.3), transparent); border-left: 4px solid var(--fuchsia-500); border-radius: 0 6px 6px 0; margin-bottom: 20px; color: white; font-family: var(--sans-font); }
.vn-sub-title { font-size: 16px; font-weight: 700; margin: 24px 0 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(45,34,114,0.5); color: white; font-family: var(--sans-font); }
.vn-body-text { font-size: 15px; line-height: 1.9; color: var(--indigo-100); margin-bottom: 16px; }

/* ===== 料金表 ===== */
.vn-plan-table { width: 100%; border-collapse: collapse; font-family: var(--sans-font); font-size: 14px; margin-bottom: 16px; border-radius: 10px; overflow: hidden; }
.vn-plan-table th { background: #1a1040; padding: 14px 16px; text-align: left; font-weight: 700; font-size: 12px; color: var(--sub); border-bottom: 1px solid rgba(61,46,144,0.5); }
.vn-plan-table td { padding: 13px 16px; border-bottom: 1px solid rgba(61,46,144,0.4); text-align: left; vertical-align: top; background-color: #1a1654; color: var(--text); }
.vn-plan-table tr:nth-child(even) td { background-color: #120d35; }
.vn-plan-table tr:hover td { background-color: rgba(61,46,144,0.4); }
.vn-plan-name { font-weight: 700; font-size: 15px; color: white; }
.vn-plan-price { font-weight: 900; color: var(--gold); font-size: 16px; }
.vn-recommended { display: inline-block; background: var(--fuchsia-600); color: white; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }

/* ===== 比較表 ===== */
.vn-vs-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid rgba(45,34,114,0.5); margin-bottom: 16px; }
.vn-vs-table { width: 100%; border-collapse: collapse; font-family: var(--sans-font); font-size: 14px; }
.vn-vs-table th { background: #1a1040; padding: 14px 16px; text-align: center; font-weight: 700; color: white; }
.vn-vs-table th:first-child { text-align: left; color: var(--sub); }
.vn-vs-table th.hl { background: var(--fuchsia-600); color: white; }
.vn-vs-table th:not(.hl):not(:first-child) { background: #2d2272; color: var(--text); }
.vn-vs-table td { padding: 13px 16px; border-bottom: 1px solid rgba(61,46,144,0.4); text-align: center; background-color: #120d35; color: var(--text); }
.vn-vs-table td:first-child { text-align: left; color: var(--indigo-200); background-color: #1a1040; font-size: 13px; }
.vn-vs-table tr:nth-child(even) td { background-color: #1a1654; }
.vn-vs-table tr:nth-child(even) td:first-child { background-color: #1e1654; }
.vn-vs-table .hl-col { background: rgba(192,38,211,0.1) !important; }
.vn-vs-table tr:hover td { background-color: rgba(61,46,144,0.4); }
.vn-best { color: var(--gold); font-weight: 700; }
.vn-check { color: var(--green); font-size: 16px; }
.vn-cross { color: var(--red-400); font-size: 16px; opacity: 0.5; }

/* ===== メリット・デメリット ===== */
.vn-merit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; font-family: var(--sans-font); }
@media (max-width: 580px) { .vn-merit-grid { grid-template-columns: 1fr; } }
.vn-merit-box { background-color: rgba(30,22,84,0.4); border-radius: 10px; padding: 20px; border: 1px solid; }
.vn-merit-box.good { border-color: rgba(74,222,128,0.3); }
.vn-merit-box.bad { border-color: rgba(248,113,113,0.3); }
.vn-merit-box h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid; }
.vn-merit-box.good h3 { color: var(--green); border-color: var(--green); }
.vn-merit-box.bad h3 { color: var(--red-400); border-color: var(--red-400); }
.vn-merit-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vn-merit-list li { font-size: 14px; padding-left: 20px; position: relative; line-height: 1.6; color: var(--indigo-100); }
.vn-merit-list li::before { position: absolute; left: 0; font-weight: 900; }
.good .vn-merit-list li::before { content: '✔'; color: var(--green); }
.bad .vn-merit-list li::before { content: '✖'; color: var(--red-400); }

/* ===== 口コミ ===== */
.vn-review-list { display: flex; flex-direction: column; gap: 12px; }
.vn-review-card { background-color: rgba(30,22,84,0.4); border-radius: 10px; padding: 16px 20px; border-left: 3px solid; }
.vn-review-card.positive { border-color: var(--green); }
.vn-review-card.negative { border-color: var(--red-400); }
.vn-review-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; font-family: var(--sans-font); }
.vn-reviewer { font-size: 13px; font-weight: 700; color: white; }
.vn-review-stars { color: var(--gold); font-size: 13px; }
.vn-review-source { font-size: 11px; color: var(--sub); margin-left: auto; }
.vn-review-text { font-size: 14px; color: var(--indigo-100); line-height: 1.7; }
.vn-review-summary { background: rgba(245,197,24,0.06); border: 1px solid rgba(245,197,24,0.3); border-radius: 8px; padding: 16px 20px; margin-top: 16px; font-size: 14px; color: var(--indigo-100); line-height: 1.7; font-family: var(--sans-font); }
.vn-review-summary strong { color: var(--gold); }

/* ===== ステップ ===== */
.vn-steps { display: flex; flex-direction: column; gap: 12px; }
.vn-step { display: flex; gap: 16px; background-color: rgba(30,22,84,0.4); border: 1px solid rgba(109,86,201,0.2); border-radius: 10px; padding: 16px 20px; align-items: flex-start; }
.vn-step-num { background: var(--fuchsia-600); color: white; font-size: 14px; font-weight: 900; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 8px rgba(192,38,211,0.4); font-family: var(--sans-font); }
.vn-step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: white; font-family: var(--sans-font); }
.vn-step-content p { font-size: 13px; color: var(--sub); line-height: 1.6; font-family: var(--sans-font); }

/* ===== 注意ボックス ===== */
.vn-warn { background: rgba(251,146,60,0.08); border: 1px solid rgba(251,146,60,0.35); border-radius: 8px; padding: 14px 18px; font-size: 13px; color: #fdba74; margin-top: 16px; line-height: 1.7; font-family: var(--sans-font); }
.vn-warn strong { color: var(--orange); }

/* ===== まとめ ===== */
.vn-summary-box { background: linear-gradient(135deg, rgba(30,22,84,0.6), rgba(45,34,114,0.3)); border: 1px solid rgba(192,38,211,0.4); border-radius: 14px; padding: 28px; margin-bottom: 32px; }
.vn-summary-box h3 { font-size: 18px; font-weight: 900; margin-bottom: 16px; color: var(--gold); font-family: var(--sans-font); }
.vn-verdict-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.vn-verdict-list li { font-size: 14px; padding-left: 20px; position: relative; color: var(--indigo-100); line-height: 1.7; }
.vn-verdict-list li::before { content: '▶'; position: absolute; left: 0; color: var(--fuchsia-400); font-size: 10px; top: 4px; font-family: var(--sans-font); }

/* ===== 関連リンク ===== */
.vn-related-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.vn-related-links li { font-size: 14px; padding-left: 16px; position: relative; }
.vn-related-links li::before { content: '▶'; position: absolute; left: 0; color: var(--fuchsia-400); font-family: var(--sans-font); }
.vn-related-links a { color: var(--indigo-300); font-family: var(--sans-font); }

/* ===== フッター ===== */
.vn-footer { background-color: rgba(3,7,18,0.95); border-top: 1px solid rgba(192,38,211,0.3); padding: 32px 20px; text-align: center; font-family: var(--sans-font); }
.vn-footer p { font-size: 12px; color: var(--sub); margin-bottom: 6px; }

/* ===== 比較記事用 ===== */
.vn-conclusion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
@media (max-width: 580px) { .vn-conclusion-grid { grid-template-columns: 1fr; } }
.vn-conclusion-card { background-color: rgba(15,10,46,0.6); border-radius: 10px; padding: 16px; border-top: 3px solid; text-align: center; }
.vn-conclusion-card.fanza-card { border-color: var(--fuchsia-500); }
.vn-conclusion-card.unext-card { border-color: #06b6d4; }
.vn-conclusion-card .card-name { font-size: 18px; font-weight: 900; margin-bottom: 8px; font-family: var(--sans-font); }
.vn-conclusion-card.fanza-card .card-name { color: var(--fuchsia-400); }
.vn-conclusion-card.unext-card .card-name { color: #06b6d4; }
.vn-conclusion-card .card-desc { font-size: 13px; color: var(--indigo-100); line-height: 1.6; font-family: var(--sans-font); }

.vn-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 8px; }
@media (max-width: 480px) { .vn-cta-grid { grid-template-columns: 1fr; } }
.vn-cta-btn-fanza { display: block; position: relative; z-index: 1; background: linear-gradient(135deg, var(--fuchsia-600), var(--fuchsia-500)); color: white; text-align: center; padding: 16px 12px; border-radius: 8px; font-size: 14px; font-weight: 900; text-decoration: none; animation: pulse-neon 2s infinite; font-family: var(--sans-font); }
.vn-cta-btn-unext { display: block; background: linear-gradient(135deg, #0e7490, #0891b2); color: white; text-align: center; padding: 16px 12px; border-radius: 8px; font-size: 14px; font-weight: 900; text-decoration: none; box-shadow: 0 4px 16px rgba(8,145,178,0.35); font-family: var(--sans-font); }

.vn-compare-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid rgba(45,34,114,0.5); margin-bottom: 16px; }
.vn-compare-table { width: 100%; border-collapse: collapse; font-family: var(--sans-font); font-size: 14px; }
.vn-compare-table th { background: #1a1040; padding: 14px 16px; text-align: center; font-weight: 700; color: var(--text); border-bottom: 1px solid rgba(61,46,144,0.5); }
.vn-compare-table th:first-child { text-align: left; color: var(--sub); }
.vn-compare-table th.fanza-col { color: var(--fuchsia-400); border-bottom: 2px solid var(--fuchsia-500); }
.vn-compare-table th.unext-col { color: #06b6d4; border-bottom: 2px solid #06b6d4; }
.vn-compare-table td { padding: 13px 16px; border-bottom: 1px solid rgba(61,46,144,0.3); text-align: center; background-color: #120d35; color: var(--text); }
.vn-compare-table td:first-child { text-align: left; color: var(--indigo-200); background-color: #1a1040; font-size: 13px; }
.vn-compare-table tr:nth-child(even) td { background-color: #1a1654; }
.vn-compare-table tr:nth-child(even) td:first-child { background-color: #1e1654; }
.vn-compare-table tr:hover td { background-color: rgba(61,46,144,0.4); }
.vn-win-fanza { color: var(--fuchsia-400); font-weight: 700; }
.vn-win-unext { color: #06b6d4; font-weight: 700; }
.vn-win-draw { color: var(--gold); font-weight: 700; }

.vn-judge-row { display: flex; align-items: center; gap: 12px; background-color: rgba(30,22,84,0.4); border-radius: 8px; padding: 12px 16px; margin-bottom: 8px; font-family: var(--sans-font); }
.vn-judge-label { font-size: 13px; color: var(--sub); width: 110px; flex-shrink: 0; }
.vn-judge-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.vn-bar-fill { height: 100%; border-radius: 3px; }
.vn-bar-fanza { background: var(--fuchsia-500); }
.vn-bar-unext { background: #06b6d4; }
.vn-judge-winner { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; white-space: nowrap; }
.vn-winner-fanza { background: rgba(192,38,211,0.2); color: var(--fuchsia-400); }
.vn-winner-unext { background: rgba(6,182,212,0.2); color: #06b6d4; }
.vn-winner-draw { background: rgba(245,197,24,0.2); color: var(--gold); }

.vn-recommend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; font-family: var(--sans-font); }
@media (max-width: 580px) { .vn-recommend-grid { grid-template-columns: 1fr; } }
.vn-recommend-card { background-color: rgba(30,22,84,0.4); border-radius: 12px; padding: 20px; border: 1px solid; }
.vn-recommend-card.fanza-rec { border-color: rgba(192,38,211,0.4); }
.vn-recommend-card.unext-rec { border-color: rgba(6,182,212,0.4); }
.vn-recommend-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid; }
.vn-recommend-card.fanza-rec h3 { color: var(--fuchsia-400); border-color: var(--fuchsia-500); }
.vn-recommend-card.unext-rec h3 { color: #06b6d4; border-color: #06b6d4; }
.vn-recommend-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vn-recommend-list li { font-size: 14px; padding-left: 18px; position: relative; color: var(--indigo-100); line-height: 1.6; }
.fanza-rec .vn-recommend-list li::before { content: '✔'; position: absolute; left: 0; color: var(--fuchsia-400); }
.unext-rec .vn-recommend-list li::before { content: '✔'; position: absolute; left: 0; color: #06b6d4; }

/* ===== U-NEXT用（無料バッジ） ===== */
.vn-free-badge { display: inline-block; background: linear-gradient(135deg, var(--fuchsia-600), var(--fuchsia-500)); color: white; font-size: 13px; font-weight: 900; padding: 6px 16px; border-radius: 20px; box-shadow: 0 0 12px rgba(192,38,211,0.5); margin-bottom: 12px; font-family: var(--sans-font); }

/* ===== 比較表セルの色付け強化 ===== */
.vn-vs-table td { color: #c5bcf2 !important; }
.vn-vs-table .hl-col { color: white !important; font-weight: 600; }
.vn-vs-table .vn-best { color: #f5c518 !important; font-weight: 900 !important; }
.vn-vs-table .vn-check { color: #4ade80 !important; font-size: 18px !important; font-weight: 900; }
.vn-vs-table .vn-cross { color: #6d56c9 !important; font-size: 16px !important; opacity: 0.8; }

/* 無料期間「あり」は緑で強調 */
.vn-vs-table td.vn-check:not(.hl-col) { color: #4ade80 !important; font-weight: 700; }
/* 「なし」はグレーで控えめに */
.vn-vs-table td.vn-cross:not(.hl-col) { color: #6d56c9 !important; }

/* 数字セルにサブカラー */
.vn-vs-table tbody td:not(:first-child):not(.hl-col):not(.vn-best):not(.vn-check):not(.vn-cross) {
  color: #c5bcf2 !important;
}

/* 無料期間セルの強調を解除・通常サイズに */
.vn-vs-table td.vn-check {
  color: #4ade80 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
