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;;overflow-x:hidden;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background:url(../img/story_bg_pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
img {
    image-rendering: -webkit-optimize-contrast;
}
.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;
}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
br.sponly {display:none;}
br.pconly {display:inline;}
.pcimg {display: inline;}
.spimg {display: none;}

@-webkit-keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop-slide-rev {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}
@keyframes loop-slide-down {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInSlow {
	animation-name:fadeIn;
	animation-duration:1.6s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}


@keyframes fadeInUp {
	from {
	opacity: 0;
	transform: translateY(70px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeInUp2 {
	from {
	opacity: 0;
	transform: translateY(100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
@keyframes blurIn {
	from {
	opacity: 0;
	filter: blur(8px);
	transform: scale(3);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes blurIn2 {
	from {
	opacity: 0;
	filter: blur(8px);
	}
	to {
	opacity: 1;
	filter: blur(0);
	}
}

@keyframes zoomIn {
	from {
	transform: scale(0);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}



@media (max-width: 1024px) {
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(../img/story_bg_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}
	br.sponly {display:inline;}
}

@media (max-width: 610px) {
	br.pconly {display:none;}
}

/* ========================================
ローディング
========================================== */

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1s;
    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: #54bebb;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:30%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
    display: grid;
    place-items: center;
	animation-name: anime1;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
}
#loader #load1 img {
	width:100%;
	height:auto;
}
@keyframes anime1 {
	0% {	opacity:0;	}
	15% {	opacity:1;	}
	85% {	opacity:1;	}
	100% {	opacity:0;	}
}


/* 以下スマホ */
@media (max-width: 600px) {

#loader {
	width:50%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	text-align:center;
}

#loader #load1 img {
	width:100%;
	height:auto;
}


}



/* ========================================
ヘッダー
========================================== */

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, rgba(0 , 0 , 0 , 0.7), transparent);
	background: -webkit-linear-gradient(top, rgba(0 , 0 , 0 , 0.7), transparent);
	background: linear-gradient(to bottom, rgba(0 , 0 , 0 , 0.7), transparent);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1%;
	padding:0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.2vw;
	line-height:1.2vw;
	text-align: center;
	color: #fff;
	font-family: 'Merriweather', serif;
	letter-spacing: 1px;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	color: #fff;
}

#pcheader ul#pcmenu li a:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
.navigation {
	display: none;
	position: absolute;
	left: 5px;
	top: 5px ;
	width: 100%;
	height: 60px;
}  
  .global-nav {
	position: fixed;
	right: 0; /* これで隠れる */
	top: -2000px;
	width: 100%; /* スマホに収まるくらい */
	height: 100vh;
	min-height: 100%;
	padding-top: 10px;
	background-color: #54bebb;
	transition: all .6s;
	z-index: 200000;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 65px; /* クリックしやすいようにちゃんと高さを指定する */
	cursor: pointer;
	z-index: 300000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:70%;
	height:auto;
	margin:40px 15% 10px;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 100%;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0.1vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #fff;
	transition: all .6s;
	font-family: 'Merriweather', serif;
	letter-spacing: 1px;
}  


.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #fff !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#fff;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 20px 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 4%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#fff;
}

.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

  .hamburger__line--1 {
	top: 12px;
  }
  .hamburger__line--2 {
	top: 27px;
  }
  .hamburger__line--3 {
	top: 42px;
  }
  .black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
	top: 0;
  }
  .nav-open .black-bg {
	opacity: .8;
	visibility: visible;
  }
  .nav-open .hamburger__line--1 {
	transform: rotate(45deg);
	top: 30px;
  
  }
  .nav-open .hamburger__line--2 {
	width: 0;
	left: 50%;
	opacity: 0;
  
  }
  .nav-open .hamburger__line--3 {
	transform: rotate(-45deg);
	top: 30px;
  
  }
  


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
	#pcheader {
		display: none;
	}

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	background:none;
	opacity: 1;
  }  
  .hamburger {
	width: 52px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 54px; /* クリックしやすいようにちゃんと高さを指定する */
	  display:block !important;
  }  
  .hamburger__line {
	  position: absolute;
	  left: -2px;
	  width: 40px;
	  height: 4px;
	  transition: all .6s;
	}	
	.hamburger #menu {
	  position: absolute;
	  top: 38px;
	  left: -3px;
	  font-weight:bold;
	  font-size:0.9em;
	}
  
  .hamburger__line--1 {
	top: 8px;
  }
  .hamburger__line--2 {
	top: 21px;
  }
  .hamburger__line--3 {
	top: 34px;
  }
  
  .global-nav {
	position: fixed;
	top: -1600px; /* これで隠れる */
	left: 0;
	width: 100%; /* スマホに収まるくらい */
	height: 100vh;
	min-height: 100%;
	padding-top: 40px;
	transition: all .6s;
	z-index: 200;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:4vw;
}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3vw;
	}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 0 2%;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
}
.global-nav #tw-menu {
	width:100%;
	height:auto;
	padding:20px 0;
	margin:0;
	text-align: center;
	opacity: 1;
	position: relative;
	color: #fff;
	font-size: 10vw;
}
.global-nav #tw-menu a {
	color: #fff;
}
  
	/* 表示された時用のCSS */
	.nav-open .global-nav {
	  top: 0;
	}
	.nav-open .black-bg {
	  opacity: .8;
	  visibility: visible;
	}
	.nav-open .hamburger__line--1 {
	  transform: rotate(45deg);
	  top: 20px;
	
	}
	.nav-open .hamburger__line--2 {
	  width: 0;
	  left: 50%;
	
	}
	.nav-open .hamburger__line--3 {
	  transform: rotate(-45deg);
	  top: 20px;
	
	}
  
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 550px) {
	.global-nav__item {
		margin: 10px 0;
	}
	.global-nav__item a {
		display: block;
		padding: 3px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:5.5vw;
		line-height: 8.5vw;
		font-family: 'Merriweather', serif;
		letter-spacing: 1px;	
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.6vw;
	}
}



