/*-------------------------------
---.movie_contents
-------------------------------*/

.movie_contents {
  margin-bottom: 12rem;
}

.movie_contents .item .movie {
  position: relative;
  border: 1px solid#C8C8C8;
}

.movie_contents .item .movie::before {
  content: '\f144';
  position: absolute;
  z-index: var(--z-index-low);
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  font-size: 4.5rem;
  color: #fff;
  background-color: rgba(0,0,0,.2);
  opacity: 0;
  transition: 0.3s;
}

@media screen and (min-width: 1025px) {
  .movie_contents .item .movie:hover:before {
    opacity: 1;
  }
}

.movie_contents .item .movie::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.movie_contents .item .movie video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie_contents .item .item_title {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

.movie_contents .item .item_title::before {
  content: '\f144';
  font-weight: bold;
  color: var(--main-color);
  margin-right: 0.5em;
}

.lity {
  background-color: rgba(0,0,0,.5);
}