@charset 'UTF-8';

.swiper {
  margin: 0 35px;
}

.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 200px;
  height: auto;
}

.swiper-button-prev, .swiper-button-next {
  /* 表示したいサイズ */
  transform: translateY(-50%);
  width: 12px;
  /* ボタンの幅 */
  height: 20px;
  margin-top: 0;
  /* ボタンの高さ */
  background-size: 12px 20px;
}

/* 次ページボタンのスタイル */
.swiper-button-next {
  background-image: url('https://kiomiru.co.jp/blog/wp-content/uploads/2021/09/img_arrow_black_01.png');
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  transform: translateY(-50%) scale(-1, 1);
  background-image: url('https://kiomiru.co.jp/blog/wp-content/uploads/2021/09/img_arrow_black_01.png');
  /* 左右反転 */
}

.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

.swiper-pagination-bullets {
  position: static;
  margin-top: 16px;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 0 0 10px !important;
  background: #333 !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}