/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
}
.modal__bg{
	background:#AAA5DB;
	opacity: 0.8;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie-bg {
	background:#010103;
	opacity: 0.85;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie__content {
    width: 52%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-color: #fff;
}
.modal__content .lb-img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 1vw;
	text-align: center;
}
.modal__content .lb-img img {
	width: 40%;
}
.modal__content p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	text-align: left;
	font-size: 1.1vw;
}
.movie__content .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.movie__content .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie__content ul#movie-changer {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.movie__content .movie-btn {
	width: 45%;
	height: 3vw;
	margin: 1px;
	padding: 1px 0;
	text-align: center;
	background-color: #54bebb;
	border: 2px solid #54bebb;
	color: #fff;
	font-size: 1vw;
	line-height: 1.3vw;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.movie__content .activee {
	background: #fff;
	border: 2px solid #54bebb;
	color: #54bebb;
	font-weight: bold;
}
.movie__content .movie-btn:hover {
	background: #fff;
	border: 2px solid #54bebb;
	color: #54bebb;
	cursor: pointer;
	transition-duration: 0.6s;
}
.movie__content .movie-btn i {
	display: none;
}
.movie__content .activee i {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.modal__content{
		width: 86%;
		height: 75%;
		padding: 2%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: auto;
		overflow-y: scroll;
	}
	.movie__content {
		width: 98%;
		height: auto;
		padding: 1%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content .lb-img {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 1vw;
		text-align: center;
	}
	.modal__content .lb-img img {
		width: 80%;
	}
	.modal__content p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		text-align: left;
		font-size: 4vw;
	}
	.movie__content .movie-btn {
		width: 47%;
		height: 5vw;
		margin: 2px;
		padding: 2px 0;
		text-align: center;
		background-color: #54bebb;
		border: 2px solid #54bebb;
		color: #fff;
		font-size: 0.75em;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.movie__content .activee {
		background: #fff;
		border: 2px solid #54bebb;
		color: #54bebb;
		font-weight: bold;
	}
	
}


/* 以下タブレット・スマホ */
@media (max-width: 550px) {
	ul#movie-changer {
		margin: 30px 0 0;
	}
	.movie__content .movie-btn {
		width: 100%;
		height: 7vw;
		margin: 2px 0;
		padding: 2px 0;
		text-align: center;
		background-color: #54bebb;
		border: 1px solid #54bebb;
		color: #fff;
		font-size: 0.75em;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.movie__content .activee {
		background: #fff;
		border: 1px solid #54bebb;
		color: #54bebb;
		font-weight: bold;
	}

}



/* ========================================
トップメイン画像まわり
========================================== */
#topmain-pc {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background-color: #54bebb;
}
#topmain-pc #up1 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
}
#topmain-pc #up2 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}
#topmain-pc #up3 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain-pc #up1 img ,
#topmain-pc #up2 img ,
#topmain-pc #up3 img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#topmain-pc #tower-sp {
	display: none;
}
.fadeInTop {
	animation-name:blurIn2;
	animation-duration:2.0s;
	animation-fill-mode:forwards;
	animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
	animation-delay: 0.3s;
}
.fadeInTop2 {
	animation-name:fadeIn;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
	animation-delay: 1.9s;
}

#topmain-pc #top-all-slide {
	width: 22.17%;
	position: absolute;
	top: 0%;
	right: 0;
	opacity: 0;
}
#topmain-pc #top-all-slide #top-slider-wrap {
	width: 100%;
	height: auto;
	position: relative;
}
#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to top, transparent 25%, transparent, transparent, black, black, black);
    mask-image: linear-gradient(to top, transparent 25%, transparent, transparent, black, black, black);
}
#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap .top-slide {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	animation: loop-slide-down 25s infinite linear 0s both;
}
#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap .top-slide .content {
	width: 100%;
	height: auto;
}
#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}



/* 以下タブレット・スマホ */

