/* ==========================================================================
   tcgpro.co.jp — Editorial style for /oripa/ (地域オリパ記事サイト)
   /company/ のミニマル基調を継承しつつ、地域記事の情報密度に最適化
   ========================================================================== */

:root {
    --color-text: #111;
    --color-text-muted: #6b7280;
    --color-bg: #fff;
    --color-bg-soft: #f7f7f8;
    --color-border: #e5e7eb;
    --color-primary: #1e3a8a;       /* deep navy */
    --color-primary-soft: #eef2ff;
    --color-accent: #d97706;        /* amber for warnings */
    --color-success: #15803d;       /* green for "オリパ取扱あり" */
    --color-warning: #b45309;       /* amber for "取扱要確認" */
    --color-danger: #b91c1c;
    --container-max: 880px;
    --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
    color: var(--color-text);
    line-height: 1.85;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt" 1;
}
a { color: var(--color-primary); text-decoration: none; transition: opacity .15s ease; }
a:hover { opacity: .65; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: .01em; line-height: 1.4; margin: 0; color: var(--color-text); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }
table { border-collapse: collapse; width: 100%; }

/* Layout
   ---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}
.main { padding: 12px 0 64px; }

/* Header / Footer
   ---------------------------------------------------------------- */
.header {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    gap: 16px;
    position: relative;
}
.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-weight: 700;
    font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    letter-spacing: 0.04em;
}
.header__logo:hover { opacity: 1; color: var(--color-text); }
.header__logo-mark {
    width: 24px;
    height: 32px;
    flex-shrink: 0;
}
.header__logo-text {
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}
.header__logo-img {
    height: 32px;
    width: auto;
    display: block;
}
.header__nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.header__nav-link {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}
.header__nav-link:hover { color: var(--color-primary); opacity: 1; }
.header__menu-btn {
    display: none;
    background: none;
    border: 0;
    padding: 6px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.header__menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: transform .2s ease, opacity .15s ease;
    transform-origin: center;
}
.header__menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.header__menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 640px) {
    .header__menu-btn { display: flex; }
    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 8px 16px -8px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding: 4px 20px 12px;
        z-index: 60;
    }
    .header__nav.is-open { display: flex; }
    .header__nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-bg-soft);
        font-size: 15px;
    }
    .header__nav-link:last-child { border-bottom: 0; }
    .header__logo-text { font-size: 15px; }
}

.footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    padding: 32px 0;
    margin-top: 48px;
}
.footer__inner { text-align: center; }
.footer__nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer__nav a { color: var(--color-text); font-size: 14px; }
.footer__copy { color: var(--color-text-muted); font-size: 12px; }
.footer__copy-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer__copy-link:hover { color: var(--color-text); opacity: 1; }

/* Breadcrumb
   ---------------------------------------------------------------- */
.breadcrumb {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    overflow-x: auto;
    white-space: nowrap;
}
.breadcrumb__link, .breadcrumb__current { color: inherit; }
.breadcrumb__link:hover { color: var(--color-primary); opacity: 1; }
.breadcrumb__sep { margin: 0 6px; opacity: .5; }
.breadcrumb__current { font-weight: 500; }

/* Generic page (e.g. /oripa/ index)
   ---------------------------------------------------------------- */
.page-title {
    font-size: 28px;
    margin-bottom: 12px;
}
.page-lead {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}
.empty-state {
    padding: 32px 16px;
    text-align: center;
    color: var(--color-text-muted);
    background: var(--color-bg-soft);
    border-radius: var(--radius);
}

/* Area index (/oripa/)
   ---------------------------------------------------------------- */
.area-list { display: grid; gap: 12px; }
.area-list__item {}
.area-list__link {
    display: block;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    transition: border-color .15s, background .15s;
}
.area-list__link:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
    opacity: 1;
}
.area-list__name { font-size: 18px; margin: 0; display: inline; }
.area-list__pref {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-left: 8px;
}
.area-list__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 6px;
}

/* Area article (/oripa/area/{slug}/)
   ---------------------------------------------------------------- */
.area-article {}
.area-article__header { padding-bottom: 16px; border-bottom: 1px solid var(--color-border); margin-bottom: 24px; }
.area-article__title {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 12px;
}
@media (min-width: 720px) { .area-article__title { font-size: 30px; } }
.area-article__meta {
    color: var(--color-text-muted);
    font-size: 12px;
    margin-bottom: 12px;
}
.area-article__lead {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.85;
    margin: 8px 0 16px;
}

.area-section { margin: 40px 0; scroll-margin-top: 72px; }
.area-section h2 {
    font-size: 22px;
    line-height: 1.45;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-text);
    margin-bottom: 16px;
}
.area-section h3 { font-size: 17px; margin-top: 20px; margin-bottom: 8px; }

/* 結論セクション (key_facts) */
.area-key-facts {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 14px;
}
.area-key-facts th, .area-key-facts td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.area-key-facts tr:last-child th, .area-key-facts tr:last-child td { border-bottom: 0; }
.area-key-facts th {
    font-weight: 500;
    background: var(--color-bg-soft);
    width: 60%;
}
.area-key-facts td {
    font-weight: 700;
    color: var(--color-danger);
}

