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/RV1-introdtory-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;
}
br.sponly {display:none;}
.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 fadeIn {
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.3s;
	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 fromLeft {
	0% {transform: translateX(-1000px);opacity: 0;}
	100% {transform: translateX(0);opacity: 1;}
}
@keyframes fromRight {
	0% {transform: translateX(1000px);opacity: 0;}
	100% {transform: translateX(0);opacity: 1;}
}
@keyframes fromTop {
	0% {transform: translateY(-500px);opacity: 0;}
	100% {transform: translateY(0);opacity: 1;}
}
@keyframes fromBottom {
	0% {transform: translateY(500px);opacity: 0;}
	100% {transform: translateY(0);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;
		min-height: 100%;
		background:url(../img/RV1-introdtory-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}
	br.sponly {display:inline;}
}


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

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-duration: 3.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #EAEDEB;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:20%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load-logo2 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	animation-name: anime1;
	animation-iteration-count: infinite;
	animation-duration: 1.5s;
}
#loader #load-logo3 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position: absolute;
	top: 0;
	left: 0;
	animation-name: anime2;
	animation-iteration-count: infinite;
	animation-duration: 1.5s;
}
#loader #load-logo4 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position: absolute;
	top: 0;
	left: 0;
	animation-name: anime3;
	animation-iteration-count: infinite;
	animation-duration: 1.5s;
}
#loader #load-logo1 img ,
#loader #load-logo2 img ,
#loader #load-logo3 img ,
#loader #load-logo4 img {
	width:100%;
	height:auto;
	vertical-align: bottom;
}

@keyframes anime1 {
	0% {	opacity:0;	}
	10% {	opacity:1;	}
	90% {	opacity:1;	}
	100% {	opacity:0;	}
}
@keyframes anime2 {
	0% {	opacity:0;	}
	20% {	opacity:0;	}
	30% {	opacity:1;	}
	90% {	opacity:1;	}
	100% {	opacity:0;	}
}
@keyframes anime3 {
	0% {	opacity:0;	}
	40% {	opacity:0;	}
	50% {	opacity:1;	}
	90% {	opacity:1;	}
	100% {	opacity:0;	}
}
@keyframes anime4 {
	0% {	opacity:0;	}
	60% {	opacity:0;	}
	70% {	opacity:1;	}
	90% {	opacity:1;	}
	100% {	opacity:0;	}
}



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

#loader {
	width:70%;
	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:8px 0 10px;
	position:fixed;
	top:0;
	background-color: #EAEDEB;
	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.2%;
	padding:0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-family: 'Fjalla One', sans-serif;
}
#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.5vw;
	line-height:1.5vw;
	text-align: center;
	color: #E60012;
	font-family: 'Fjalla One', sans-serif;
}

#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: #EAEDEB;
	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:40%;
	height:auto;
	margin:30px 30% 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 14px;
	font-family: 'Fjalla One', sans-serif;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #E60012;
	font-weight: bold;
	font-family: 'Fjalla One', sans-serif;
	transition: all .6s;
  }  
  .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: #E60012 !important;
	transition: all .6s;
  }  
  .hamburger #menu {
	position: absolute;
	top: 44px;
	left: 7px;
	font-weight:bold;
	color:#E60012;
	font-size:1.0em;
	font-family: battery-park, sans-serif;
	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:#E60012;
}

.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: -5px;
	  font-weight:bold;
	  font-size:0.9em;
	  font-family: 'Libre Baskerville', serif;
	}
  
  .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 a {
		display: block;
		padding: 10px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:7vw;
		letter-spacing: 1px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.6vw;
	}
}




/* ========================================
トップメイン画像まわり
========================================== */
#topmain-sp {
	display: none;
}
#topmain-pc {
	display: block;
	width:100%;
	height:50vw;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background-color: #EAEDEB;
}
#topmain-pc #title1 {
	width:100%;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	top: 18%;
	text-align: center;
}
#topmain-pc #title2 {
	width:100%;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	top: 28%;
	text-align: center;
}
#topmain-pc #title1 img ,
#topmain-pc #title2 img {
	width: 20%;
	height: auto;
	vertical-align: bottom;
}
#topmain-pc #yoko-catch {
	width: 15%;
	height: auto;
	opacity: 0;
	position: absolute;
	top: 5%;
	left: 40%;
}
#topmain-pc #adachi {
	width:4%;
	height:auto;
	opacity: 0;
	position: absolute;
	top: 5%;
	right: 18%;
}
#topmain-pc #tate-catch {
	width:2.5%;
	height:auto;
	opacity: 0;
	position: absolute;
	top: 5%;
	left: 18%;
}
#topmain-pc #theman {
	width:100%;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	bottom: 0;
	text-align: center;
}
#topmain-pc #theman img {
	width: 16%;
	height: auto;
	vertical-align: bottom;
}
#topmain-pc #billing {
	width:20%;
	height:auto;
	opacity: 0;
	position: absolute;
	bottom: 5%;
	right: 10%;
}
#topmain-pc #billing img ,
#topmain-pc #yoko-catch img ,
#topmain-pc #tate-catch img ,
#topmain-pc #adachi img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}
#topmain-pc #tw-link img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
.blurIn1 {
	animation-name:blurIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
}
.blurIn2 {
	animation-name:blurIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-in;
	animation-delay: 0.5s;
}
.fromRight {
	animation-name:fromRight;
	animation-duration:1.7s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.7s;
}
.fromLeft {
	animation-name:fromLeft;
	animation-duration:1.7s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.7s;
}
.fromTop {
	animation-name:fromTop;
	animation-duration:1.7s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.7s;
}
.fromBottom {
	animation-name:fromBottom;
	animation-duration:1.7s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.7s;
}




