/* 2024/3/1 Decoシリーズ スライダー画像 */
.swiper {
    width: 720px;
  }
  .swiper-slide img {
    max-width:100%;
  }
  .sub-swiper .swiper-slide-thumb-active {
    opacity: 0.5;
    transition: opacity 0.5s;
    width: calc(100% / 3);
  }
  .sub-swiper .swiper-slide img:hover{
    cursor:pointer;
  }
  
  
  /* 矢印を消して画像に変更する */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: ""; /*contentを空にする*/
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    width: 50px;
    margin: auto;
    }
  @media screen and (max-width: 500px) {
    /* 矢印画像の高さと幅 */
    .swiper-button-prev,
    .swiper-button-next {
      height: 32px;
      width: 32px;
    }
    /* 矢印を消して画像に変更する */
    .swiper-button-prev:after,
    .swiper-button-next:after {
      height: 32px;
      width: 32px;
    }
  }
  /* 前に戻る矢印の画像パス */
  .swiper-button-prev::after {
    background-image: url(https://shimizu-create.com/wp-content/uploads/2024/03/arrow-left.png);
  }
  /* 次に進む矢印の画像パス */
  .swiper-button-next::after {
    background-image: url(https://shimizu-create.com/wp-content/uploads/2024/03/arrow-right.png);
  }