/* 店舗カード */
.shop-cards {
    display: grid;
    gap: 16px;
    counter-reset: shop-counter;
}
.shop-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    background: var(--color-bg);
    counter-increment: shop-counter;
    position: relative;
}
.shop-card::before {
    content: counter(shop-counter, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 12px;
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
}
.shop-card__name {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 12px;
    padding-right: 32px;
}
.shop-card__badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
    white-space: nowrap;
}
.shop-card__badge--available {
    background: #dcfce7;
    color: var(--color-success);
}
.shop-card__badge--unconfirmed {
    background: #fef3c7;
    color: var(--color-warning);
}
.shop-card__info {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 4px 12px;
    font-size: 13px;
    margin-bottom: 12px;
}
.shop-card__info dt {
    color: var(--color-text-muted);
    font-weight: 500;
}
.shop-card__info dd { margin: 0; }
.shop-card__info dd small { color: var(--color-text-muted); }
.shop-card__highlight {
    font-size: 13px;
    background: var(--color-primary-soft);
    border-radius: 4px;
    padding: 8px 12px;
    color: var(--color-text);
    margin-bottom: 10px;
}
.shop-card__links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}
.shop-card__links li { list-style: none; }
.shop-card__link {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    background: #fff;
    transition: border-color .15s, color .15s, background .15s;
}
.shop-card__link:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
    opacity: 1;
}
.shop-card__link--official { border-color: var(--color-primary); color: var(--color-primary); }
.shop-card__link--official:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* 店舗関係者の方へ */
.area-section--store-relations { margin-top: 56px; }
.store-relations {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-soft);
    padding: 24px;
}
.store-relations__lead {
    font-size: 14px;
    line-height: 1.85;
    color: var(--color-text);
    margin: 0 0 14px;
}
.store-relations__lead:last-of-type { margin-bottom: 18px; }
.store-relations__url {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.store-relations__url-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}
.store-relations__url-value {
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 13px;
    word-break: break-all;
    background: transparent;
    padding: 0;
    color: var(--color-text);
}
.store-relations__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.store-relations__btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--color-text);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    background: #fff;
    transition: background .15s, color .15s;
}
.store-relations__btn:hover { background: var(--color-text); color: #fff; opacity: 1; }
.store-relations__btn--primary { background: var(--color-text); color: #fff; }
.store-relations__btn--primary:hover { background: #fff; color: var(--color-text); }
.store-relations__note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* 主要購入ハブ3モール */
.purchase-hubs {
    display: grid;
    gap: 12px;
}
@media (min-width: 720px) {
    .purchase-hubs { grid-template-columns: repeat(3, 1fr); }
}
.purchase-hub {
    background: var(--color-primary-soft);
    border: 1px solid #c7d2fe;
    border-radius: var(--radius);
    padding: 14px 16px;
}
.purchase-hub__name { font-size: 15px; margin-bottom: 6px; }
.purchase-hub__ward { font-size: 11px; color: var(--color-text-muted); font-weight: 400; }
.purchase-hub__anchor { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; }
.purchase-hub__anchor strong { color: var(--color-primary); }
.purchase-hub__desc { font-size: 13px; line-height: 1.7; }

/* エリア別マップ */
.areas-within {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .areas-within { grid-template-columns: repeat(2, 1fr); }
}
.areas-within__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 14px;
}
.areas-within__item h3 { font-size: 14px; margin: 0 0 6px; color: var(--color-primary); }
.areas-within__item ul { font-size: 13px; color: var(--color-text-muted); }
.areas-within__item li { padding: 2px 0; }
.areas-within__item li::before { content: "• "; }

/* FAQ */
.area-faq {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.area-faq summary {
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 600;
    list-style: none;
    background: var(--color-bg-soft);
    font-size: 14px;
    position: relative;
    padding-right: 36px;
}
.area-faq summary::-webkit-details-marker { display: none; }
.area-faq summary::before {
    content: "Q.";
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 8px;
}
.area-faq summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1;
}
.area-faq[open] summary::after { content: "−"; }
.area-faq__answer {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.85;
    border-top: 1px solid var(--color-border);
}

/* 失敗しないコツ */
.tips-list {
    display: grid;
    gap: 12px;
    counter-reset: tips-counter;
}
.tip {
    border-left: 3px solid var(--color-primary);
    padding: 10px 14px;
    background: var(--color-bg-soft);
    border-radius: 4px;
    counter-increment: tips-counter;
}
.tip__title {
    font-size: 15px;
    margin-bottom: 4px;
}
.tip__title::before {
    content: counter(tips-counter) ". ";
    color: var(--color-primary);
}
.tip__body {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.85;
}

/* まとめ */
.area-summary {
    font-size: 15px;
    line-height: 1.95;
    background: var(--color-bg-soft);
    padding: 16px 18px;
    border-radius: var(--radius);
}

/* 関連エリア */
.related-areas {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.related-areas li {}
.related-areas a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--color-text);
}
.related-areas a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
}

/* 404 */
.error-page {
    text-align: center;
    padding: 64px 16px;
}
.error-page h1 { font-size: 32px; margin-bottom: 12px; }
.error-page p { color: var(--color-text-muted); margin-bottom: 24px; }

/* 店舗タグチップ (全テーマ共通)
   ---------------------------------------------------------------- */
.shop-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}
.shop-card__tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    letter-spacing: .02em;
}
.shop-card__tags--atmosphere { margin-top: -4px; }
.shop-card__tag--atmosphere {
    background: #eef4ff;
    border-color: #c8d8f3;
    color: #1e3a8a;
}

/* shop schema v2: 拡張フィールド表示
   ---------------------------------------------------------------- */
