@charset "utf-8";
#movie {
  width: 100%;
  height: 85vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../../images/main.jpg");
}
#movie #videoWrap {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}
#movie #video {
  vertical-align: bottom;
  padding: 0px;
  border: none;
  z-index: 0;
  opacity: 0;
  position: relative;
  overflow: hidden;
}
#movie #videoWrap > video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
#movie #movie-slider {
  opacity: 1;
  width: 100%;
  z-index: 1;
  margin-top: -35%;
  position: absolute;
  top: 50%;
  left: 0px;
}
#movie #movie-slider .slider-wrap li img {
  width: 100%;
  height: auto;
}
#movie .lij {
  pointer-events: none;
  z-index: 9;
  position: absolute;
  top: 20px;
  left: 20px;
}
#movie .lij img {
  width: 100%;
  height: auto;
}
#movie .skip {
  z-index: 9;
  position: absolute;
  right: 32px;
  bottom: 32px;
}
#movie .play {
  display: none;
  z-index: 9;
  position: absolute;
  right: 32px;
  bottom: 32px;
}
@media screen and (min-width: 769px) {
  #movie #videoStart {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #movie {
    min-width: 0px;
    background-image: url("../../images/main_sp.jpg");
  }
  #movie .skip, #movie .play {
    display: none !important;
  }
  #movie .play_sp {
    z-index: 9;
    position: absolute;
    right: 32px;
    bottom: 32px;
  }
  #movie #videoWrap {
    position: relative;
  }
  #movie #videoStart {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    z-index: 10;
    text-indent: -9999px;
    overflow: hidden;
    transform: translate(-50%, -50%);
  }
  #movie #videoStart::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    display: block;
    width: 0;
    height: 0;
    z-index: 10;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-top: 15px solid transparent;
    border-left: 25px solid #aaa;
    border-bottom: 15px solid transparent;
  }
}