@media (max-width: 1024px) {
	#topmain-pc #top-all-slide {
		width: 100%;
		position: absolute;
		top: auto;
		bottom: 0;
		left: 0;
		right: auto;
		opacity: 0;
	}	
	#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap {
		display: block;
		width: 100%;
		height: auto;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
		opacity: 1;
		-webkit-mask-image: none;
		mask-image: none;
	}
	#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap .top-slide {
		width: auto;
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: nowrap;
		animation: loop-slide 25s infinite linear 0s both;
	}
	#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap .top-slide .content {
		width: 53vw;
		height: auto;
	}
	#topmain-pc #top-all-slide #top-slider-wrap .top-slide-wrap .top-slide .content img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#topmain-pc #tower-sp {
		display: block;
		width: 27%;
		height: auto;
		position: absolute;
		bottom: 17.5%;
		right: 0;
		z-index: 2;
		opacity: 0;
	}
	



}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 3vw 0;
	background-color: #54bebb;
}
#bridge #billing-block {
	display: block;
	width: 60%;
	height: auto;
	margin: 0 20%;
	position: relative;
	opacity: 0;
}
#bridge #billing-block #catch {
	width: 80%;
	height: auto;
	margin: 0 0 2vw;
}
#bridge #billing-block #billing {
	display: block;
	width: 75%;
	height: auto;
	margin: 0;
}
#bridge #billing-block #tower {
	display: block;
	width: 28.5%;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 5vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 70%;
}
#bridge #theater-banners {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #theater-banners li {
	width: 17%;
	margin: 1vw 1%;
	opacity: 0;
}
#bridge #theater-banners li:nth-child(1) ,
#bridge #theater-banners li:nth-child(2) {
	margin: 1vw 40%;
	opacity: 0;
}
#bridge #theater-banners li img:hover {
	animation: flash 1.5s;
	cursor: pointer;
}
#bridge .news-wrap {
	width: 100%;
	height: auto;
	padding: 5vw 0 2vw;
	text-align: center;
}
#bridge .news-wrap h2 {
	width: 100%;
	height: auto;
	margin: 3vw 0 1.5vw;
	text-align: center;
	opacity: 0;
}
#bridge .news-wrap h2 img {
	width: 16%;
	height: auto;
	vertical-align: bottom;
}
#bridge .news-wrap .twitter-widget {
	display: inline-block;
	width: 40%;
	opacity: 0;
}
#bridge #sns-link-corner-sp {
	display: none;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 20vw;
	}
	#bridge #billing-block {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		position: relative;
		opacity: 0;
	}
	#bridge #billing-block #catch {
		width: 90%;
		height: auto;
		margin: 0 5% 5vw;
	}
	#bridge #billing-block #billing ,
	#bridge #billing-block #tower {
		display: none;
	}
	#bridge #date {
		width: 100%;
		height: auto;
		margin: 8vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #date img {
		width: 80%;
	}
	#bridge #theater-banners {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #theater-banners li {
		width: 60%;
		opacity: 0;
		margin: 2vw 20%;
	}
	#bridge #theater-banners li:nth-child(1) ,
	#bridge #theater-banners li:nth-child(2) {
		margin: 2vw 20%;
		opacity: 0;
	}
	#bridge #sns-link-corner-sp {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#bridge #sns-link-corner-sp ul {
		height: auto;
		margin: 2vw 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#bridge #sns-link-corner-sp ul#cetera-sns-sp {
		width: 100%;
	}
	#bridge #sns-link-corner-sp ul#alba-sns-sp {
		width: 100%;
	}
	#bridge #sns-link-corner-sp ul li {
		width: 8%;
		height: auto;
		margin: 0 5px;
		font-size: 7vw;
	}
	#bridge #sns-link-corner-sp ul li a {
		color: #fff;
	}
	#bridge #sns-link-corner-sp ul li.cetera {
		width: 38%;
	}
	#bridge #sns-link-corner-sp ul li.alba {
		width: 20%;
	}
	#bridge #sns-link-corner-sp ul li img {
		width: 100%;
		height: auto;
		vertical-align: middle;
	}



	#bridge .news-wrap h2 {
		width: 100%;
		height: auto;
		margin: 10vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge .news-wrap h2 img {
		width: 40%;
		height: auto;
		vertical-align: bottom;
	}
	#bridge .news-wrap .twitter-widget {
		display: inline-block;
		width: 90%;
		opacity: 0;
	}
}



/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:7vw 0 7vw;
	overflow: hidden;
	position: relative;
	background-color: #54bebb;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1vw;
	text-align:center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width:20%;
	height:auto;
	vertical-align: bottom;
}
.fadeIn3 {
	animation-name:fadeIn;
	animation-duration:1.6s;
	animation-fill-mode:forwards;
	animation-delay: 0.5s;
}
.fadeIn4 {
	animation-name:fadeIn;
	animation-duration:1.6s;
	animation-fill-mode:forwards;
	animation-delay: 0.8s;
}
.trailer #video-wrap {
	width: 60%;
	height: auto;
	margin: 0;
	padding: 0 20%;
	opacity: 0;
}
.trailer .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.trailer .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.trailer ul#movie-changer2 {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.trailer .movie-btn2 {
	width: 45%;
	height: 3vw;
	margin: 2px;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
	font-size: 1vw;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.trailer .movie-btn2 i {
	display: none;
}
.trailer .activee2 {
	background: #fff;
	border: 2px solid #fff;
	color: #54bebb;
	font-weight: bold;
}
.trailer .activee2 i {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.trailer .movie-btn2:hover {
	background: #fff;
	border: 2px solid #fff;
	color: #54bebb;
	cursor: pointer;
	transition-duration: 0.6s;
}


.video-sp {
display:none !important;
}
.h2sp {display:none;}


/* 以下スマホ */
@media (max-width: 1024px) {
.trailer {
	width:100%;
	padding:30px 0 50vw;
}
.trailer h2 img {
	width:50%;
	height:auto;
	vertical-align: bottom;
}

.trailer #video-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
.trailer .video {
	width:90%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 5% 10px;
	display:block;
}
.trailer .movie-btn2 {
	width: 45%;
	height: 5vw;
	margin: 2px;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
	font-size: 0.9em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.trailer .movie-btn2 i {
	display: none;
}
.trailer .activee2 {
	background: #fff;
	border: 2px solid #fff;
	color: #54bebb;
	font-weight: bold;
}
.trailer .activee2 i {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.trailer .movie-btn2:hover {
	background: #fff;
	border: 2px solid #fff;
	color: #54bebb;
	cursor: pointer;
	transition-duration: 0.6s;
}

}

@media (max-width: 525px) {


.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:15vw 0 20vw;

}
.trailer #video-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: static;
}
.trailer .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
}
.trailer .movie-btn2 {
	width: 98%;
	height: 7vw;
	margin: 2px 0;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-sizing: border-box;
}
.trailer .movie-btn2 i {
	display: none;
}
.trailer .activee2 {
	background: #fff;
	border: 1px solid #fff;
	color: #54bebb;
	font-weight: bold;
}
.trailer .activee2 i {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.trailer .movie-btn2:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #54bebb;
	cursor: pointer;
	transition-duration: 0.6s;
}


}



