/* =====================================================
   クレジットカード比較表
   .mv-card-table-wrapper 配下にスコープして競合を防ぐ
   ===================================================== */

.mv-card-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
}

.mv-card-table-wrapper .mv-card-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    table-layout: auto;
}

/* ── ヘッダー ── */
.mv-card-table-wrapper .mv-card-table thead th {
    background: #1e3a5f;
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #16304e;
}

/* ── ボディ ── */
.mv-card-table-wrapper .mv-card-table tbody td {
    padding: 10px 14px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
}

.mv-card-table-wrapper .mv-card-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* ── カード名＋画像セル（左端固定列） ── */
.mv-card-table-wrapper .mv-card-table .mv-card-cell {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
    min-width: 120px;
    font-weight: 600;
    padding: 10px 7px;
}

.mv-card-table-wrapper .mv-card-table tbody tr:nth-child(even) .mv-card-cell {
    background: #f9f9f9;
}

.mv-card-table-wrapper .mv-card-table .mv-card-name {
    display: block;
    margin-bottom: 6px;
}

.mv-card-table-wrapper .mv-card-table .mv-card-thumb {
    display: block;
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto;
}

/* ── 申込ボタンセル ── */
.mv-card-table-wrapper .mv-card-table .mv-cell-cta {
    text-align: center;
    white-space: nowrap;
}

.mv-card-table-wrapper .mv-card-table .mv-btn-apply {
    display: inline-block;
    padding: 6px 14px;
    background: #e8380d;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
}

.mv-card-table-wrapper .mv-card-table .mv-btn-apply:hover {
    background: #c42f0a;
    color: #fff;
}

/* ── 付帯サービス ── */
.mv-card-table-wrapper .mv-card-table .mv-cell-services {
    min-width: 160px;
    line-height: 1.8;
}

/* ── 特典（箇条書き） ── */
.mv-card-table-wrapper .mv-card-table .mv-cell-benefits {
    min-width: 200px;
}

.mv-card-table-wrapper .mv-card-table .mv-benefits-list {
    margin: 0;
    padding-left: 1.2em;
    font-size: 13px;
    line-height: 1.8;
}

.mv-card-table-wrapper .mv-card-table .mv-benefits-list li {
    list-style: disc;
    padding: 0;
    font-size: 13px;
}

/* ── SP対応 ── */
@media (max-width: 768px) {
    .mv-card-table-wrapper .mv-card-table thead th {
        font-size: 12px;
        padding: 8px 10px;
    }

    .mv-card-table-wrapper .mv-card-table tbody td {
        font-size: 12px;
        padding: 8px 10px;
    }

    .mv-card-table-wrapper .mv-card-table .mv-card-thumb {
        width: 72px;
    }
}
