/*!
 * custom-slider.css
 * スライダー用CSSです。
 */

.swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.4s ease;
}

.swiper-slide {
  flex: 0 0 100%;
  width: 100%;
}

.swiper-slide img {
  width: 80%;
  display: block;
}

/* ページネーション(丸いドット) */
.swiper-pagination {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 4px;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.8;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #333;
  opacity: 1;
}

/* 前へ/次へボタン */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  color: #fff;
}

.swiper-button-prev { left: 12px; }
.swiper-button-next { right: 12px; }

.swiper-button-prev::after { content: "\2039"; font-size: 26px; line-height: 1; }
.swiper-button-next::after { content: "\203A"; font-size: 26px; line-height: 1; }

@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 20px;
  }
	
.swiper-slide img {
  width: 100%;
  display: block;
}	
}
