#facility h2 {
    width: 80%;
    padding: 7px 14px;
}

.figure {
  text-align: center;
}
.figure img {
  border-radius: 10px;
  width: 250px;
  height: 170px;
  margin: 10px auto;
}

.nav-wrap {
  position: relative;
  width: calc(80% + 34px);
  margin: 16px auto 10px;
}
.scroll-nav {
  width: 100%;
  background: #f3f3f3; /* メニューの背景色 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */
  margin: -16px 0 0;
}
.scroll-nav ul {
  max-width: 1060px; /* メニューの最大幅 */
  min-width: 770px; /* メニューの最小幅 */
  height: 32px;
  line-height: 32px;
  margin: 0 auto;
  list-style: none;
  padding-right: 25px; /* 右側の固定分余白を空ける */
}
.scroll-nav ul li {
  float: left;
  width: 16.6%; /* メニューの個別の幅 */
  text-align: center;
  white-space: nowrap;
}
.scroll-nav ul li:hover {
  background: #f6f6f6; /* マウスホバー時の背景色 */
}
.scroll-nav ul li a {
  display: inline-block;
  color: #2C2D63; /* メニューの文字色 */
  text-decoration: none;
  font-size:13px;
}

.next-btn { /* 右側に固定する部分 */
  position: absolute;
  top: 0;
  right: 0;
  padding: 1px 0 0 9px;
  width: 23px; /* 固定部分の幅 */
  height: 32px; /* メニューの高さに合わせる */
  line-height: 32px;
  background: #fff;
  color: #555;
  font-size: 16px;
}