/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain-pc {
		display: none;
	}
	#topmain-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
		overflow: hidden;
	}
	#topmain-sp #up-bgsp {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#topmain-sp #up1sp ,
	#topmain-sp #up2sp ,
	#topmain-sp #up3sp ,
	#topmain-sp #up4sp ,
	#topmain-sp #up5sp {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	#topmain-sp #adachi-sp {
		width:8%;
		height:auto;
		opacity: 0;
		position: absolute;
		top: 4%;
		right: 3%;
	}
	#topmain-sp #tate-catch-sp {
		width:7.5%;
		height:auto;
		opacity: 0;
		position: absolute;
		top: 4%;
		left: 3%;
	}
	#topmain-sp #up-bgsp img ,
	#topmain-sp #up1sp img ,
	#topmain-sp #up2sp img ,
	#topmain-sp #up3sp img ,
	#topmain-sp #up4sp img ,
	#topmain-sp #up5sp img ,
	#topmain-sp #adachi-sp img ,
	#topmain-sp #tate-catch-sp img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#topmain-sp #date-sp {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20px 0 0;
		text-align: center;
		position: absolute;
		bottom: 0;
		left: 0;
		background-color: #000;
		z-index: 2;
	}
	#topmain-sp #date-sp img {
		opacity: 0;
		width: 90%;
	}
}

/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	background-color: #000;
}
#bridge #date {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 60%;
}
.fadeInDate {
	animation-name:fadeIn;
	animation-duration:1.7s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 2.5s;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 0.5vw;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 20%;
}
#bridge #theater img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#bridge #event {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0.5vw 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #event img {
	width: 20%;
}
#bridge #event img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#bridge ul.brd-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
#bridge ul.brd-sns li {
	width: 4%;
	margin: 0 1.5%;
	text-align: center;
	font-size: 4vw;
}
#bridge ul.brd-sns li a {
	color:#E60012;
}
#bridge ul.brd-sns li a:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}





/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		background-color: #000;
	}
	#bridge #date {
		display: none;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0 1vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #event {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 1vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img ,
	#bridge #event img {
		width: 60%;
	}
	#bridge ul.brd-sns {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
	}
	#bridge ul.brd-sns li {
		width: 15%;
		margin: 0 1%;
		text-align: center;
		font-size: 12vw;
	}
}

/* ========================================
トレーラー
========================================== */
#trailer {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 8vw;
	background-color: #000;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#trailer .tra-new-unit {
	width: 40%;
	height: auto;
	margin: 2vw 2%;
	padding: 2vw 0;
}
#trailer .tra-new-unit h3 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 0;
	text-align: center;
	opacity: 0;
}
#trailer .tra-new-unit h3 img {
	width: auto;
	height: 2.4vw;
}
#trailer .tra-new-unit .video-loop {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#trailer .tra-new-unit .video-loop video {
	width: 80%;
}
#trailer .tra-new-unit .twitter-widget {
	display: inline-block;
	width: 80%;
	height: auto;
	margin: 0 10%;
	padding: 0;
}





/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#trailer {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0 10vw;
		background-color: #000;
	}
	#trailer .tra-new-unit {
		width: 100%;
		height: auto;
		margin: 5vw 0;
	}
	#trailer .tra-new-unit h3 img {
		width: auto;
		height: 6vw;	
	}
	#trailer .tra-new-unit .video-loop video {
		width: 70%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 510px) {
	#trailer {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0 25vw;
		background-color: #000;
	}
	#trailer .tra-new-unit {
		width: 100%;
		height: auto;
		margin: 8vw 0;
	}

	#trailer .tra-new-unit h3 img {
		width: auto;
		height: 6vw;	
	}
	#trailer .tra-new-unit .video-loop video {
		width: 90%;
	}
}



