html{
  height:100vh; 
}

body { margin: 0; padding:0;font-family: '游ゴシック体',YakuHanJP,'Noto Sans JP', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif; width:100%; height:100vh;background:#000;overflow-x:hidden;}
	

body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background:url(../img/back-dummy-01-min.jpg) center no-repeat;
	background-size: cover;
	background-position: top center;
}


.clearfix{
  zoom:1;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}

br.clear {
	clear:both;
}

br.sponly {display:none;}

.spheader {display:none;}
.pcheader {display:block;}

h2.h2header {
	width:100%;
	height:auto;
	text-align:center;
	padding:0;
	margin:0;
	font-family: 'Allura', cursive;
	color:#fff;
	font-size:5vw;
}


@media (max-width: 800px) {
br.sponly {display:inline;}

.pcheader {display:none !important;}
.spheader {display:block !important;}


h2.h2header {
	font-size:3em;
}

}

/* ========================================
ローディング
========================================== */

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 1.2s;
    transition-duration: 3.5s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #00213D;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:500px;
	height:200px;
	margin:0;
	padding:0;
	position:relative;
	animation-name: anime2;
	animation-duration: 8s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
}

#loader #load1 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	animation-name: blink;
	animation-duration: 2.5s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
	opacity:0;
}


#loader #load1 img {
	width:100%;
	height:auto;
}


@keyframes anime1 {
	0% {	opacity:1;	}
	100% {	opacity:1;	}
}

@keyframes anime2 {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }
}

/* 以下スマホ */
@media (max-width: 600px) {

#loader {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	text-align:center;
}

#loader #load1 img {
	width:90%;
	height:auto;
}


}





/* ========================================
POPUP
========================================== */


.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 300000000;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
	max-width:1000px;
  padding: 10px;
  z-index: 2;
}
.popup-inner img {
  width: 100%;
}

.op-movie {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.op-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:2;
}

.close-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  padding:5px;
    z-index:3;
}
.close-btn i {
  font-size: 40px;
  color: #fff;
}
.black-background-pop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 1;
  cursor: pointer;
}





/* ========================================
ヘッダー
========================================== */


.navigation {
  position: absolute;
  left: 5px;
  top: 5px ;
  width: 100%;
  height: 60px;
  display:none;
}

.global-nav {
  position: fixed;
  right: -420px; /* これで隠れる */
  top: 0;
  width: 400px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 70px;
  background-color:rgba(255,255,255,1);
  color:#fff;
  transition: all .6s;
  z-index: 200000;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
  position: fixed;
  right: 15px;
  top: 5px;
  width: 100px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 100px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300000;
  /* background-color:rgba(255,255,255,0.5);
  border-radius:50%; */

}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
}
.global-nav__item a {
  display: block;
  padding: 3px 0;
  text-decoration: none;
  color: #2371B1;
  font-size:2.2vw;
}
.global-nav__item a:hover {
  color:#f084ec;
}



.global-nav ul#sns-link-btn {
	width:100%;
	height:auto;
	list-style-type: none;
	padding:10px 0;
	margin:0;
	display: flex;
	justify-content: center;
}

.global-nav ul#sns-link-btn li {
	width: 18%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}

.global-nav ul#sns-link-btn li img {
	width:70%;
}

.global-nav #menu-logo {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	text-align:center;
}

.global-nav #menu-logo img {
	width:30%;
	height:auto;
}

.hamburger__line {
  position: absolute;
  left: 25px;
  width: 50px;
  height: 4px;
  background-color: #fff !important;
  transition: all .6s;
}

.hamburger #menu {
  position: absolute;
  top: 61px;
  left: 23px;
  font-weight:bold;
  color:#fff;
  font-size:1.1em;
}


.hamburger__line--1 {
  top: 17px;
}
.hamburger__line--2 {
  top: 37px;
}
.hamburger__line--3 {
  top: 57px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 23px;

}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;

}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 23px;

}








header {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
}






