@charset "UTF-8";
/*=====================================================*/
/* 共通変数 */
/*=====================================================*/
/*=====================================================*/
/* 汎用mixin*/
/*=====================================================*/
/*- animate -----------------------------*/
/*- mediaScreen -----------------------------*/
/*- 単位  -----------------------------*/
/*- flexbox -----------------------------*/
/*- absolute -----------------------------*/
/*- fixed -----------------------------*/
/*- font -----------------------------*/
/*- margin -----------------------------*/
/*- padding -----------------------------*/
/*- width -----------------------------*/
/*- height -----------------------------*/
/*- img -----------------------------*/
/*- content -----------------------------*/
/*- text -----------------------------*/
/*- easing -----------------------------*/
/*=====================================================*/
/* 変数 */
/*=====================================================*/
/*=====================================================*/
/* 共通 */
/*=====================================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

ul li {
  list-style-type: none;
}

img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  line-height: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

video {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

main {
  display: block;
}

.pc {
  display: none;
}

@media (min-width: 750px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}
a {
  display: block;
  color: #fff;
  text-decoration: none;
}

::selection {
  background: #65b896;
  color: #fff;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #65b896;
}

/*=====================================================*/
/* 汎用class */
/*=====================================================*/
.hvrOpa {
  transition: opacity 0.5s;
}
.hvrOpa:hover {
  cursor: pointer;
  opacity: 0.8;
}

.thumbMovie {
  position: relative;
}
.thumbMovie:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: url(../images/common/btn_play.png) no-repeat;
  background-size: contain;
  width: 15.33333vw;
  height: 15.33333vw;
}
.thumbMovie:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0vw;
  left: 0vw;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s;
}
@media (min-width: 750px) {
  .thumbMovie:before {
    width: 6vw;
    max-width: 72px;
    height: 6vw;
    max-height: 72px;
    transition: 0.5s;
  }
  .thumbMovie:hover:before {
    transform: scale(1.05) translate(-50%, -50%);
    transform-origin: center;
  }
  .thumbMovie:hover:after {
    opacity: 0;
  }
}

/*=====================================================*/
/* Animation */
/*=====================================================*/
.fadeIn {
  opacity: 0;
}
.fadeIn.s {
  opacity: 1;
  transition: opacity 0.5s 0s;
}

.outFadeIn {
  transform: scale(1.2);
  opacity: 0;
}
.outFadeIn.s {
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.5s 0s, transform 0.5s 0s;
}

.fadeUp {
  transform: translateY(20px);
  opacity: 0;
}
.fadeUp.s {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s 0s, transform 0.5s 0s;
}

.fadeLeft {
  transform: translateX(-20px);
  opacity: 0;
}
.fadeLeft.s {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s 0s, transform 0.5s 0s;
}

.fadeRight {
  transform: translateX(20px);
  opacity: 0;
}
.fadeRight.s {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s 0s, transform 0.5s 0s;
}

@media (min-width: 750px) {
  .fadeUpPc {
    transform: translateY(20px);
    opacity: 0;
  }
  .fadeUpPc.s {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.5s 0s, transform 0.5s 0s;
  }
}

/*=====================================================*/
/* body*/
/*=====================================================*/
body {
  position: relative;
  overflow-x: hidden;
  z-index: 0;
  background: #000;
  font-family: "Yu Mincho Demibold", "YuMincho Demibold", "Yu Mincho Light", YuMincho, "Yu Mincho", 游明朝体, Cambria, serif;
  font-size: 3.73333vw;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 750px) {
  body {
    font-size: 1.25vw;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  body {
    font-size: 15px;
  }
}

/*=====================================================*/
/* #topLogo */
/*=====================================================*/
#topLogo {
  position: fixed;
  top: 4vw;
  left: 6.66667vw;
  z-index: 9999;
  width: 32vw;
}
@media (min-width: 750px) {
  #topLogo {
    position: fixed;
    top: 2.5vw;
    left: 2.5vw;
    width: 20vw;
    max-width: 240px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #topLogo {
    top: 30px;
    left: 30px;
  }
}

/*=====================================================*/
/* btnNav */
/*=====================================================*/
#btnNav {
  position: fixed;
  top: 6.66667vw;
  right: 6.66667vw;
  z-index: 9999;
  width: 7.46667vw;
  height: 7.46667vw;
}
#btnNav span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  background: #fff;
  width: 7.46667vw;
  height: 0.53333vw;
  transform: translateY(-50%);
  transition: all 0.5s;
}
#btnNav:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 1.33333vw;
  left: 0vw;
  display: block;
  background: #fff;
  width: 7.46667vw;
  height: 0.53333vw;
  transform: translateY(-50%);
  transition: all 0.5s;
}
#btnNav:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 1.33333vw;
  left: 0vw;
  display: block;
  background: #fff;
  width: 7.46667vw;
  height: 0.53333vw;
  transition: all 0.5s;
}
#btnNav:hover span {
  transform-origin: right;
  transform: translateY(-50%) scaleX(0.8);
}
#btnNav:hover:after {
  transform-origin: right;
  transform: translateY(0) scaleX(0.6);
}
#btnNav.open span {
  background: rgba(106, 190, 156, 0.2);
  border: 2px solid rgba(106, 190, 156, 0.1);
  width: 7.46667vw;
  height: 7.46667vw;
}
#btnNav.open:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  background: #6abe9c;
  width: 4.26667vw;
  height: 0.26667vw;
}
#btnNav.open:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #6abe9c;
  width: 4.26667vw;
  height: 0.26667vw;
}
#btnNav.open:hover span {
  transform-origin: center;
  transform: translate(0, -50%) scaleX(1);
}
#btnNav.open:hover:after {
  transform-origin: center;
  transform: translate(-50%, -50%) scaleX(1) rotateZ(45deg);
}
@media (min-width: 750px) {
  #btnNav {
    position: fixed;
    top: 3.33333vw;
    right: 3.33333vw;
    width: 2.5vw;
    max-width: 30px;
    height: 2.5vw;
    max-height: 30px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #btnNav {
    top: 40px;
    right: 40px;
  }
}
@media (min-width: 750px) {
  #btnNav span {
    width: 2.5vw;
    max-width: 30px;
    height: 0.16667vw;
    max-height: 2px;
  }
  #btnNav:before {
    position: absolute;
    top: 0.41667vw;
    left: 0vw;
    width: 2.5vw;
    max-width: 30px;
    height: 0.16667vw;
    max-height: 2px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #btnNav:before {
    top: 5px;
    left: 0px;
  }
}
@media (min-width: 750px) {
  #btnNav:after {
    position: absolute;
    bottom: 0.41667vw;
    left: 0vw;
    width: 2.5vw;
    max-width: 30px;
    height: 0.16667vw;
    max-height: 2px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #btnNav:after {
    bottom: 5px;
    left: 0px;
  }
}
@media (min-width: 750px) {
  #btnNav:hover {
    cursor: pointer;
  }
  #btnNav.open {
    position: fixed;
    top: 2.5vw;
    right: 2.5vw;
    width: 4.16667vw;
    max-width: 50px;
    height: 4.16667vw;
    max-height: 50px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #btnNav.open {
    top: 30px;
    right: 30px;
  }
}
@media (min-width: 750px) {
  #btnNav.open span {
    width: 4.16667vw;
    max-width: 50px;
    height: 4.16667vw;
    max-height: 50px;
  }
  #btnNav.open:before {
    width: 2.66667vw;
    max-width: 32px;
    height: 0.16667vw;
    max-height: 2px;
  }
  #btnNav.open:after {
    width: 2.66667vw;
    max-width: 32px;
    height: 0.16667vw;
    max-height: 2px;
  }
  #btnNav.open:hover:before {
    transform-origin: center;
    transform: translate(-50%, -50%) scale(0.8) rotateZ(-45deg);
  }
  #btnNav.open:hover:after {
    transform-origin: center;
    transform: translate(-50%, -50%) scale(0.8) rotateZ(45deg);
  }
}

