@charset "Shift_JIS";

/* --------------------------------------------------------------------
スライダー（MV用）の作成（mvSlider.js）
--------------------------------------------------------------------- */
.slideshow_ {
  width: 100%;
  max-width: 840px;
  max-height: 500px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.wrapper_ > .slideshow_ {
  padding: 0 3px; 
} 

/* その場でフェードイン */
.js_slideshow ul {
  animation-name: fade-in-anime;
  animation-delay: 0.5s;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-in-anime {
  from {
    opacity: 0; }

  to {
    opacity: 1; }
}

/* js連動(クラス名変更不可) */
.js_slideshow ul li a {
  display: block;
}

.js_slideshow ul li a img {
  width: 100%;
  height: auto;
  max-width: 840px;
}

/* IE・Firefox用 */
.js_slideshow .swiper {
  padding: 0 0 5px; 
}

/* ナビ・ページネーションの基準色 */
.js_slideshow {
  --swiper-theme-color: #333; 
}

.js_slideshow .js_slideshow_control {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0 0;
}

.js_slideshow .swiper-pagination {
  position: static;
  display: inline;
  width: auto;
  padding: 0 30px;
}

.js_slideshow .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  opacity: 1;
}

.js_slideshow .swiper-pagination-bullet-active {
  background: #333;
}

.js_slideshow .swiper-button-prev,
.js_slideshow .swiper-button-next {
  position: static;
  width: 20px;
  height: 20px;
  margin: 0;
}