/* ========================================
トップメイン画像まわり
========================================== */
header#pcheader {
	width:100%;
	height:auto;
	padding:10px 0;
	position:fixed;
	top:0;
	background:rgba( 255,255,255 , 0.05 );
	z-index:10;
	opacity:0;
	transition-duration: 0.6s;
}

header#pcheader:hover {
	background:rgba( 255,255,255 , 0.2 );
	transition-duration: 0.6s;
}

header ul#pcmenu {
	width:100%;
	height:auto;
	padding:10px 0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}

header ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1.5%;
	padding:0;
	text-align:center;
	font-family: 'Allura', cursive;
}

header ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	font-family: 'Allura', cursive;
	display:flex;
	justify-content: center;
	align-items: center;
}


header ul#pcmenu li a {
	color:#fff;
	transition-duration: 0.4s;
	text-decoration:none !important;
}

header ul#pcmenu li a:hover {
	color:#B631B1;
}

header ul#pcmenu li a span.eng {
	font-size:2.4vw;
	line-height:2.4vw;
}

header ul#pcmenu li a span.jpn {
	font-size:0.6vw;
	line-height:0.6vw;
}




#topmain-sp {
	display:none !important;
}

#topmain-pc {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align:center;
	position:relative;
	overflow:hidden;
	background:#000024;
}


#topmain-pc h1#up1 {
	width:100%;
	height:auto;
	text-align:center;
	padding:0;
	margin:0;
	opacity:0;
}

#topmain-pc h1#up1 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#topmain-pc #up2 ,
#topmain-pc #up3 ,
#topmain-pc #up4 
{
	width:100%;
	height:auto;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}



#topmain-pc #up2 img , #topmain-pc #up3 img , #topmain-pc #up4 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

.blink {
  -webkit-animation: blink 3s infinite alternate;
  animation: blink 3s infinite alternate;
}
@-webkit-keyframes blink {
  40% {
    opacity: .85;
  }
  42% {
    opacity: .4;
  }
  43% {
    opacity: .85;
  }
  45% {
    opacity: .4;
  }
  46% {
    opacity: .85;
  }
}
@keyframes blink {
  40% {
    opacity: .85;
  }
  42% {
    opacity: .4;
  }
  43% {
    opacity: .85;
  }
  45% {
    opacity: .4;
  }
  46% {
    opacity: .85;
  }
}


.blink2 {
  -webkit-animation: blink2 3s infinite alternate;
  animation: blink2 3s infinite alternate;
}
@-webkit-keyframes blink2 {
  50% {
    opacity: .85;
  }
  52% {
    opacity: .4;
  }
  53% {
    opacity: .85;
  }
  55% {
    opacity: .4;
  }
  56% {
    opacity: .85;
  }
}
@keyframes blink2 {
  50% {
    opacity: .85;
  }
  52% {
    opacity: .4;
  }
  53% {
    opacity: .85;
  }
  55% {
    opacity: .4;
  }
  56% {
    opacity: .85;
  }
}



/* 以下タブレット・スマホ */
@media (max-width: 800px) {
#topmain-pc {
	display:none !important;
}
header#pcheader {
	display:none !important;
}

#topmain-sp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
}


#topmain-sp h1 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#topmain-sp h1 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#topmain-sp #up2sp ,
#topmain-sp #up3sp ,
#topmain-sp #up4sp ,
#topmain-sp #up5sp ,
#topmain-sp #up6sp 
 {
	width:100%;
	height:auto;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}

#topmain-sp #up2sp img , #topmain-sp #up3sp img , #topmain-sp #up4sp img , #topmain-sp #up5sp img , #topmain-sp #up6sp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#topmain-sp #sp-logo-area {
	width:100%;
	height:auto;
	margin:0;
	paddin:0;
  background:#000024;
}

#topmain-sp #sp-logo-area #billing-sp {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	text-align:center;
}

#topmain-sp #sp-logo-area #billing-sp img {
	width:80%;
	height:auto;
}


