@charset "UTF-8";
/*----------------------------------------
VARIABLE
-----------------------------------------*/
.maxWidth {
  width: 1000px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.inrWidth {
  width: 1000px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

/*----------------------------------------
PC
-----------------------------------------*/
/*----------------------------------------
sp
-----------------------------------------*/
@media (max-width: 900px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
  .maxWidth {
    width: 96%;
    margin: 0 auto;
  }
  .inrWidth {
    width: 100%;
  }
}
/*----------------------------------------
vw（Viewport Width)
-----------------------------------------*/
.dis_pc {
  display: block;
}
@media only screen and (max-width: 900px) {
  .dis_pc {
    display: none;
  }
}

.dis_sp {
  display: none;
}
@media only screen and (max-width: 900px) {
  .dis_sp {
    display: block;
  }
}

main header {
  height: 80px;
}
@media only screen and (max-width: 900px) {
  main header {
    height: 19.4444444444vw;
  }
}
main .movie-block {
  position: relative;
  padding-top: 150px;
  margin-bottom: 0;
}
@media only screen and (max-width: 900px) {
  main .movie-block {
    padding-top: 30vw;
  }
}
main .movie-block p {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
}
@media only screen and (max-width: 900px) {
  main .movie-block p {
    font-size: 2.6666666667vw;
  }
}
main .movie-block .movie-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 900px) {
  main .movie-block .movie-wrap {
    padding: 0;
  }
}
main .movie-block .movie-wrap .movie-list {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 0px 2%;
  background: #000;
}
@media only screen and (max-width: 900px) {
  main .movie-block .movie-wrap .movie-list {
    width: 46%;
    margin: 2% 2%;
  }
}
main .movie-block .movie-wrap .movie-list a {
  display: block;
  width: 100%;
  height: 100%;
}
main .movie-block .movie-wrap .movie-list a img {
  width: 100%;
}
main .movie-block .movie-wrap .movie-list a:after {
  content: "";
  display: block;
  width: 125px;
  height: 125px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background: url(../img/icon/ico_video.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  main .movie-block .movie-wrap .movie-list a:after {
    width: 12.5vw;
    height: 12.5vw;
  }
}
main .movie-block .movie-wrap .movie-list:nth-of-type(2n) {
  margin-left: auto;
}
main #gi_productlist {
  margin-bottom: 0;
}

.see-btn {
  width: 560px;
  height: 60px;
  margin: 45px auto 0;
}
@media only screen and (max-width: 900px) {
  .see-btn {
    width: 62.2222222222vw;
    height: 8.8888888889vw;
    margin: 5vw auto;
  }
}
.see-btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0 20px;
  font-size: 24px;
  font-family: "Teko", sans-serif;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .see-btn a {
    padding: 0.8333333333vw 2.2222222222vw 0;
    font-size: 4vw;
  }
}
.see-btn a span {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  background: url(../img/arrow-red.png) no-repeat;
  background-position: right center;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .see-btn a span {
    line-height: 1;
    background-size: auto 100%;
  }
}
.see-btn a:hover:before {
  opacity: 0;
}
.see-btn a:hover:after {
  opacity: 1;
}
.see-btn a:before {
  content: "";
  opacity: 1;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #ca0c0c;
  -o-border-image: linear-gradient(to right, #ca0c0c 0%, #221cb5 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#ca0c0c), to(#221cb5));
     border-image: linear-gradient(to right, #ca0c0c 0%, #221cb5 100%);
  border-image-slice: 1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: -1;
}
.see-btn a:after {
  content: "";
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ca0c0c), to(#221cb5));
  background: linear-gradient(to right, #ca0c0c 0%, #221cb5 100%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: -1;
}
.see-btn .no-arrow span {
  background: none;
}
.see-btn .jp {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
}

.iframeContainer {
  width: 100%;
  margin: 0 auto;
}
.iframeContainer .iframeWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.iframeContainer .iframeWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}