/* 料金比較表 */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background-color: #fff;
    table-layout: fixed;
}

/* ヘッダー部分 */
.price-table tr:first-child th {
    background-color: #084e7d;
    color: white;
    padding: 25px 15px;
    text-align: center;
    font-weight: normal;
    font-size: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    width: 25%;
    /* 均等に4分割 */
}

.price-table tr:first-child th:first-child {
    background-color: transparent;
}

.price-table tr:first-child th:last-child {
    border-right: none;
}

/* 項目タイトル列 */
.price-table td.item-title {
    text-align: left;
    padding: 25px 20px;
    background-color: #F8F9FB;
    font-size: 14px;
    color: #333;
    border-left: none;
    width: 25%;
    /* ヘッダーと同じ幅 */
}

/* セル共通 */
.price-table td {
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #E6E6E6;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.6;
    width: 25%;
    /* 均等に4分割 */
}

/* 記号のスタイル */
.symbol {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.symbol.circle {
    color: #003B64;
}

.symbol.triangle {
    color: #003B64;
    opacity: 0.7;
}

.symbol.cross {
    color: #999;
}

/* 奇数行の背景色 */
.price-table tr:nth-child(odd):not(:first-child) td:not(.item-title) {
    background-color: #f3f8ff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .price-table tr:first-child th {
        font-size: 14px;
        padding: 20px 10px;
    }

    .price-table td {
        font-size: 13px;
        padding: 20px 10px;
    }

    .price-table td.item-title {
        font-size: 13px;
        padding: 20px 15px;
    }
}

@media screen and (max-width: 768px) {
    .price-table tr:first-child th {
        font-size: 13px;
        padding: 15px 8px;
    }

    .price-table td {
        font-size: 12px;
        padding: 15px 8px;
    }

    .price-table td.item-title {
        font-size: 12px;
        padding: 15px 10px;
    }

    .symbol {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {
    .price-table tr:first-child th {
        font-size: 12px;
        padding: 12px 5px;
    }

    .price-table td {
        font-size: 11px;
        padding: 12px 5px;
    }

    .price-table td.item-title {
        font-size: 11px;
        padding: 12px 8px;
    }

    .symbol {
        font-size: 14px;
        margin-bottom: 4px;
    }
}