/*------------ spnavi ------------*/
#spnavi {
    display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 999;
}

.menu{
    height: 20px;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 34px;
    z-index: 999;
}
.menu__line{
    background: #000;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
}

/*gnav*/
.gnav{
    background: rgba(120, 90, 70,0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 888;
}
.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav__menu__item{
    margin: 20px 0;
	text-align: center;
}
.gnav__menu__item a{
	color: #000;
    font-weight: 800;
	background-color: #fff;
	width: 300px;
	display: block;
    padding: 15px 10px;
    border-radius: 40px;
	text-decoration: none;
	letter-spacing: 0.1em;
}
.gnav__menu__item a:hover{
	color: #fff;
	background-color: #000;
    transition: .5s;
}