@charset "Shift_JIS";

    .swiper {
    width: 100%;
    padding: 200px 0 260px;
    }
@media(min-width:751px){
.swiper {
    width: 30%;
    padding: 200px 0 260px;
    }
}
    .swiper-slide {
      background: #fff;
    width: 80%;
      height: 160px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .swiper-slide img {
    width: 100%;
    }
    /* 追加：非アクティブスライドにぼかし */
    .swiper-slide-prev,
    .swiper-slide-next {
      filter: blur(3px);
      transform: scale(0.9);
      opacity: 0.6;
    }

    /* ボタン共通デザイン */
    .swiper-button-next,
    .swiper-button-prev {
      background: white;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      width: 40px;
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 16px;
      color: #333;
      font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: #eaeaea;
    }
 