#topmain-sp #sp-logo-area #date-sp {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	text-align:center;
}

#topmain-sp #sp-logo-area #date-sp img {
	width:80%;
	height:auto;
}


.hamburger {
	display:block !important;
}

ul#nav-button {
	display:none !important;
}

#topmain-pc {
	display:none !important;
}


.navigation {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background:none;
    display:block !important;
}

.global-nav {
  position: fixed;
  right: -100%; /* これで隠れる */
  top: 0;
  width: 100%; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 10px;
  background-color:rgba( 0,33,61 , 0.6 );
  color:#fff;
  transition: all .6s;
  z-index: 200000;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.global-nav #menu-logo img {
	width:35%;
	height:auto;
}

.global-nav__item a {
  display: block;
  padding: 3px 0;
  text-decoration: none;
  color: #fff;
  font-size:1.2em;
}

.global-nav__item a .eng {
	font-family: 'Allura', cursive;
	font-size:1.7em;
}
.global-nav__item a .jpn {
	font-family: 'Allura', cursive;
	font-size:0.6em;
}



.hamburger {
  position: fixed;
  right: 5px;
  top: 5px;
  width: 60px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 60px; /* クリックしやすいようにちゃんと高さを指定する */
	display:block !important;
}

.hamburger__line {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 12px;
}
.hamburger__line--2 {
  top: 22px;
}
.hamburger__line--3 {
  top: 32px;
}

.hamburger #menu {
  position: absolute;
  top: 37px;
  left: 12px;
  font-weight:bold;
  color:#fff;
  font-size:0.8em;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.global-nav ul#sns-link-btn li {
	width: 20%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}

.global-nav ul#sns-link-btn li img {
	width:82%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}


}

/* ========================================
グラデ背景エリア
========================================== */

#grade-bg {
  background: linear-gradient(90deg, #0095B0, #6253B2, #B631B1, #00213D);
  background-size: 600% 600%;
  animation: bggrade 12s ease infinite;
}


@keyframes bggrade { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}




/* ========================================
SNSボタンアリア
========================================== */

#button-area {
	width:100%;
	height:auto;
	padding:0 0 70px;
  background: -moz-linear-gradient(top, rgba( 0,0,36 , 1 ), rgba( 0,0,36 , 0 ) );
  background: -webkit-linear-gradient(top, rgba( 0,0,36 , 1 ), rgba( 0,0,36 , 0 ) );
  background: linear-gradient(to bottom, rgba( 0,0,36 , 1 ), rgba( 0,0,36 , 0 ) );

}



#button-area #billing-area {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 30px;
  background: -moz-linear-gradient(top, rgba( 0,0,36 , 1 ), rgba( 0,0,36 , 0 ));
  background: -webkit-linear-gradient(top, rgba( 0,0,36 , 1 ), rgba( 0,0,36 , 0 ));
  background: linear-gradient(to bottom, rgba( 0,0,36 , 1 ), rgba( 0,0,36 , 0 ));
}

#button-area #billing-area #billing {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#button-area #billing-area #billing img {
	width:70%;
	height:auto;
}

#button-area #billing-area #catch-pc {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0;
	text-align:center;
}

#button-area #catch-sp {
	display:none;
}

#button-area #billing-area #catch-pc img {
	width:70%;
	height:auto;
}

#button-area #billing-area #date-pc {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 0;
	text-align:center;
}

#button-area #billing-area #date-pc img {
	width:50%;
	height:auto;
}
ul.bigbanners {
	margin:0;
	padding:0;
	width:100%;
	height:auto;
	list-style-type: none;
	text-align:center;
}

ul.bigbanners li {
	display: inline-block;
	margin:5px 10px;
	width:200px;
}

ul.bigbanners li img {
	width:100%;
}
#button-area #todvd-sp {
	display: none;
}
#button-area #todvd-pc {
	display: block;
	width: 100%;
	height: auto;
	margin:0;
	padding: 30px 0;
	text-align: center;
}
#button-area #todvd-pc img {
	width: 40%;
	height: auto;
}


