.menus {
    padding: 100px 0 200px
}

.menu__title {
    width: 100%;
    text-align: center;
}

.menu__filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 35px 0 20px
}

.menu__filter {
    width: calc(100% / 5 - 10px);
}
.menu__filter a {
    display: block;
    background-color: #fff;
    border: 1px #002958 solid;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #002958;
    font-size: 1.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.5s ease;
}
.menu__filter a:hover {
    background-color: #3392BE;
    border-color: #3392BE;
    color: #fff;
}

.achieve a {
    background-color: #002958;
    color: #fff
}

.section-menulist {
    padding: 100px 0 0;
}
.section-menulist .flex {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section-menulist .flex a {
    margin: 10px 0;
}

.food__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-bottom: 40px;
}
.food__list li {
    width: calc(100% / 4 - 30px);
}
.food__list li h3 {
    font-weight: 600;
    margin: 16px 0 10px;
}
.menu-dtl-txt {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 10px;
}
.menu-price {
    font-size: 1.6rem;
    text-align: right;
}

.sake__wrap {
    padding: 40px 90px;
}
.sake__wrap h2 {
    position: relative;
    margin-bottom: 40px;
}
.sake__wrap h2::after {
    position: absolute;
    content: '';
    display: block;
    width: 40%;
    height: 5px;
    background-color: #F2F0E4;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.store__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-top: 30px;
}
.store__list li {
    width: calc(100% / 2 - 10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    break-inside: avoid;
    border-top: 1px #CAC2B6 solid;
    border-bottom: 1px #CAC2B6 solid;
    padding: 20px 10px;
    margin-bottom: -1px;
}
.store__list li > div {
    line-height: 40px;
}

.drink__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}
.drink__list li {
    padding: 20px;
    width: calc(100% / 2 - 10px);
}
.drink__list li:nth-child(4n+3),
.drink__list li:nth-child(4n+4) {
    background-color: #E3E6E9;
}
.drink__list li .flex {
    margin-top: 0;
}
.drink__list li p {
    margin-bottom: 0;
}
.drink__list .common_btn.reserve {
    margin: 10px 0 0 auto;
}

.course_point {
    display: flex;
    gap: 0 10px;
}
.course_point li {
    display: block;
    border: 1px #3392BE solid;
    border-radius: 5px;
    color: #3392BE;
    text-align: center;
    padding: 0 18px;
    height: 35px;
    line-height: 35px;
}

.section-menulist .flex.course__list {
    margin-top: 20px;
    align-items: start;
}
.course_left {
    margin-right: 20px;
}
.course_right {
    flex: 1;
}
.course_right > .flex {
    margin: 0 0 20px;
}
.course_right > h3 {
    margin: 30px 0 10px;
}
.course_right a.common_btn {
    margin: 10px 0 0 auto;
}

.local__store {
    margin-top: 20px;
    flex-wrap: wrap;
}
.local__store .flex {
    gap: 20px 80px;
    justify-content: start;
}
.store_dtl h4 {
    font-weight: 600;
}


.course_left img,
.course_right img {
    border-radius: 8px;
}

@media screen and (min-width:560px) {
    .food__list li img {
        width: 255px;
        height: 255px;
        object-fit: cover;
    }
    .course_left img {
        width: 683px;
        height: 422px;
        object-fit: cover;
    }
    .course_right img {
        width: 209px;
        height: 162px;
        object-fit: cover;
    }
}

@media screen and (max-width:560px) {
    .menus {
        padding: 80px 0
    }

    .menu__filters {
        flex-wrap: wrap;
        margin: 20px 0 10px
    }

    .menu__filter {
        width: calc(100% / 3 - 10px);
    }
    .menu__filter a {
        height: 45px;
        line-height: 45px;
    }

    .section-menulist {
        padding: 80px 0 0;
    }
    .section-menulist .flex {
        margin-top: 5px;
    }
    .section-menulist .flex a {
        width: calc(100% / 2 - 5px);
        margin: 5px 0;
    }

    .food__list {
        gap: 30px 10px;
        margin-bottom: 60px;
    }
    .food__list li {
        width: calc(100% / 2 - 10px);
    }

    .sake__wrap {
        padding: 24px 30px;
    }
    .sake__wrap h2 {
        margin-bottom: 24px;
    }
    .sake__wrap h2::after {
        width: 60%;
        height: 4px;
        bottom: -10px;
    }

    .store__list {
        gap: 10px 0;
        margin-top: 30px;
    }
    .store__list li {
        width: 100%;
        padding: 10px 5px;
        margin: -11px 0 0 0;
    }

    .drink__list {
        gap: 10px 0;
    }
    .drink__list li {
        padding: 10px;
        width: 100%;
    }
    .drink__list li:nth-child(4n+3),
    .drink__list li:nth-child(4n+4) {
        background-color: transparent;
    }
    .drink__list li:nth-child(even) {
        background-color: #E3E6E9;
    }

    .course_point {
        gap: 0 5px;
    }
    .course_point li {
        padding: 0 10px;
        height: 30px;
        line-height: 30px;
    }

    .section-menulist .flex.course__list {
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .course_left {
        width: 100%;
        margin-right: 0;
    }
    .course_right {
        width: 100%;
    }
    .course_right > .flex {
        margin: 10px 0 20px;
    }
    .course_right > .flex > img {
        width: calc(100% / 2 - 5px);
    }
    .course_right > h3 {
        margin: 10px 0 5px;
    }
    .course_right a.common_btn {
        margin: 10px 0 0 auto;
    }

    .local__store {
        margin-top: 10px;
        flex-wrap: wrap;
    }
    .local__store .flex {
        gap: 20px 0;
    }
    .store_dtl {
        width: 100%;
    }
    .section-menulist .flex .store_dtl a.common_btn {
        width: 100%;
        height: 45px;
        line-height: 45px;
    }
}