/*ナビゲーション*/
@media only screen and (min-width: 980px){
#js-popout{
	display: none;
	}
}

.panel{
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
	}

.panel-inner{
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 89, 20, .8);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.l-nav{
	position: fixed;
	top: -150px;
	bottom: 0;
	width: 100%;
	height: 320px;
	margin: auto;
	}

.nav-item{
	font-size: 20px;
	width: 100%;
	letter-spacing: 0.2em;
	}

.nav-item > a{
	display: block;
	line-height: 60px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s;
	font-family: "UD Shin Go Regular";
	}

.nav-item:hover a{
  color: #fff;
  letter-spacing: 0.5em;
	text-decoration: none;
}

.panel.is-visible{
  visibility: visible;
}

/* .panel-zoom-in */
.panel-zoom-in .panel-inner{
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.panel-zoom-in.is-visible .panel-inner{
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
	
