.myswiper-wrapper {
  /*ウィンドウ幅からはみ出さないようにする*/
  overflow: hidden;
}

.swiper {
  max-width: 1344px;
  /*アクティブなスライド以外も見えるように*/
  overflow: visible !important;
}
.swiper-slide img {
  transition: 0.3s;
  opacity: 0.8;
  filter: blur(3px);
}
.swiper-slide-active img {
  opacity: 6;
  filter: none;
}


.sw-full {
  position: absolute;
  bottom: 10px;
  right: 5px;
  z-index: 100;
  width: 150px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .sw-full {
    bottom: 4px;
     right: 4px;
     width: 100px;
    height: auto;
  }
  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .sw-full {
    bottom: 3px;
     right: 3px;
     width: 75px;
    height: auto;
  }
  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}


@media screen and (max-width: 1023px) {
    .swiper {
        overflow: hidden !important;
    }
}
@media screen and (min-width: 1024px) {
  .swiper {
      overflow: visible !important;
  }
}