#button-area ul#sns-link-btn {
	width:100%;
	height:auto;
	list-style-type: none;
	padding:30px 0 10px;
	margin:0;
	display: flex;
	justify-content: center;
}

#button-area ul#sns-link-btn li {
	width: 4%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}

#button-area ul#sns-link-btn li img {
	width:100%;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#button-area ul#sns-link-btn li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

@-webkit-keyframes flash {
  0% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}



ul.social_buttons {
	list-style-type: none;
	padding:20px 0 0;
	margin:0;
	text-align: center;
	width:100%;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;

}
ul.social_buttons li {
	height: auto;
	width:110px;
	margin:0 3px 0 3px;
	display: inline-block;
}

ul.social_buttons li.checkin {
	width:110px;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}




/* 以下タブレット・スマホ */
@media (max-width: 800px) {
#button-area {
	width:100%;
	height:auto;
	padding-bottom:30px;
}

#button-area #billing-area #billing {
	display:none !important;
}



#button-area #catch-sp {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#button-area #catch-sp img {
	width:80%;
	height:auto;
}

#button-area #catch-pc , #button-area #date-pc {
	display:none !important;
}

ul.bigbanners {
	margin:0;
	padding:0;
	width:100%;
	height:auto;
	list-style-type: none;
	text-align:center;

}

ul.bigbanners li {
	display: inline-block;
	margin:5px 0;
	width:100%;
}

ul.bigbanners li img {
	width:30%;
}

#button-area #todvd-pc {
	display: none;
}
#button-area #todvd-sp {
	display: block;
	width: 100%;
	height: auto;
	margin:0;
	padding: 0;
	text-align: center;
}
#button-area #todvd-sp img {
	width: 80%;
	height: auto;
}


#button-area ul#sns-link-btn {
	width:100%;
	height:auto;
	list-style-type: none;
	padding:30px 0 10px;
	margin:0;
	display: flex;
	justify-content: center;
}

#button-area ul#sns-link-btn li {
	width: 15%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}

#button-area ul#sns-link-btn li img {
	width:100%;
}

#button-area ul.social_buttons {
	list-style-type: none;
	padding:0;
	margin:0;
	text-align: center;
	width:100%;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
ul.social_buttons li {
	height: auto;
	width:110px;
	margin:0 2px 0 2px;
	display: inline-block;
}

ul.social_buttons li.checkin {
	width:120px;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}



}


/* ========================================
トレーラー
========================================== */


.trailer {
	width:90%;
	height:auto;
	margin-top:-1px;
	padding:100px 5% 120px;
}





.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 10px;
  display:block;
}
 
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-sp {
  display:none !important;
}



/* 以下スマホ */
@media (max-width: 800px) {


.trailer {
	padding:70px 5% 30px;
}


.trailer h2 img {
	width:40%;
}
}

@media (max-width: 525px) {

.video {

}
.trailer {
	width:95%;
	height:auto;
	margin-top:-1px;
	padding:20px 2.5% 70px;
}



}

/* ========================================
イントロダクション
========================================== */

#introduction {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0;
}

#introduction #intro-top-sp {
	display:none;
}


#introduction #intro-top {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}


#introduction #intro-top img {
	width:100%;
	height:auto;
}



#introduction #intro-txt {
	width:80%;
	height:auto;
	margin:0;
	padding:50px 10%;
}

#introduction #intro-txt h4 {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0 20px;
	color:#E7397F;
	font-size:2.2vw;
	text-align:center;
}

#introduction #intro-txt p {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	color:#fff;
	font-size:1.2vw;
}



/* 以下スマホ */
@media (max-width: 800px) {

#introduction #intro-top {
	display:none !important;
}

#introduction #intro-top-sp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#introduction #intro-top-sp img {
	width:100%;
	height:auto;
}



#introduction #intro-txt {
	width:80%;
	height:auto;
	margin:0;
	padding:20px 10% 50px;
}

