/* ハンバーガーボタン */
.openbtn1{
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    background-color: #fff;
    border-radius: 5px;
    box-shadow:1px 1px 3px 0 rgb(0 0 0 /45%);
    cursor: pointer;
    animation-name:fadeIn;
    animation-delay: 2.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes fadeIn{
    0%{

    }
    100%{
        transform:translateX(0);
        opacity: 1;
    }
}
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #36BEF0;
    width: 45%;
}
.openbtn1 span:nth-of-type(1) {
    top:15px; 
}

.openbtn1 span:nth-of-type(2) {
    top:23px;
}

.openbtn1 span:nth-of-type(3) {
    top:31px;
}
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* メニュー */
#nav_body{
    display: flex;
    position: fixed;
    right: -120%;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background-color: #36bef0eb;
    transition: all .6s;
    overflow: auto;
    align-items: center;
}
#nav_body.panelactive{
    right: 0;
}
.nav_box{
    position: relative;
    top: 20px;
    width: 100%;
    height: 85vh;
}
.nav_box ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.nav_box li{
    width: 25vw;
    height: 25vw;
    padding: 8px;
    margin: 5px;
    background-color: white;
    border-radius: 14px;
    text-align: center;
    box-shadow: 4px 4px 3px rgb(0 0 0 /40%);
}
.nav_box a{
    text-decoration: none;
}
.menu_item{
    width: 100%;
    height: 75%;
}
.menu_item img{
    height: 70%;
    margin-top: 10px;
}
.menu_item p{
    font-size: 4vw;
    font-weight: bold;
    color: #36BEF0;
}
.top_img{
    width: 95%;
    display: block;
    margin: 20px auto;
}
@media screen and (min-width: 768px) {
    .openbtn1{
        right: 30px;
        top: 30px;
    }
    #nav_body{
        width: 25%;
        padding: 0px 10px;
    }
    .nav_box{
        top: 40px;
    }
    .nav_box ul{
        display: block;
    }
    .nav_box li{
        width: auto;
        height: auto;
        margin-bottom: 10px;
    }
    .menu_item{
        display: flex;
        height: 50px;
    }
    .menu_item img{
        margin-top: 5px;
        margin-right: 10px;
        width: 30px;
        object-fit: contain;
    }
    .menu_item p{
        margin: auto 0;
        font-size: 18px;
    }
    .top_img{
        margin: 15px auto 0px auto;
    }
    .none_content{
        display: none;
    }
}