@charset "utf-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

img{
	vertical-align: middle;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　ナビゲーション　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

nav ul{
	list-style-type: none;
}

nav li{
	width: 50%;
	float: left;
	border-bottom: solid 2px #feb;
}
nav li:nth-child(odd){
	border-right: solid 2px #feb;
}
@media only screen and (min-width:651px) {
	nav li{
		width: 16.66666667%;
		border-right: solid 2px #feb;
		border-bottom: none;
	}
	nav li:last-child{
		border-right: none;
	}
}

nav a{
	display: block;
	background:#fd8;
	color: #e80;
	font-weight: bold;
	font-size: 14px;
	line-height: 45px;
	padding-left: 15px;
	text-decoration: none;
}
@media only screen and (min-width:651px) {
	nav a{
		line-height: 36px;
		text-align: center;
		padding-left: 15px;
	}
}

nav a:hover{
	background: #eff;
}

nav ul:after{
	display: table;
	content: "";
	clear: both;
}


