/*============
.toggle_btn
=============*/
.toggle_btn {
    display: block;
    position: fixed;
    top: 23px;
    right: 23px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 1001;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 4px;
}

.toggle_btn span:nth-child(2) {
    top: 14px;
}

.toggle_btn span:nth-child(3) {
    bottom: 4px;
}

.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 102;
    cursor: pointer;
}

/* hum-menu */
.hum-menu-icon {
    width: 73px;
    height: 73px;
    position: absolute;
    right: 0;
    top: 0;
}

.g-nav__sp {
    background-color: #3d2400;
    position: absolute;
    top: 0;
    right: -75%;
    width: 75%;
    z-index: 1000;
    height: 100vh;
    transition: right 0.5s;
}

.open .g-nav__sp {
    right: 0;
}

body.no-scroll {
    position: fixed;
    width: 100vw;
    overflow: hidden;
}

/* body {
    position: relative;
    width: 100vw;
    overflow-x: hidden;
} */