@charset "UTF-8";
/* コンテナ */
.swiper,
.swiper2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: unset !important;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  width: 100%;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper2 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper2 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7.5px;
  width: 30px;
  height: 2px;
  border-radius: 0;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper2 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper2 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-theme-color: #3C3C3C !important;
  background: #3C3C3C;
  color: #3C3C3C;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet :root,
.swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet :root,
.swiper2 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet :root,
.swiper2 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet :root {
  --swiper-theme-color: #3C3C3C !important;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets,
.swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper .swiper-pagination-custom,
.swiper .swiper-pagination-fraction,
.swiper2 .swiper-horizontal > .swiper-pagination-bullets,
.swiper2 .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper2 .swiper-pagination-custom,
.swiper2 .swiper-pagination-fraction {
  bottom: -30px;
}

/* ラッパー */
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

/* スライド */
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 470px !important;
  position: relative;
  transition-property: transform;
}
@media screen and (max-width: 768px) {
  .swiper-slide {
    height: 170px !important;
  }
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

/* ナビゲーションボタン */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

/* ページネーション */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

/* ページネーションブレット */
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
