.password .wrap {
  position: relative;
}

.movie .ttl-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.movie .ttl-m span {
  width: 62px;
}

@media screen and (max-width: 640px) {
  .movie .ttl-m span {
    width: 48px;
  }
}

.movie .ttl-m .txt {
  width: calc(100% - 53px);
  font-size: 1.6rem;
  line-height: 1.2;
}

@media screen and (max-width: 640px) {
  .movie .ttl-m .txt {
    font-size: 1.4rem;
  }
}

.movie .movie-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  .movie .movie-list {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .movie .movie-list {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 640px) {
  .movie .movie-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.movie .movie-list .js-modal-video {
  position: relative;
  display: block;
}

.movie .movie-list .js-modal-video::before, .movie .movie-list .js-modal-video::after {
  position: absolute;
  top: 50%;
  content: "";
  translate: -50% -50%;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.movie .movie-list .js-modal-video::before {
  left: 50%;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: solid 2px #fff;
  border-radius: 50%;
}

@media screen and (max-width: 640px) {
  .movie .movie-list .js-modal-video::before {
    width: 64px;
    height: 64px;
  }
}

.movie .movie-list .js-modal-video::after {
  left: calc( 50% + 5px);
  width: 20px;
  height: 25px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width: 640px) {
  .movie .movie-list .js-modal-video::after {
    left: calc(50% + 3px);
    width: 16px;
    height: 20px;
  }
}

.movie .movie-list .js-modal-video:hover::before, .movie .movie-list .js-modal-video:hover::after {
  scale: 1.1;
}

/*# sourceMappingURL=../../maps/pages/movie.css.map */
