.p-movie__contents {
  width: 77.1%;
  max-width: 1200px;
  margin: 102px auto 0;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.8s var(--ease-main) 0.1s, opacity 0.8s var(--ease-main) 0.1s;
}
.is-load .p-movie__contents {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-movie__contents {
    width: 92%;
    max-width: 500px;
    margin: 52px auto 0;
  }
}
.p-movie__contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 38.5px;
}
@media screen and (max-width: 899px) {
  .p-movie__contents-list {
    display: block;
  }
}
.p-movie__contents-item {
  width: calc(50% - 19.3px);
  cursor: pointer;
}
@media (hover: hover) {
  .p-movie__contents-item:hover .p-movie__contents-item-thumb-image {
    transform: scale(1.03);
  }
  .p-movie__contents-item:hover .p-movie__contents-item-thumb-icon img {
    transform: scale(0.95);
    animation: flash 0.1s linear forwards;
  }
  .p-movie__contents-item:hover .p-movie__contents-item-title {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 899px) {
  .p-movie__contents-item {
    width: 100%;
  }
  .p-movie__contents-item + .p-movie__contents-item {
    margin-top: 27px;
  }
}
.p-movie__contents-item-thumb {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.p-movie__contents-item-thumb-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.4s var(--ease-main);
}
.p-movie__contents-item-thumb-icon {
  width: 12%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-movie__contents-item-thumb-icon img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  transition: transform 0.4s var(--ease-main);
}
.p-movie__contents-item-title {
  margin-top: 13px;
  font-size: 1.7rem;
  line-height: 1.5;
  transition: color 0.6s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-movie__contents-item-title {
    margin-top: 5px;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
}