#introduction #intro-txt h4 {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0 20px;
	color:#E7397F;
	font-size:1.4em;
}

#introduction #intro-txt p {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	color:#fff;
	font-size:1em;
}


}





/* 以下スマホ */
@media (max-width: 515px) {


#introduction #intro-top-sp #introbg-tab {
	display:none !important;
}

#introduction #intro-top-sp #introbg-sp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#introduction #intro-top-sp #introbg-sp img {
	width:100%;
	height:auto;
}

}

/* ========================================
ストーリー
========================================== */

#story {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	overflow-x:hidden;
}

#story #story-txt-area {
	width:45%;
	height:auto;
	margin:0;
	padding:0;
	position:absolute;
	top:7%;
	left:5%;
}

#story #story-txt-area #story-txt {
	width:100%;
	height:auto;
	margin:30px 0 0;
	padding:0;
	text-align:left;
	color:#fff;
	font-size:1.2vw;
}

#story #backfade-sp {
	display:none;
}

#story #backfade {
	display:block;
	width:90%;
	height:600px;
	margin:0;
	padding-left:10%;
	position:relative;
	
}

#story #backfade img {
	width:auto;
	height:100%;
	position:absolute;
	top:0;
	right:0;
}



/* 以下スマホ */
@media (max-width: 800px) {

#story #backfade {
	display:none;
}

#story #backfade-sp {
	display:block;
	width:100%;
	height:380px;
	margin:0;
	padding:0;
	position:relative;
	
}

#story #backfade-sp img {
	width:100%;
	height:auto;
	position:absolute;
	top:0;
	left:0;
}

#story #story-txt-area {
	width:100%;
	height:auto;
	margin:0;
	padding-bottom:30px;
	position:relative;
	left:0;
	z-index:5;
}

#story #story-txt-area #story-txt {
	width:90%;
	height:auto;
	margin:0;
	padding:20px 5%;
	text-align:center;
	color:#fff;
	font-size:1em;
	text-align:left;
}




}

/* ========================================
スライダー
========================================== */

/* スライダー  */
.slider-area {
	width:100%;
	height:auto;
	padding:0;
	margin: 0 ;
	display:block;
	overflow:hidden;
	position:relative;
}

.slider-area .multiple-slider {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0;
	text-align:center;
	position:absolute;
	top:50px;
	
}

.slider-area .rev-slider {
	width:100%;
	height:auto;
	margin:80px 0;
	padding:0;
	text-align:center;
}

.multiple-slider .slide-img {
	width:30%;
	height:auto;
	margin:0;
	padding:0;
}

.rev-slider .slide-img {
	width:30%;
	height:auto;
	margin:0;
	padding:0;

}


.multiple-slider .slide-img img {
	width:100%;
	margin:0;
	padding:0;
}

.rev-slider .slide-img img {
	width:100%;
	margin:0;
	padding:0;
}





/* 以下タブレット・スマホ */
@media (max-width: 800px) {

.slider-area {
	width:100%;
	height:450px;
	padding:0;
	margin: 0 ;
	display:block;
	overflow:hidden;
	position:relative;
}

.slider-area .multiple-slider {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
	position:static;
}

.slider-area .rev-slider {
	width:100%;
	height:auto;
	margin: 0;
	padding:20px 0;
	text-align:center;
	position:absolute;
	top:30%;
}

.rev-slider .slide-img {
	width:100%;
	height:auto;
	margin:0;
	padding:0;

}
.rev-slider .slide-img img {
	width:100%;
	margin:0;
	padding:0;
}


}

/* ========================================
キャスト
========================================== */

#cast {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#cast .staffbox {
	width:80%;
	height:auto;
	margin:0;
	padding:50px 10%;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
}

#cast .staffbox .staffphoto {
	width:50%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#cast .staffbox .staffphoto img {
	width:80%;
	height:auto;
}

#cast .staffbox .txtbox {
	width:50%;
	height:auto;
	margin:0;
	padding:0;
}

