@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap');

/* タブ */
#menu_tab {
    width: 100%;
    margin-top: 80px;
    position: relative;
    background: #f5f4f0;
}

#menu_tab ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    list-style: none;
    max-width: 940px;
    margin: 0 auto;
}

#menu_tab ul li a {
    all: unset;
    display: block;
    padding: 20px 0 16px;
    text-align: center;
    width: 235px;
    font-size: 16px;
    line-height: 100%;
    font-weight: 300;
    color: #808080;
    cursor: pointer;
    border-bottom: 1px solid #808080;
}

#menu_tab ul li a.choice {
    color: #582a1c;
    font-weight: 500;
    border-bottom: 2px solid #582a1c;
    padding-bottom: 14.5px;
}

/* メニュー */
#menu_contents {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 0 80px;
}

.section_title_text {
    font-size: 16px;
    font-weight: 400;
    color: #582a1c;
    line-height: 150%;
    margin: 0;
    margin-top: 16px;
    display: none;
}

.section_title_text.show {
    display: block;
}

.section_title_text a {
    cursor: pointer;
    text-decoration: underline;
    color: #3ea3c2;
    transition: opacity 0.3s;
}

.section_title_text a:hover {
    opacity: 0.6;
}

#menus {
    margin: 0;
    padding: 0;
    width: 100%;
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 40px 35px;
    list-style: none;
}

#menus li {
    background: #f5f4f0;
    padding: 24px 24px 40px;
    width: 290px;
    animation: menu_fadeIn 0.4s linear forwards;
}

@keyframes menu_fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#menus li.none {
    display: none;
}

#menus li img {
    width: 226px;
    margin: 0 auto;
}

#menus li h3 {
    font-size: 20px;
    font-weight: 400;
    color: #582a1c;
    line-height: 100%;
    margin: 0;
}

.menu_price {
    font-size: 24px;
    font-weight: 700;
    color: #582a1c;
    line-height: 100%;
    margin: 0;
    margin-top: 16px;
}

.menu_price span {
    font-family: "Oswald";
    font-size: 56px;
    font-weight: bold;
    color: #582a1c;
    line-height: 100%;
    margin-right: 4px;
    vertical-align: -2px;
}

.menu_text {
    font-size: 16px;
    font-weight: 300;
    color: #582a1c;
    line-height: 175%;
    letter-spacing: 0.15em;
    margin: 0;
    margin-top: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    /* タブ */
    #menu_tab {
        margin-top: 80px;
    }

    #menu_tab ul {
        max-width: none;
        width: 84vw;
    }

    #menu_tab ul li a {
        width: 42vw;
    }

    /* メニュー */
    #menu_contents {
        max-width: none;
        width: 100%;
        margin: 96px auto 0;
        padding: 0 8vw;
    }

    .section_title_text {
        margin: 0;
        margin-top: 62px;
        text-align: center;
    }

    .section_title_text a {
        transition: opacity 0s;
    }

    .section_title_text a:hover {
        opacity: 1;
    }

    #menus {
        margin-top: 80px;
        justify-content: center;
    }

    #menus li {
        width: auto;
        max-width: 290px;
    }

    #menus li img {
        width: auto;
        max-width: 226px;
    }
}