.wrap01 {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.movie-mv {
  position: relative;
  background-color: #51bdc3;
  overflow: hidden;
}
.movie-mv__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.movie-mv__img img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}
.movie-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 260px;
  color: #fff;
}
.movie-mv__jp {
  margin-bottom: 18px;
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.movie-mv__en {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}

.movie-list {
  padding-top: 60px;
}
.movie-list__ttl {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.movie-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.movie-card__frame {
  position: relative;
  aspect-ratio: 9/16;
  background-color: #000;
  overflow: hidden;
}
.movie-card__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.movie-card__frame--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c3e4e4;
}
.movie-card__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie-card__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.movie-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 19.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(0, 150, 152, 0.8);
  transition: background-color 0.3s ease;
}
.movie-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 0.9%;
  width: 6.5%;
  aspect-ratio: 1/1.15;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.movie-card__play:hover::before {
  background-color: rgb(0, 150, 152);
}
.movie-card__soon {
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
}
.movie-card__caption {
  margin-top: 18px;
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10vw 12vw;
}
.movie-modal.is-open {
  display: flex;
}
.movie-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
.movie-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  padding-top: 14vw;
}
.movie-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 11vw;
  height: 11vw;
  min-width: 40px;
  min-height: 40px;
  max-width: 48px;
  max-height: 48px;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.movie-modal__close::before, .movie-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.5vw;
  max-width: 24px;
  height: 2px;
  background-color: #fff;
}
.movie-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.movie-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.movie-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background-color: #000;
  overflow: hidden;
}
.movie-modal__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.is-movie-modal-open {
  overflow: hidden;
}

.movie-btn {
  padding: 130px 0 90px;
}
.movie-btn .int-btn {
  margin-bottom: 45px;
  text-align: center;
}
.movie-btn .int-btn a {
  display: inline-block;
  padding: 14px 70px;
  background: #333;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .movie-mv__img {
    position: static;
    height: auto;
  }
  .movie-mv__img img {
    width: 100%;
    height: auto;
  }
  .movie-mv__inner {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .movie-mv .wrap01 {
    text-align: center;
  }
  .movie-mv__jp {
    margin-bottom: 2.2vw;
    font-size: 3.3vw;
  }
  .movie-mv__en {
    font-size: 7.2vw;
  }
  .movie-list {
    padding-top: 10vw;
  }
  .movie-list__ttl {
    margin-bottom: 6vw;
    font-size: 5.5vw;
    text-align: center;
  }
  .movie-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 8.5vw 5vw;
  }
  .movie-card__soon {
    font-size: 3vw;
  }
  .movie-card__caption {
    margin-top: 2.6vw;
    font-size: 2.6vw;
  }
  .movie-card__frame[data-video-id]:not(.movie-card__frame--soon) iframe {
    display: none;
  }
  .movie-btn {
    padding: 14vw 0 12vw;
  }
  .movie-btn .int-btn {
    margin-bottom: 4.8vw;
  }
  .movie-btn .int-btn a {
    display: block;
    max-width: 71vw;
    margin-left: auto;
    margin-right: auto;
    padding: 4.8vw 0;
    font-size: 4.8vw;
  }
}

/*# sourceMappingURL=style-movie.css.map */
