.nav-wrap {
  position: relative;
}
.scroll-nav {
  width: 100%;
  background: rgba(71, 124, 101, 1.00); /* メニューの背景色 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */
}
.scroll-nav ul {
  max-width: 900px; /* メニューの最大幅 */
  min-width: 770px; /* メニューの最小幅 */
  height: 20px;
  line-height: 20px;
  margin: 0 auto;
  list-style: none;
  padding-right:10px; /* 右側の固定分余白を空ける */
}
.scroll-nav ul li {
  float: left;
  width: 90px; /* メニューの個別の幅 */
  text-align: center;
}
.scroll-nav ul li:hover {
  background: #050; /* マウスホバー時の背景色 */
}
.scroll-nav ul li a {
  display: inline-block;
  color: #fff; /* メニューの文字色 */
  text-decoration: none;
}
.next-btn { /* 右側に固定する部分 */
  position: absolute;
  top: 0;
  right: 0;
  width: 15px; /* 固定部分の幅 */
  height: 20px; /* メニューの高さに合わせる */
  line-height: 20px;
  background: #fff;
  color: #555;
}
@media only screen and (min-width: 771px) { /* PCサイズでの指定 */
.scroll-nav ul {
  padding: 0;
}
.scroll-nav ul li {
  width: 12.5%; /* メニューの個別の幅 */
}
.next-btn {
  display: none; /* 右側の固定部分を非表示 */
}
}