/* ------------
 * movie
 */
#movie {
  position: relative;
  overflow: hidden;
}

/* movie */
.movie {
}
.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: 20vw auto;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.movie_play.disabled {
  opacity: 0;
  pointer-events: none;
}
.switch_sound {
  position: absolute;
  right: 4vw;
  bottom: 4vw;
  width: 8vw;
  height: 8vw;
  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);
}