.shop-card__rating {
    margin: 4px 0 12px;
    font-size: 14px;
    line-height: 1.6;
}
.shop-card__stars { color: #f5a524; letter-spacing: 1px; }
.shop-card__rating-value { font-weight: 700; margin-left: 4px; }
.shop-card__rating-count { color: var(--color-text-muted); font-size: 12px; margin-left: 4px; }
.shop-card__rating-date { color: var(--color-text-muted); }
.shop-card__description {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}
.shop-card__badge--visited {
    background: #d1fae5;
    color: #065f46;
    border-color: #6ee7b7;
}
.shop-card__badge--temporarily_closed,
.shop-card__badge--moving {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
}
.shop-card__badge--closed_permanently {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
}
.shop-card__opening-method,
.shop-card__primary-tcg {
    color: var(--color-text-muted);
    font-size: 12px;
    margin-left: 4px;
}
.shop-card__oripa-highlights,
.shop-card__usp,
.shop-card__editor {
    margin: 12px 0;
    padding: 12px 14px;
    background: var(--color-bg-soft);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    font-size: 14px;
}
.shop-card__editor { border-left-color: #16a34a; }
.shop-card__oripa-highlights-title,
.shop-card__usp-title,
.shop-card__editor-title {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
}
.shop-card__oripa-highlights ul,
.shop-card__usp ul {
    margin: 0;
    padding-left: 20px;
}
.shop-card__top-prizes {
    margin: 8px 0 12px;
    font-size: 13px;
    color: var(--color-text);
    background: #fffbeb;
    border: 1px dashed #fbbf24;
    padding: 8px 12px;
    border-radius: 4px;
}
.shop-card__lineup,
.shop-card__google-reviews {
    margin: 12px 0;
    font-size: 13px;
}
.shop-card__lineup summary,
.shop-card__google-reviews summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    padding: 6px 0;
}
.shop-card__lineup ul,
.shop-card__google-reviews ul {
    margin: 8px 0 0;
    padding-left: 20px;
}
.shop-card__google-reviews q {
    quotes: '「' '」';
}
.shop-card__google-rev-stars { color: #f5a524; margin-right: 4px; }
.shop-card__verified {
    margin: 12px 0 0;
    font-size: 11px;
    color: var(--color-text-muted);
    text-align: right;
}

/* ============================================================
   THEME: EDITORIAL  (Noto Sans JP × 深ネイビー × ペーパー)
   FVC系の落ち着いた金融メディア基調を参考にしつつ、
   トレカプロのブランドガイドライン(インクブラック・ホロ薄帯)を調和させる。
   ============================================================ */
.area-article--editorial {
    --ed-ink: #1a1a1a;
    --ed-text: #333;
    --ed-paper: #f8f7f3;
    --ed-rule: #e3e0d7;
    --ed-rule-strong: #1a1a1a;
    --ed-muted: #6b7280;
    --ed-navy: #022f7c;
    --ed-link: #1122cc;
    --ed-jp: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --ed-mono: 'Space Grotesk', 'SF Mono', ui-monospace, monospace;
    --ed-holo: linear-gradient(135deg, #ffc4dd 0%, #c4dff8 20%, #fff7c4 40%, #c4f5d9 60%, #dcc4f5 80%, #ffd4c4 100%);
    font-family: var(--ed-jp);
    color: var(--ed-text);
    line-height: 1.9;
    font-feature-settings: "palt" 1;
}

/* 記事ヘッダー: ペーパー地 + 上部に細いホロ帯のみ */
.area-article--editorial .area-article__header {
    position: relative;
    padding: 14px 0 16px;
    border-top: 3px solid;
    border-image: var(--ed-holo) 1;
    border-bottom: 1px solid var(--ed-rule);
    background: transparent;
    margin-bottom: 18px;
}
.area-article--editorial .area-article__title {
    color: var(--ed-navy);
    font-family: var(--ed-jp);
    font-size: 24px;
    line-height: 1.45;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 8px;
}
@media (min-width: 720px) {
    .area-article--editorial .area-article__title { font-size: 28px; }
}
.area-article--editorial .area-article__meta {
    color: var(--ed-muted);
    font-family: var(--ed-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.area-article--editorial .area-article__lead {
    color: var(--ed-text);
    font-size: 15px;
    line-height: 1.85;
    margin-top: 4px;
}

/* セクション見出し: FVC風 (左に縦バー + 下罫線) */
.area-article--editorial .area-section { margin: 44px 0; }
.area-article--editorial .area-section h2 {
    color: var(--ed-navy);
    font-family: var(--ed-jp);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: 0;
    border-bottom: 2px solid var(--ed-navy);
    border-left: 5px solid var(--ed-navy);
    padding: 4px 0 10px 12px;
    margin-bottom: 18px;
}
@media (min-width: 720px) {
    .area-article--editorial .area-section h2 { font-size: 22px; }
}
.area-article--editorial .area-section h3 {
    color: var(--ed-navy);
    font-family: var(--ed-jp);
    font-size: 17px;
    line-height: 1.6;
    margin-top: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    border-left: 4px solid var(--ed-navy);
    padding-left: 10px;
}

/* 記事本文 (Markdown→HTML) */
.area-article--editorial .area-body {}

/* body_html 内の H2 ─ ナビ縦バー＋下罫線 (area-section h2 と同調) */
.area-article--editorial .area-body h2 {
    color: var(--ed-navy);
    font-family: var(--ed-jp);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: 0;
    border-bottom: 2px solid var(--ed-navy);
    border-left: 5px solid var(--ed-navy);
    padding: 4px 0 10px 12px;
    margin: 48px 0 18px;
}
@media (min-width: 720px) {
    .area-article--editorial .area-body h2 { font-size: 22px; }
}

/* body_html 内の H3 ─ ランキング各社見出し兼用。記事型らしく軽く */
.area-article--editorial .area-body h3 {
    color: var(--ed-ink);
    font-family: var(--ed-jp);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    margin: 32px 0 10px;
    padding: 0 0 6px 0;
    border-bottom: 1px dashed var(--ed-rule);
    border-left: 0;
}
@media (min-width: 720px) {
    .area-article--editorial .area-body h3 { font-size: 19px; }
}
/* H3直後の段落は密着気味に */
.area-article--editorial .area-body h3 + p { margin-top: 6px; }

/* 記事末尾の公式サイトリンク ─ ボタン化せずテキストリンクのまま */
.area-article--editorial .area-body p.oripa-link {
    margin: 4px 0 1.6em;
    font-size: 15px;
}
.area-article--editorial .area-body p.oripa-link a {
    color: var(--ed-link);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.area-article--editorial .area-body p.oripa-link a:hover {
    color: var(--ed-navy);
}

.area-article--editorial .area-body p {
    font-size: 16px;
    line-height: 1.95;
    margin: 0 0 1.2em;
    color: var(--ed-text);
}
.area-article--editorial .area-body strong {
    font-weight: 700;
    color: var(--ed-ink);
    background: linear-gradient(transparent 70%, rgba(2,47,124,0.12) 70%);
}
.area-article--editorial .area-body ul,
.area-article--editorial .area-body ol {
    padding-left: 1.6em;
    margin: 0 0 1.2em;
    list-style: revert;
}
.area-article--editorial .area-body ul li,
.area-article--editorial .area-body ol li {
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 4px;
    list-style: revert;
}
.area-article--editorial .area-body blockquote {
    border-left: 3px solid var(--ed-navy);
    padding: 4px 0 4px 16px;
    margin: 0 0 1.2em;
    color: var(--ed-muted);
    font-size: 14px;
    line-height: 1.85;
}
.area-article--editorial .area-body a {
    color: var(--ed-link);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.area-article--editorial .area-body a:hover {
    color: var(--ed-navy);
    opacity: 1;
}

/* テーブル: FVC風 (上下太罫線 + 中は細罫線) */
.area-article--editorial .area-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 16px 0 24px;
    border-top: 3px solid var(--ed-navy);
    border-bottom: 3px solid var(--ed-navy);
}
.area-article--editorial .area-body thead {
    background: var(--ed-navy);
    color: #fff;
}
.area-article--editorial .area-body th,
.area-article--editorial .area-body td {
    border: 1px solid var(--ed-rule);
    padding: 10px 12px;
    text-align: left;
    line-height: 1.7;
}
.area-article--editorial .area-body thead th {
    background: var(--ed-navy);
    color: #fff;
    font-weight: 700;
    border-color: var(--ed-navy);
    font-size: 13px;
}
.area-article--editorial .area-body tbody tr:nth-child(even) {
    background: var(--ed-paper);
}
/* ランキング表など、第1セルが短い数字の表だけ列幅を狭める */
.area-article--editorial .area-body table.is-rank tbody td:first-child {
    font-weight: 700;
    color: var(--ed-ink);
    width: 4em;
    text-align: center;
    font-family: var(--ed-mono);
    white-space: nowrap;
}

/* オリパランキングカード — FVC基調 (ネイビーヘッダ帯 + ペーパー本文) */
.area-article--editorial .oripa-card {
    position: relative;
    border: 1px solid var(--ed-rule);
    border-top: 0;
    background: #fff;
    border-radius: 6px;
    padding: 0;
    margin: 28px 0 32px;
    overflow: hidden;
}
.area-article--editorial .oripa-card__rank {
    position: static;
    display: block;
    background: var(--ed-navy);
    color: #fff;
    padding: 10px 18px;
    font-family: var(--ed-jp);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 0;
    border: 0;
}
.area-article--editorial .oripa-card__name {
    font-family: var(--ed-jp);
    font-size: 19px;
    line-height: 1.55;
    margin: 18px 22px 6px;
    font-weight: 700;
    color: var(--ed-ink);
    border: 0;
    padding: 0;
}
@media (min-width: 720px) {
    .area-article--editorial .oripa-card__name { font-size: 20px; }
}
.area-article--editorial .oripa-card__meta {
    color: var(--ed-muted);
    font-size: 12px;
    line-height: 1.85;
    margin: 0 22px 14px;
    padding: 8px 12px;
    background: var(--ed-paper);
    border-radius: 4px;
    font-family: var(--ed-jp);
    letter-spacing: 0;
    word-break: break-word;
}
.area-article--editorial .oripa-card p {
    font-size: 15px;
    line-height: 1.95;
    margin: 0 22px 0.9em;
    color: var(--ed-text);
}
/* 特徴3選見出し + 箇条書き (oripa-card 内) */
.area-article--editorial .oripa-card__sub {
    font-family: var(--ed-jp);
    font-size: 14px;
    font-weight: 700;
    color: var(--ed-navy);
    margin: 14px 22px 8px;
    padding: 0 0 0 10px;
    border-left: 3px solid var(--ed-navy);
    line-height: 1.5;
}
.area-article--editorial .oripa-card__features {
    list-style: disc;
    margin: 0 22px 14px;
    padding-left: 1.6em;
}
.area-article--editorial .oripa-card__features li {
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 4px;
    color: var(--ed-text);
}
.area-article--editorial .oripa-card__cta {
    margin: 16px 22px 22px;
}
.area-article--editorial .oripa-card__cta a {
    display: inline-block;
    padding: 11px 22px;
    background: var(--ed-navy);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--ed-navy);
    transition: background .15s, color .15s;
}
.area-article--editorial .oripa-card__cta a:hover {
    background: #fff;
    color: var(--ed-navy);
    opacity: 1;
}
@media (max-width: 640px) {
    .area-article--editorial .oripa-card__name { margin: 14px 16px 6px; font-size: 17px; }
    .area-article--editorial .oripa-card__meta { margin: 0 16px 12px; }
    .area-article--editorial .oripa-card p { margin: 0 16px 0.9em; }
    .area-article--editorial .oripa-card__sub { margin: 12px 16px 8px; }
    .area-article--editorial .oripa-card__features { margin: 0 16px 12px; }
    .area-article--editorial .oripa-card__cta { margin: 14px 16px 18px; }
}

/* 店舗ミニカード (記事中インライン用 — ハイライト程度) */
.area-article--editorial .shop-mini {
    border: 1px solid var(--ed-rule);
    border-left: 3px solid var(--ed-ink);
    background: var(--ed-paper);
    border-radius: 4px;
    padding: 14px 16px;
    margin: 12px 0 20px;
    font-size: 14px;
    line-height: 1.85;
}
.area-article--editorial .shop-mini__name {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--ed-ink);
}
.area-article--editorial .shop-mini__meta {
    color: var(--ed-muted);
    font-size: 12px;
    margin: 0 0 8px;
    font-family: var(--ed-mono);
    letter-spacing: .02em;
}
.area-article--editorial .shop-mini__body { margin: 0; }

/* 結論パネル (key_facts) */
.area-article--editorial .area-key-facts {
    border: 1px solid var(--ed-rule);
    border-top: 3px solid var(--ed-navy);
    border-bottom: 3px solid var(--ed-navy);
    border-radius: 0;
    overflow: hidden;
    font-size: 14px;
}
.area-article--editorial .area-key-facts th {
    background: var(--ed-paper);
    color: var(--ed-ink);
    font-weight: 600;
    width: 60%;
    padding: 10px 14px;
}
.area-article--editorial .area-key-facts td {
    color: var(--ed-navy);
    font-weight: 700;
    padding: 10px 14px;
}

/* FAQ */
.area-article--editorial .area-faq {
    border: 1px solid var(--ed-rule);
    border-radius: 4px;
}
.area-article--editorial .area-faq summary {
    background: var(--ed-paper);
    color: var(--ed-ink);
    font-family: var(--ed-jp);
}
.area-article--editorial .area-faq summary::before { color: var(--ed-navy); }

/* 店舗関係者の方へ */
.area-article--editorial .store-relations {
    position: relative;
    background: var(--ed-paper);
    border: 1px solid var(--ed-rule);
    border-top: 3px solid;
    border-image: var(--ed-holo) 1;
    border-image-slice: 1;
    border-radius: 0;
    padding: 24px;
    color: var(--ed-text);
}
.area-article--editorial .store-relations__lead { color: var(--ed-text); }
.area-article--editorial .store-relations__lead strong { color: var(--ed-navy); font-weight: 700; }
.area-article--editorial .store-relations__btn {
    border-color: var(--ed-navy);
    color: var(--ed-navy);
    background: #fff;
}
.area-article--editorial .store-relations__btn:hover {
    background: var(--ed-navy);
    color: #fff;
}
.area-article--editorial .store-relations__btn--primary {
    background: var(--ed-navy);
    color: #fff;
    border-color: var(--ed-navy);
}
.area-article--editorial .store-relations__btn--primary:hover {
    background: #fff;
    color: var(--ed-navy);
}

/* まとめ */
.area-article--editorial .area-summary {
    background: var(--ed-paper);
    border: 1px solid var(--ed-rule);
    border-radius: 4px;
    padding: 18px 20px;
    line-height: 1.95;
    color: var(--ed-text);
    font-size: 15px;
}

/* 目次 (TOC) */
.area-article--editorial .area-toc {
    border: 1px solid var(--ed-rule);
    border-top: 3px solid var(--ed-navy);
    background: var(--ed-paper);
    padding: 14px 18px;
    margin: 0 0 24px;
    border-radius: 0;
}
.area-article--editorial .area-toc__title {
    font-size: 13px;
    font-family: var(--ed-jp);
    letter-spacing: .04em;
    font-weight: 700;
    color: var(--ed-navy);
    margin: 0 0 8px;
    text-transform: none;
    border-left: 3px solid var(--ed-navy);
    padding-left: 8px;
}
.area-article--editorial .area-toc ol {
    list-style: decimal;
    padding-left: 1.6em;
    margin: 0;
}
.area-article--editorial .area-toc li {
    font-size: 14px;
    line-height: 2;
    color: var(--ed-text);
    list-style: decimal;
}
.area-article--editorial .area-toc a {
    color: var(--ed-link);
    text-decoration: none;
}
.area-article--editorial .area-toc a:hover {
    color: var(--ed-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 1;
}

/* ===== oripa best pillar (auto-injected) ===== */
/* ── full bleed: container制約を破りビューポート全幅 ── */
.main > .container:has(.area-article--best-pillar) {
  max-width: none;
  padding: 0;
}
.main > .container:has(.area-article--best-pillar) > .breadcrumb {
  display: none;
}
.area-article--best-pillar { width: 100%; max-width: none; padding: 0; margin: 0; }
/* :has()非対応のフォールバック */
@supports not selector(:has(*)) {
  .area-article--best-pillar > .category-nav,
  .area-article--best-pillar > .hero,
  .area-article--best-pillar > .ranking,
  .area-article--best-pillar > .section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
  }
}
:root {
  --ink: #111;
  --ink-2: #333;
  --muted: #666;
  --muted-light: #999;
  --rule-thin: #e5e5e5;
  --rule-thick: #111;
  --bg: #fff;
  --soft: #f5f5f5;
  --hero-bg: #111;
  --hero-text: #fff;
  --hero-muted: rgba(255,255,255,0.7);
  --hero-rule: rgba(255,255,255,0.25);
  --sans: "Helvetica Neue", -apple-system, BlinkMacSystemFont,
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium",
    "Yu Gothic", "Meiryo", sans-serif;
  --logo: "Noto Sans JP", "Hiragino Kaku Gothic StdN",
    "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  --num: "Space Grotesk", "Helvetica Neue", sans-serif;
}
/* ──────────────────────────────────────────
   オリパおすすめプロトタイプ v4
   tcgpro.co.jp/company/ デザイン継承
   モノクロ／sans-serif／第三者情報整理メディア
   ────────────────────────────────────────── */

500;600;700;900&family=Space+Grotesk:wght@500;700&display=swap');








/* ── サイト共通ヘッダ ── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule-thin);
}
.site-header__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.site-header__logo-mark {
  display: block;
  width: 22px;
  height: 30px;
  background: var(--ink);
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: var(--logo);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--ink);
  line-height: 1;
}
.site-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}
.site-nav a { position: relative; padding-bottom: 6px; }
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .2s;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { width: 100%; }
.site-header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.site-header__actions .btn-search {
  background: none; border: none; cursor: pointer;
  padding: 4px;
  color: var(--ink);
  font-size: 16px;
}
.site-header__actions .btn-signin {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
}

/* ── カテゴリアイコン横並びナビ（円形アイコン+ラベル下置き） ── */
.area-article--best-pillar .category-nav {
  border-bottom: 0;
  padding: 18px 24px 0;
  background: var(--bg);
  margin: 0;
}
.area-article--best-pillar .category-nav__list {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.area-article--best-pillar .category-nav__item {
  text-align: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  display: block;
}
.area-article--best-pillar .category-nav__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--logo);
  transition: all .15s;
}
.area-article--best-pillar .category-nav__item:hover {
  opacity: 1;
  color: var(--ink);
}
.area-article--best-pillar .category-nav__item:hover .category-nav__icon {
  background: var(--ink);
  color: var(--bg);
}
.area-article--best-pillar .category-nav__item--active {
  color: var(--ink);
  font-weight: 700;
  border-bottom-color: var(--ink);
}
.area-article--best-pillar .category-nav__item--active .category-nav__icon {
  background: var(--ink);
  color: var(--bg);
}

/* ── ヒーロー（v2レイアウト・モノクロ版・コンパクト・単カラム） ── */
.area-article--best-pillar .hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: 28px 24px 48px;
  margin: 0;
}
.area-article--best-pillar .hero__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.area-article--best-pillar .hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--hero-muted);
}
.area-article--best-pillar .hero__breadcrumb {
  font-size: 12px;
  color: var(--hero-muted);
  letter-spacing: .04em;
}
.area-article--best-pillar .hero__breadcrumb a {
  color: var(--hero-muted);
  text-decoration: none;
}
.hero__breadcrumb a:hover { color: var(--hero-text); opacity: 1; }
.hero__breadcrumb span.sep { margin: 0 8px; opacity: .5; }
.area-article--best-pillar .hero__advertiser {
  font-size: 12px;
  color: var(--hero-muted);
}

