@charset "utf-8";
/* CSS Document */
.nav-wrap {
  position: relative;
}
.scroll-nav {
  width: 100%;
  background: #e0e0ff; /* メニューの背景色 */
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */
	scrollbar-color: #999fff #e0e0ff;
	scrollbar-width: thin;
	overflow: auto;
}
.scroll-nav ul {
  max-width: 100%; /* メニューの最大幅 */
	min-width: 960px;
  height: 25px;
  line-height: 25px;
  margin: 0 auto;
  list-style: none;
  padding-right: 25px; /* 右側の固定分余白を空ける */

}
.scroll-nav ul li {
  float: left;
  width: 8em; /* メニューの個別の幅 */
  text-align: center;
}

.scroll-nav ul li:hover {
  background: #e0e0e0; /* マウスホバー時の背景色*/
}

.scroll-nav ul li.this {
		background: #FFFFFF;
        color: #404040;
}
.scroll-nav ul li a {
  display: inline-block;
font-size:13px;
  color: #404040; /* メニューの文字色 */
  text-decoration: none;
}

.scroll-nav ul li:hover a {

  color: #7f7f7f; /* マウスホバー時のメニューの文字色 */
}
.next-btn { /* 右側に固定する部分 */
  position: absolute;
  top: 0;
  right: 0;
  width: 25px; /* 固定部分の幅 */
  height: 25px; /* メニューの高さに合わせる */
  line-height: 25px;
  background: #404040;
  color: #e0e0ff;
}
@media only screen and (min-width: 680px) { /* PCサイズでの指定 */
.scroll-nav ul {
  padding: 0;
}
.scroll-nav ul li {
   /* メニューの個別の幅 */
white-space: nowrap;
	width: 8em;
}
.next-btn {
  display: none; /* 右側の固定部分を非表示 */
}
}