@charset "UTF-8";
.lesson {
    background: url(../img/utsunomiya/bk-lesson.jpg) center center no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 80px 20px;
}
.lesson h2 {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: #e9e1c8;
    margin-bottom: 50px;
}
.lesson-wrap {
    width: 100%;
    max-width: 768px;
    display: flex;
    justify-content: space-between;
}
.lesson-card {
    width: 30%; /* 4つの場合は22.5％ */
    background-color: #fff;
    text-align: center;
    padding: 20px 10px;
}
.lesson-count-total {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #A27C06;
    line-height: 1.2;
}
.lesson-price {
    font-family: "Shippori Mincho B1", serif;
    color: #010210;
}
.lesson-price-amount {
    font-size: 2.7rem;
    font-weight: 600;
}
.lesson-price-unit {
    font-size: 1.8rem;
    font-weight: 500;
}
.lesson-price-per {
    font-family: "Shippori Mincho B1", serif;
    color: #010210;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: -8px;
}

@media only screen and (max-width:768px) {
    .lesson {
        padding: 40px 20px 50px 20px;
    }
    .lesson h2 {
        margin-bottom: 30px;
    }
    .lesson-wrap {
        flex-direction: column;
        max-width: 500px;
        align-items: center;
        gap: 20px;
    }
    .lesson-card {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .lesson-count-total {
        width: 70px;
        text-align: right;
    }
}