.area-article--best-pillar .hero__h1 {
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: .01em;
  margin: 0 0 20px;
  font-weight: 700;
  font-family: var(--sans);
  color: var(--hero-text);
}

.area-article--best-pillar .hero__byline {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 10px;
  font-size: 13px;
  flex-wrap: wrap;
}
.area-article--best-pillar .hero__avatars {
  display: flex;
  align-items: center;
}
.area-article--best-pillar .hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--hero-bg);
  background: #2c2c2c;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--hero-text);
  font-family: var(--logo);
}
.hero__avatar:first-child { margin-left: 0; }
.area-article--best-pillar .hero__byline-text {
  font-size: 14px;
  color: var(--hero-muted);
  letter-spacing: .02em;
}
.hero__byline-text strong { color: var(--hero-text); font-weight: 500; }
.area-article--best-pillar .hero__byline-text a {
  color: var(--hero-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hero__byline-text a:hover { opacity: 0.8; }

.area-article--best-pillar .hero__meta {
  font-size: 12px;
  color: var(--hero-muted);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  letter-spacing: .04em;
}
.hero__meta-sep { opacity: .5; }
.area-article--best-pillar .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hero-muted);
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hero-text);
  font-weight: 700;
}
.hero__badge::before { content: "✓"; font-size: 10px; }
.area-article--best-pillar .hero__meta-link {
  color: var(--hero-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.area-article--best-pillar .hero__lead {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: var(--hero-text);
  letter-spacing: .01em;
}
.hero__lead strong { font-weight: 700; }
.area-article--best-pillar .hero__lead-readmore {
  color: var(--hero-text);
  font-weight: 700;
  margin-left: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── ランキングセクション ── */
.area-article--best-pillar .ranking {
  background: var(--soft);
  padding: 64px 24px 80px;
}
.area-article--best-pillar .ranking__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.area-article--best-pillar .ranking__head {
  margin-bottom: 32px;
}
.area-article--best-pillar .ranking__head-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.area-article--best-pillar .ranking__head-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 12px;
}
.area-article--best-pillar .ranking__head-sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── 1社1カード塊（card-block） ── */
.area-article--best-pillar .card-block {
  background: var(--bg);
  border: 1px solid var(--rule-thin);
  border-radius: 8px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

/* ── 1位用 リボン型ペナント ── */
.area-article--best-pillar .card-block__pennant-top {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0; left: 0;
}
.area-article--best-pillar .card-block__pennant-flag {
  width: 56px;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.area-article--best-pillar .card-block__pennant-flag::before {
  content: "";
  position: absolute;
  bottom: -16px; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 28px 0 28px;
  border-color: var(--ink) transparent transparent transparent;
}
.area-article--best-pillar .card-block__pennant-flag::after {
  content: "T";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  color: var(--bg);
  font-family: var(--logo);
  font-weight: 900;
  font-size: 18px;
}
.area-article--best-pillar .card-block__pennant-text {
  flex: 1;
  background: var(--soft);
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
}

/* ── 「目的別おすすめ」用 軽量ペナント ── */
.area-article--best-pillar .card-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
  margin: 24px 24px 0;
}
.area-article--best-pillar .card-block__tag::before {
  content: "✓";
  display: inline-flex;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* ── ヘッダー（image + 名前+rating + CTA の3カラム） ── */
.area-article--best-pillar .card-block__head {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 32px;
  padding: 28px 32px;
  align-items: flex-start;
}
.area-article--best-pillar .card-block__image {
  width: 200px;
  height: 124px;
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--logo);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  flex-shrink: 0;
}
.card-block__main { min-width: 0; }
.area-article--best-pillar .card-block__name {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: .01em;
  line-height: 1.3;
}
.area-article--best-pillar .card-block__name a {
  color: var(--ink);
  text-decoration: none;
}
.card-block__name a:hover { opacity: 0.7; }
.area-article--best-pillar .card-block__rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.area-article--best-pillar .card-block__stars {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .04em;
}
.card-block__stars-empty { color: var(--rule-thin); }
.area-article--best-pillar .card-block__rating-num {
  font-family: var(--num);
  font-weight: 700;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}
.area-article--best-pillar .card-block__rating-link {
  font-size: 13px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.area-article--best-pillar .card-block__compare {
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rule-thin);
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}
.area-article--best-pillar .card-block__compare::before {
  content: "";
  width: 14px; height: 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  display: inline-block;
}
.area-article--best-pillar .card-block__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.area-article--best-pillar .card-block__apply {
  display: block;
  background: var(--ink);
  color: var(--bg) !important;
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
}
.card-block__apply:hover { opacity: 0.85; }
.card-block__apply::after { content: "  ↗"; font-size: 12px; }
.area-article--best-pillar .card-block__cta-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.area-article--best-pillar .card-block__cta-link {
  font-size: 13px;
  color: var(--ink);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ── メトリクス3カラム（年会費・還元率・初回特典） ── */
.area-article--best-pillar .card-block__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule-thin);
}
.area-article--best-pillar .card-block__metric {
  padding: 20px 32px;
  border-right: 1px solid var(--rule-thin);
}
.card-block__metric:last-child { border-right: 0; }
.area-article--best-pillar .card-block__metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.area-article--best-pillar .card-block__metric-value {
  font-family: var(--num);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.area-article--best-pillar .card-block__metric-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* ── サブメトリクス2カラム（運営年数・SNS等） ── */
.area-article--best-pillar .card-block__sub-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule-thin);
}
.area-article--best-pillar .card-block__sub-metric {
  padding: 20px 32px;
  border-right: 1px solid var(--rule-thin);
}
.card-block__sub-metric:last-child { border-right: 0; }
.area-article--best-pillar .card-block__sub-metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.area-article--best-pillar .card-block__sub-metric-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
}
.area-article--best-pillar .card-block__sub-metric-link {
  display: inline-block;
  font-size: 12px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
  font-weight: 500;
}

