@charset "utf-8";


/* ==================================
ページネーション
  ================================== */

/* ページネーション要素をスライダー要素の外へ移動します */

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -2rem;
}


/* ==================================
ドット
  ================================== */

/* ドットをカスタマイズ */

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.4rem;
  background: #88abda;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  opacity: 1;
}

/*アクティブなときのスタイル*/
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.4);
}


/* ==================================
矢印
  ================================== */

/* 矢印の位置調整 */
.swiper-horizontal {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: 60px;
  height: 60px;
}

.swiper-button-next {
  right: 0;
  transform: translate(50%, -50%);
}

.swiper-button-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

/* デフォルトの矢印を消す方法 */

/* //ここでデフォルトの矢印を上書き */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  /*ここでデフォルトの矢印を上書き*/
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swiper-button-prev:after {
  left: 0;
}

.swiper-button-next:after {
  right: 0;
}

.swiper-button-prev:after {
  background: url(../img/ecocute/arrow-l.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-button-next:after {
  background: url(../img/ecocute/arrow-r.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*非アクティブ*/
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

@media (max-width: 767px) {

  /* Swiperのスタイルをリセットする */
  .swiper-container,
  .swiper-wrapper,
  .swiper-slide {
    all: unset;
    /* 必要に応じて他のスタイルも追加 */
  }
}