@media screen and (max-width: 999px){
	
/* ----- menu----- */
.menu{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(91,57,20,0.96);
	transition: all .5s;
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	z-index: 9998;
}
.side-open .menu {
	transition: all .5s;
	visibility: visible;
	opacity: 1;
}
.side-open .menu .sns{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 94%;
}
.side-open .menu .sns a{
	text-align: center;
	display: block;
	width: 24%;
	box-sizing: border-box;
	height: 36px;
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.side-open .menu .sns img{
	max-height: 24px;
	max-width: 80%;
	margin: 0 auto;
	transition: 0.3s ease;
	display: block;
}
.side-open .menu .sns img:hover{
	transform: translate(0,-2px);
	opacity: 0.8;
}

.menu ul {
	list-style: none;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.menu li {
	text-align: center;
	opacity: 0;
}
.side-open .menu li {
	opacity: 1;
}
.menu li a{
	display: block;
	padding: 3% 0;
	font-size: 1.8rem;
	color: #fff;
	transition: all .5s;
	background-color: rgba(255,255,255,0.1);
	margin: 0 0 1px;
}
.menu li a:hover {
	color: #333;
	background-color: rgba(255,255,255,0.8);
}


/* ------- btn -------*/
.menu-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px;
	width: 80px;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	z-index: 9999;
	background-color: rgba(255,255,255,0.2);
	border-radius: 1px;
}
.menu-btn span {
	color: #fff;
}
.menu-btn span:after {
	content: attr(data-txt-open);
}
.side-open .menu-btn span:after {
	content: attr(data-txt-close);
}



}





@media screen and (max-width: 699px){

.menu-btn {
	position: absolute;
	top: 5px;
	right: 5px;
}

}	
	
	
	


@media screen and (orientation: landscape) {
.side-open .menu .sns{
	margin: 10px auto 5px;
}
.menu ul li {
	float: left;
	width: 33.3%;
}
.menu ul li.top{
	width: 100%;
}
.menu li a {
	padding: 3% 0;
}

}



