@media screen and (max-width: 900px) {
  .l-main {
    padding-bottom: 76px;
  }
}

.p-movie__ttl {
  width: 246px;
}
@media screen and (max-width: 900px) {
  .p-movie__ttl {
    width: 124px;
  }
}

.p-movie__contents {
  padding-top: 20px;
}
@media screen and (max-width: 900px) {
  .p-movie__contents {
    padding-top: 0;
  }
}
.p-movie__contents-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .p-movie__contents-list {
    display: block;
  }
}
.p-movie__contents-list-item {
  width: 48%;
  margin-bottom: 3.6%;
  cursor: pointer;
}
@media not all and (max-width: 900px) {
  .p-movie__contents-list-item {
    margin-right: 4%;
  }
  .p-movie__contents-list-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-movie__contents-list-item:hover .p-in-image::before {
    opacity: 0;
  }
  .p-movie__contents-list-item:hover .p-in-icon {
    transform: translate(-50%, -50%) scale(1.1);
  }
  .p-movie__contents-list-item:hover .p-in-icon-item:nth-of-type(1) {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 900px) {
  .p-movie__contents-list-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-movie__contents-list-item-thumbnail {
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 11px;
  position: relative;
}
.p-movie__contents-list-item-thumbnail .p-in-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-movie__contents-list-item-thumbnail .p-in-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-movie__contents-list-item-thumbnail .p-in-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/frame_movie.png) no-repeat center/contain;
  z-index: 1;
}
.p-movie__contents-list-item-thumbnail .p-in-image-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-movie__contents-list-item-thumbnail .p-in-icon {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-movie__contents-list-item-thumbnail .p-in-icon {
    width: 90px;
  }
}
.p-movie__contents-list-item-thumbnail .p-in-icon-item {
  width: 100%;
}
.p-movie__contents-list-item-thumbnail .p-in-icon-item:nth-of-type(1) {
  transition: transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-movie__contents-list-item-thumbnail .p-in-icon-item:nth-of-type(2) {
  animation: rotate 14s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}
.p-movie__contents-list-item-thumbnail .p-in-icon-item img {
  width: 100%;
}
.p-movie__contents-list-item-title {
  font-weight: 700;
}