@charset "UTF-8";

/*------------------------------------------------------------------------------
  mv
------------------------------------------------------------------------------*/

.mv {
  width: 100%;
  margin-bottom: 117px;
  position: relative;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-slide {
  opacity: .4;
}

.swiper-slide-active {
  opacity: 1;
}

/* swiper-pagination */

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -37px;
}

.swiper-pagination-bullet {
  background-color: transparent;
  background-image: url(../img/dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  height: 14px;
  opacity: 1;
  width: 11px;
}

/* 選択されているページネーション */
.swiper-pagination-bullet-active {
  background-image: url(../img/dot-active.png);
  height: 14px;
  width: 11px;
}

/* ページネーションの余白 */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

/* 900px
--------------------------------------------- */
@media only screen and (max-width: 900px) {

  .mv {
    margin: 61px 0 74px;
  }

  /* swiper-pagination */

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -41px;
  }

  /* ページネーション */
  .swiper-pagination-bullet {
    height: 12px;
    width: 10px;
  }
}

/*------------------------------------------------------------------------------
  information
------------------------------------------------------------------------------*/

.information {
  margin-bottom: 160px;
}

.information__inner {
  display: flex;
}

.information__title {
  flex: 0 0 auto;
  margin-right: 50px;
}

.information__list {
  flex: 1;

}

.information__item-head {
  line-height: 1.76;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 17px;
  margin-bottom: 16px;
}

.information__item-head a,
.information__item a {
  font-weight: bold;
  text-decoration: underline;
}

.information__item {
  display: flex;
  line-height: 1.93;
  margin-bottom: 11px;
}

.information__item:last-child {
  margin-bottom: 0;
}

.information__item time {
  flex: 0 0 auto;
  margin-right: 18px;
  display: block;
}

.information__item p {
  flex: 1;
}

/* 767px
--------------------------------------------- */
@media only screen and (max-width: 767px) {


  .information {
    margin-bottom: 95px;
  }

  .information__inner {
    display: block;
  }

  .information__title {
    text-align: center;
    margin: 0 auto 25px;
    position: relative;
    padding-bottom: 47px;
  }

  .information__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background-color: #ccc;
    display: block;
  }

  .information__title .title-ja {
    font-size: 2rem;
  }

  .information__item-head {
    line-height: 1.66;
    margin-bottom: 14px;
  }

  .information__item {
    display: block;
    line-height: 1.9;
    margin-bottom: 11px;
  }

  .information__item time {
    font-size: 1.3rem;
    margin-right: 0;
  }

  .information__item p {
    line-height: 1.6;
  }

}

/*------------------------------------------------------------------------------
  recommend-series
------------------------------------------------------------------------------*/

.recommend-series {
  margin-bottom: 153px;
}

.recommend-series__list {
  display: flex;
  flex-wrap: wrap;
}

.recommend-series__item {
  flex: 0 1 21.4%;
  width: 100%;
  margin-right: 4.8%;
}

.recommend-series__item:nth-child(-n + 4) {
  margin-bottom: 60px;
}

.recommend-series__item:nth-child(4n) {
  margin-right: 0;
}

.recommend-series__img img {
  width: 100%;
  height: 100%;
}

.recommend-series__item p {
  text-align: center;
  margin-top: 10px;
}

/* 767px
--------------------------------------------- */
@media only screen and (max-width: 767px) {

  .recommend-series {
    margin-bottom: 95px;
  }

  .recommend-series__list {
    justify-content: space-between;
    margin-bottom: -24px;
  }

  .recommend-series__item {
    flex: 0 1 48.66%;
    margin: 0 0 24px;
  }

  .recommend-series__item:nth-child(-n + 4) {
    margin-bottom: 24px;
  }

  .recommend-series__item p {
    margin-top: 9px;
  }

}