@media only screen and (max-width:768px) {
.humburger-menu{
    z-index: 30000;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 130;
    background-color: white;
    border-radius: 10px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #47362e;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    overflow:scroll;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    background-color: rgba(250, 247, 245, 0.95);
}

.menu-content ul {
    text-align: center;
    
}
.menu-content ul li {
    list-style: none;
    margin: 40px;
}
.menu-content a {
    font-size: 15px;
    border: solid 1px #47362E;/*線*/
    padding: 20px ;
    border-radius: 3333px;
    text-decoration: none;
    position: relative;
    margin: 0 auto;
    border-radius: 1px #47362e;
    display: block;
    max-width: 150px;
    color:#4e4d4c;
    background-color: white;
}

.menu-content a:hover{
    transform:scale(1.1)
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 120;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
}




@media only screen and (min-width:768px){
    #menu-btn-check {
        display: none;
    }
    .menu-content{
        display: none;
    }
}