/* ========================================
モーダル
========================================== */
.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:#000;
	opacity: 0.85;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie__content {
    width: 70%;
	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 p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	text-align: left;
	font-size: 1.1vw;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
  } 
  .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
	.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 p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		text-align: left;
		font-size: 4vw;
	}


}


/* ========================================
イントロダクション
========================================== */
#intro {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5vw 0 0;
}
#intro #tate-intro-catch {
	width: 20%;
	height: auto;
	margin-left: 16%;
	padding: 20vw 0;
	opacity: 0;
}
#intro #tate-intro-catch img {
	width: 100%;
}
#intro .intro-story {
	width: 50%;
	height: auto;
	margin: 5vw 15% 15vw;
	padding: 3vw 10% 3vw;
}
#intro #intro-txt {
	background-color: rgba(0, 0, 0, 0.9);
}
#intro #story-txt {
	background-color: rgba( 230,0,18 , 0.9 );
}
#intro .intro-story h3 {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro #intro-txt h3 img {
	width: 50%;
}
#intro #story-txt h3 img {
	width: 22%;
}
#intro .intro-story p {
	width: 100%;
	height: auto;
	padding: 1vw 0;
	margin: 0;
	font-size: 1.2vw;
	color: #fff;
	opacity: 0;
}
#intro .intro-slide-wrap {
	width: 100%;
    height: auto;
	display: flex;
	align-items: center;
    overflow: hidden;
	opacity: 1;
}
.intro-slide-wrap .intro-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 30s infinite linear 1s both;
}
.intro-slide-wrap .intro-slide .content {
	width: 400px;
	height: auto;
}
.intro-slide-wrap .intro-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 0;
	}
	#intro #tate-intro-catch {
		width: 40%;
		height: auto;
		margin-left: 16%;
		padding: 150vw 0 60vw;
		opacity: 0;
	}
	#intro #tate-intro-catch img {
		width: 100%;
	}
	#intro .intro-story {
		width: 80%;
		height: auto;
		margin: 10vw 3% 70vw;
		padding: 15vw 7% 15vw;
	}
	#intro .intro-story h3 {
		width: 100%;
		height: auto;
		margin: 4vw 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-txt h3 img {
		width: 70%;
	}
	#intro #story-txt h3 img {
		width: 40%;
	}
	#intro .intro-story p {
		width: 100%;
		height: auto;
		padding: 1vw 0;
		margin: 0;
		font-size: 4vw;
		line-height: 7.5vw;
		color: #fff;
		opacity: 0;
	}
	.intro-slide-wrap .intro-slide .content {
		width: 300px;
		height: auto;
	}


}