/*- animation -----------------------------*/
#btnNav {
  opacity: 0;
  transform: translateY(-10px);
}
#btnNav.s {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s 1.2s, transform 0.5s 1.2s;
}
#btnNav.page.s {
  transition: opacity 0s, transform 0s;
}

/*=====================================================*/
/* footer */
/*=====================================================*/
#footer {
  position: relative;
  background: #000;
  padding: 16vw 0vw 16vw 0vw;
  text-align: center;
}
#footer .btnPageTop {
  position: fixed;
  bottom: 2.66667vw;
  right: 2.66667vw;
  width: 14.66667vw;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
#footer .btnPageTop.show {
  opacity: 1;
}
#footer .btnPageTop.fixed {
  position: static;
  margin: 0vw 2.66667vw 5.33333vw auto;
}
#footer .txtTch {
  width: 79.86667vw;
  margin: 0vw auto 5.33333vw auto;
}
#footer .bnrTch {
  display: inline-block;
  width: 85.33333vw;
  margin: 0vw auto 16vw auto;
}
#footer .copyright {
  font-size: 2.66667vw;
}
@media (min-width: 750px) {
  #footer {
    padding: 1.66667vw 0vw 4.16667vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #footer {
    padding: 20px 0px 50px 0px;
  }
}
@media (min-width: 750px) {
  #footer .btnPageTop {
    position: fixed;
    bottom: 1.66667vw;
    right: 1.66667vw;
    width: 5.41667vw;
    max-width: 65px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #footer .btnPageTop {
    bottom: 20px;
    right: 20px;
  }
}
@media (min-width: 750px) {
  #footer .btnPageTop.fixed {
    position: static;
    margin: 0vw 1.66667vw 0vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #footer .btnPageTop.fixed {
    margin: 0px 20px 0px auto;
  }
}
@media (min-width: 750px) {
  #footer .txtTch {
    width: 46vw;
    max-width: 552px;
    margin: 0vw auto 3.33333vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #footer .txtTch {
    margin: 0px auto 40px auto;
  }
}
@media (min-width: 750px) {
  #footer .bnrTch {
    width: 53.33333vw;
    max-width: 640px;
    margin: 0vw auto 4.16667vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #footer .bnrTch {
    margin: 0px auto 50px auto;
  }
}
@media (min-width: 750px) {
  #footer .copyright {
    font-size: 0.91667vw;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  #footer .copyright {
    font-size: 11px;
  }
}

/*=====================================================*/
/* btnBack */
/*=====================================================*/
.btnBack {
  position: relative;
  z-index: 0;
  display: block;
  width: 69.33333vw;
  margin: 10.66667vw auto 10.66667vw auto;
}
@media (min-width: 750px) {
  .btnBack {
    width: 21.83333vw;
    max-width: 262px;
    margin: 6.66667vw auto 6.66667vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  .btnBack {
    margin: 80px auto 80px auto;
  }
}
@media (min-width: 750px) {
  .btnBack:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/common/btn_back_on_pc.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  .btnBack:hover:before {
    opacity: 1;
  }
}

/*=====================================================*/
/* fancybox */
/*=====================================================*/
.fancybox-is-open .fancybox-bg {
  background: rgba(0, 0, 0, 0.85);
  opacity: 1;
}
@media (min-width: 750px) {
  .fancybox-is-open .fancybox-bg {
    background: #000;
  }
}

.fancybox-close-small {
  top: -10px;
  right: 0;
  transform: translateY(-100%);
  width: 7.46667vw;
  height: 7.46667vw;
  padding: 0;
  opacity: 1;
}
@media (min-width: 750px) {
  .fancybox-close-small {
    width: 3.75vw;
    max-width: 45px;
    height: 3.75vw;
    max-height: 45px;
  }
}

.fancybox__close-btn {
  background: rgba(106, 190, 156, 0.2);
  border: 2px solid rgba(106, 190, 156, 0.1);
  width: 7.46667vw;
  height: 7.46667vw;
}
.fancybox__close-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  background: #6abe9c;
  width: 4.26667vw;
  height: 0.26667vw;
}
.fancybox__close-btn:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #6abe9c;
  width: 4.26667vw;
  height: 0.26667vw;
}
@media (min-width: 750px) {
  .fancybox__close-btn {
    width: 3.75vw;
    max-width: 45px;
    height: 3.75vw;
    max-height: 45px;
  }
  .fancybox__close-btn:before {
    width: 2.25vw;
    max-width: 27px;
    height: 0.16667vw;
    max-height: 2px;
    transition: transform 0.5s;
  }
  .fancybox__close-btn:after {
    width: 2.25vw;
    max-width: 27px;
    height: 0.16667vw;
    max-height: 2px;
    transition: transform 0.5s;
  }
  .fancybox__close-btn:hover:before {
    transform: translate(-50%, -50%) rotateZ(-45deg) scaleX(0.8);
  }
  .fancybox__close-btn:hover:after {
    transform: translate(-50%, -50%) rotateZ(45deg) scaleX(0.8);
  }
}

.fancybox-toolbar {
  opacity: 1;
  visibility: visible;
}

.fancybox-close-small_chara {
  background: none;
  position: absolute;
  top: 5.33333vw;
  right: 5.33333vw;
  transform: translateY(0);
  width: 7.46667vw;
  height: 7.46667vw;
  padding: 0;
  opacity: 1;
  border: 0;
}
@media (min-width: 750px) {
  .fancybox-close-small_chara {
    position: absolute;
    top: 3.33333vw;
    right: 3.33333vw;
    width: 3.75vw;
    max-width: 45px;
    height: 3.75vw;
    max-height: 45px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  .fancybox-close-small_chara {
    top: 40px;
    right: 40px;
  }
}

.fancybox__close-btn_chara {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  width: 7.46667vw;
  height: 7.46667vw;
}
.fancybox__close-btn_chara:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  background: #fff;
  width: 4.26667vw;
  height: 0.26667vw;
}
.fancybox__close-btn_chara:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #fff;
  width: 4.26667vw;
  height: 0.26667vw;
}
@media (min-width: 750px) {
  .fancybox__close-btn_chara {
    width: 3.75vw;
    max-width: 45px;
    height: 3.75vw;
    max-height: 45px;
  }
  .fancybox__close-btn_chara:before {
    width: 2.25vw;
    max-width: 27px;
    height: 0.16667vw;
    max-height: 2px;
    transition: transform 0.5s;
  }
  .fancybox__close-btn_chara:after {
    width: 2.25vw;
    max-width: 27px;
    height: 0.16667vw;
    max-height: 2px;
    transition: transform 0.5s;
  }
  .fancybox__close-btn_chara:hover:before {
    transform: translate(-50%, -50%) rotateZ(-45deg) scaleX(0.8);
  }
  .fancybox__close-btn_chara:hover:after {
    transform: translate(-50%, -50%) rotateZ(45deg) scaleX(0.8);
  }
}

