/*====================
メニュー
====================*/

.menu{
    background-color: var(--color-gold-10);
    padding-top: 120px;
}


.menu__overview{
    margin-top: 40px;
    line-height: var(--line-height-md);
    word-break: auto-phrase;
}

.menu__items{
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
    margin-top: 80px;
}

.menu__items-en{
    font-family: var(--font-family-lato);
}

.menu__item{
    display: flex;
    gap: 40px;
    width: 100%;
}

.menu__item.reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.menu__item-img{
    width: 400px;
    height: 225px;
    flex-shrink: 0;
}

.menu__item-img img{
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.menu__item-title{
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-green-main);
}

.menu__item-title br{
    display: none;
}

@media screen and (max-width: 480px) {
    .menu__item-title br{
        display: block;
    }
}

.menu__item-desc{
    color: var(--color-black-main);
    line-height: var(--line-height-lg);
}

.menu__item-desc-txt{
    font-size: 16px;
    color: var(--color-black-main);
}

.menu__item-desc-txt h4{
    font-size: 18px;
}

.menu__item-desc-txt li{
    font-size: 14px;
}

@media screen and (max-width: 992px) {
    .menu__item{
        flex-direction: column;
        align-items: center;
    }

    .menu__item.reverse {
        flex-direction: column;
        align-items: center;
    }

    .menu__items{
        gap: 40px;
    }
    
}

@media screen and (max-width: 480px) {
    .menu__item-img{
        width: 100%;
    }
}