/* Basic styling */
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.swiper-container {
  /*z-index: -1000;*/
  /* position: fixed;*/
  width: 100%;
  height: 100vh;
}
/*.swiper-container:after {
	 content: '';
    background: transparent url(../images/slider_images/pattern.png) repeat top left;
   
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
  z-index: 1;
}*/

.swiper-pagination-bullet {
　/*透過度を変更*/
  opacity: 1!important;
    background: #FFF !important;
}


.swiper-pagination-bullet-active {
  background: #FFF !important;
    opacity: 1;
}
.swiper-pagination-bullet {
  /*ドットの間隔を変更*/
  margin: 0 12px !important;
}
.swiper-pagination-bullet {
  /*ドットのサイズを変更*/
  width: 9px !important;
  height: 9px !important;
}
.swiper-container:after {
  content: '';
 /* background-color: rgba(49, 50, 51, 0.1);
  mix-blend-mode: multiply;*/
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.swiper-slide, .slide-img {
  position: relative; /* can either be relative, absolute or fixed. If position is not set (i.e. static), it would be set to "relative" by script */
  overflow: hidden; /* to bound the empty top space created by inner element's top margin */
  /* width: 100%;
    height: 100vh;*/
  background-color: #fff;
}


 .swiper-slide {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      /*width: 100%;
      height: 100%;*/
      object-fit: cover;
    }


@keyframes zoomDown {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
  /* animation: zoomDown 15s linear 0s 1 normal both;*/
  -webkit-backface-visibility: hidden;
}
/*imgタグだと下に隙間ができるのでblockに。*/
.slide-img {
 /* width: 105%;*/
    width: 100%;
  height: 100%;
}
.slide-img img {
  display: block;
  -webkit-backface-visibility: hidden;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}