.fancybox-button_chara--close {
  background: none;
  position: absolute;
  top: 5.33333vw;
  right: 5.33333vw;
  transform: translateY(0);
  width: 7.46667vw;
  height: 7.46667vw;
  padding: 0;
  opacity: 1;
  border: 0;
}
@media (min-width: 750px) {
  .fancybox-button_chara--close {
    position: absolute;
    top: 3.33333vw;
    right: 3.33333vw;
    width: 3.75vw;
    max-width: 45px;
    height: 3.75vw;
    max-height: 45px;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  .fancybox-button_chara--close {
    top: 40px;
    right: 40px;
  }
}

.fancybox-button_chara--close div {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  width: 7.46667vw;
  height: 7.46667vw;
}
.fancybox-button_chara--close div:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  background: #fff;
  width: 4.26667vw;
  height: 0.26667vw;
}
.fancybox-button_chara--close div:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: #fff;
  width: 4.26667vw;
  height: 0.26667vw;
}
@media (min-width: 750px) {
  .fancybox-button_chara--close div {
    width: 3.75vw;
    max-width: 45px;
    height: 3.75vw;
    max-height: 45px;
  }
  .fancybox-button_chara--close div:before {
    width: 2.25vw;
    max-width: 27px;
    height: 0.16667vw;
    max-height: 2px;
    transition: transform 0.5s;
  }
  .fancybox-button_chara--close div:after {
    width: 2.25vw;
    max-width: 27px;
    height: 0.16667vw;
    max-height: 2px;
    transition: transform 0.5s;
  }
  .fancybox-button_chara--close div:hover:before {
    transform: translate(-50%, -50%) rotateZ(-45deg) scaleX(0.8);
  }
  .fancybox-button_chara--close div:hover:after {
    transform: translate(-50%, -50%) rotateZ(45deg) scaleX(0.8);
  }
}

.fancybox-slide--iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
}

.fancybox-slide--iframe .fancybox-content {
  height: 100% !important;
}

.fancybox-navigation .fancybox-button__chara {
  opacity: 1;
  visibility: visible;
  background: none;
  width: 13.06667vw;
  padding: 0;
}
.fancybox-navigation .fancybox-button__chara div {
  padding: 0;
}
@media (min-width: 750px) {
  .fancybox-navigation .fancybox-button__chara {
    width: 5.25vw;
    max-width: 63px;
  }
  .fancybox-navigation .fancybox-button__chara:hover {
    opacity: 0.8;
  }
}

.fancybox-button__chara[disabled],
.fancybox-show-nav .fancybox-navigation .fancybox-button__chara[disabled] {
  opacity: 0;
}

.fancybox-toolbar_chara {
  opacity: 1;
  visibility: visible;
}

/*=====================================================*/
/* slick */
/*=====================================================*/
.slide-arrow {
  width: 12vw;
}
.slide-arrow.prev-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(-70%, -50%);
}
.slide-arrow.next-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translate(70%, -50%);
}
@media (min-width: 750px) {
  .slide-arrow {
    width: 5.25vw;
    max-width: 63px;
  }
  .slide-arrow img {
    transition: opacity 0.4s;
  }
  .slide-arrow.prev-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/common/ico_prev_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .slide-arrow.next-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/common/ico_next_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .slide-arrow:hover:hover:before {
    opacity: 1;
  }
  .slide-arrow:hover:hover img {
    opacity: 0;
  }
}

.slick-dots {
  position: static;
  margin: 2.66667vw 0vw 0vw 0vw;
  line-height: 0;
}
.slick-dots li {
  width: 2.66667vw;
  height: 2.66667vw;
  padding: 0vw 2.66667vw 0vw 2.66667vw;
}
.slick-dots li button {
  background: #fff;
  width: 1.86667vw;
  height: 1.86667vw;
  padding: 0;
  border: 1px solid #387565;
  transform: rotate(-45deg);
  transition: background-color 0.5s;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background: #8dffd1;
  border: 1px solid #387565;
}
@media (min-width: 750px) {
  .slick-dots {
    margin: 0.83333vw 0vw 0vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  .slick-dots {
    margin: 10px 0px 0px 0px;
  }
}
@media (min-width: 750px) {
  .slick-dots li {
    width: 0.83333vw;
    max-width: 10px;
    height: 0.83333vw;
    max-height: 10px;
    padding: 0vw 0.83333vw 0vw 0.83333vw;
  }
}
@media (min-width: 750px) and (min-width: 1200px) {
  .slick-dots li {
    padding: 0px 10px 0px 10px;
  }
}
@media (min-width: 750px) {
  .slick-dots li button {
    width: 0.58333vw;
    max-width: 7px;
    height: 0.58333vw;
    max-height: 7px;
  }
  .slick-dots li:hover button {
    background: #8dffd1;
  }
  .slick-dots li.slick-active button {
    background: #8dffd1;
    border: 1px solid #387565;
  }
}

/*=====================================================*/
/* OneTrust */
/*=====================================================*/
#onetrust-consent-sdk {
  font-family: auto !important;
}

#onetrust-consent-sdk a {
  display: inline;
}

/*=====================================================*/
/* 変数 */
/*=====================================================*/
/*=====================================================*/
/* body */
/*=====================================================*/
body {
  font-size: 3.2vw;
  line-height: 2;
  letter-spacing: 0;
}
body:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  position: fixed;
  top: 0vw;
  left: 0vw;
  z-index: -1;
  background: rgba(0, 0, 0, 0.65);
  opacity: 1;
}
@media (min-width: 750px) {
  body {
    font-size: 1.27273vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  body {
    font-size: 14px;
  }
}

/*=====================================================*/
/* 汎用 */
/*=====================================================*/
.btn {
  position: relative;
  z-index: 0;
  display: block;
  background: linear-gradient(15deg, #4b9f7c 0%, #2e9168 50%, #387565 100%);
  padding: 4vw 4vw 4vw 4vw;
}
.btn:before {
  pointer-events: none;
  box-sizing: border-box;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid #fff;
}
@media (min-width: 750px) {
  .btn {
    padding: 1.81818vw 1.81818vw 1.81818vw 1.81818vw;
    transition: background-color 1s;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .btn {
    padding: 20px 20px 20px 20px;
  }
}
@media (min-width: 750px) {
  .btn:after {
    pointer-events: none;
    box-sizing: border-box;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    z-index: -1;
    background: linear-gradient(15deg, #66b795 0%, #3ab884 50%, #499783 100%);
    opacity: 0;
    transition: opacity 0.5s;
  }
  .btn:hover:after {
    opacity: 1;
  }
}

/*=====================================================*/
/* header */
/*=====================================================*/
#header {
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: flex;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  flex-flow: column;
  flex-wrap: nowrap;
  background: url(../images/header/bg.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  min-height: 193.86667vw;
  max-height: 193.86667vw;
  padding: 9.33333vw 0vw 0vw 0vw;
}
#header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: -1;
  background: url(../images/header/img_leo.png) no-repeat bottom left;
  background-size: 63.73333vw auto;
}
#header::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0vw;
  right: 0vw;
  z-index: -2;
  background: url(../images/header/img_hugo.png) no-repeat bottom right;
  background-size: 60.4vw auto;
}
#header h1 {
  min-height: 0%;
  width: 63.73333vw;
  margin: 0vw auto 4.4vw auto;
}
#header .date {
  min-height: 0%;
  width: 50.4vw;
  margin: 0vw auto 0vw auto;
}
#header .streaming {
  min-height: 0%;
  width: 26.8vw;
  margin: 0vw auto 0vw auto;
}
#header .catch {
  min-height: 0%;
  width: 21.2vw;
  margin: auto auto 2.66667vw auto;
}
#header .scroll {
  position: absolute;
  bottom: 0vw;
  left: 2.66667vw;
  z-index: 0;
  min-height: 0%;
  height: 16vw;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}
