@charset "utf-8";
/* CSS Document */
.swiper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: auto;
}
@media screen and (min-width:992px) {
  .swiper {
    height: 530px;
  }
}
.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
/*1、4、7、3n+1枚目の背景色 */
/*.swiper-slide:nth-child(3n + 1) {
  background-color: #de4439;
}*/
/*2、5、8、3n+2枚目の背景色 */
/*.swiper-slide:nth-child(3n + 2) {
  background-color: #fcd500;
}*/
/*3、6、9、3n+3枚目の背景色 */
/*.swiper-slide:nth-child(3n + 3) {
  background-color: #53c638;
}*/