.category-circles {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #333 #ccc;
}

.category-circles::-webkit-scrollbar {
  height: 6px;
}

.category-circles::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 0;
  margin: 0 50px;
}

.category-circles::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 0;
  min-width: 80px;
  max-width: 80px;
}

.category-circles::-webkit-scrollbar-thumb:hover {
  background: #333;
}

.category-info {
  cursor: pointer;
  text-align: center;
}

.circle {
  width: 120px;
  height: 120px;
  background-color: #a8a8a8;
  border-radius: 50%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.category-name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.pagination {
  margin-top: 40px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination .nav-links .page-numbers {
  border: 1px solid #333;
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.pagination .nav-links .page-numbers.current,
.pagination .nav-links .page-numbers:hover {
  background-color: #333;
  color: #fff;
}

/* カテゴリスライダーコンテナ */
.category-slider-container {
  width: 200px; /* 画像に合わせて調整 */
  height: 4px; /* バーの太さ */
  margin: 40px auto 0 auto; /* カテゴリ円との間隔と中央揃え */
  position: relative;
}

/* スライダーの背景トラック */
.category-slider-track {
  width: 100%;
  height: 100%;
  background-color: #333; /* 黒色のバー */
  position: absolute;
  top: 0;
  left: 0;
}

/* スライダーのつまみ（プログレスバー） */
.category-slider-thumb {
  width: 33.33%; /* 例として全体の約1/3の長さに設定 */
  height: 100%;
  background-color: #000; /* 黒色のつまみ */
  position: absolute;
  top: 0;
  left: 0; /* 必要に応じてJavaScriptで位置を制御 */
}
