@charset "utf-8";

.carousel div.carouselImg01 {
    height: 310px;
    background-image: url(../my-imges/menu/menu-bg-main01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel div.carouselImg02 {
    height: 310px;
    background-image: url(../my-imges/menu/menu-bg-main02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel div.carouselImg03 {
    height: 310px;
    background-image: url(../my-imges/menu/menu-bg-main03.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.title h1 {
    font-size: 30px;
    margin-top: 50px;
    text-align: center;
}

.title p {
    font-size: 20px;
    margin-top: 20px;
}

main h2 {
    text-align: center;
    font-size: 25px;
    font-weight: 300;

}

main h2::after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background-color: #000;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.item-list {
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    column-gap: 90px;
    row-gap: 70px;
    justify-content: center;
}

.item-list dl {
    margin-top: 10px;
}

.item-list dt {
    text-align: center;
}

.item-list dd {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
    text-align: center;
}


#spring {
    padding-top: 40px;
    background-color: #fce8e9;
}

#summer {
    padding-top: 40px;
    background-color: #c7edf1;
}

#autumn {
    padding-top: 40px;
    background-color: #eee1c9;
}

#winter {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #d8ddd3;
}

@media(max-width: 800px) {

    /* jQuery発展編 */
    /* モーダル */

    .close-btn {
        position: absolute;
        top: 70px;
        right: 20px;
        color: white;
        font-size: 40px;
        text-decoration: none;
        cursor: pointer;
    }

    .item-list {
        margin-top: 45px;
        row-gap: 40px;
    }
}