/* メニューページ用 */
/* コンテンツ内設定 */

.menu_main {
    padding-bottom: 20px;
}

/* h2 タイトルの設定 */
.menu_h2 {
    font-size: 3em;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 2px;

    & span {
        font-size: 0.5em;
    }
}

/* 個別タイトル */
.center_h3 {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    padding: 0 0 10px 0;
}

.center_h3:nth-child(n+3) {
    padding-top: 20px;
}

/* メニュー内の並べ替え */
/* FOOD */
.menu_grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 200px);
    column-gap: 10px;
    text-align: center;
    justify-content: space-around;
}

/* サイドメニュー */
.side_grid {
    padding-top: 30px;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 300px);
    gap: 10px;
    place-items: center;
    text-align: center;
    justify-content: space-around;
}

/* 個別メニューの配置 */
.menu_detail {
    display: flex;
    flex-direction: column;
}

.menu_detail .desc {
    margin-top: auto;
}

/* drink */
.drink_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    & p {
        padding-left: 7px;
    }

    & p::after {
        content: " /";
    }

    & p:last-child::after {
        content: "";
    }
}

.bpink {
    border-bottom: 3px solid black;
    border-image: url(../img/menu/menu_border1.png) 31 round;
}

/* 上記をまとめてスマホ用にしてます */
@media screen and (max-width:620px) {

    .menu_main {
        padding-bottom: 20px;
    }

    .menu_grid,
    .side_grid {
        grid-auto-flow: row;
        grid-template-columns: auto;
        row-gap: 10px;
    }


    .menu_h2 {
        font-size: 2.5em;
    }

    .center_h3 {
        text-align: center;
        font-size: 1.5em;
        padding: 10px 0 10px;
    }
}

/* menuページのみのスマホ用背景 */
@media screen and (max-width:620px) {
    .menu_container .w-container {
        width: 98%;
    }

    .menu_container .bg_scroll {
        display: none;
    }


    .menu_main {
        background-image: url(../img/top_background/naruto_pc.png);
        background-repeat: repeat;
        animation: infinite 30s linear rotation1;
        background-attachment: fixed;
        z-index: -1;
    }
}