/* ── アコーディオン（強み / 運営情報 / 評価ポイント） ── */
.area-article--best-pillar .card-block__accordions {
  border-top: 1px solid var(--rule-thin);
}
.area-article--best-pillar .card-block__acc {
  border-bottom: 1px solid var(--rule-thin);
}
.card-block__acc:last-child { border-bottom: 0; }
.area-article--best-pillar .card-block__acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  color: var(--ink);
}
.card-block__acc summary::-webkit-details-marker { display: none; }
.area-article--best-pillar .card-block__acc-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}
.area-article--best-pillar .card-block__acc-toggle {
  margin-left: auto;
  font-size: 14px;
  color: var(--muted);
  transition: transform .2s;
}
.area-article--best-pillar .card-block__acc[open] .card-block__acc-toggle {
  transform: rotate(180deg);
}
.area-article--best-pillar .card-block__acc-body {
  padding: 0 32px 24px 68px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
.card-block__acc-body p { margin: 0 0 12px; }
.card-block__acc-body ul { margin: 8px 0; padding-left: 20px; }
.card-block__acc-body li { margin: 4px 0; }

/* ── セクション共通 ── */
.area-article--best-pillar .section {
  background: var(--bg);
  padding: 96px 24px;
  border-bottom: 1px solid var(--rule-thin);
}
.area-article--best-pillar .section__inner {
  max-width: 960px;
  margin: 0 auto;
}
.area-article--best-pillar .section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.area-article--best-pillar .section__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 24px;
  line-height: 1.3;
}
.area-article--best-pillar .section__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 40px;
}
.section--soft { background: var(--soft); border-bottom: 0; border-top: 1px solid var(--rule-thin); }

