.swiper-container {
  width: 100vw;
  overflow: hidden;
  user-select: none; /* クリックしても選択されないようにする */
  pointer-events: none; /* クリック無効化（重要） */
}
.swiper-wrapper {
  transition-timing-function: linear !important; /* 等速アニメーション */
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25% !important;
  pointer-events: auto; /* スライド内のクリックは有効 */
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
.swiper-container-reverse {
  margin-top: 10px; /* 上のスライダーと間隔を開ける */
  direction: rtl; /* これが逆回転のポイント！ */
}
@media screen and (max-width: 768px) {
  .swiper-slide {
    width: 90% !important;
  }
}
