/* カスタムクラス */
.scrollbar-hidden {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}


/* スタイリッシュなスクロールバー */
.scrollbar-stylish {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent; /* Firefox */
}

/* Chrome / Safari / Edge 対応 */
.scrollbar-stylish::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scrollbar-stylish::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbar-stylish::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  transition: background-color 0.3s;
}

.scrollbar-stylish::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.scrollbar-stylish::-webkit-scrollbar-button:decrement,
.scrollbar-stylish::-webkit-scrollbar-button:increment {
  display: none !important;
  width: 0;
  height: 0;
}