#header .scroll:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  display: inline-block;
  background: #454545;
  width: 0.26667vw;
  height: 16vw;
  margin: 0vw 1.33333vw 0vw 0vw;
}
#header .scroll picture {
  display: inline-block;
  width: 2.13333vw;
  vertical-align: top;
}
@media (min-width: 750px) {
  #header {
    display: flex;
    flex: none;
    justify-content: flex-end;
    align-items: center;
    flex-flow: column;
    flex-wrap: nowrap;
    background: url(../images/header/bg_pc.jpg) no-repeat center;
    background-size: cover;
    min-height: 55vw;
    max-height: 70vw;
    padding: 0;
  }
  #header::before {
    background: url(../images/header/img_leo_pc.png) no-repeat top left;
    background-size: 63.65vw auto;
  }
  #header::after {
    background: url(../images/header/img_hugo_pc.png) no-repeat top right;
    background-size: 60.55vw auto;
  }
  #header h1 {
    width: 36.7vw;
    margin-bottom: 2.55vw;
  }
  #header .date {
    width: 24.7vw;
    margin-bottom: 4vw;
  }
  #header .streaming {
    width: 13vw;
    margin-bottom: 4vw;
  }
  #header .catch {
    position: absolute;
    top: 1vw;
    left: 50%;
    width: 50.85vw;
    margin: 0;
    transform: translate(-50%, 0);
  }
  #header .scroll {
    position: absolute;
    bottom: 0;
    left: 1vw;
    height: 6vw;
  }
  #header .scroll:before {
    background: #fff;
    width: 0.1vw;
    height: 6vw;
    margin-right: 0.5vw;
  }
  #header .scroll picture {
    width: 0.8vw;
  }
}

/*- animation -----------------------------*/
#header::before {
  transform: translate(-100%, 0);
}
#header::after {
  transform: translate(100%, 0);
}
#header h1 img {
  opacity: 0;
  transform: translate(0, 20px);
}
#header h1:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: 1;
  background: #fff;
  width: 50%;
}
#header h1:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0vw;
  right: 0vw;
  z-index: 1;
  background: #fff;
  width: 50%;
}
#header .date {
  opacity: 0;
  transform: translate(0, 20px);
}
#header .streaming {
  opacity: 0;
  transform: translate(0, 20px);
}
#header .catch {
  opacity: 0;
  transform: translate(0, -20px);
}
@media (min-width: 750px) {
  #header .catch {
    transform: translate(-50%, -20px);
  }
}
#header .scroll {
  opacity: 0;
  transform: translate(0, -20px);
}
#header.s::before {
  transform: translate(0, 0);
  transition: transform 0.6s 0.3s cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
#header.s::after {
  transform: translate(0, 0);
  transition: transform 0.6s 0.3s cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
#header.s h1 img {
  opacity: 1;
  transform: translate(0, 30px);
  transition: opacity 0.5s 1.1s, transform 0.5s 1.1s;
}
@media (min-width: 750px) {
  #header.s h1 img {
    transform: translate(0, 0);
  }
}
#header.s h1:before {
  height: 0;
  transition: height 0.3s;
}
#header.s h1:after {
  height: 0;
  transition: height 0.3s;
}
#header.s .date {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.5s 1.6s, transform 0.5s 1.6s;
}
#header.s .streaming {
  opacity: 1;
  transform: translate(0, 30px);
  transition: opacity 0.5s 1.6s, transform 0.5s 1.6s;
}
@media (min-width: 750px) {
  #header.s .streaming {
    transform: translate(0, 0);
  }
}
#header.s .catch {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.5s 2.1s, transform 0.5s 2.1s;
}
@media (min-width: 750px) {
  #header.s .catch {
    transform: translate(-50%, 70px);
  }
}
#header.s .scroll {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.5s 2.6s, transform 0.5s 2.6s;
}
#header.s .scroll:before {
  transform: scaleY(1);
  animation: scroll 2s 2.6s infinite linear;
}

@-webkit-keyframes scroll {
  1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  52% {
    transform: scaleY(0);
    transform-origin: top;
  }
  99% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@-moz-keyframes scroll {
  1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  52% {
    transform: scaleY(0);
    transform-origin: top;
  }
  99% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes scroll {
  1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  52% {
    transform: scaleY(0);
    transform-origin: top;
  }
  99% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
/*=====================================================*/
/* h2 */
/*=====================================================*/
/*=====================================================*/
/* bnrCol */
/*=====================================================*/
#bnrCol {
  position: relative;
  z-index: 0;
  background: #000;
  padding: 1.06667vw 0vw 4vw 0vw;
  text-align: center;
}
#bnrCol .slick-slide {
  width: 53.33333vw;
  margin: 0vw 0.53333vw 0vw 0.53333vw;
  pointer-events: none;
  opacity: 0.8;
  transition: all 0.5s;
}
#bnrCol .slick-current {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 750px) {
  #bnrCol {
    padding: 0.54545vw 0vw 1.81818vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #bnrCol {
    padding: 6px 0px 20px 0px;
  }
}
@media (min-width: 750px) {
  #bnrCol .slick-slide {
    width: 30.90909vw;
    max-width: 340px;
    margin: 0vw 0.26667vw 0vw 0.26667vw;
  }
}
#bnrCol .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*- animation -----------------------------*/
#bnrColInner h2 img {
  opacity: 0;
}
#bnrColInner h2:after {
  opacity: 0;
}
#bnrColInner h2.s img {
  opacity: 1;
  transition: opacity 0.5s;
}
#bnrColInner h2.s:after {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
@media (min-width: 750px) {
  #bnrColInner h2 {
    position: relative;
    margin: 0vw auto 10.66667vw auto;
    line-height: 0;
    /*- animation -----------------------------*/
  }
  #bnrColInner h2:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background: url(../images/anime/tit_l_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(-110%, -50%);
  }
  #bnrColInner h2:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/anime/tit_r_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(110%, -50%);
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #bnrColInner h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) and (min-width: 1100px) {
  #bnrColInner h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #bnrColInner h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #bnrColInner h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
