.sp {
  display: block;
}

.pc {
  display: none;
}

.movie-area {
  margin: 10%;
  text-align: center;
  cursor: pointer;
}
.movie-area p {
  margin-bottom: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 5vw;
  font-weight: bold;
  line-height: 1;
  color: #005b96;
  filter: drop-shadow(4px 5px 2px rgba(0, 0, 0, 0.2));
}
  .movie-area p::after {
    content: "";
    width: 5vw;
    height: 5vw;
    margin-left: 5%;
    display: block;
    background-image: url(../Images/icon_next.svg);
  }
.movie-area .player-outer {
  width: 100%;
}
.movie-area .player-outer .linkBtn {
  filter: drop-shadow(4px 5px 2px rgba(0, 0, 0, 0.2));
}
.movie-area .player-outer .linkBtn video {
  width: 100%;
  display: block;
}
.movie-area .player-outer .linkBtn video:hover {
  opacity: unset;
}

#movie-modal {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
#movie-modal.active {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 1;
  transition: all 0.5s;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.85);
}
#movie-modal .modal-box {
  position: relative;
  max-width: 800px;
  width: 90%;
  z-index: 1;
}
#movie-modal .modal-box .modal-inner {
  width: 100%;
  padding-top: 56.25%;
}
#movie-modal .modal-box .modal-inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#close {
  position: absolute;
  right: 0;
  top: -75px;
  cursor: pointer;
  font-size: 50px;
  color: #fff;
}

#overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1000px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  .p-hero_content-inner {
    position: relative;
  }
  .p-hero_content-inner .movie-area {
    width: 260px;
    margin: unset;
    position: absolute;
    bottom: 50px;
    right: 30px;
    transition: opacity 300ms ease-out;
  }
  .p-hero_content-inner .movie-area:hover {
    opacity: 0.6;
  }
  .p-hero_content-inner .movie-area p {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .p-hero_content-inner .movie-area p::after {
    width: 18px;
    height: 18px;
    margin-left: 10px;
  }
  .p-hero_content-inner .movie-area .player-outer {
    padding: unset;
  }
}

/*# sourceMappingURL=p-hero_mp4_modal.css.map */