/*PCのスタイル*/
nav {
	margin: 10px auto;
	/*border:1px #f00 solid;*/
	width:80%;
}
nav ul{
	display: flex;
	align-items: center;
	margin: 0px 8px 0px 0px;	
}
nav ul li {
	border-right:1px solid #8FC31F;
}

.navLineR {
	border-left:1px solid #8FC31F;
}

nav ul li a{
	color: #00f;
	text-decoration: none;
	padding: 0px ;
}
nav img {
	width: 100%;
}
.inner {
	width:100%;
	margin:0px;
	padding:0px;
}

#nav_toggle{
	display: none;
}
 
/*メニュー部分*/
@media screen and (max-width:480px){
	h1 {
	width:95%;
/*	border:1px #f00 solid;*/
	text-align:left;
	top: -40px;
	position:relative;
	z-index: 0;
	}
	h1 img {
		padding: 15px 0px 10px 50px;
		width:80%;
	}

/* ナビゲーション */
	nav{
		width: 100%;
		display: none;
		position: absolute;
		top:33px;
		background-color: rgba(255,255,255,1);
		left: 0;
		border: 0px;

	}
	nav ul{
		display: block;
		margin: 0 auto;
		width: 100%;
/*		border:1px #f00 solid;*/
	}
	nav ul li{
		margin: 0px auto;
		text-align: center;
		border-bottom: 1px solid #ccc;
		border-right: 0px solid;
	}
	nav ul li:last-child{
		border: none;
	}
	nav ul li a{
		display: block; 
		width:380px;;
	}
	nav ul img {
		width: 50%;
	}
}

@media screen and (max-width:480px){	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 30px;
		height: 40px;
		position: relative;
		top: 0px;
		z-index: 100;
		padding: 0px 5px 0px 5px;
		background-color:#5fc31f;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		margin: 5px 0px 0px 0px;
		display: block;
		height: 3px;
		background: #fff;
		position:absolute;
		width: 100%;
		/*left: 0;*/
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}
}


@media screen and (max-width:480px){
	.fe_mainBox {
		width:100%;
	}
}