/* ── トラスト ── */
.area-article--best-pillar .trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  border-top: 1px solid var(--ink);
  padding-top: 40px;
}
.area-article--best-pillar .trust__num {
  font-family: var(--num);
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.area-article--best-pillar .trust h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.area-article--best-pillar .trust p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

/* ── Methodology ── */
.method dl { margin: 16px 0 0; }
.area-article--best-pillar .method dt {
  font-weight: 700;
  font-size: 16px;
  margin-top: 32px;
  padding-top: 24px;
  color: var(--ink);
  border-top: 1px solid var(--rule-thin);
  letter-spacing: .02em;
}
.method dt:first-of-type { border-top: 1px solid var(--ink); }
.area-article--best-pillar .method dd {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
}

/* ── FAQ（news-item風） ── */
.area-article--best-pillar .faq-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-thin);
  align-items: baseline;
}
.faq-item:first-child { border-top: 1px solid var(--ink); }
.area-article--best-pillar .faq-item__num {
  flex: 0 0 80px;
  font-family: var(--num);
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.faq-item__body { flex: 1; }
.area-article--best-pillar .faq-item h3 {
  font-size: 17px;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.5;
}
.area-article--best-pillar .faq-item p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}

/* ── About authors ── */
.area-article--best-pillar .author {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-thin);
  align-items: flex-start;
}
.author:first-of-type { border-top: 1px solid var(--ink); }
.area-article--best-pillar .author__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--rule-thin);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  font-family: var(--logo);
  flex-shrink: 0;
}
.area-article--best-pillar .author__role {
  flex: 0 0 120px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  padding-top: 8px;
}
.author__body { flex: 1; }
.area-article--best-pillar .author__name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: .02em;
}
.area-article--best-pillar .author__name-en {
  font-family: var(--num);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .14em;
  margin-left: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.area-article--best-pillar .author__body p {
  font-size: 14px;
  line-height: 1.85;
  margin: 8px 0;
  color: var(--ink-2);
}

/* ── footer ── */
.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 60px 24px 40px;
  font-size: 12px;
  border-top: 1px solid var(--ink);
  letter-spacing: .04em;
}
.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__brand {
  font-family: var(--logo);
  font-weight: 900;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .08em;
}