@media (min-width: 750px) {
  #bnrColInner h2 img {
    opacity: 0;
  }
  #bnrColInner h2:before {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #bnrColInner h2:after {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #bnrColInner h2.s img {
    opacity: 1;
    transition: opacity 0.5s 0.3s;
  }
  #bnrColInner h2.s:before {
    transform: translate(-110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  #bnrColInner h2.s:after {
    transform: translate(110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
}

/*=====================================================*/
/* streamCol */
/*=====================================================*/
#streamCol {
  padding: 20vw 0vw 20vw 0vw;
}
#streamCol h2 {
  width: 28.26667vw;
  position: relative;
  margin: 0vw auto 10.66667vw auto;
  line-height: 0;
  /*- animation -----------------------------*/
}
#streamCol h2:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../images/anime/tit_l_g.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(-110%, -50%);
}
#streamCol h2:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/anime/tit_r_g.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(110%, -50%);
}
@media (min-width: 750px) {
  #streamCol h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) {
  #streamCol h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #streamCol h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
#streamCol h2 img {
  opacity: 0;
}
#streamCol h2:before {
  transform: translate(0, -50%);
  opacity: 0;
}
#streamCol h2:after {
  transform: translate(0, -50%);
  opacity: 0;
}
#streamCol h2.s img {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
#streamCol h2.s:before {
  transform: translate(-110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#streamCol h2.s:after {
  transform: translate(110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#streamCol h3 {
  margin: 8vw 0vw 2.66667vw 0vw;
  font-size: 4.8vw;
  color: #8dffd1;
  text-align: center;
  letter-spacing: 0.2em;
}
#streamCol p {
  width: 84vw;
  margin: 0vw auto 0vw auto;
  font-size: 3.73333vw;
  text-align: center;
}
#streamCol .btnList {
  width: 84vw;
  margin: 0vw auto 0vw auto;
}
#streamCol .btnList li {
  margin: 0vw 0vw 4vw 0vw;
  line-height: 0;
}
#streamCol .btnList li.gp {
  padding: 1em 0;
  text-align: center !important;
}
#streamCol .btnList li:last-child {
  margin-bottom: 0;
}
#streamCol .notice {
  width: 84vw;
  margin: 8vw auto 0vw auto;
  font-size: 3.2vw;
  text-align: center;
}
@media (min-width: 750px) {
  #streamCol {
    padding: 10.90909vw 0vw 10.90909vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol {
    padding: 120px 0px 120px 0px;
  }
}
@media (min-width: 750px) {
  #streamCol h2 {
    width: 16.27273vw;
    max-width: 179px;
  }
  #streamCol h3 {
    margin: 5.45455vw 0vw 1.81818vw 0vw;
    font-size: 2.18182vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol h3 {
    margin: 60px 0px 20px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol h3 {
    font-size: 24px;
  }
}
@media (min-width: 750px) {
  #streamCol p {
    width: 100%;
    font-size: 1.81818vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol p {
    font-size: 20px;
  }
}
@media (min-width: 750px) {
  #streamCol .btnList {
    display: flex;
    flex: none;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    flex-wrap: wrap;
    width: 100vw;
    max-width: 1100px;
  }
  #streamCol .btnList li {
    width: 28.18182vw;
    max-width: 310px;
    margin: 0vw 1.81818vw 3.63636vw 1.81818vw;
    /*&:nth-last-child(-n + 2) {
      margin-bottom: 0;
    }*/
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol .btnList li {
    margin: 0px 20px 40px 20px;
  }
}
@media (min-width: 750px) {
  #streamCol .btnList li.amazon a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_amazon_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.animetimes a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_animetimes_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.animehodai a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_animehodai_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.d-animestore a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_d-animestore_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.dmm-tv a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_dmm-tv_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.d-tv a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_d-tv_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.b-ch a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_b-ch_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.b-ch2 a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_b-ch_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.hikaritv a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_hikaritv_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.hulu {
    margin-bottom: 0;
  }
  #streamCol .btnList li.hulu a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_hulu_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.unext {
    margin-bottom: 0;
  }
  #streamCol .btnList li.unext a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_unext_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.lemino a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_lemino_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.amazon_pv a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_amazon_pv_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.ktv a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_ktv_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.gyao a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_gyao_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.jcom a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_jcom_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.telasa a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_telasa_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.dmm a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_dmm_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.nicovideo a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_nicovideo_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.happydouga a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_happydouga_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.videomarket a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_videomarket_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.milplus a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_milplus_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.music {
    margin-bottom: 0;
  }
  #streamCol .btnList li.music a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_music_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.mf {
    margin-bottom: 0;
  }
  #streamCol .btnList li.mf a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_mf_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li.rakuten a:before {
    pointer-events: none;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/stream/btn_rakuten_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
  }
  #streamCol .btnList li a {
    position: relative;
    z-index: 0;
    display: block;
  }
  #streamCol .btnList li a:before {
    transition: opacity 0.5s;
  }
  #streamCol .btnList li a:hover:before {
    opacity: 1;
  }
  #streamCol .notice {
    width: 72.72727vw;
    max-width: 800px;
    margin: 5.45455vw auto 0vw auto;
    font-size: 1.27273vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol .notice {
    margin: 60px auto 0px auto;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #streamCol .notice {
    font-size: 14px;
  }
}

/*=====================================================*/
/* introductionCol */
/*=====================================================*/
#introductionCol {
  position: relative;
  z-index: 0;
  background: #000;
  padding: 20vw 0vw 20vw 0vw;
  text-align: center;
}
#introductionColInner {
  background: url(../images/introduction/bg_frame_t.png) no-repeat top, url(../images/introduction/bg_frame_b.png) no-repeat bottom, url(../images/introduction/bg_frame_c.png) repeat-y top;
  background-size: contain;
  padding: 13.33333vw 13.33333vw 13.33333vw 13.33333vw;
}
#introductionColInner h2 {
  width: 59.06667vw;
  margin: 0vw auto 0vw auto;
}
#introductionColInner h2:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/anime/tit_b_g.png) no-repeat;
  background-size: contain;
  width: 21.73333vw;
  height: 4.13333vw;
  margin: 4vw auto 9.33333vw auto;
}
#introductionColInner p {
  letter-spacing: 0.08em;
}
#introductionColInner p:first-of-type {
  margin: 0vw 0vw 5.33333vw 0vw;
  font-size: 4.26667vw;
  letter-spacing: 0;
}
#introductionColInner p:last-of-type {
  margin: 8vw 0vw 0vw 0vw;
  font-size: 3.73333vw;
  line-height: 1.6;
}
#introductionCol #particles-js {
  pointer-events: none;
  position: absolute;
  top: 0vw;
  left: 0vw;
  width: 100%;
  height: 100%;
}
@media (min-width: 750px) {
  #introductionCol {
    padding: 10.90909vw 0vw 10.90909vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #introductionCol {
    padding: 120px 0px 120px 0px;
  }
}
@media (min-width: 750px) {
  #introductionColInner {
    background: url(../images/introduction/bg_frame_t_pc.png) no-repeat top, url(../images/introduction/bg_frame_b_pc.png) no-repeat bottom, url(../images/introduction/bg_frame_c_pc.png) repeat-y top;
    background-size: contain;
    width: 100vw;
    max-width: 1100px;
    margin: 0vw auto 0vw auto;
    padding: 9.09091vw 9.09091vw 9.09091vw 9.09091vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner {
    padding: 100px 100px 100px 100px;
  }
}
@media (min-width: 750px) {
  #introductionColInner h2 {
    position: relative;
    margin: 0vw auto 10.66667vw auto;
    line-height: 0;
    /*- animation -----------------------------*/
    width: 33.72727vw;
    max-width: 371px;
  }
  #introductionColInner h2:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background: url(../images/anime/tit_l_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(-110%, -50%);
  }
  #introductionColInner h2:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/anime/tit_r_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(110%, -50%);
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #introductionColInner h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #introductionColInner h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #introductionColInner h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
@media (min-width: 750px) {
  #introductionColInner h2 img {
    opacity: 0;
  }
  #introductionColInner h2:before {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #introductionColInner h2:after {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #introductionColInner h2.s img {
    opacity: 1;
    transition: opacity 0.5s 0.3s;
  }
  #introductionColInner h2.s:before {
    transform: translate(-110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  #introductionColInner h2.s:after {
    transform: translate(110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  #introductionColInner h2:after {
    margin: 0;
  }
  #introductionColInner p {
    letter-spacing: 0.08em;
  }
  #introductionColInner p:first-of-type {
    margin: 0vw 0vw 3.63636vw 0vw;
    font-size: 2.18182vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner p:first-of-type {
    margin: 0px 0px 40px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner p:first-of-type {
    font-size: 24px;
  }
}
@media (min-width: 750px) {
  #introductionColInner p:last-of-type {
    margin: 5.45455vw 0vw 0vw 0vw;
    font-size: 1.63636vw;
    line-height: 1;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner p:last-of-type {
    margin: 60px 0px 0px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner p:last-of-type {
    font-size: 18px;
  }
}
@media (min-width: 750px) {
  #introductionCol #particles-js {
    pointer-events: none;
    position: absolute;
    top: 0vw;
    left: 0vw;
    width: 100%;
    height: 100%;
  }
}

/*- animation -----------------------------*/
#introductionColInner h2 img {
  opacity: 0;
}
#introductionColInner h2:after {
  opacity: 0;
}
#introductionColInner h2.s img {
  opacity: 1;
  transition: opacity 0.5s;
}
#introductionColInner h2.s:after {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
@media (min-width: 750px) {
  #introductionColInner h2 {
    position: relative;
    margin: 0vw auto 10.66667vw auto;
    line-height: 0;
    /*- animation -----------------------------*/
  }
  #introductionColInner h2:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background: url(../images/anime/tit_l_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(-110%, -50%);
  }
  #introductionColInner h2:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/anime/tit_r_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(110%, -50%);
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #introductionColInner h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) and (min-width: 1100px) {
  #introductionColInner h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #introductionColInner h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #introductionColInner h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