/* ========================================
イントロダクション
========================================== */
#intro-bg1 {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-20;
	background:url(../img/DIP-intro-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center right;
}
#intro-bg2 {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-20;
	background:url(../img/DIP-intro-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center left;
	animation: intro-bg2 8s ease 0s infinite;
}
@keyframes intro-bg2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#intro {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 20vw 0 0;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 25%;
	height: auto;
	vertical-align: bottom;
}
#intro #intro-c1 {
	width: 100%;
	height: auto;
	margin: 20vw 0 2vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-c2 {
	width: 100%;
	height: auto;
	margin: 2vw 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-c1 img ,
#intro #intro-c2 img {
	width: auto;
	height: 4vw;
	vertical-align: bottom;
}
#intro #grad-bg {
	width: 100%;
	height: auto;
	padding: 5vw 0 10vw;
	background: -moz-linear-gradient(bottom, rgba(0 , 0 , 0 , 0.6) 60%, transparent);
	background: -webkit-linear-gradient(bottom, rgba(0 , 0 , 0 , 0.6) 60%, transparent);
	background: linear-gradient(to top, rgba(0 , 0 , 0 , 0.6) 60%, transparent);
}
#intro #grad-bg .sub-head {
	width: 100%;
	height: auto;
	margin: 7vw 0 3vw;
	text-align: center;
	color: #66e6e2;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
	font-size: 1.6vw;
	line-height: 3vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	opacity: 0;
}
#intro #grad-bg .sub-head span {
	letter-spacing: 0;
}
#intro #grad-bg p {
	width: 60%;
	height: auto;
	margin: 0 20%;
	text-align: left;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	opacity: 0;
}
#intro #grad-bg p span {
	letter-spacing: 0;
}


@media (max-width: 1024px) {
	#intro-bg1 {
		width:100%;
		height:100vh;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-20;
		background:url(../img/DIP-intro-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center right;
	}
	#intro-bg2 {
		width:100%;
		height:100vh;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-20;
		background:url(../img/DIP-intro-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center left;
		animation: intro-bg2 8s ease 0s infinite;
	}
	#intro {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 50vw 0 0;
	}	
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 80%;
		height: auto;
		vertical-align: bottom;
	}
	#intro #intro-c1 {
		width: 100%;
		height: auto;
		margin: 20vw 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-c2 {
		width: 100%;
		height: auto;
		margin: 5vw 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-c1 img ,
	#intro #intro-c2 img {
		width: auto;
		height: 18vw;
		vertical-align: bottom;
	}
	#intro #grad-bg {
		width: 100%;
		height: auto;
		padding: 5vw 0 50vw;
		background: -moz-linear-gradient(bottom, rgba(0 , 0 , 0 , 0.6) 60%, transparent);
		background: -webkit-linear-gradient(bottom, rgba(0 , 0 , 0 , 0.6) 60%, transparent);
		background: linear-gradient(to top, rgba(0 , 0 , 0 , 0.6) 60%, transparent);
	}
	
	#intro #grad-bg .sub-head {
		width: 100%;
		height: auto;
		margin: 15vw 0 5vw;
		text-align: center;
		color: #66e6e2;
		font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
		font-size: 1.2em;
		line-height: 2.1em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#intro #grad-bg p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		text-align: left;
		color: #fff;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		opacity: 0;
	}
	

	
}




/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: auto;
	padding: 7vw 0 0vw;
	background-color: #54bebb;
	position: relative;
}
#story #story-contents {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	position: relative;
	z-index: 2;
}
#story #story-contents h2 {
	width: 34%;
	height: auto;
	margin: 5vw 33% 0;
	padding: 0;
	position: relative;
}
#story #story-contents h2 #story-head-bg {
	width: 100%;
	height: auto;
	opacity: 0;
}
#story #story-contents h2 #story-head {
	width: 38%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	opacity: 0;
}
#story #story-contents #story-txt {
	width: 50%;
	height: auto;
	margin: 0 20% 0;
	padding: 5vw 5% 25vw;
	background: -moz-linear-gradient(left, transparent , rgba( 84,190,187 , 0.8 ) 20%, rgba( 84,190,187 , 0.8 ) 80%, transparent);
	background: -webkit-linear-gradient(left, transparent , rgba( 84,190,187 , 0.8 ) 20%, rgba( 84,190,187 , 0.8 ) 80%, transparent);
	background: linear-gradient(to right, transparent , rgba( 84,190,187 , 0.8 ) 20%, rgba( 84,190,187 , 0.8 ) 80%, transparent);
}
#story #story-contents #story-txt p {
	width: 100%;
	height: auto;
	margin: 1.5vw 0;
	padding: 0;
	color: #000;
	font-size: 1.2vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.2px;
	opacity: 0;
}
#story #slide-logo {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	opacity: 0;
}
#story #slide-logo .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 1;
}
#story #slide-logo .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 80s infinite linear 0s both;
}
#story #slide-logo .top-slide-wrap .top-slide .content {
	width: 60vw;
	height: auto;
}
#story #slide-logo .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#story #slide-story {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: 3;
}
#story #slide-story .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 1;
}
#story #slide-story .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 50s infinite linear 0s both;
}
#story #slide-story .top-slide-wrap .top-slide .content {
	width: 40vw;
	height: auto;
}
#story #slide-story .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}



