/* 料金表ページ モバイル向けスタイル */

@media (max-width: 640px) {
    /* カードレイアウト */
    .price-card-large {
        padding: 1.5rem 1rem;
    }

    .price-card-medium {
        padding: 1.5rem 1rem;
        margin: 0 auto 2rem;
    }

    .card {
        padding: 1.5rem 1rem;
        margin: 0 auto 0.5rem;
    }

    /* タイトルスタイル */
    .price-title-main {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-bottom: 0.4rem;
        width: 100%;
    }

    /* テーブルスタイル */
    .price-table {
        margin-top: 0.8rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .price-table th {
        font-size: 0.9rem;
    }

    /* 2カラムテーブルの列幅調整 */
    .price-table td:first-child:nth-last-child(2) {
        width: 55%;
    }

    .price-table td:first-child:nth-last-child(2) ~ td {
        width: 45%;
    }

    /* 注釈 */
    .price-table-note {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .price-table td.price-table-note-small {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .price-notice-main {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .price-notice-sub {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    /* さらに小さい画面向け */
    .price-card-large,
    .price-card-medium,
    .card {
        padding: 1.2rem 0.8rem;
    }

    .price-title-main {
        font-size: 1.1rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }

    .price-table th {
        font-size: 0.85rem;
    }

    .price-table-note {
        font-size: 0.75rem;
    }

    .price-table td.price-table-note-small {
        font-size: 0.7rem;
    }
}