@media (min-width: 750px) {
  #introductionColInner h2 img {
    opacity: 0;
  }
  #introductionColInner h2:before {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #introductionColInner h2:after {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #introductionColInner h2.s img {
    opacity: 1;
    transition: opacity 0.5s 0.3s;
  }
  #introductionColInner h2.s:before {
    transform: translate(-110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  #introductionColInner h2.s:after {
    transform: translate(110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
}

/*=====================================================*/
/* storyCol */
/*=====================================================*/
#storyCol {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: #333;
  padding: 20vw 0vw 20vw 0vw;
  text-align: center;
}
#storyCol:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
}
#storyCol h2 {
  position: relative;
  margin: 0vw auto 10.66667vw auto;
  line-height: 0;
  /*- animation -----------------------------*/
  width: 26.53333vw;
}
#storyCol h2:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../images/anime/tit_l_g.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(-110%, -50%);
}
#storyCol h2:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/anime/tit_r_g.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(110%, -50%);
}
@media (min-width: 750px) {
  #storyCol h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #storyCol h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) {
  #storyCol h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #storyCol h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
#storyCol h2 img {
  opacity: 0;
}
#storyCol h2:before {
  transform: translate(0, -50%);
  opacity: 0;
}
#storyCol h2:after {
  transform: translate(0, -50%);
  opacity: 0;
}
#storyCol h2.s img {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
#storyCol h2.s:before {
  transform: translate(-110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#storyCol h2.s:after {
  transform: translate(110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#storyCol p {
  text-shadow: 0px 0px 15px #000, 0px 0px 10px #000;
  letter-spacing: 0.08em;
  line-height: 2.5;
}
#storyCol p span {
  letter-spacing: -0.1em;
}
#storyCol p:first-of-type {
  margin: 0vw 0vw 10.66667vw 0vw;
  font-size: 4.26667vw;
  line-height: 2;
  color: #8dffd1;
}
#storyCol #bgVideoStory {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
}
#storyCol #bgVideoStory #videoStory {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 708%;
  height: 100%;
}
@media (min-width: 750px) {
  #storyCol {
    padding: 10.90909vw 0vw 10.90909vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #storyCol {
    padding: 120px 0px 120px 0px;
  }
}
@media (min-width: 750px) {
  #storyCol h2 {
    width: 15.18182vw;
    max-width: 167px;
  }
  #storyCol p {
    letter-spacing: 0.08em;
  }
  #storyCol p:first-of-type {
    margin: 0vw 0vw 5.45455vw 0vw;
    font-size: 2.18182vw;
    line-height: 1;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #storyCol p:first-of-type {
    margin: 0px 0px 60px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #storyCol p:first-of-type {
    font-size: 24px;
  }
}

/*=====================================================*/
/* characterCol */
/*=====================================================*/
#characterCol {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: #000;
  padding: 20vw 0vw 20vw 0vw;
}
#characterCol h2 {
  position: relative;
  margin: 0vw auto 10.66667vw auto;
  line-height: 0;
  /*- animation -----------------------------*/
  width: 46.93333vw;
}
#characterCol h2:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../images/anime/tit_l_w.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(-110%, -50%);
}
#characterCol h2:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/anime/tit_r_w.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(110%, -50%);
}
@media (min-width: 750px) {
  #characterCol h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) {
  #characterCol h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #characterCol h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
#characterCol h2 img {
  opacity: 0;
}
#characterCol h2:before {
  transform: translate(0, -50%);
  opacity: 0;
}
#characterCol h2:after {
  transform: translate(0, -50%);
  opacity: 0;
}
#characterCol h2.s img {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
#characterCol h2.s:before {
  transform: translate(-110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#characterCol h2.s:after {
  transform: translate(110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#characterCol .chara {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 0vw 0vw 10.66667vw 0vw;
}
#characterCol .chara picture {
  display: inline-block;
  margin: 0vw 0vw 10.66667vw 0vw;
}
#characterCol .chara .txt {
  margin: 0vw auto 0vw auto;
  padding: 0vw 8vw 0vw 8vw;
  text-shadow: 2px 2px 2px black;
}
#characterCol .chara .txt h3 {
  margin: 0vw 0vw 4vw 0vw;
  font-size: 5.86667vw;
  line-height: 1;
  letter-spacing: -0.2em;
  text-align: left;
}
#characterCol .chara .txt .cv {
  margin: 0vw 0vw 6.66667vw 0vw;
  font-size: 3.73333vw;
  line-height: 1;
}
#characterCol .chara .txt .about {
  letter-spacing: 0.05em;
}
#characterCol .chara.show {
  pointer-events: all;
  position: relative;
  z-index: 0;
  opacity: 1;
}
#characterCol .chara.jerle:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 85.73333vw;
  right: -2.66667vw;
  z-index: -1;
  background: url(../images/character/ico_jerle.png) no-repeat;
  background-size: contain;
  width: 40vw;
  height: 60.4vw;
}
#characterCol .chara.gildllan:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 101.33333vw;
  right: -5.33333vw;
  z-index: -1;
  background: url(../images/character/ico_gildllan.png) no-repeat;
  background-size: contain;
  width: 44.4vw;
  height: 43.73333vw;
}
#characterCol .chara.leo .txt h3 {
  color: #df3d3b;
}
#characterCol .chara.seria .txt h3 {
  color: #474cec;
}
#characterCol .chara.hugo .txt h3 {
  color: #37761d;
}
#characterCol .chara.lisette .txt h3 {
  color: #9665c1;
}
#characterCol .chara.lucien .txt h3 {
  color: #e5e666;
}
#characterCol .chara.august .txt h3 {
  color: #cc0001;
}
#characterCol .chara.bastien .txt h3 {
  color: #6551bb;
}
#characterCol .chara.alexandra .txt h3 {
  color: #3fc4ff;
}
#characterCol .charaNav {
  position: relative;
  z-index: 0;
  display: flex;
  flex: none;
  justify-content: space-between;
  align-items: center;
  flex-flow: row;
  flex-wrap: wrap;
  width: 84vw;
  margin: 0vw auto 0vw auto;
}
#characterCol .charaNav:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  background: url(../images/character/ico_vs.png) no-repeat;
  background-size: contain;
  width: 13.2vw;
  height: 16vw;
  transform: translate(-50%, -50%);
}
#characterCol .charaNav li {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 17.6vw;
  margin: 0vw 0vw 11.33333vw 0vw;
  border-radius: 99px;
}
#characterCol .charaNav li:before {
  pointer-events: none;
  box-sizing: border-box;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) scale(1.3);
  border: solid 3px red;
  border-radius: 99px;
  transition: transform 0.2s;
}
#characterCol .charaNav li:nth-last-child(-n + 4) {
  margin: 0;
}
#characterCol .charaNav li.show:before {
  transform: translate(-50%, -50%) scale(1);
}
#characterCol .charaNav li.leo:before {
  border-color: #df3d3b;
}
#characterCol .charaNav li.seria:before {
  border-color: #474cec;
}
#characterCol .charaNav li.hugo:before {
  border-color: #37761d;
}
#characterCol .charaNav li.lisette:before {
  border-color: #9665c1;
}
#characterCol .charaNav li.lucien:before {
  border-color: #e5e666;
}
#characterCol .charaNav li.august:before {
  border-color: #cc0001;
}
#characterCol .charaNav li.bastien:before {
  border-color: #6551bb;
}
#characterCol .charaNav li.alexandra:before {
  border-color: #3fc4ff;
}
@media (min-width: 750px) {
  #characterCol {
    max-height: 76.36364vw;
    padding: 9.09091vw 0vw 9.09091vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol {
    padding: 100px 0px 100px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol {
    max-height: 840px;
  }
}
@media (min-width: 750px) {
  #characterColInner {
    width: 90.90909vw;
    max-width: 1000px;
    margin: 0vw auto 0vw auto;
  }
  #characterCol h2 {
    width: 27vw;
    max-width: 297px;
    margin: 0vw 0vw 5.45455vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol h2 {
    margin: 0px 0px 60px 0px;
  }
}
@media (min-width: 750px) {
  #characterCol h2:before {
    display: none;
  }
  #characterCol .chara {
    margin: 0vw 0vw 3.63636vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara {
    margin: 0px 0px 40px 0px;
  }
}
@media (min-width: 750px) {
  #characterCol .chara picture {
    position: absolute;
    top: 0;
    right: 50%;
    z-index: -1;
    width: 102.90909vw;
    max-width: 1132px;
    margin: 0vw -92.36364vw 0vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara picture {
    margin: 0px -1016px 0px 0px;
  }
}
@media (min-width: 750px) {
  #characterCol .chara .txt {
    width: 45.45455vw;
    max-width: 500px;
    margin: 0vw 0vw 3.63636vw 0vw;
    padding: 0;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara .txt {
    margin: 0px 0px 40px 0px;
  }
}
@media (min-width: 750px) {
  #characterCol .chara .txt h3 {
    margin: 0vw 0vw 1.36364vw 0vw;
    font-size: 2.90909vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara .txt h3 {
    margin: 0px 0px 15px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara .txt h3 {
    font-size: 32px;
  }
}
@media (min-width: 750px) {
  #characterCol .chara .txt .cv {
    margin: 0vw 0vw 2.72727vw 0vw;
    font-size: 1.45455vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara .txt .cv {
    margin: 0px 0px 30px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara .txt .cv {
    font-size: 16px;
  }
}
@media (min-width: 750px) {
  #characterCol .chara .txt .about {
    min-height: 10em;
  }
  #characterCol .chara.jerle:before {
    right: inherit;
    position: absolute;
    top: -2.72727vw;
    left: 0vw;
    left: 50%;
    width: 27.27273vw;
    max-width: 300px;
    height: 41.18182vw;
    max-height: 453px;
    margin: 0vw 0vw 0vw -57.27273vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara.jerle:before {
    top: -30px;
    left: 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara.jerle:before {
    margin: 0px 0px 0px -630px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara.jerle:before {
    left: 50%;
  }
}
@media (min-width: 750px) {
  #characterCol .chara.gildllan:before {
    right: inherit;
    position: absolute;
    top: 2.72727vw;
    left: 0vw;
    left: 50%;
    width: 30.27273vw;
    max-width: 333px;
    height: 29.81818vw;
    max-height: 328px;
    margin: 0vw 0vw 0vw -57.27273vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara.gildllan:before {
    top: 30px;
    left: 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara.gildllan:before {
    margin: 0px 0px 0px -630px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .chara.gildllan:before {
    left: 50%;
  }
}
@media (min-width: 750px) {
  #characterCol .chara.show {
    position: static;
  }
  #characterCol .charaNav {
    width: 34.54545vw;
    max-width: 380px;
    margin: 0;
  }
  #characterCol .charaNav:before {
    width: 6.09091vw;
    max-width: 67px;
    height: 7.27273vw;
    max-height: 80px;
  }
  #characterCol .charaNav li {
    width: 7.27273vw;
    max-width: 80px;
    margin: 0vw 0vw 5.90909vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #characterCol .charaNav li {
    margin: 0px 0px 65px 0px;
  }
}
@media (min-width: 750px) {
  #characterCol .charaNav li img {
    transition: transform 0.5s;
  }
  #characterCol .charaNav li:hover {
    cursor: pointer;
  }
  #characterCol .charaNav li:hover img {
    transform: scale(1.05);
  }
  #characterCol .charaNav li:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
}

