/*--------------------------------
ナビゲーション水平（PC）
--------------------------------*/
@media screen and (min-width: 768px) {

.navi {
	width: 100%;
	margin-top: 10px;
	border-radius: 4px;
}
.navi ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	height: 43px;
	width: 100%;
}
.navi li {
	font-family: Arial;
	float: left;
	margin: 0px;
	padding: 0px;
	width: 25%;
	display: inline
}
.navi li a {
	color: #000;
	font-size: 13pt;
	text-decoration: none;
	text-align: center;
	height: 43px;
	display: block;
	background-image: url(img/navi_btn_pc.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #E6E6E6;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.navi li a span {
	position: relative;
	top: 12px;
	width: 25%;
}
.navi li a:hover {
	background-image: url(img/navi_btn_pc.png);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-color: #CF0;
}
.navi li a.stay {
	color: #000;
	background-image: url(img/navi_btn_pc.png);
	background-position: left bottom;
	background-repeat: no-repeat;
	text-align: center;
	background-color: #CF0;
}

}

/*--------------------------------------------------------
ナビゲーション水平（スマートフォン）
---------------------------------------------------------*/
@media screen and (max-width: 768px) {

.navi {
	width: 100%;
	margin-top: 10px;
	border-radius: 4px;
}
.navi ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	height: 39px;
	width: 100%;
}
.navi li {
	font-family: Arial;
	float: left;
	margin: 0px;
	padding: 0px;
	width: 50%;
	display: inline
}
.navi li a {
	color: #000;
	font-size: 11pt;
	text-decoration: none;
	text-align: center;
	height: 39px;
	display: block;
	background-image: url(img/navi_btn_sp.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #E6E6E6;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.navi li a span {
	position: relative;
	top: 10px;
	width: 50%;
}
.navi li a:hover {
	background-image: url(img/navi_btn_sp.png);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-color: #CF0;
}
.navi li a.stay {
	color: #000;
	background-image: url(img/navi_btn_sp.png);
	background-position: left bottom;
	background-repeat: no-repeat;
	text-align: center;
	background-color: #CF0;
}

}
