@charset "UTF-8";

/* 全体共通 */
html {
    font-size: 100%;
}

.wrap {
    width: 67%;
    max-width: 960px;
    margin: 0 auto;

}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* a:hover {
    color: #ff63c4;
    display: block;
} */

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #231815;

}

/* 上に戻るボタン */
html {
    scroll-behavior: smooth;
}

.pagetop {
    height: 100px;
    width: 100px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}


/* ヘッダーーーーーーーーーーーーーー */

.head-flex {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-flex {
    display: flex;
    list-style-type: none;
    gap: 10px;
}


/* menu------------------------ */

main {
    background-color: #e22a00;
    padding-bottom: 6rem;
    padding-top: 30px;
}

.img-top {
    background-image: url(img/mv_2.webp);

}

.menu-title {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.menu-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 30px;

}

.menu-title img {
    margin: 6rem auto 6rem;
}

.menu-item {
    width: 300px;
    height: 450px;
    background-color: #fff;
    margin-top: 30px;
}

.menu-img {
    width: 280px;
    height: 280px;
    margin: 10px;
}

h3 {
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #fff;

}

.name-box {
    background-color: #ff63c4;
    margin-left: -10px;
    margin-right: 10px;
}

p {
    margin-left: 10px;
    margin: 10px;
    font-size: 1rem;
    color: #231815;
}

.menu-name1 {
    font-size: 23px;
}

.price1 {
    margin-right: 1rem;
    font-weight: bold;
}

.shopname {
    margin-right: 1rem;
    font-weight: bold;
}

.shop1 {
    font-size: 11px;
    color: #231815;
}

.shop2 {
    font-size: 14px;
    color: #231815;
}

/* フッターーーーーーーーーーー */

.menu-footer {
    text-align: center;
    margin: 30px;
    color: #231815;
}

a {
    text-decoration: none;
    color: #231815;
    display: block;
}




/* PC版 ーーーーーーーーーー*/

@media(min-width:768px) {

    #header-menu {
        display: none;
    }

}

/*スマホ版*/
@media(max-width:767px) {
    .wrap {
        width: 89%;
    }

    /* 上に戻るボタン */

    .pagetop {
        height: 50px;
        width: 50px;
    }

    /* ヘッダー---------------------- */
    header {
        position: sticky;
        top: 0;
        height: 100px;
        background-color: #fff;
    }

    .logo {
        width: 4.5rem;
    }

    .nav-flex {
        display: none;
    }

    /*ハンバーガーメニュー*/
    .hamburger {
        position: absolute;
        top: 30px;
        right: 30px;
        cursor: pointer;
        width: 32px;
        height: 24px;
        z-index: 10;
    }

    .hamburger span {
        /*3本の線を作る*/
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #e22a00;
        width: 100%;
        z-index: 10;
    }

    .hamburger span:nth-of-type(1) {
        /*上の線の位置*/
        top: 4px;
    }

    .hamburger span:nth-of-type(2) {
        /*真ん中の線の位置*/
        top: 12px;
    }

    .hamburger span:nth-of-type(3) {
        /*下の線の位置*/
        top: 20px;
    }

    .hamburger.open span:nth-of-type(1) {
        /*openのとき、上の線を右斜めにする*/
        top: 10px;
        transform: translateY(6px) rotate(-33deg);
    }

    .hamburger.open span:nth-of-type(2) {
        /*真ん中の線を消す*/
        opacity: 0;
    }

    .hamburger.open span:nth-of-type(3) {
        /*下の線を左斜めにする*/
        top: 22px;
        transform: translateY(-6px) rotate(33deg);
    }


    /*スマホ版ドロワーメニュー*/
    #header-menu {
        height: calc(100vh - 100px);
        width: 40vw;
        position: fixed;
        top: 100px;
        right: -40vw;
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        transition: all 0.5s;
    }

    .ham-ul {
        list-style: none;
        margin-top: 5rem;
    }

    .ham-ul li {
        margin-top: 50px;

    }

    .ham-ul li a {
        color: #E22A00;
        font-weight: 600;
        font-size: 1.5rem;
    }

    .ham-ul li :hover {
        color: #FF63C4;
    }

    /*ドロワーメニューが開いた時*/
    #header-menu.open {
        right: 0;

    }

    .menu-flex {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    /* スマホでは帯が画面の6割を占めていたので余白だけ詰める（2026-08-14）
       ロゴの大きさは変えない。SP素材(148px)への差し替えは、枠の中で浮くため不採用 */
    .menu-title img {
        margin: 2rem auto;
    }
}