@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 444px;
	height: 250px;
	object-fit: cover;
}

/* ★追加：Swiperコンテナの設定 */
.swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* ★修正：スライドの幅を設定 */
.swiper-slide {
  width: auto !important;  /* 自動調整 */
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: 250px;           /* 高さ固定 */
  width: auto;             /* 幅は比率維持 */
  object-fit: cover;       /* トリミング */
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}