#cast .staffbox h3.h3sp {
	display:none;
}
#cast .staffbox h3.h3pc {
	display:block;
}



#cast .staffbox .txtbox h3 {
	width:84%;
	height:auto;
	margin:0;
	padding:0 8% 20px;
	color:#FCFF00;
}

#cast .staffbox .txtbox h3 span.enname {
	font-family: 'Allura', cursive;
	font-size:3vw;
}
#cast .staffbox .txtbox h3 span.jpname {
	font-size:1.2vw;
}



#cast .staffbox .txtbox .txt {
	width:80%;
	height:auto;
	margin:0;
	padding:0 10%;
	text-align:left;
	color:#fff;
	font-size:1.15vw;
}

#cast .staffbox .cast-txt {
	width:90%;
	height:auto;
	margin:0;
	padding:20px 5%;
	text-align:left;
	color:#fff;
	font-size:1.15vw;


}





/* 以下スマホ */
@media (max-width: 800px) {


#cast {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0 20px;
}

#cast .staffbox h3.h3sp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
		color:#FCFF00;
}

#cast .staffbox h3.h3sp span.enname {
	font-family: 'Allura', cursive;
	font-size:2em;
}
#cast .staffbox h3.h3sp span.jpname {
	font-size:0.8em;
}




#cast .staffbox h3.h3pc {
	display:none !important;
}

#cast .staffbox {
	width:90%;
	height:auto;
	margin:0;
	padding:50px 5%;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
}

#cast .staffbox .staffphoto {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#cast .staffbox .staffphoto img {
	width:90%;
	height:auto;
}


#cast .staffbox .txtbox {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#cast .staffbox .txtbox .txt {
	width:90%;
	height:auto;
	padding:0 5%;
	text-align:left;
	color:#fff;
	font-size:0.9em;
}

#cast .staffbox .cast-txt {
	font-size:0.9em;
}





}

/* ========================================
スタッフ
========================================== */

#staff {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0;
}

#staff .staff-unit {
	width:80%;
	height:auto;
	margin:0;
	padding:30px 10% 50px;
	color:#fff;
}

#staff .staff-unit h3 {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	font-size:1.8vw;
	text-align:center;
}

#staff .staff-unit p {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	font-size:1.3vw;
}




/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#staff .staff-unit h3 {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	font-size:1.2em;
	text-align:center;
}

#staff .staff-unit p {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	font-size:0.95em;
}

}



/* ========================================
フッター
========================================== */

footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
  background: -moz-linear-gradient(top, rgba( 0,33,61 , 0 ), rgba( 0,33,61 , 1 ) 60%);
  background: -webkit-linear-gradient(top, rgba( 0,33,61 , 0 ), rgba( 0,33,61 , 1 ) 60%);
  background: linear-gradient(to bottom, rgba( 0,33,61 , 0 ), rgba( 0,33,61 , 1 ) 60%);
	position:relative;
}

footer #spfooter {
	display:none;
}

footer #foot1 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	opacity:0;
}

footer #foot2 ,
footer #foot3
{
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}

footer #foot1 img ,
footer #foot2 img ,
footer #foot3 img 
{
	width:100%;
	height:auto;
}

footer #jpbilling-sp {
	display:none;
}

footer #jpbilling {
	display:block;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
}

footer #jpbilling img {
	width:75%;
	height:auto;

}


footer ul#sns-link-btn {
	width:100%;
	height:auto;
	list-style-type: none;
	padding:30px 0 10px;
	margin:0;
	display: flex;
	justify-content: center;
	position:absolute;
	bottom:10%;
	
}

footer ul#sns-link-btn li {
	width: 4%;
	height: auto;
	padding: 0;
	margin: 0 1%;
}

footer ul#sns-link-btn li img {
	width:100%;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

footer ul#sns-link-btn li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}



@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}



footer .copyright {
	width:100%;
	height:auto;
	padding:5px 0 5px;
	color:#fff;
	text-align:center;
	font-size:1.1vw;
	background:#00213D;
}





