@charset "UTF-8";
/* CSS Document */

/*NAVIGATION用CSS*/
#menu-nav {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin:0;
}

#menu-nav li a {
	display: block;
	padding: 5px 0;
	background-color: #FFF;
	color: #FFF;
	text-align: center;
	text-decoration: none;
}
#menu-nav li:last-child a{
	border: none;
}
#menu-nav li a:hover{
	/*background: #4baacb;*/
	transition: 0.4s ;

}
#toggle {
	display: none;
}
/*　画面サイズが481pxからはここを読み込む　*/
/*-----------------------------------------
　　　　　　　　　　PC
-----------------------------------------*/
@media screen and (min-width:481px) {   

#menu-nav li{
	display: block;
	float: left;
	width: 20%;
	margin: 0;
	padding: 0;
}
}

/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	#menu-nav li {
		width: 20%;
	}
}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {
	#menu-nav {
		display: none;
	}
	#menu-nav li {
		width: 100%;
	}
	#toggle {
		display: block;
		position: relative;
		width: 100%;
		background: #666;
	}
	#toggle a{
		display: block;
		position: relative;
		padding: 20px 0 20px;
		border-bottom: 1px solid #666;
		color:#FFF;
		text-align: center;
		text-decoration: none;
	}
	#toggle:before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 30px;
		margin-top: -15px;
		background: #FFF;
	}
	#toggle a:before, #toggle a:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 6px;
		background: #666/*#2a83a2*/;
	}
	#toggle a:before {
		margin-top:-9px;
	}
	#toggle a:after {
		margin-top: 3px;
	}
	
#menu-nav li a {
	display: block;
	padding: 10px 0 10px;
	background-color: #999;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	/*border-bottom:solid 1px #fff;*/
}

#menu-nav li a:hover {
	background-color:#B6B6B6;
/*	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
*/	transition: 0.4s ;

}



}