#mask-show{
    opacity: 0;
    transition: .3s;
    transform: translateX(-100%);
}

#mask-show.mask-show{
    opacity: 1;
    position: fixed;
    top: 0px;
    left: 0px;
    transform: translateX(0%);
    width: 60%;
    height: 100vh;
    background-color: rgb(255, 255, 255,.5);
    z-index: 10;
}

.togglebutton{
    display: flex;
    justify-content: center;
    position: fixed;
    top: 160px;
    left: 0px;
    height: 70px;
    width: 300px;
    line-height: 70px;
    background-color: RGB(118, 103, 93 ,.96);
    color: white;
    font-size: 30px;
}

.togglebutton>a{
    position: relative;
    margin: auto;
}

.togglebutton>a:nth-of-type(2)::before{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    height: 5px;
    background-color: rgb(255, 255, 255);
}

.togglebutton>a:nth-of-type(2)::after{
    content: "";
    position: absolute;
    display: block;
    left: -30%;
    top: 10%;
    transform: translateX(-50%);
    width: 1px;
    height: 80%;
    background-color: white;
}

.img1{
    margin-top: 200px;
}

img{
    width: 100%;
}

.dinnerWarapper{
    width: 100%;
    display: flex;
}

.dinnerWarapper>img{
    width: 50%;
}
header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 145px;
    background-color: rgb(231, 205, 176,.5);
    z-index: 10;
}

.menu-button{
    display: none;
}

header>h1>a>img{
    display: block;
    margin-left: 30px;
    width: 420px;
    height: 100%;
}

header>ul{
    display: flex;
    align-items: center;
    height: 100%;
}

header>ul>li{
    position: relative;
    display: block;
    margin-right: 30px;
    width: 200px;
    height: 55px;
    color: black;
}

header>ul>li::before{
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 10px;
    transform: translate(-50%);
    background-color: rgb(39, 39, 39);
    width: 20px;
    height: 2px;
}

header>ul>li>a{
    display: block;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    transition: .1s;
}

header>ul>li>a:hover{
    border-bottom: black 1px solid;
}


/* footerエリア ------------------------------------------------------------------*/
footer{
    position: relative;
    margin: 0px;
    width: 100%;
    height: 500px;
    background-color: antiquewhite;
}

footer>h2>a>img{
    display: block;
    margin: 0px auto;
    padding-top: 50px;
    width: 420px;
    height: 100%;
}

footer>ul{
    margin: 50px auto;
    width: 40%;
}

footer>ul>a>li{
    text-align: center;
    margin-top: 40px;
    border-bottom: solid 1px black;
    font-size: 20px;
}

footer>p{
    position: absolute;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    bottom: 0px;
}

@media(max-width:1700px){
    .togglebutton{
        height: 50px;
        line-height: 50px;
    }
    
}

@media(max-width:1376px){
    .togglebutton{
        height: 40px;
        line-height: 40px;
    }

    .togglebutton>a:nth-of-type(2)::before{
        bottom: 2px;
        height: 3px;
    }
}

@media(max-width:1015px){
    header>ul>li{
        width: 150px;
    }

    header>ul>li>a{
        font-size: 20px;
    }
}

@media(max-width:944px){
    header>ul>li{
        width: 100px;
    }

    header>ul>li>a{
        font-size: 15px;
    }
}
@media(max-width:800px){

    header>h1>a>img{
        width: 300px;
    }

    header>ul{
        opacity: 0;
        position: fixed;
        flex-direction: column;
        top: 0px;
        right: 0px;
        transform: translateX(100%);
        height: 100vh;
        width: 40%;
        background-color: rgb(255, 243, 228);
        z-index: 90;
        transition: .3s;
    }

    header>ul.hbg-action{
        opacity: 1;
        transform: translateX(0%);
        z-index: 90;
    }

    header>ul>li:nth-of-type(1){
        margin-top: 150px;
    }
    header>ul>li{
        margin-top: 40px;
        background-color: rgb(0, 0, 0,.0);
        color: black;
        border: none;
        border-bottom: 1px solid black;
        border-radius: 0px;
    }
    header>ul>li::before{
        display: none;
    }
    header>ul>li>a{
        color:black;
    }
    /* ハンバーガーメニュー */
    .menu-button{
        display: block;
        height: 50px;
        width: 50px;
        position: fixed;
        top: 50px;
        right: 20px;
        z-index: 99;
    }

    .menu-button div{
        height: 5px;
        width: 60%;
        border: 1px solid black;
        background-color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        transition: .3s ;
    }

    .menu-button div:nth-of-type(1){
        transform: translate(-50%,15px);
    }

    .menu-button div:nth-of-type(3){
        transform: translate(-50%,-20px);
    }



    .menu-button.hbg-action div:nth-of-type(1){
        transform: rotate(45deg) translate(-50%,0px);
        transform-origin: 0% 50%;
    }

    .menu-button.hbg-action div:nth-of-type(2){
        opacity: 0;
    }

    .menu-button.hbg-action div:nth-of-type(3){
        transform: rotate(-45deg) translate(-50%,0px);
        transform-origin: 0% 50%;
    } 

}

@media(max-width:520px){
    header>h1>a>img{
        margin-top: 40%;
        width: 150px;
        height: 80px;
        transform: translateY(-50%);
    }

    header>ul>li{
        width: 80px;
    }
    footer>h2>a>img{
        width: 200px;
    }

    footer>p{
        font-size: 14px;
    }
    .togglebutton{
        width: 200px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }
}