@media only screen and (min-width:1001px){
	#BOX { display: none }
}



#BOX {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  top: 35px;
  right: 20px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1;
}

span.AAA, span.BBB, span.CCC {
  display: block;
  width: 35px;
  height: 4px;
  margin: 0 auto;
  background-color: #1653a3;
  margin-bottom: 6px;
  -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{ position: fixed; z-index: 4; }

#BOX.active span.AAA {
  -webkit-transform: rotate(405deg) translate3d(12px, 3px, 0px);
  transform: rotate(405deg) translate3d(12px, 3px, 0px);
  background: #fff
}
#BOX.active span.BBB {
  width: 100px;
  opacity: 0;
}
#BOX.active span.CCC {
  -webkit-transform: rotate(-405deg) translate3d(12px, -3px, 0px);
  transform: rotate(-405deg) translate3d(12px, -3px, 0px);
  background: #fff
}

/*@media only screen and (max-width: 599px){

#BOX {	top: 60px; }

}*/