/*- animation -----------------------------*/
#characterCol .chara picture {
  position: relative;
}
#characterCol .chara picture:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0vw;
  left: 0vw;
  background: #000;
}
@media (min-width: 750px) {
  #characterCol .chara picture {
    transform: translate(100px, 0);
    opacity: 0;
  }
  #characterCol .chara picture:before {
    display: none;
  }
}
#characterCol .chara .txt h3 {
  transform: translate(-50px, 0);
  opacity: 0;
}
#characterCol .chara .txt .cv {
  transform: translate(-50px, 0);
  opacity: 0;
}
#characterCol .chara .txt .about {
  transform: translate(-50px, 0);
  opacity: 0;
}
#characterCol .chara:before {
  opacity: 0;
  transform: translate(0, -50px);
}
#characterCol ul {
  opacity: 0;
  transform: translate(-50px, 0);
}
#characterCol.s .chara.show picture:before {
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s 0.5s;
}
@media (min-width: 750px) {
  #characterCol.s .chara.show picture {
    position: absolute;
    transform: translate(0, 0);
    opacity: 1;
    transition: transform 0.3s 0.5s, opacity 0.3s 0.5s;
  }
}
#characterCol.s .chara.show .txt h3 {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 0.3s 0.6s, opacity 0.3s 0.6s;
}
#characterCol.s .chara.show .txt .cv {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 0.3s 0.6s, opacity 0.3s 0.6s;
}
#characterCol.s .chara.show .txt .about {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 0.3s 0.8s, opacity 0.3s 0.8s;
}
#characterCol.s .chara.show:before {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 0.3s 1s, opacity 0.3s 1s;
}
#characterCol.s .chara.hide {
  opacity: 0;
  transition: opacity 0.1s 0.6s;
}
#characterCol.s .chara.hide picture:before {
  transform: scaleX(1);
  transition: transform 0.3s 0s;
}
@media (min-width: 750px) {
  #characterCol.s .chara.hide picture {
    position: absolute;
    transform: translate(100px, 0);
    opacity: 0;
    transition: transform 0.3s 0s, opacity 0.3s 0s;
  }
}
#characterCol.s .chara.hide .txt h3,
#characterCol.s .chara.hide .txt .cv,
#characterCol.s .chara.hide .txt .about {
  transform: translate(-50px, 0);
  opacity: 0;
  transition: transform 0.6s 0s, opacity 0.6s 0s;
}
#characterCol.s .chara.hide:before {
  transform: translate(0, -50px);
  opacity: 0;
  transition: transform 0.6s 0s, opacity 0.6s 0s;
}
#characterCol.s ul {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 0.3s 1.2s, opacity 0.3s 1.2s;
}

/*=====================================================*/
/* movieCol */
/*=====================================================*/
#movieCol {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 20vw 0vw 20vw 0vw;
}
#movieCol h2 {
  position: relative;
  margin: 0vw auto 10.66667vw auto;
  line-height: 0;
  /*- animation -----------------------------*/
  width: 25.6vw;
}
#movieCol h2:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../images/anime/tit_l_g.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(-110%, -50%);
}
#movieCol h2:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/anime/tit_r_g.png) no-repeat;
  background-size: contain;
  width: 14.66667vw;
  height: 4.66667vw;
  transform: translate(110%, -50%);
}
@media (min-width: 750px) {
  #movieCol h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #movieCol h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) {
  #movieCol h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #movieCol h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
#movieCol h2 img {
  opacity: 0;
}
#movieCol h2:before {
  transform: translate(0, -50%);
  opacity: 0;
}
#movieCol h2:after {
  transform: translate(0, -50%);
  opacity: 0;
}
#movieCol h2.s img {
  opacity: 1;
  transition: opacity 0.5s 0.3s;
}
#movieCol h2.s:before {
  transform: translate(-110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#movieCol h2.s:after {
  transform: translate(110%, -50%);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}