/* ========================================
スタッフ
========================================== */
.fadeInUp {
	animation-name:fadeInUp;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
#staff {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 7vw 0 0;
	background-color: #eaedeb;
}
#staff h3 {
	width: 100%;
	height: auto;
	margin: 2vw 0 5vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff h3 img {
	width: 22%;
}
#staff h4 {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff h4 img {
	width: 12%;
}
#staff h5 {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff h5 img {
	width: 25%;
}
#staff #director-pic {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff #director-pic img {
	width: 25%;
}
#staff #director-name {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff #director-name img {
	width: 12%;
}
#staff p {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	color: #000;
	font-size: 1.2vw;
	opacity: 0;
}
#staff #director-filmo {
	width: 100%;
	height: auto;
	margin: 6vw 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff #director-filmo img {
	width: 20%;
}
#staff #filmo {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
	color: #000;
	font-size: 1.2vw;
	opacity: 0;
}
#staff h6 {
	width: 100%;
	height: auto;
	margin: 5vw 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff h6 img {
	width: auto;
	height: 2.5vw;
}
#staff .cast-unit {
	width: 60%;
	height: auto;
	margin: 2vw 20% 4vw;
	padding: 0;
}
#staff .cast-unit .cast-name {
	width: 100%;
	height: auto;
	margin: 1vw 0 0;
	font-size: 1.7vw;
	font-weight: bold;
	color: #000;
	text-align: center;
	opacity: 0;
}
#staff .cast-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.2vw;
	opacity: 0;
}
#staff .staff-slide-wrap {
	width: 100%;
    height: auto;
	margin: 10vw 0 0;
	display: flex;
	align-items: center;
    overflow: hidden;
	opacity: 1;
}
.staff-slide-wrap .staff-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 30s infinite linear 1s both;
}
.staff-slide-wrap .staff-slide .content {
	width: 400px;
	height: auto;
}
.staff-slide-wrap .staff-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#staff2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5vw 0;
	background-color: #000;
}
#staff #staff2 .staff-name {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	font-size: 1.7vw;
	font-weight: bold;
	color: #fff;
	opacity: 0;
}
#staff #staff2 .staff-name img {
	width: auto;
	height: 4vw;
}
#staff #staff2 p {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0 0 5vw;
	color: #fff;
	font-size: 1.2vw;
	opacity: 0;
}
#staff #staff2 #staff-bb {
	width: 100%;
	height: auto;
	padding: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#staff #staff2 #staff-bb img {
	width: 30%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 15vw 0 0;
	}
	#staff h3 {
		width: 100%;
		height: auto;
		margin: 4vw 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff h3 img {
		width: 60%;
	}
	#staff h4 {
		width: 100%;
		height: auto;
		margin: 15vw 0 5vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff h4 img {
		width: 50%;
	}
	#staff h5 {
		width: 100%;
		height: auto;
		margin: 5vw 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff h5 img {
		width: 95%;
	}
	#staff #director-pic {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff #director-pic img {
		width: 80%;
	}
	#staff #director-name {
		width: 100%;
		height: auto;
		margin: 5vw 0 3vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff #director-name img {
		width: 40%;
	}
	#staff h6 {
		width: 100%;
		height: auto;
		margin: 10vw 0 4vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff h6 img {
		width: auto;
		height: 6.2vw;
	}	
	#staff .cast-unit {
		width: 90%;
		height: auto;
		margin: 6vw 5% 12vw;
		padding: 0;
	}
	#staff .cast-unit .cast-name {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		font-size: 5vw;
		font-weight: bold;
		color: #000;
		text-align: center;
		opacity: 0;
	}
	#staff .cast-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 4vw;
		opacity: 0;
	}	
	#staff p {
		width: 90%;
		height: auto;
		margin: 0 5% 15vw;
		padding: 0;
		color: #000;
		font-size: 4vw;
		opacity: 0;
	}
	#staff #director-filmo {
		width: 100%;
		height: auto;
		margin: 6vw 0 2vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff #director-filmo img {
		width: 60%;
	}
	#staff #filmo {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		color: #000;
		font-size: 3.7vw;
		opacity: 0;
	}
	#staff .staff-slide-wrap {
		width: 100%;
		height: auto;
		margin: 20vw 0 0;
		display: flex;
		align-items: center;
		overflow: hidden;
		opacity: 1;
	}
	.staff-slide-wrap .staff-slide .content {
		width: 300px;
		height: auto;
	}
	#staff2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 40vw;
		background-color: #000;
	}
	#staff #staff2 .staff-name {
		width: 100%;
		height: auto;
		margin: 5vw 0 1vw;
		padding: 0;
		font-size: 5vw;
		color: #fff;
		font-weight: bold;
		text-align: center;
		opacity: 0;
	}
	#staff #staff2 .staff-name img {
		width: auto;
		height: 11vw;
	}
	#staff #staff2 p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0 0 15vw;
		color: #fff;
		font-size: 4vw;
		opacity: 0;
	}
	#staff #staff2 #staff-bb {
		width: 100%;
		height: auto;
		padding: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#staff #staff2 #staff-bb img {
		width: 90%;
	}
	
	
}


/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-delay: 2.6s;
}
#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) {
	.fadeInButton {
		animation-name:fadeIn;
		animation-duration:1.1s;
		animation-fill-mode:forwards;
		animation-delay: 2.6s;
	}
#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: #EAEDEB;
	position: relative;
}
footer #foot1 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	opacity: 0;
}
footer #foot2 ,
footer #foot3 ,
footer #foot4 ,
footer #foot5 ,
footer #foot6 {
	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 ,
footer #foot4 img ,
footer #foot5 img ,
footer #foot6 img {
	width:100%;
	height:auto;
	vertical-align: bottom;
}
.fadeInFoot1 {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
}
.fadeInFoot2 {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
	animation-delay: 0.6s;
}
.fadeInFoot3 {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
	animation-delay: 1.0s;
}
.fadeInFoot4 {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
	animation-delay: 1.4s;
}
.fadeInFoot5 {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
	animation-delay: 2.0s;
}
.fadeInFoot6 {
	animation-name:fadeIn;
	animation-duration:0.1s;
	animation-fill-mode:forwards;
	animation-delay: 2.4s;
}
footer #button-area {
	position: absolute;
	bottom: 5%;
	opacity: 0;
}
footer #copy {
	width:100%;
	height:auto;
	padding:5px 0;
	margin:0;
	text-align: center;
	color: #000;
	position: absolute;
	bottom: 0;
}

@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	footer #button-area {
		position: absolute;
		top: 57%;
		bottom: auto;
		opacity: 0;
	}

}
@media (max-width: 510px) {




}

