.p-movie__contents {
  width: 71.7%;
  max-width: 1200px;
  margin: 79px auto 100px;
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 1s var(--ease-main) 0.1s, opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s;
}
.is-load .p-movie__contents {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .p-movie__contents {
    width: 84%;
    margin: 40px auto 47px;
  }
}
.p-movie__contents-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .p-movie__contents-list {
    display: block;
  }
}
.p-movie__contents-list-item {
  width: 48.2%;
  margin-bottom: 3.2%;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 901px) {
  .p-movie__contents-list-item:hover .p-in-icon img {
    transform: scale(0.9);
  }
  .p-movie__contents-list-item:hover .p-movie__contents-list-item-image::before {
    opacity: 0.4;
  }
}
@media screen and (min-width: 901px) {
  .p-movie__contents-list-item {
    margin-right: 3.6%;
  }
  .p-movie__contents-list-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-movie__contents-list-item {
    width: 100%;
    margin-bottom: 7.2%;
  }
}
.p-movie__contents-list-item-image {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.p-movie__contents-list-item-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-pink);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s var(--ease-main);
}
.p-movie__contents-list-item-image .p-in-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-image .p-in-icon {
  width: 16%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.p-movie__contents-list-item-image .p-in-icon img {
  transition: transform 0.6s var(--ease-main);
}
.p-movie__contents-list-item-title {
  line-height: 1.9;
  font-size: 1.6rem;
  margin-top: 13px;
}
@media screen and (max-width: 900px) {
  .p-movie__contents-list-item-title {
    line-height: 1.7;
    font-size: 1.3rem;
    margin-top: 9px;
  }
}
.p-movie__contents-list-item:nth-of-type(2n) {
  margin-right: 0;
}