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

.nav-wrap {
	position: relative;
}
.scroll-nav {
	width: 100%;
	background-color: #579535; /* メニューの背景色 */
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* 慣性スクロール */
}
.scroll-nav ul {
	min-width: 850px; /* メニューの最小幅 */
	/*height: 27px;
	line-height: 27px;*/
	list-style: none;
	font-size: 0;
}
.scroll-nav ul li {
	font-size: 10pt;
	display: inline-block;
	/*float: left;*/
	width: calc( 100%/6 ) ; /* メニューの個別の幅 */
	text-align: center;
}
.scroll-nav ul li:hover {
	background-color: #90ad66; /* マウスホバー時の背景色 */
}
.scroll-nav .active {
	background-color: #90ad66; /* マウスホバー時の背景色 */
}
.scroll-nav ul li a {
	display: inline-block;
	color: #fff; /* メニューの文字色 */
	text-decoration: none;
	padding: 7px 0;
}
@media only screen and (min-width: 771px) { /* PCサイズでの指定 */
	.scroll-nav ul {
		max-width: 1000px;
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.scroll-nav ul li {
		width: calc( 100%/6 ) ; /* メニューの個別の幅 */
	}
	.next-btn {
		display: none; /* 右側の固定部分を非表示 */
	}
}