@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		background-color: #54bebb;
		position: relative;
	}
	#story #story-contents {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		position: relative;
	}
	#story #story-contents h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
	}
	#story #story-contents h2 #story-head-bg {
		width: 100%;
		height: auto;
		opacity: 0;
	}
	#story #story-contents h2 #story-head {
		width: 38%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		opacity: 0;
	}
	#story #story-contents #story-txt {
		width: 90%;
		height: auto;
		margin: 0 5% 0;
		padding: 20vw 0 90vw;
		background: -moz-linear-gradient(left, transparent , rgba( 84,190,187 , 0.8 ) 20%, rgba( 84,190,187 , 0.8 ) 80%, transparent);
		background: -webkit-linear-gradient(left, transparent , rgba( 84,190,187 , 0.8 ) 20%, rgba( 84,190,187 , 0.8 ) 80%, transparent);
		background: linear-gradient(to right, transparent , rgba( 84,190,187 , 0.8 ) 20%, rgba( 84,190,187 , 0.8 ) 80%, transparent);
	}
	#story #story-contents #story-txt p {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.2px;
		opacity: 0;
	}
	#story #slide-logo .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 60s infinite linear 0s both;
	}
	#story #slide-logo .top-slide-wrap .top-slide .content {
		width: 150vw;
		height: auto;
	}
	#story #slide-story .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide-rev 50s infinite linear 0s both;
	}
	#story #slide-story .top-slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
	}
}




/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#cast-bg {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-13;
	background:url(../img/DIP-cast-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#pink-bg {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-12;
	background-color: rgba( 205,126,140 , 0.7 );
	opacity: 0;
}
#cast #bgtop {
	width: 100%;
	height: auto;
	padding: 5vw 0;
}
#cast #bgtop h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast #bgtop h2 img {
	width: 12%;
	height: auto;
	vertical-align: bottom;
}
.pinkbg-adding {
	background-color: rgba( 205,126,140 , 0.7 );
}
#cast .bgpink {
	width: 100%;
	height: auto;
	padding: 3vw 0;
	background-color: rgba( 205,126,140 , 0.7 );
}
#cast .bgblue {
	width: 100%;
	height: auto;
	padding: 3vw 0;
	background-color: rgba( 84,190,187 , 0.7 );
}
.cast-unit {
	width: 60%;
	height: auto;
	margin: 5vw 20%;
}
.cast-unit2 {
	width: 29%;
	height: auto;
	margin: 5vw 1%;
}
.cast-unit h3 ,
.cast-unit2 h3 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	color: #fff;
	font-size: 1.3vw;
	text-align: center;
	opacity: 0;
}
.cast-unit h3 span ,
.cast-unit2 h3 span {
	color: #000;
}
.cast-unit .cast-photo {
	width: 30%;
	height: auto;
	margin: 0 35%;
	position: relative;
	opacity: 0;
}
.cast-unit2 .cast-photo {
	width: 60%;
	height: auto;
	margin: 0 20%;
	position: relative;
	opacity: 0;
}
.cast-unit #cast-photo-marion {
	width: 30%;
	height: auto;
	margin: 0 35%;
	position: relative;
	opacity: 0;
}
.cast-unit #cast-photo-marion #marion1 {
	width: 100%;
	height: auto;
}
.cast-unit #cast-photo-marion #marion2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: intro-bg2 6s ease 0s infinite;
}
.cast-unit p ,
.cast-unit2 p {
	width: 100%;
	height: auto;
	margin: 3vw 0 0;
	text-align: left;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	opacity: 0;
}
.others {
	display: flex;
	justify-content: center;
}


@media (max-width: 1024px) {
	#cast-bg {
		width:100%;
		height:100vh;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-13;
		background:url(../img/DIP-cast-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#cast #bgtop {
		width: 100%;
		height: auto;
		padding: 0 0 20vw;
	}
	#cast #bgtop h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast #bgtop h2 img {
		width: 30%;
		height: auto;
		vertical-align: bottom;
	}
	#cast .bgpink {
		width: 100%;
		height: auto;
		padding: 0;
		background-color: rgba( 205,126,140 , 0.7 );
	}
	#cast .bgblue {
		width: 100%;
		height: auto;
		padding: 0;
		background-color: rgba( 84,190,187 , 0.7 );
	}
	.cast-unit {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 15vw 0;
	}
	.cast-unit2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 15vw 0;
	}
	.cast-unit h3 ,
	.cast-unit2 h3 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		color: #fff;
		font-size: 1.2em;
		text-align: center;
		opacity: 0;
	}
	.cast-unit .cast-photo {
		width: 70%;
		height: auto;
		margin: 0 15%;
		position: relative;
		opacity: 0;
	}
	.cast-unit2 .cast-photo {
		width: 70%;
		height: auto;
		margin: 0 15%;
		position: relative;
		opacity: 0;
	}
	.cast-unit #cast-photo-marion {
		width: 70%;
		height: auto;
		margin: 0 15%;
		position: relative;
		opacity: 0;
	}
	.cast-unit #cast-photo-marion #marion1 {
		width: 100%;
		height: auto;
	}
	.cast-unit #cast-photo-marion #marion2 {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		animation: intro-bg2 6s ease 0s infinite;
	}
	.cast-unit p ,
	.cast-unit2 p {
		width: 90%;
		height: auto;
		margin: 3vw 5% 0;
		text-align: left;
		color: #fff;
		font-size: 1em;
		line-height: 1.9em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		opacity: 0;
	}
	.others {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		background-color: transparent !important;
	}
	.others .odd {
		background-color: rgba( 205,126,140 , 0.7 );
	}
	.others .even {
		background-color: rgba( 84,190,187 , 0.7 );
	}
	

}


