/****************************
**** movie :  ****
*****************************/

.movie-series {
  width: 98%;
  margin: 0 auto;
  margin-bottom: 100px;
  position: relative;
}

.movie-archive {
  margin-top: 30px;
}

.movie-series__title {
  font-size: clamp(16px, 2.5vw, 25px);
  color: var(--top-section-title);
  text-align: center;
  margin-bottom: .4rem;
}

.movie-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.movie-item__video {
  width: 100%;
  aspect-ratio: 1.77;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.movie-swiper .swiper-slide {
  transition: transform 0.3s, z-index 0.3s;
  z-index: 1;
  filter: blur(1px);
  opacity: 0.7;
  transform: scale(0.7);
}

.movie-swiper .swiper-slide-active {
  transform: scale(1.0);
  z-index: 3;
  filter: none;
  opacity: 1;
  display: block;
}

.movie-swiper .swiper-slide:not(.swiper-slide-active) .movie-item .movie-item__title,.movie-swiper .swiper-slide:not(.swiper-slide-active) .movie-item .category-list,.movie-swiper .swiper-slide:not(.swiper-slide-active) .movie-item .movie-item__content {
  display: none;
}

.movie-swiper .swiper-slide-next,
.movie-swiper .swiper-slide-prev {
  z-index: 2;
  opacity: 0.9;
  filter: blur(0.5px);
}

/* スライドを重ねる */
.movie-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

/* swiper button */
.movie-series .section__inner {
  position: relative;
}

.section .movie-series .swiper-button-next {
  top: 45%;
  right: 0;
}

.section .movie-series .swiper-button-prev {
  top: 45%;
  left: 0;
}

.movie-item a {
  width: 100%;
}

.movie-item a:hover {
  opacity: 0.8;
}

.movie-item__content {
  padding: 4%;
  border-radius: 8px;
  background-color: #ffffff;
  position: relative;
  align-items: center;
  display: flex;
  flex-flow: wrap;
}

.movie-item__title {
  margin-top: 0;
  position: static;
  z-index: 2;
  opacity: 1;
  display: flex;
  align-items: center;
  padding-right: 40px;
  font-size: 16px;
}

.movie-item__title--number {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--bg-color);
  margin-right: 1rem;
  line-height: 1;
  padding-top: .4rem;
}

.movie-item__bottom--more {
  color: var(--bg-color);
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translate(0, -50%);
}

.movie-item__bottom--more:after {
  content: 'next';
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  font-size: 16px;
}
.movie-item__content .category-list {
  color: var(--top-pick-category);
  width: 100%;
}

.category-list__item:not(:last-of-type)::after {
  background: var(--top-pick-category);
}

.title-box.--archive-feature {
  font-size: 20px;
  margin-bottom: .4rem;
}

.--feature-title {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 3.2em;
}

@media screen and (min-width: 768px) {
  .movie-item__title {
      font-size: 18px;
  }

  .movie-item__title--number {
      font-size: 56px;
  }

  .movie-item__bottom--more:after {
      font-size: 20px;
  }

  .title-box.--archive-feature {
      font-size: 30px;
  }
}