.myswiper-wrapper {
   /*ウィンドウ幅からはみ出さないようにする*/
   overflow: hidden;
}

.swiper {
   max-width:740px;
   /*アクティブなスライド以外も見えるように*/
   overflow: visible !important;
}
.swiper-slide img {
   transition: 0.3s;
   opacity: 0.8;
   filter: blur(3px);
}
.swiper-slide-active img {
   opacity: 6;
   filter: none;
}


@media screen and (max-width: 1023px) {
   .swiper {
      /* kuma対策 */
      /*overflow: hidden !important;*/
   }
}
@media screen and (min-width: 1024px) {
   .swiper {
      overflow: visible !important;
   }
}