@media (max-width: 800px) {

footer {
	width:100%;
	height:auto;
	padding:0;
	text-align:center;
	margin:0;
}

footer #jpbilling-sp {
	display:block !important;
	width:100%;
	height:auto;
	padding:0;
	margin:20px 0;
	text-align:center;
}

footer #jpbilling-sp img {
	width:90%;
	height:auto;

}



footer #foot1 ,
footer #foot2 ,
footer #foot3 
{
	display:none !important;
}

footer #spfooter {
	display:block !important;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
}


footer #spfooter #foot1sp {
	display:block !important;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	opacity:0;
}

footer #spfooter #foot2sp ,
footer #spfooter #foot3sp
{
	display:block !important;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}

footer #spfooter #foot1sp img ,
footer #spfooter #foot2sp img ,
footer #spfooter #foot3sp img 
{
	width:100%;
	height:auto;
	vertical-align:bottom;
}

footer #jpbilling {
	display:none !important;
}



footer ul#sns-link-btn {
	bottom:2%;
	
}

footer ul#sns-link-btn li {
	width: 12%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}





footer .copyright {
	width:100%;
	height:auto;
	padding:5px 0 5px;
	color:#fff;
	text-align:center;
	font-size:0.7em;
}

}


/* ========================================
DVDページ一番上
========================================== */

#dvdbody header#pcheader {
	opacity:1;
}


#dvd-head {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
	background:#010122;
	position:relative;
}

#dvd-head h1.sph1 {
	display:none;
}

#dvd-head h1.pch1 {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding-bottom:100px;
	text-align:center;
}

#dvd-head h1.pch1 img {
	width:80%;
	height:auto;
}




@media (max-width: 600px) {

#dvd-head h1.pch1 {
	display:none;
}

#dvd-head h1.sph1 {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding-bottom:10px;
	text-align:center;
}

#dvd-head h1.sph1 img {
	width:100%;
	height:auto;
}




}




/* ========================================
デジタル配信
========================================== */

#digital-area {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0 70px;
	background:#010122;
}

#digital-area h2.sph2 {
	display:none;
}

#digital-area h2.pch2 {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 10px;
	text-align:center;
}

#digital-area h2.pch2 img {
	width:45%;
	height:auto;
}

#digital-area h2#later {
	margin-top:50px !important;
}

#digital-area .site-list {
	width:90%;
	height:auto;
	margin:0 5%;
	padding:0;
	position:relative;
}



#digital-area .site-list ul {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	list-style-type:none;
	display:flex;
    justify-content: center;
    flex-wrap:wrap;
}

#digital-area .site-list ul li {
	width:20%;
	height:auto;
	margin:20px 2%;
}

#digital-area .site-list ul li img {
	width:100%;
	height:auto;
}


#digital-area #caution {
	width:90%;
	height:auto;
	margin:0 5%;
	padding:0;
	text-align:center;
	font-size:1.3vw;
	color:#fff;
}

@media (max-width: 800px) {

#digital-area .site-list .listbg {

	display:none !important;
}

#digital-area .site-list ul {
	background:#010122;
	position:static;
	margin:20px 0;
}

#digital-area .site-list ul li {
	width:30%;
	height:auto;
	margin:20px 1%;
}

#digital-area #caution {
	font-size:1.6vw;
	color:#fff;
}

}


@media (max-width: 600px) {
#digital-area h2.pch2 {
	display:none !important;
}

#digital-area h2.sph2 {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 10px;
	text-align:center;
}

#digital-area h2.sph2 img {
	width:80%;
	height:auto;
}

#digital-area .site-list {
	width:100%;
	height:auto;
	margin:0 0%;
	padding:0;
	position:relative;
}

#digital-area .site-list ul li {
	width:45%;
	height:auto;
	margin:20px 2%;
}

#digital-area #caution {
	font-size:0.85em;
}

}




/* ========================================
DVD
========================================== */