/* ── レスポンシブ ── */
@media (max-width: 980px) {
  .hero__h1 { font-size: 28px; }
  .comparison__cols { display: none; }
  .entry__row { grid-template-columns: 60px 1fr; gap: 12px; }
  .entry__row > div:nth-child(n+3) { grid-column: 2; padding-top: 8px; }
  .entry__expand { grid-template-columns: 1fr; gap: 24px; margin: 16px 0 0 80px; }
  .trust { grid-template-columns: 1fr; gap: 32px; }
  .site-nav { display: none; }
  .section { padding: 56px 20px; }
  .section__title { font-size: 26px; }
  .hero { padding: 56px 20px 40px; }
}
/* ===== /oripa best pillar end ===== */

/* ===== oripa area map nominees (auto-injected) ===== */
/* ──────────────────────────────────────────
   全国マップ × ノミネート授賞 スタイル
   モノクロ・編集メディア基調
   ────────────────────────────────────────── */

/* ── マップセクション全体 ── */
.area-article--best-pillar .area-map-section {
  background: var(--bg);
  padding: 64px 24px 48px;
  border-top: 1px solid var(--rule-thin);
}
.area-article--best-pillar .area-map-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.area-article--best-pillar .area-map-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.area-article--best-pillar .area-map-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.area-article--best-pillar .area-map-section__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 16px;
  line-height: 1.3;
}
.area-article--best-pillar .area-map-section__sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── 日本地図グリッド（grid-template-areas で重複なし） ── */
.area-article--best-pillar .japan-map {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-areas:
    ".  .  .  .  .  .  hk hk"
    ".  .  .  .  .  th th th"
    ".  .  .  cb cb kt kt kt"
    ".  ks ks ks .  .  .  ."
    "cg cg cg .  .  .  .  ."
    "ky ky sk sk .  .  .  ."
    "ok ok .  .  .  .  .  .";
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 64px;
}
.area-article--best-pillar .region {
  border: 1px solid var(--rule-thin);
  background: var(--bg);
  padding: 14px 12px;
  text-align: center;
  border-radius: 6px;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 76px;
}
.area-article--best-pillar .region:hover {
  border-color: var(--ink);
  background: var(--soft);
}
.area-article--best-pillar .region--nominated {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.area-article--best-pillar .region--nominated:hover {
  background: var(--ink-2);
  color: var(--bg);
}
.area-article--best-pillar .region__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
}
.area-article--best-pillar .region__count {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .04em;
  font-family: var(--num);
  font-variant-numeric: tabular-nums;
}
.area-article--best-pillar .region--nominated .region__count {
  color: rgba(255,255,255,0.7);
}
.area-article--best-pillar .region__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

