/* 料金表ページ - 寒色系ベース */
:root {
    --price-list-bg: #ffffff;
    --price-list-accent: #41a8cc;
    --price-list-accent-dark: #2d8fb5;
    --price-list-header-bg: #5eb5d4;
    --price-list-card-bg: #ffffff;
    --price-list-hover-bg: #eef7fb;
    --price-list-category-bg: #007fd3;
    --price-list-category-text: #222;
    --price-list-th-bg: #e0f7ff;
    --price-list-th-text: #222;
    --price-list-tab-text: #222222;
    --price-list-border: #ccc;
    --price-list-note: #5a6c75;
}

table {
    border-color: var(--price-list-border);
}

.price-list-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 40px;
}

/* タブパネル */
.price-list-panel {
    display: none;
    animation: fadeIn 0.25s ease;
}

.price-list-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 料金表カード */
.price-list-card {
    background: var(--price-list-card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26, 77, 92, 0.08);
    margin-bottom: 24px;
    overflow-x: hidden;
    border: 1px solid var(--price-list-border);
}

/* 車種テーブル共通 */
.price-list-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.price-list-table th,
.price-list-table td {
    border: 1px solid var(--price-list-border);
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
}

.price-list-table .category-row th {
    background: var(--price-list-th-bg);
    color: var(--price-list-category-text);
    font-weight: bold;
    text-align: center;
    padding: 12px;
}

.price-list-table thead th {
    background: var(--price-list-th-bg);
    color: var(--price-list-th-text);
    font-weight: 600;
    white-space: normal;
}

.price-list-table-title {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--price-list-bg);
    color: var(--price-list-th-text);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px;
}

.price-list-table thead th.vehicle-type {
    min-width: 140px;
}

.price-list-table tbody td.vehicle-model {
    text-align: left;
    background: #ffffff;
}

.price-list-table tbody td.category-cell {
    font-weight: 700;
}

.price-list-table tbody td.category-cell.category-merged {
    vertical-align: middle;
}

.price-list-table tbody td.category-cell.category-merged.is-hovered {
    background: var(--price-list-hover-bg);
}

.price-list-table tbody td.price-cell {
    font-weight: 600;
    text-align: right;
}

.price-list-table tbody td.vehicle-type {
    text-align: left;
}

.price-list-table tbody td.sub-type {
    font-size: 0.85em;
    color: #444;
}

.price-list-table tbody td.vehicle-type .category-name {
    font-weight: 600;
    display: block;
}

.price-list-table tbody td.vehicle-type .sub-type {
    font-size: 0.85em;
    color: #444;
    font-weight: normal;
}

.price-list-table .plan-group {
    font-weight: 600;
}

.price-list-table tbody tr:hover td {
    background: #f0f9fc;
}

.price-list-table tbody tr:hover td.vehicle-type {
    background: var(--price-list-hover-bg);
}

/* オプション表 */
.price-list-options .category-row th {
    padding-left: 16px;
}

.price-list-options .category-row th.option-price,
.price-list-options .category-row th.option-unit {
    text-align: center;
}

.price-list-options thead th.option-name {
    min-width: 100px;
}

.price-list-options tbody td {
    font-weight: 500;
    background: #ffffff;
}

.price-list-options tbody td.option-name {
    text-align: left;
    font-weight: 600;
}

.price-list-options tbody td.option-name .option-name-text {
    display: inline;
}

.price-list-option-desc-btn {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0 0 0 6px;
    margin: 0;
    color: #1a73e8a8;
    cursor: pointer;
    line-height: 1;
}

.price-list-option-desc-btn i {
    font-size: 1.1rem;
}

.price-list-option-desc-btn:hover,
.price-list-option-desc-btn:focus-visible {
    color: var(--price-list-accent-dark);
    outline: none;
}

.price-list-options tbody td.option-price {
    text-align: right;
}

.price-list-options tbody td.option-unit {
    white-space: nowrap;
}

.price-list-notes {
    margin: 6px 0 20px;
}

.price-list-return-location tbody td.return-location-name {
    text-align: left;
    font-weight: 600;
}

.price-list-return-location tbody td.return-location-address {
    text-align: left;
}

.price-list-return-location tbody td.return-location-price {
    text-align: right;
    font-weight: 600;
}

.price-list-return-location tbody td.return-location-unit {
    text-align: center;
    font-weight: 600;
}

/* 注釈 */
.price-list-note {
    font-size: 0.85rem;
    color: var(--price-list-note);
    margin: 8px 0;
}

/* フッター情報リスト */
.price-list-footer-info {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.price-list-footer-info li {
    padding: 8px 0 8px 0;
    position: relative;
    font-size: 0.9rem;
}

.price-list-footer-info li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--price-list-category-bg);
    border-radius: 2px;
    margin-right: 0.5rem;
}

/* 保険欄 */
.insurance-note-group {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.insurance-note-item {
    margin-bottom: 0.5rem;
} 

/* 予約ボタン（下部） */
.price-list-cta {
    text-align: right;
    margin-top: 24px;
}

.price-list-cta .btn-reserve {
    display: inline-block;
    padding: 14px 36px;
    background: var(--price-list-category-bg);
    color: #fff;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    font-size: 1rem;
}

.price-list-cta .btn-reserve:hover {
    background: var(--price-list-accent-dark);
    color: #fff;
    transform: scale(1.02);
}

.price-list-footer-note {
    margin-left: 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
}
/* レスポンシブ */
@media (max-width: 768px) {
    .price-list-table-title {
        height: 70px;
    }

    .price-list-table {
        font-size: 0.8rem;
    }

    .price-list-table th,
    .price-list-table td {
        padding: 8px 6px;
    }

    .price-list-table thead th.vehicle-type,
    .price-list-table tbody td.vehicle-type {
        width: 95px;
        min-width: 0;
    }

    .price-list-tabs {
        justify-content: center;
    }

    .price-list-cta {
        text-align: center;
    }

    /* モバイル用：日帰り/宿泊タブ */
    .price-list-mobile-plan-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0.5rem;
        background: var(--price-list-bg);
        border: 1px solid var(--price-list-border);
    }

    .price-list-mobile-plan-tab {
        appearance: none;
        border: 2px solid var(--price-list-border);
        background: #fff;
        border-radius: 10px;
        padding: 10px 8px;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--price-list-tab-text);
        line-height: 1.1;
    }

    .price-list-mobile-plan-tab.is-active {
        border-color: var(--price-list-accent);
        background: var(--price-list-accent);
        color: #fff;
    }

    .price-list-vehicle-table.plan-mode-daytrip .plan-overnight {
        display: none;
    }

    .price-list-vehicle-table.plan-mode-overnight .plan-daytrip {
        display: none;
    }
}

@media (max-width: 480px) {
    .price-list-table-title {
        font-size: 1.1rem;
    }
    .price-list-table thead th.vehicle-type,
    .price-list-table tbody td.vehicle-type {
        width: 65px;
    }

    .price-list-return-location thead tr th.return-location-name,
    .price-list-return-location tbody td.return-location-name {
        max-width: 100px;
    }
}

/* PCではプランタブ非表示（モバイルのみ表示） */
@media (min-width: 769px) {
    .price-list-mobile-plan-tabs {
        display: none;
    }
}

/* 旧：備考バルーン用スタイルは廃止 */
