@media only screen and (min-width:768px) {
#BOX { display: none }
}



#BOX {
	width: 40px;
	height: 40px;
	margin: 0 auto;
	/*margin-top: 50px;
	padding-top: 110px;*/
	position: absolute;
	top: 120px;
	right: 5px;
	cursor: pointer;
	border-radius: 5px;

}
span.AAA, span.BBB, span.CCC {
	display: block;
	width: 38px;
	height: 4px;
	margin: 0 auto;
	background-color: #000;
	margin-bottom: 8px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: rotate(0deg) translate3d(0px, 0px, 0px);
	transform: rotate(0deg) translate3d(0px, 0px, 0px);
}



#BOX.active span.AAA {
	-webkit-transform: rotate(405deg) translate3d(12px, 6px, 0px);
	transform: rotate(405deg) translate3d(12px, 6px, 0px);
}
#BOX.active span.BBB {
	width: 100px;
	opacity: 0;
}
#BOX.active span.CCC {
	-webkit-transform: rotate(-405deg) translate3d(12px, -6px, 0px);
	transform: rotate(-405deg) translate3d(12px, -6px, 0px);
}

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

#BOX {
	top: 140px;
}

}