@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;
}

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

#sp-menu{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background: #402;
	color: #FFF;
	font-weight: bold;
	font-size: 16px;
	padding-left: 15px;
	line-height: 45px;
}
@media only screen and (min-width:651px) {
	#sp-menu{
		display: none;
		position: static;
	}
}

#sp-menu img{
	height: 30px;
	padding-bottom: 4px;
	margin-right: 8px;
}

nav ul{
	list-style-type: none;
	display: none;
	position: fixed;
	top: 45px;
	left: 0px;
	width: 100%;
}
@media only screen and (min-width:651px) {
	nav ul{
		display: block;
		position: static;
	}
}

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: #fce;
	color: #c27;
	font-weight: bold;
	font-size: 13px;
	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: 0;
	}
}

nav a:hover{
	background: #eff;
}

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

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝　フッター用　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

footer ul{
	width: 100%;
	margin-bottom: 30px;
	list-style-type: none;
}
@media only screen and (min-width:801px) {
	footer ul{
		width: 300px;
	}
}

footer li{
	width: 50%;
	float: left;
}

footer li a{
	display: block;
	color: #FFF;
	font-size: 13px;
	line-height: 45px;
	padding-left: 10px;
	text-decoration: none;
}
@media only screen and (min-width:801px) {
	footer li a{
		line-height: 24px;
	}
}

footer li a:hover{
	background: #C30;
}

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

#copyright{
	text-align: right;
	color: #FFF;
	font-size: 12px;
}

@media only screen and (min-width:651px) {
	#copyright br{
		display: none;
	}
}


