.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: auto;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
  text-align: center;
}

.swiper-slide:nth-child(3n+1) {
 /*1、4、7、3n+1枚目の背景色 */
  background-image: url("../img/top/back.jpg");
}

.swiper-slide:nth-child(3n+2) {
/*2、5、8、3n+2枚目の背景色 */
  background-color: ;
}

.swiper-slide:nth-child(3n+3) {
 /*3、6、9、3n+3枚目の背景色 */
    background-color: ;
}

.swiper-button-prev,
.swiper-button-next {
  width: 24px; /* ボタンの幅 */
  height: 40px; /* ボタンの高さ */
  background-size: 24px 40px; /* 表示したいサイズ */
  transform: translateY(-50%);
  margin-top: 0;
}

/* 次ページボタンのスタイル */
.swiper-button-next {
background-image:;
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  background-image: ;
  transform: translateY(-50%) scale(-1, 1); /* 左右反転 */
}

.swiper-button-prev:after,
.swiper-button-next:after {
 display: none;
}



