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

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
}

.scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.horizontal-nav {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}

.horizontal-nav li a {
  display: inline-block;
  padding: 8px 16px;
  background: #eee;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

/* 矢印ボタン */
.scroll-arrow {
  background: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0 10px;
  z-index: 10;
  color: #666;
  transition: background 0.3s;
}

.scroll-arrow:hover {
  background: #f0f0f0;
}

.scroll-arrow.left {
  margin-left: 5px;
}

.scroll-arrow.right {
  margin-right: 5px;
}