/* ここからパンくず */
.breadcrumb {
    font-size: 12px;
    color: #555;
    margin: 20px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 6px;
    color: #aaa;
}

.breadcrumb li:last-child::after {
    content: "";
    /* 最後は「>」なし */
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ここまでパンくず */

/* ここから料金 */
.price {
    background: #F7F6F6;
    background-position: center;
}

.section_title.-price {
    padding-top: 110px;
    margin-bottom: 20px;
    color: #562915;
}

.price-wrapper {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    gap: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* .price-box {
    display: flex;
    gap: 20px;
} */

.price-box {
    display: flex;
    gap: 20px;
    /* カード間の隙間 */
    justify-content: center;
    /* 中央寄せ */
}

.price-card {
    border: 1px solid #7B4E2D;
    /* 茶色の枠線 */
    width: 150px;
    /* カードの幅 */
}

.price-header {
    background-color: #FFD95A;
    /* 黄色背景 */
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.price-body {
    background-color: #fff;
    text-align: center;
    padding: 15px;
}




table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 14px;
}

th {
    background: #ffdc57;
    padding: 10px 50px;
    border: 1px solid #562915;
    text-align: center;
    vertical-align: middle;
}

td {
    padding: 20px;
    border: 1px solid #562915;
    line-height: 15px;
    vertical-align: middle;
    text-align: center;
}

.lesson-table td small {
    font-size: 10px;
    padding: 0;
}

.note {
    font-size: 12px;
    text-align: center;
    color: #000;
}

/* お試し */

@media (max-width: 768px) {
    .price-box {
        overflow-x: auto;
        width: 100%;
    }

    .lesson-table {
        min-width: 700px;
        /* テーブルが狭くなりすぎないように */
    }
}

@media (max-width: 570px) {
    .lesson-table {
        display: none;
        /* テーブル非表示 */
    }

    .lesson-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .lesson-card {
        background: #fff;
        border: 1px solid #562915;
        padding: 16px;
        border-radius: 8px;
        font-size: 14px;
        line-height: 1.6;
    }

    .lesson-card h4 {
        font-weight: bold;
        margin-bottom: 8px;
    }

    .lesson-card small {
        font-size: 12px;
    }
}

.lesson-cards {
    display: none;
}

@media (max-width: 570px) {
    .price-box {
        display: flex;
        flex-direction: column;
        width: 250px;
        align-items: center;
    }

    .lesson-cards {
        display: flex;
    }
}

/* ここまで料金 */