body#dvdbody {
	background-image:none !important;
}

body#dvdbody:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-9;
  width:100%;
  height:100vh;
  background:url(../img/dvd_fixed_bg_rev.jpg) center no-repeat !important;
	background-size: cover;
	background-position: center center;
}

#dvd-area {
	width:100%;
	height:auto;
	margin:0;
	padding:50px 0 100px;
	background-image:none !important;
}

#dvd-area h2.sph2 {
	display:none;
}

#dvd-area h2.pch2 {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:50px 0 30px;
	text-align:center;
}

#dvd-area h2.pch2 img {
	width:50%;
	height:auto;
}

#dvd-area .blueback {
	width:60%;
	height:auto;
	margin:20px 15% 60px;
	padding:20px 5% 40px;
	background:rgba(0,0,0,0.8);
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

#dvd-area .blueback h3 {
	width:100%;
	height:auto;
	padding:10px 0 20px;
	text-align:center;
	color:#fff;
	font-size:2.2vw;
}

#dvd-area .blueback #package {
	width:40%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#dvd-area .blueback #package img {
	width:90%;
	height:auto;
}

#dvd-area .blueback #dvdtxt {
	width:50%;
	height:auto;
	margin:0 0 0 5%;
	padding:0;
	color:#fff;
	font-size:1.3vw;
}

#dvd-area .blueback #dvdtxt ul.speclist {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	list-style-type:none;
}

#dvd-area .blueback #dvdtxt ul.speclist li {
	width:100%;
	height:auto;
	margin:10px 0;
	padding:0;
	display:flex;
	justify-content: center;
}

#dvd-area .blueback #dvdtxt ul.speclist li .spec_titile {
	display:inline-block;
	width:20%;
	height:auto;
}

#dvd-area .blueback #dvdtxt ul.speclist li .spac_value {
	display:inline-block;
	width:80%;
	height:auto;
}






#dvd-area .blueback ul#shoplist {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	list-style-type:none;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}

#dvd-area .blueback ul#shoplist li {
	width:28%;
	height:auto;
	margin:20px 2%;
	padding:0;
}

#dvd-area .blueback ul#shoplist li img {
	width:100%;
	height:auto;
}

#dvd-area .bb2 {
	margin-bottom:10px !important;

}

#dvd-area .dvd-caution {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 30px;
	color:#fff;
	text-align:center;
	font-size:1.3vw;
}



@media (max-width: 600px) {
body#dvdbody:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-9;
  width:100%;
  height:100vh;
  background:url(../img/dvd_fixed_bg_sp_rev.jpg) center no-repeat !important;
	background-size: cover;
	background-position: bottom center;
  min-width: 100%;
  min-height: 100%;
}

#dvd-area h2.pch2 {
	display:none !important;
}

#dvd-area h2.sph2 {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:50px 0 30px;
	text-align:center;
}

#dvd-area h2.sph2 img {
	width:90%;
	height:auto;
}

#dvd-area .blueback {
	width:80%;
	height:auto;
	margin:20px 5% 60px;
	padding:20px 5% 40px;
	background:rgba(0,0,0,0.8);
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

#dvd-area .blueback h3 {
	width:100%;
	height:auto;
	padding:10px 0 20px;
	text-align:center;
	color:#fff;
	font-size:1.2em;
}


#dvd-area .blueback #package {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#dvd-area .blueback #package img {
	width:70%;
	height:auto;
}

#dvd-area .blueback #dvdtxt {
	width:90%;
	height:auto;
	margin:0;
	padding:0 5%;
	color:#fff;
	font-size:0.9em;
}

#dvd-area .buy {
	width:90%;
	height:auto;
	margin:20px 5% 60px;
	padding:20px 0 40px;

}

#dvd-area .blueback ul#shoplist li {
	width:45%;
	height:auto;
	margin:20px 2%;
	padding:0;
}

#dvd-area .dvd-caution {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 20px;
	color:#fff;
	text-align:center;
	font-size:0.85em;
}



}

