/* ------------
 * movie
 */
#movie {
  clear: both;
}

/* movie */
.movie {
  max-width: 1500px;
  margin: 0 auto;
}
.movie_wrap {
  position: relative;
}
.movie_play {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../IMAGES/icon_play.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75px auto;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.movie_play:hover {
  opacity: 1;
}
.movie_play.disabled {
  opacity: 0;
  pointer-events: none;
}
.switch_sound {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  background-image: url(../IMAGES/icon_volume_on.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.switch_sound.mute {
  background-image: url(../IMAGES/icon_volume_off.png);
}
@media screen and (min-width: 581px) and (max-width: 1169px) {
  .movie_play {
    background-size: 6.41vw auto;
  }
}