/* ── 日本配置（grid-areas） ── */
.region--hokkaido      { grid-area: hk; }
.region--tohoku        { grid-area: th; }
.region--kanto         { grid-area: kt; }
.region--chubu         { grid-area: cb; }
.region--kansai        { grid-area: ks; }
.region--chugoku       { grid-area: cg; }
.region--shikoku       { grid-area: sk; }
.region--kyushu        { grid-area: ky; }
.region--okinawa       { grid-area: ok; }

/* ── 47都道府県内訳ラベル ── */
.area-article--best-pillar .region__prefs {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.region--nominated .region__prefs { color: rgba(255,255,255,0.6); }

/* ── ノミネートグリッド（賞状型カード） ── */
.area-article--best-pillar .nominees {
  background: var(--soft);
  padding: 80px 24px;
  border-top: 1px solid var(--rule-thin);
}
.area-article--best-pillar .nominees__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.area-article--best-pillar .nominees__head {
  text-align: center;
  margin-bottom: 48px;
}
.area-article--best-pillar .nominees__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.area-article--best-pillar .nominees__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 16px;
}
.area-article--best-pillar .nominees__sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}
.area-article--best-pillar .nominees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* ── 賞状/ノミネートカード（月桂冠型） ── */
.area-article--best-pillar .award-card {
  background: var(--bg);
  border: 1px solid var(--rule-thin);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.area-article--best-pillar .award-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* 上部リボン: AWARD タグ */
.area-article--best-pillar .award-card__ribbon {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  display: inline-block;
}

/* 月桂冠SVG（CSSでなく単色SVG使用予定） */
.area-article--best-pillar .award-card__laurel {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
}
.area-article--best-pillar .award-card__laurel-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.area-article--best-pillar .award-card__laurel-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 36px;
}
.area-article--best-pillar .award-card__year {
  font-family: var(--num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 4px;
}
.area-article--best-pillar .award-card__no1 {
  font-family: var(--num);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.area-article--best-pillar .award-card__no1-prefix {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-top: -4px;
}
.area-article--best-pillar .award-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.3;
  text-align: center;
  max-width: 100px;
}

/* カード下部の店舗情報 */
.area-article--best-pillar .award-card__pref {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.area-article--best-pillar .award-card__shop {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0 0 8px;
  line-height: 1.4;
}
.area-article--best-pillar .award-card__usp {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: .02em;
  margin: 0 0 16px;
}
.area-article--best-pillar .award-card__cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  color: var(--ink);
}

/* ── レスポンシブ ── */
@media (max-width: 720px) {
.area-article--best-pillar .japan-map {
    grid-template-areas:
      ". . . . hk hk"
      ". . . th th th"
      ". . cb cb kt kt"
      ". ks ks ks . ."
      "cg cg cg . . ."
      "ky ky sk sk . ."
      "ok ok . . . .";
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }
  .region { padding: 8px 4px; min-height: 52px; }
  .region__name { font-size: 11px; }
  .region__prefs { display: none; }
  .region__count { font-size: 9px; }
  .area-map-section__title { font-size: 22px; }
  .nominees__title { font-size: 22px; }

  /* ── オリパ紹介カード（card-block）モバイル最適化 ── */
  .area-article--best-pillar .card-block {
    margin-bottom: 20px;
    border-radius: 6px;
  }
  .area-article--best-pillar .card-block__pennant-flag {
    width: 44px;
  }
  .area-article--best-pillar .card-block__pennant-flag::before {
    border-width: 12px 22px 0 22px;
  }
  .area-article--best-pillar .card-block__pennant-flag::after {
    top: 10px;
    font-size: 14px;
  }
  .area-article--best-pillar .card-block__pennant-text {
    padding: 12px 14px;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .area-article--best-pillar .card-block__tag {
    margin: 16px 16px 0;
    padding: 6px 12px;
    font-size: 10px;
  }
  .area-article--best-pillar .card-block__head {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .area-article--best-pillar .card-block__image {
    width: 100%;
    height: 160px;
    font-size: 13px;
  }
  .area-article--best-pillar .card-block__name {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.35;
  }
  .area-article--best-pillar .card-block__rating-row {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  .area-article--best-pillar .card-block__rating-num {
    font-size: 15px;
  }
  .area-article--best-pillar .card-block__rating-link,
  .area-article--best-pillar .card-block__compare {
    font-size: 12px;
  }
  .area-article--best-pillar .card-block__compare {
    padding: 6px 10px;
  }
  .area-article--best-pillar .card-block__cta {
    gap: 8px;
  }
  .area-article--best-pillar .card-block__apply {
    padding: 14px 16px;
    font-size: 14px;
    letter-spacing: .08em;
  }
  .area-article--best-pillar .card-block__cta-note,
  .area-article--best-pillar .card-block__cta-link {
    font-size: 12px;
  }
  .area-article--best-pillar .card-block__metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .area-article--best-pillar .card-block__metric {
    padding: 14px 10px;
  }
  .area-article--best-pillar .card-block__metric-label {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .area-article--best-pillar .card-block__metric-value {
    font-size: 16px;
  }
  .area-article--best-pillar .card-block__metric-sub {
    font-size: 10px;
  }
  .area-article--best-pillar .card-block__sub-metric {
    padding: 14px 16px;
  }
  .area-article--best-pillar .card-block__sub-metric-label {
    font-size: 11px;
  }
  .area-article--best-pillar .card-block__sub-metric-value {
    font-size: 14px;
  }
  .area-article--best-pillar .card-block__sub-metric-link {
    font-size: 11px;
  }
  .area-article--best-pillar .card-block__acc summary {
    padding: 16px;
    font-size: 14px;
    gap: 10px;
  }
  .area-article--best-pillar .card-block__acc-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .area-article--best-pillar .card-block__acc-body {
    padding: 0 16px 20px 46px;
    font-size: 13px;
    line-height: 1.8;
  }

  /* ── カテゴリナビ（5項目を1行に収める）── */
  .area-article--best-pillar .category-nav {
    padding: 14px 12px 0;
  }
  .area-article--best-pillar .category-nav__list {
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .area-article--best-pillar .category-nav__item {
    flex: 1 1 0;
    min-width: 0;
    font-size: 10px;
    padding-bottom: 6px;
    letter-spacing: 0;
  }
  .area-article--best-pillar .category-nav__icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin: 0 auto 4px;
  }
}
/* ===== /oripa area map end ===== */