/* ========================================
監督
========================================== */
#director {
	width: 100%;
	height: auto;
	padding: 5vw 0 0;
	background-color: #fffddd;
}
#director h2 {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#director h2 img {
	width: 16%;
	height: auto;
	vertical-align: bottom;
}
#director #dire-unit {
	width: 70%;
	height: auto;
	margin: 0 15% 3vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#director #dire-unit #dire-photo {
	width: 25%;
	height: auto;
	margin: 0 1%;
	opacity: 0;
}
#director #dire-unit #dire-contents {
	width: 65%;
	height: auto;
	margin: 0 1%;
}
#director #dire-unit #dire-contents h3 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	color: #0a858e;
	font-size: 1.4vw;
	opacity: 0;
}
#director #dire-unit #dire-contents p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	color: #000;
	font-size: 1.0vw;
	opacity: 0;
}
#director #slide-logo-dire {
	width: 100%;
	height: auto;
	padding: 5vw 0 0;
	position: relative;
}
#director #slide-logo-dire .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	opacity: 0;
}
#director #slide-logo-dire .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 80s infinite linear 0s both;
}
#director #slide-logo-dire .top-slide-wrap .top-slide .content {
	width: 33vw;
	height: auto;
}
#director #slide-logo-dire .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#director #slide-logo-dire #slide-photo {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	text-align: center;
	opacity: 0;
}
#director #slide-logo-dire #slide-photo img {
	width: 15%;
	height: auto;
	vertical-align: bottom;
}
.sphead {display: none;}
.pchead {display: block;}


@media (max-width: 1024px) {
	#director {
		width: 100%;
		height: auto;
		padding: 15vw 0 0;
		background-color: #fffddd;
	}
	#director h2 {
		width: 100%;
		height: auto;
		margin: 2vw 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#director h2 img {
		width: 50%;
		height: auto;
		vertical-align: bottom;
	}
	#director #dire-unit {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#director #dire-unit #dire-photo {
		width: 60%;
		height: auto;
		margin: 0 20% 5vw;
		opacity: 0;
	}
	#director #dire-unit #dire-contents {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#director #dire-unit h3 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
		color: #0a858e;
		font-size: 1.2em;
		opacity: 0;
	}
	#director #dire-unit #dire-contents p {
		width: 90%;
		height: auto;
		margin: 0 5% 1vw;
		padding: 0;
		color: #000;
		font-size: 1em;
		opacity: 0;
	}
	.sphead {display: block;}
	.pchead {display: none;}
	#director #slide-logo-dire {
		width: 100%;
		height: auto;
		padding: 40vw 0 0;
		position: relative;
	}
	#director #slide-logo-dire .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 80s infinite linear 0s both;
	}
	#director #slide-logo-dire .top-slide-wrap .top-slide .content {
		width: 150vw;
		height: auto;
	}
	#director #slide-logo-dire #slide-photo {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: -1px;
		text-align: center;
		opacity: 0;
	}	
	#director #slide-logo-dire #slide-photo img {
		width: 60%;
		height: auto;
		vertical-align: bottom;
	}

}


/* ========================================
レビュー
========================================== */
#review {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 25vw 0 10vw;
}
#rev-bg1 {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-11;
	background:url(../img/DIP-review-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#rev-bg2 {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-11;
	background:url(../img/DIP-review-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;	
	opacity: 0;
}
.rev-bg2 {
	animation: intro-bg2 8s ease 0s infinite;
}
#rev-bg3 {
	width:100%;
	height:100vh;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	background-color:rgba(0 , 0 , 0 , 0.6);
	opacity: 0;
}
#review h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#review h2 img {
	width: 23%;
	height: auto;
	vertical-align: bottom;
}
#review #com-wrap ,
#review #rev-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	position: relative;
}
#review #com-wrap #com-order {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
}
#review #com-wrap .com-unit {
	width: 45%;
	height: auto;
	margin: 4vw 0% 4vw 55%;
	position: relative;
	opacity: 0;
}
#review #com-wrap .com-unit:nth-child(2n) {
	width: 60%;
	height: auto;
	margin: 4vw 30% 4vw 10%;
	position: relative;
	opacity: 0;
}
#review #com-wrap .com-unit .txt {
	color: #fff;
	font-size: 1.2vw;
}
[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1.0vw;
    left: 0.1vw;
    margin: auto;
    font-size: 1vw;
}
#review #com-wrap .com-unit .name {
	color: #2fd8e2;
	font-size: 1.2vw;
	font-weight: bold;
}
#review #rev-wrap .rev-unit {
	width: auto;
	height: auto;
	margin: 3vw 0;
	position: relative;
	opacity: 0;
}
#review #rev-wrap .rev-unit .rev-txt {
	color: #fff;
	font-size: 1.2vw;
}
#review #rev-wrap .rev-unit .rev-name {
	color: #2fd8e2;
	font-size: 1.2vw;
	font-weight: bold;
}
#review #rev-wrap .rev-unit:nth-child(1) {
	margin-left: 12%;
}
#review #rev-wrap .rev-unit:nth-child(2) {
	margin-left: 60%;
}
#review #rev-wrap .rev-unit:nth-child(2) .rev-txt {
	font-size: 1.8vw;
}
#review #rev-wrap .rev-unit:nth-child(3) {
	margin-left: 20%;
}
#review #rev-wrap .rev-unit:nth-child(4) {
	margin-left: 50%;
}
#review #rev-wrap .rev-unit:nth-child(5) {
	margin-left: 10%;
}
#review #rev-wrap .rev-unit:nth-child(6) {
	margin-left: 40%;
}
#review #rev-wrap .rev-unit:nth-child(6) .rev-txt {
	font-size: 1.5vw;
}
#review #rev-wrap .rev-unit:nth-child(7) {
	margin-left: 10%;
}
#review #rev-wrap .rev-unit:nth-child(7) .rev-txt {
	font-size: 1.3vw;
}
#review #rev-wrap .rev-unit:nth-child(8) {
	margin-left: 50%;
}
#review #rev-wrap .rev-unit:nth-child(8) .rev-txt {
	font-size: 1.8vw;
}
#review #rev-wrap .rev-unit:nth-child(9) {
	margin-left: 10%;
}
#review #rev-wrap .rev-unit:nth-child(10) {
	margin-left: 50%;
}
#review #rev-wrap .rev-unit:nth-child(11) {
	margin-left: 20%;
}
#review #rev-wrap .rev-unit:nth-child(11) .rev-txt {
	font-size: 1.4vw;
}
@keyframes rev-anime {
	0% {
		opacity: 0;
		transform: translateY(30%);
		filter: blur(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0%);
		filter: blur(0px);
	}
}
.rev-anime {
	animation: rev-anime 0.6s ease-out 0.1s forwards;
}


