#btn-nav-sp{
	position:fixed;
	top:10px;
	right:10px;
	display:-webkit-box;
	width:51px;
	height:51px;
	-webkit-box-align:center;
	-webkit-box-pack:center;
	z-index: 50;
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	     -o-transform: translateZ(0);
	        transform: translateZ(0);
	background:url(./img/mark.png) no-repeat center center;
	background-size:contain;
}

#btn-nav-sp img {
	opacity:0;
	-webkit-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	   -moz-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	    -ms-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	     -o-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	        transition: all .5s cubic-bezier(.89, 0, .21, 1);
}
#btn-nav-sp.active img {
	opacity:1;
}


#nav-sp{
	position:fixed;
	left:0;
	top:-100%;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.9);
	z-index: 49;
	box-sizing:border-box;
	-webkit-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	   -moz-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	    -ms-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	     -o-transition: all .5s cubic-bezier(.89, 0, .21, 1);
	        transition: all .5s cubic-bezier(.89, 0, .21, 1);
	
}
#nav-sp-container{
	width:100%;
	height:100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
#nav-sp.active{
	top:0;
	-webkit-transition: all .3s cubic-bezier(0, .77, .21, 1);
	   -moz-transition: all .3s cubic-bezier(0, .77, .21, 1);
	    -ms-transition: all .3s cubic-bezier(0, .77, .21, 1);
	     -o-transition: all .3s cubic-bezier(0, .77, .21, 1);
	        transition: all .3s cubic-bezier(0, .77, .21, 1);
}

.nav-sp-main{
	border-bottom:1px solid #fff;
	margin-bottom:30px;
}

.nav-sp-main li{
	border-top:1px solid #fff;
}
.nav-sp-main li a,
.nav-sp-main li div{
	line-height:1;
	display:block;
	text-align:center;
	padding:20px 0;
	color:#fff;
	font-size:18px;
	text-decoration: none;
	position:relative;
}
.nav-sp-main li div.cs::after {
	content:"COMING SOON";
	font-size:9px;
	display:block;
	position:absolute;
	width:100%;
	text-align:center;

}

.nav-sp-main li span{
	opacity: 0.3;
}
.nav-sp-main li a img{
	height:12px;
}


