/* ==========================================================================
   swipers.css
   Swiper本体CSSの上書き・カスタマイズ(swiper-bundle.min.css の後に読み込まれる)
   ========================================================================== */

.sponsorSwiper {
	overflow: hidden;
	width: 100%;
}

.sponsorSwiper .swiper-slide {
  display: flex;
  align-items: center;   /* ← 上下中央寄せ */
  justify-content: center; /* ← 左右中央寄せ（必要なら） */
  height: 100px;          /* ← スライダーの高さを統一 */
}

.sponsorSwiper .swiper-wrapper {
  transition-timing-function: linear !important; /* ← スムーズさの肝 */
}

.sponsorSwiper img {
  width: 120px;
  height: auto;
}