#movieCol .movieList {
  width: 84vw;
  margin: 0vw auto 0vw auto;
  font-size: 4.26667vw;
  line-height: 1.5;
  text-align: center;
}
#movieCol .movieList h3 {
  margin: 0vw 0vw 4vw 0vw;
  text-shadow: 0px 0px 15px #000, 0px 0px 10px #000;
}
@media (min-width: 750px) {
  #movieCol {
    padding: 10.90909vw 0vw 10.90909vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #movieCol {
    padding: 120px 0px 120px 0px;
  }
}
@media (min-width: 750px) {
  #movieCol h2 {
    position: relative;
    margin: 0vw auto 10.66667vw auto;
    line-height: 0;
    /*- animation -----------------------------*/
    width: 14.72727vw;
    max-width: 162px;
  }
  #movieCol h2:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background: url(../images/anime/tit_l_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(-110%, -50%);
  }
  #movieCol h2:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/anime/tit_r_g.png) no-repeat;
    background-size: contain;
    width: 14.66667vw;
    height: 4.66667vw;
    transform: translate(110%, -50%);
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #movieCol h2 {
    margin: 0vw auto 5.45455vw auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) and (min-width: 1100px) {
  #movieCol h2 {
    margin: 0px auto 60px auto;
  }
}
@media (min-width: 750px) and (min-width: 750px) {
  #movieCol h2:before {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
  #movieCol h2:after {
    width: 8.54545vw;
    max-width: 94px;
    height: 2.81818vw;
    max-height: 31px;
  }
}
@media (min-width: 750px) {
  #movieCol h2 img {
    opacity: 0;
  }
  #movieCol h2:before {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #movieCol h2:after {
    transform: translate(0, -50%);
    opacity: 0;
  }
  #movieCol h2.s img {
    opacity: 1;
    transition: opacity 0.5s 0.3s;
  }
  #movieCol h2.s:before {
    transform: translate(-110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  #movieCol h2.s:after {
    transform: translate(110%, -50%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
  }
  #movieCol .movieList {
    width: 100%;
    font-size: 2vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #movieCol .movieList {
    font-size: 22px;
  }
}
@media (min-width: 750px) {
  #movieCol .movieList h3 {
    margin: 0vw 0vw 2.72727vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #movieCol .movieList h3 {
    margin: 0px 0px 30px 0px;
  }
}
@media (min-width: 750px) {
  #movieCol .movieList .slick-slide {
    pointer-events: none;
    width: 72.72727vw;
    max-width: 800px;
    transform: scale(0.9);
    opacity: 0.8;
    transition: all 0.5s;
  }
  #movieCol .movieList .slick-center {
    pointer-events: all;
    width: 72.72727vw;
    max-width: 800px;
    transform: scale(1);
    opacity: 1;
  }
}

/*=====================================================*/
/* footer */
/*=====================================================*/
#footer {
  padding: 10.66667vw 8vw 0vw 8vw;
  border-top: 1px solid #65b896;
}
#footer h4 {
  margin: 0vw auto 0vw auto;
  line-height: 0;
}
#footer .copyright {
  padding: 13.33333vw 0vw 13.33333vw 0vw;
}
@media (min-width: 750px) {
  #footer {
    padding: 5.45455vw 0vw 0vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #footer {
    padding: 60px 0px 0px 0px;
  }
}
@media (min-width: 750px) {
  #footer h4 {
    width: 40.90909vw;
    max-width: 450px;
    margin: 0vw auto 0vw auto;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #footer h4 {
    margin: 0px auto 0px auto;
  }
}
@media (min-width: 750px) {
  #footer .copyright {
    padding: 5.45455vw 0vw 5.45455vw 0vw;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  #footer .copyright {
    padding: 60px 0px 60px 0px;
  }
}

/*=====================================================*/
/* bgVideo */
/*=====================================================*/
#bgVideo {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  width: 238vh;
  height: 140vh;
}
#bgVideo video,
#bgVideo iframe {
  position: absolute;
  top: 0vw;
  left: 0vw;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (min-width: 750px) and (orientation: landscape) {
  #bgVideo {
    width: 140vw;
    height: 78.75vw;
  }
}

/*=====================================================*/
/* slick */
/*=====================================================*/
.slide-arrow {
  width: 9.33333vw;
}
.slide-arrow.prev-arrow {
  top: inherit;
  position: absolute;
  bottom: 23.625vw;
  left: 0vw;
  z-index: 1;
  transform: translate(-50%, 50%);
}
.slide-arrow.prev-arrow.sliderListArrow {
  margin: 0vw 0vw 0vw -13.33333vw;
  position: absolute;
  bottom: calc(50% - 2vw);
  left: calc(50% - 26.67vw);
  transform: translate(0, 0);
}
.slide-arrow.next-arrow {
  top: inherit;
  position: absolute;
  bottom: 23.625vw;
  right: 0vw;
  z-index: 1;
  transform: translate(50%, 50%);
}
.slide-arrow.next-arrow.sliderListArrow {
  margin: 0vw -13.33333vw 0vw 0vw;
  position: absolute;
  bottom: calc(50% - 2vw);
  right: calc(50% - 26.67vw);
  transform: translate(0, 0);
}
@media (min-width: 750px) {
  .slide-arrow {
    width: 5.72727vw;
    max-width: 63px;
  }
  .slide-arrow.prev-arrow {
    position: absolute;
    bottom: 20.45455vw;
    left: 0vw;
    left: 50%;
    margin: 0vw 0vw 0vw -43.63636vw;
    transform: translate(0, 50%);
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.prev-arrow {
    bottom: 225px;
    left: 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.prev-arrow {
    margin: 0px 0px 0px -480px;
  }
}
@media (min-width: 750px) {
  .slide-arrow.prev-arrow.sliderListArrow {
    margin: 0vw 0vw 0vw -6.36364vw;
    left: calc(50% - 15vw);
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.prev-arrow.sliderListArrow {
    margin: 0px 0px 0px -70px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.prev-arrow {
    left: 50%;
  }
  .slide-arrow.prev-arrow.sliderListArrow {
    bottom: calc(50% - 20px);
    left: calc(50% - 180px);
  }
}
@media (min-width: 750px) {
  .slide-arrow.prev-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/anime/ico_prev_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .slide-arrow.next-arrow {
    position: absolute;
    bottom: 20.45455vw;
    right: 0vw;
    right: 50%;
    margin: 0vw -43.63636vw 0vw 0vw;
    transform: translate(0, 50%);
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.next-arrow {
    bottom: 225px;
    right: 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.next-arrow {
    margin: 0px -480px 0px 0px;
  }
}
@media (min-width: 750px) {
  .slide-arrow.next-arrow.sliderListArrow {
    margin: 0vw -6.36364vw 0vw 0vw;
    right: calc(50% - 15vw);
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.next-arrow.sliderListArrow {
    margin: 0px -70px 0px 0px;
  }
}
@media (min-width: 750px) and (min-width: 1100px) {
  .slide-arrow.next-arrow {
    right: 50%;
  }
  .slide-arrow.next-arrow.sliderListArrow {
    bottom: calc(50% - 20px);
    right: calc(50% - 180px);
  }
}
@media (min-width: 750px) {
  .slide-arrow.next-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background: url(../images/anime/ico_next_on.png) no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.5s;
  }
}

/*=====================================================*/
/* fancybox */
/*=====================================================*/
.fancybox-is-open .fancybox-bg {
  background: #000;
}

.fancybox-slide--iframe .fancybox-content {
  background: #000;
}

.fancybox-slide--iframe {
  margin: 0 auto;
  position: relative;
  padding: 25vh 2.5%;
  box-sizing: inherit;
}
@media (min-width: 1100px) {
  .fancybox-slide--iframe {
    padding: 100px 30px;
    max-width: 1300px;
  }
}
