/* コンテナー */
.container {
    padding: 30px 0;
    width: 100%;
    margin: 0 auto;
  }
  
  /* スライダーのwrapper */
  .infinite-slider .swiper-wrapper {
    transition-timing-function: linear;
  }
  
  /* スライド */
  .infinite-slider .swiper-slide {
    height: 300px !important; /* 高さを指定 */
    width: auto !important;
    margin-right: 10px;
  }

  
  /* スライド内の画像 */
  .infinite-slider .swiper-slide img {
    width: auto;
    height: 100%;
  }

  @media screen and (max-width: 763px) {
    .container {
        padding: 20px 0;
        width: 100%;
        margin: 0 auto;
      }
      
      /* スライダーのwrapper */
      .infinite-slider .swiper-wrapper {
        transition-timing-function: linear;
      }
      
      /* スライド */
      .infinite-slider .swiper-slide {
        height: 200px !important; /* 高さを指定 */
        width: auto !important;
        margin-right: 10px;
      }

  }