/* テーブル全体を囲むコンテナ */
.product-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
}

/* 比較テーブルのスタイル */
.product-spec-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 8px 0px; /* 列の間の隙間 */
    text-align: center;
    font-size: 13px;
    color: #334155;
    min-width: 750px;
    border: none;
}

.product-spec-table th,
.product-spec-table td {
    border: 1px solid #cbd5e1;
    padding: 10px 8px;
    vertical-align: middle;
    background-color: #ffffff; 
}

/* ヘッダー列（商品名部分） */
.product-spec-table thead tr:first-child th {
    background-color: #f2f2f2;
    font-weight: 600;
    border-bottom: none;
}
.product-spec-table thead td {
    border-top: none;
}
.product-spec-table thead tr:first-child th:not(.fixed-col) {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* 左上の空セル（枠線を完全に消す） */
.none_border {
    border: none !important;
    background-color: #ffffff !important;
}

/* ヘッダー内の左上空セルがスクロール時に一緒に動く（固定される）ようにする設定 */
.product-spec-table thead th.none_border.fixed-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #ffffff !important;
    border: none !important;
}

/* 【重要】一番左の列を固定（sticky）にする設定 */
.product-spec-table .fixed-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #f2f2f2;
    font-weight: 600;
    color: #475569;
    width: 120px;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}

/* 商品画像 */
.prod-img {
    max-width: 90px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 商品名タイトル */
.prod-name {
    font-size: 12px;
    font-weight: bold;
    color: #0f172a;
    line-height: 1.2;
}

/* スマホ表示時の微調整 */
@media screen and (max-width: 768px) {
    .product-spec-table {
        font-size: 12px;
        border-spacing: 5px 0px;
    }
    .product-spec-table th,
    .product-spec-table td {
        padding: 8px 6px;
    }
    .product-spec-table .fixed-col {
        width: 100px;
        min-width: 100px;
        font-size: 12px;
    }
}