
.nav-wrap {
    position: relative;
  }
  .scroll-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* 慣性スクロール */
  }
  .scroll-nav ul {
    max-width: 1060px; /* メニューの最大幅 */
    min-width: 770px; /* メニューの最小幅 */
    height: 35px;
    line-height: 35px;
    margin: 0;
    list-style: none;
    padding-right: 25px; /* 右側の固定分余白を空ける */
  }
  .scroll-nav ul li {
    float: left;
    font-size: small;
    text-align: center;
    
    margin:1px;
  }
  .scroll-nav ul li:hover {
  
  }
  .scroll-nav ul li a {
    display: inline-block;
    background-color: #00bc8c;
    color: #FFF; /* メニューの文字色 */
    text-decoration: none;
    min-width:35px;
  }
  .next-btn { /* 右側に固定する部分 */
    position: absolute;
    top: 0;
    right: 0;
    width: auto; /* 固定部分の幅 */
    height: auto; /* メニューの高さに合わせる */
    line-height: 40px;
    background: #fff;
    color: #555;
  }

  @media only screen and (min-width: 771px) { /* PCサイズでの指定 */
  .scroll-nav ul {
    padding: 0;
  }
  .scroll-nav ul li {
    width: 14.2%; /* メニューの個別の幅 */
  }
  .next-btn {
    display: none; /* 右側の固定部分を非表示 */
  }
  