/*=============================================*/
/*               menubtm                       */
/*=============================================*/

.navi_open{
	overflow:hidden;
	position: relative;
	height: 100%;
}

.l_cover {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
	width:100%;
	position:relative;
	left:0;
}

.l_cover:after{
	content:'';
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.65);
	z-index:1000;
	display:none;
	opacity:0;
	-webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.navi_open .l_cover {
	-webkit-transform: translate3d(-80%,0,0);
  transform: translate3d(-80%,0,0);
}

.navi_open .l_cover:after{
	display:block;
	opacity:1;
}

.menu_box {
	position: fixed;
  top: 0;
  left: 100%;
  z-index: 2000;
  width: 80%;
  padding: 20px 30px 0;
  background: url(../img/shared/nav_bg.jpg) 0 0 repeat;
 opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
	box-sizing:border-box;
	height:120%;
	border-left: 2px solid #990b12;
}

.menu_open{
	opacity: 1;
	webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0);
}

.menu_box ul {
	padding: 0;
	margin: 0px 0px;
  list-style-type:none;
  list-style-position:outside;
	transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
  transition-duration: 0ms;
  transform: translate(0px, 0px) translateZ(0px);
}

.menu_box ul li {
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.3);
  line-height: 30px;
  font-size: 15px;
	padding: 3px 0;
  opacity: 0;
 -webkit-transform: translate3d(30px,0,0);
  transform: translate3d(30px,0,0);
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.menu_box ul li:first-child {
	font-size: 1.3em;
	font-weight: bold;
	padding: 5px 0;
}
.menu_box ul li .yellow {
	color: yellow;
}

.menu_box ul li a {
	display: block;
	color:#fff;
}

.menu_box ul li a:before{margin-right:10px;}

.menu_open .nav_event{
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.menu_box ul li.tel_bnr{
	line-height:0;
	padding-bottom:10px;
}

.menu_box ul li.tel_bnr img{max-width:416px;}

.menu_close{
	position:absolute;
	top:0;
	right:0px;
	width:15px;
	height:15px;
	z-index:2001;
	padding:15px;
	line-height:0;
	margin-bottom:0;
}