@media (max-width: 1024px) {
	#review {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 70vw 0 25vw;
	}
	#rev-bg1 {
		width:100%;
		height:100vh;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-11;
		background:url(../img/DIP-review-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#rev-bg2 {
		width:100%;
		height:100vh;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-11;
		background:url(../img/DIP-review-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;	
		opacity: 0;
	}
	.rev-bg2 {
		animation: intro-bg2 7s ease 0s infinite;
	}
	#review h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#review h2 img {
		width: 50%;
		height: auto;
		vertical-align: bottom;
	}
	#review #com-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0 0;
		position: relative;
	}
	#review #rev-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		position: relative;
	}
	#review #com-wrap #com-order {
		width: 100%;
		height: auto;
		margin: 0 0 50vw;
		text-align: center;
		color: #fff;
		font-size: 1em;
	}
	#review #com-wrap .com-unit {
		width: 90%;
		height: auto;
		margin: 20vw 5% 20vw 5%;
		position: relative;
		opacity: 0;
	}
	#review #com-wrap .com-unit:nth-child(2n) {
		width: 90%;
		height: auto;
		margin: 20vw 5% 20vw 5%;
		position: relative;
		opacity: 0;
	}
	#review #com-wrap .com-unit .txt {
		color: #fff;
		font-size: 1em;
	}
	[data-ruby] {
		position: relative;
	}
	[data-ruby]::before {
		content: attr(data-ruby);
		position: absolute;
		top: -1.0em;
		left: 0.1em;
		margin: auto;
		font-size: 1em;
	}
	#review #com-wrap .com-unit .name {
		color: #2fd8e2;
		font-size: 1em;
		font-weight: bold;
	}
	
	#review #rev-wrap .rev-unit {
		width: auto;
		height: auto;
		margin: 18vw 0;
		padding: 0 1em;
		position: relative;
		opacity: 0;
	}
	#review #rev-wrap .rev-unit .rev-txt {
		color: #fff;
		font-size: 1em;
	}
	#review #rev-wrap .rev-unit .rev-name {
		color: #2fd8e2;
		font-size: 1em;
		font-weight: bold;
	}
	#review #rev-wrap .rev-unit:nth-child(1) {
		margin-left: 1%;
	}
	#review #rev-wrap .rev-unit:nth-child(2) {
		margin-left: 30%;
	}
	#review #rev-wrap .rev-unit:nth-child(2) .rev-txt {
		font-size: 1.3em;
	}
	#review #rev-wrap .rev-unit:nth-child(3) {
		margin-left: 5%;
	}
	#review #rev-wrap .rev-unit:nth-child(4) {
		margin-left: 10%;
	}
	#review #rev-wrap .rev-unit:nth-child(5) {
		margin-left: 0%;
	}
	#review #rev-wrap .rev-unit:nth-child(6) {
		margin-left: 10%;
	}
	#review #rev-wrap .rev-unit:nth-child(6) .rev-txt {
		font-size: 1.2em;
	}
	#review #rev-wrap .rev-unit:nth-child(7) {
		margin-left: 0%;
	}
	#review #rev-wrap .rev-unit:nth-child(7) .rev-txt {
		font-size: 1.1em;
	}
	#review #rev-wrap .rev-unit:nth-child(8) {
		margin-left: 10%;
	}
	#review #rev-wrap .rev-unit:nth-child(8) .rev-txt {
		font-size: 1.3em;
	}
	#review #rev-wrap .rev-unit:nth-child(9) {
		margin-left: 0%;
	}
	#review #rev-wrap .rev-unit:nth-child(10) {
		margin-left: 10%;
	}
	#review #rev-wrap .rev-unit:nth-child(11) {
		margin-left: 2%;
	}
	#review #rev-wrap .rev-unit:nth-child(11) .rev-txt {
		font-size: 1.1em;
	}
	

}

/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:2vw 0;
	opacity: 1;
}
#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
#button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
#button-area ul.social_sq_buttons li.fb {
	background:#1877F2;
}
#button-area ul.social_sq_buttons li.tw {
	background:#1B95E0;
}
#button-area ul.social_sq_buttons li.line {
	background:#06C755;
}
#button-area ul.social_sq_buttons li.checkin {
	background:#10519D;
}
#button-area ul.social_sq_buttons li.filmarks {
	background:#FFE100;
	text-align: center;
}
#button-area ul.social_sq_buttons li.filmarks img {
	width: 60%;
}
#button-area ul.social_sq_buttons li.fb .fb_iframe_widget > span {
  vertical-align: baseline !important;
}




/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0 10px;
}

#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

#button-area ul.social_sq_buttons li {
	width:160px;
	height: 20px;
	margin:5px;
	padding:3px 0;
	display: flex;
	justify-content: center;
}


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	background-color: #000;
	position: relative;
}
footer #foot-bg {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	opacity: 0;
}
footer #foot-catch {
	width: 7%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}
footer #foot-title {
	width: 25%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 5%;
	opacity: 0;
}
footer #sns-link-corner {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	bottom: 5%;
	opacity: 0;
}
footer #sns-link-corner ul {
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer #sns-link-corner ul#cetera-sns {
	width: 22%;
}
footer #sns-link-corner ul#alba-sns {
	width: 15%;
}
footer #sns-link-corner ul li {
	width: auto;
	height: auto;
	margin: 0 10px;
	font-size: 1.5vw;
}
footer #sns-link-corner ul li a {
	color: #fff;
}
footer #sns-link-corner ul li.cetera {
	width: 38%;
}
footer #sns-link-corner ul li.alba {
	width: 30%;
}
footer #sns-link-corner ul li img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
footer #sns-link-corner ul li a:hover {
	animation: flash 1.0s;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.fadeInFoot1 {
	animation-name:fadeIn;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.0s;
}
.fadeInFoot2 {
	animation-name:fadeIn;
	animation-duration:1.6s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
	animation-delay: 1.4s;
}
.fadeInFoot3 {
	animation-name:fadeIn;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
	animation-delay: 2.2s;
}



@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	footer #foot-catch {
		width: 22%;
		height: auto;
		position: absolute;
		top: 7%;
		left: 39%;
		transform: translateX(0);
		opacity: 0;
	}
	footer #foot-title {
		width: 70%;
		height: auto;
		position: absolute;
		top: 30%;
		left: 15%;
		opacity: 0;
	}	


}
@media (max-width: 510px) {

}

/* ========================================
ダウンロード
========================================== */

body#dl-body:before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(../download/images/BSK-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: bottom center;
	animation: none;
  }
  body#dl-body::after{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-9;
	width:100%;
	height:100vh;
	background-color: rgba(255, 255, 255, 0.4);
	animation: none;
  }  
  .dlButton {
	  background-color:#fff;
	  border:1px solid #678DC9;
	  display:inline-block;
	  cursor:pointer;
	  color:#678DC9;
	  font-family:Arial;
	  width: 16vw;
	  font-size:1.1vw;
	  padding:10px 0;
	  text-align: center;
	  text-decoration:none;
	  font-weight: bold;
	  font-feature-settings:"palt";
  }
  .dlButton:hover {
	  background-color:#f6ecec;
	  border:1px solid #ED7C86;
	  color:#ED7C86;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#678DC9 !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#f6ecec;
	  color:#ED7C86 !important;
  }
  .dl-contents {
	  width:80%;
	  height:auto;
	  padding:20px 10% 80px;
	  font-size:1.3em;
  }  
  .dl-contents h2 {
	  width:100%;
	  text-align:center;
	  padding:0;
	  color:#031018;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:35%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#000;
	  margin:20px 0 5px;
	  font-size: 0.9em;
	  font-weight: bold;
	  font-feature-settings:"palt";

  }
  #dl-wrapper .dl-txt1 span {
	display: inline-block;
	position: relative;
	z-index: 2;
  }
  
  #dl-wrapper .dl-txt1 a {
	  color:#000;
  }
  
  #dl-wrapper .dl-txt1 img {
	  width:30%;
  }
  
  #dl-wrapper .sikiri {
	  width:100%;
	  height:auto;
	  padding:40px 0 20px;
	  text-align:center;
  }
  
  #dl-wrapper .sikiri img {
	  width:10%;
  }
  
  
  #dl-wrapper .dl-uline {
	  display:inline-block;
	  width:70%;
	  margin:20px 0 30px;
  }
  
  #dl-wrapper .dl-uline img {
	  width:100%;
	  height:60px;
  }
  .dl-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }  
  .dl-wrap .img-box {
	  width:22%;
	  height:auto;
	  padding:0 1%;
	  margin:50px 1%;
	  color:#000;
	  text-align: center;
	  font-size: 0.9em;
	  font-weight: bold;
	  font-feature-settings: "palt";

  }  
  .img-box img {
	  width:90%;
  }
  .dl-wrap .img-box span {
	display: inline-block;
	font-size: 0.7em;
	line-height: 1.3em;
  }


  .longname {
	  font-size:0.75em;
  }
  
  footer.dl-footer {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:50px 0 0;
	  background:#000;
  }
  
  footer.dl-footer .footimg {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:0;
  }
  
  footer.dl-footer .footimg img {
	  width:100%;
	  height:auto;
	  vertical-align:bottom;
  }
