html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background-color: #000;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

@-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.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	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(10px);
	transform: scale(4);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes zoomIn {
	from {
	transform: scale(0);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		width:100%; 
		height:100vh;
		overflow-x:hidden;
	}
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:none;}
}
@media (max-width: 610px) {
	br.sponly2 {display:inline;}
}




/* ========================================
ローディング
========================================== */
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0.2s;
    transition-duration: 1s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.2s;
    transition-duration: 1.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
}
#loader {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	animation: loader 2.5s ease infinite;
}
#loader img {
	width:100%;
	height:auto;
	aspect-ratio: 1920 / 1080;
}
@keyframes loader {
	0% {opacity: 0;}
	20% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}


/* 非表示 */
.is-hidee {
    display: none;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#loader img {
		width:100%;
		height:auto;
		aspect-ratio: 1170 / 2300;
	}
}

@media (max-width: 600px) {

}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:12px 0 40px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #000 10%, 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;
	align-items: 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.5vw;
	line-height:1.5vw;
	letter-spacing: 1.5px;
	text-align: center;
	color: #f3981c;
	font-family: "futura-100", sans-serif;
	font-weight: 300;
	font-style: normal;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(0px);
	font-size: 1.6vw;
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 2.5vw;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.7vw;
	line-height:0.7vw;
	text-align: center;
	color: #fff;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;
	transform: translateY(-1.5vw);
}
#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: 100%;
}  
.global-nav {
	position: fixed;
	right: 0;
	top: -2000px;
	width: 100%;
	height: 100%;
	min-height: 100%;
	padding-top: 0px;
	background: url(../img/JC-menu-bg.jpg);
	background-size: cover;
	background-position: center bottom;
	z-index: 200000;
	display: flex;
	align-items: center;
}
.global-nav .global-nav-inner {
	width: 100%;
	height: auto;
	position: relative;
}
.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:0px 30% 5vw;
	padding:0;
	text-align:center;
	position: relative;
	mix-blend-mode: hard-light;
}  
.global-nav #menu-logo #menu-logo1 {
	width: 100%;
	height: auto;
}
.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: 0;
	text-decoration: none;	
	color: #fff;
	transition: all .6s;
	letter-spacing: 1px;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
	transform: translateY(-10px);
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #f3981c !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#f3981c;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 12%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#130801;
}
.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: 1024px) {
	#pcheader {
		display: none;
	}

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	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: 100%;
	min-height: 100%;
	padding: 0 0 10px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 10px 0 10px;
  }
  .global-nav__item {
	margin: 15px 0;
  }
  .global-nav__item a {
	display: block;
	padding: 1px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:3rem;
	line-height: 4.0rem;
	letter-spacing: 1.5px;
	color: #f3981c;
	font-family: "futura-100", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.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: 600px) {
	.global-nav {
		position: fixed;
		right: 0;
		top: -2000px;
		width: 100%;
		height: 100%;
		min-height: 100%;
		padding-top: 20px;
		background: url(../img/JC-menu-bg.jpg);
		background-size: cover;
		background-position: center bottom;
		z-index: 200000;
		display: flex;
		align-items: flex-start;
	}
	.global-nav #menu-logo {
		width:50%;
		height:auto;
		margin:0px 25% 10vw;
		padding:0;
		text-align:center;
		position: relative;
		mix-blend-mode: hard-light;
	}  
	.global-nav__item {
		margin: 20px 0 !important;
	}
	.global-nav__item a {
		display: block;
		padding: 1px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:1.9rem;
		line-height: 1.9rem;
		letter-spacing: 1.0px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav .nav-sns {
		margin: 10vw 0 0 !important;
	}
	.global-nav ul.nav-sns li {
		width: 12%;
		margin: 0 2%;
	}

	
}



/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	perspective: 300px;
	background-color: #000;
}
#top #top__bg1 {
	width: 100%;
	height: auto;
}
#top #top__bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#top #top__bg1 img ,
#top #top__bg2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__tate {
	width: 3.4%;
	height: auto;
	position: absolute;
	top: 8%;
	right: 9%;
	opacity: 0;
}
#top #top__award {
	width: 15%;
	height: auto;
	position: absolute;
	top: 6%;
	left: 2%;
	opacity: 0;
}
#top #movie {
	width: 25%;
	height: auto;
	position: absolute;
	top: 13%;
	left: 2%;
	opacity: 0;
}
#top #movie video {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#top #top__cranko {
	width: 32%;
	height: auto;
	position: absolute;
	top: 40%;
	left: 34%;
	opacity: 0;
	mix-blend-mode: hard-light;
}
#top #top__john {
	width: 18%;
	height: auto;
	position: absolute;
	top: 30%;
	left: 40.8%;
	opacity: 0;
}
#top #top__logo {
	width: 18%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 51%;
	left: 41%;
	opacity: 0;
}
#top #top__bb {
	width: 35%;
	height: auto;
	position: absolute;
	top: 61%;
	left: 32.5%;
	opacity: 0;
}
#top #top__copy {
	width: 47%;
	height: auto;
	position: absolute;
	bottom: 15%;
	right: 3%;
	opacity: 0;
}
#top #top__copy img {
	width: 100%;
	height: auto;
	aspect-ratio: 1155 / 70;
}
#top #top__bben {
	width: 43%;
	height: auto;
	position: absolute;
	bottom: 9%;
	right: 5%;
	opacity: 0;
}
#top #top__date {
	width: 66%;
	height: auto;
	position: absolute;
	bottom: 0%;
	left: 17%;
	opacity: 0;
}
#top #top__date img {
	width: 100%;
	height: auto;
	aspect-ratio: 1790 / 81;
}
@keyframes top__john {
	0% {
		transform: rotateX(70deg);
		transform-origin: top;
		opacity: 0;
	}
	100% {
		transform: rotateX(0deg);
		transform-origin: top;
		opacity: 1;
	}
}
.top__john {
	animation: top__john 0.9s ease-out 0.3s both;
}
@keyframes top__cranko {
	0% {
		transform: rotateX(100deg);
		transform-origin: bottom;
		opacity: 0;
	}
	100% {
		transform: rotateX(0);
		transform-origin: bottom;
		opacity: 1;
	}
}
.top__cranko {
	animation: top__cranko 0.9s ease-out 0.8s both;
}
.top-2nd-anime {
	animation: fadeIn 1.0s ease 1.7s forwards;
}
.top-last-anime {
	animation: fadeIn 1.5s ease 2.3s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top {
		width:100%;
		height:auto;
		padding:0 0 60vw;
		margin:0;
		position:relative;
		overflow: hidden;
		perspective: 300px;
		background-color: #000;
	}
	#top #top__bg1 img ,
	#top #top__bg2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__tate {
		width: 10%;
		height: auto;
		position: absolute;
		top: 3%;
		left: 6%;
		right: auto;
		opacity: 0;
	}
	#top #top__award {
		width: 38%;
		height: auto;
		position: absolute;
		top: 54%;
		left: auto;
		right: 1%;
		opacity: 0;
	}
	#top #top__cranko {
		width: 95%;
		height: auto;
		position: absolute;
		top: 28.5%;
		left: 2.5%;
		opacity: 0;
		mix-blend-mode: hard-light;
	}
	#top #top__john {
		width: 54%;
		height: auto;
		position: absolute;
		top: 22%;
		left: 23%;
		opacity: 0;
	}
	#top #top__logo {
		width: 56%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 36%;
		left: 22%;
		opacity: 0;
	}
	#top #top__bb {
		width: 86%;
		height: auto;
		position: absolute;
		top: 41.5%;
		left: 7%;
		opacity: 0;
	}
	#top #top__copy {
		width: 90%;
		height: auto;
		position: absolute;
		bottom: 32%;
		right: 5%;
		opacity: 0;
	}
	#top #top__copy img {
		width: 100%;
		height: auto;
		aspect-ratio: 1136 / 166;
	}
	#top #top__bben {
		width: 96%;
		height: auto;
		position: absolute;
		bottom: 27%;
		right: 2%;
		opacity: 0;
	}
	#top #top__date {
		display: none;
	}
	#top #movie {
		width: 96%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 1%;
		left: 2%;
		opacity: 0;
	}
	#top #movie video {
		width: 100%;
		height: auto;
		vertical-align: bottom;
		aspect-ratio: 1920 / 1080;
	}


}

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


}


/* ========================================
モーダル
========================================== */
.movie-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.movie-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal{
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11000;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.96;
}
.modal-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.modal__content {
    width: 40%;
	height: auto;
	box-sizing: border-box;
	border: 1px solid #fff;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content h3 {
	width: 100%;
	height: auto;
	margin: 0 0 20px;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}
.modal__content p {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: left;
	font-size: 1.1rem;
	line-height: 2rem;
	color: #fff;
}

.movie__content {
    width: 65%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.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;
}
.batsu {
	width: 5%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.movie__content {
		width: 100%;
		height: auto;
		padding: 1% 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.modal__content {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		border: 1px solid #fff;
		padding: 10vw 5vw;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}

	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	ul#movie-changer {
		margin: 30px 0 0;
	}

}



/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 5vw;
	background-color: #000;
	position: relative;
}
#bridge #br__date {
	display: none;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #theater img {
	width: 15%;
}
#bridge #mubi-banner {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #mubi-banner img {
	width: 20%;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #sns-link a {
	display: block;
	width: 11%;
	height: auto;
	margin: 0 1.0%;
}
#bridge #sns-link a:hover ,
#bridge #theater a:hover ,
#bridge #mubi-banner a:hover {
	animation: flash 1.5s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 10vw 0 5vw;
		background-color: #000;
		position: relative;
	}
	#bridge #br__date {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 13vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #br__date img {
		width: 80%;
		height: auto;
		aspect-ratio: 1056 / 296;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#bridge #theater img {
		width: 55%;
	}
	#bridge #mubi-banner {
		width: 100%;
		height: auto;
		margin: 0 0 13vw;
		text-align: center;
	}
	#bridge #mubi-banner img {
		width: 70%;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #sns-link a {
		display: block;
		width: 40%;
		height: auto;
		margin: 1vw 1.5%;
	}
}

/* ========================================
イントロダクション
========================================== */
#intro-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
	transition: 1.0s all;
}
#intro {
	width: 100%;
	height: auto;
	padding: 20vw 0 50vw;
}
#intro #intro__spbg {
	display: none;
}
#intro #intro__c1 {
	width: 36%;
	height: auto;
	margin: 0 32% -2.5vw;
	opacity: 0;
}
#intro #intro__c1 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1235 / 238;
}
#intro #intro__c2 {
	width: 40%;
	height: auto;
	margin: 0 30% 1vw;
	opacity: 0;
}
#intro #intro__c2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1273 / 121;
}
@keyframes intro__c2 {
	0% {transform: scaleX(0.4);opacity: 0;}
	100% {transform: scaleX(1);opacity: 1;}
}
.intro__c2 {
	animation: intro__c2 1.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}
#intro #intro__c3 {
	width: 40%;
	height: auto;
	margin: 20vw 30% 10vw;
	opacity: 0;
}
#intro #intro__c3 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1270 / 191;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 20%;
}
#intro p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 2px;
	font-feature-settings: "palt";
	opacity: 0;
}
#intro p span {
	font-size: 1.0vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg {
		display: none;
	}
	#intro {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 30vw;
		background-color: #fff;
		position: relative;
		overflow-x: hidden;
	}
	#intro #intro__spbg {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#intro #intro__spbg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 1025;
	}
	#intro #intro__c1 {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		position: absolute;
		top: 5vw;
	}
	#intro #intro__c1 img {
		width: 70%;
		height: auto;
		aspect-ratio: 1113 / 200;
	}
	#intro #intro__c2 {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		position: absolute;
		top: 80vw;
	}
	#intro #intro__c2 img {
		width: 98%;
		height: auto;
		aspect-ratio: 1150 / 85;
	}
	.intro__c2 {
		animation: intro__c2 1.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.3s both;
	}
	#intro #intro__c3 {
		width: 80%;
		height: auto;
		margin: 20vw 10% 20vw;
		opacity: 0;
	}
	#intro #intro__c3 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1121 / 315;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 60%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #000;
		font-size: 1.05rem;
		line-height: 2.1rem;
		letter-spacing: 1px;
		font-feature-settings: "palt";
		opacity: 0;
		font-weight: bolder;
	}
	#intro p span {
		font-size: 0.9rem;
		line-height: 1.8rem;
		letter-spacing: 1.2px;
	}

}


/* ========================================
ストーリー
========================================== */
#story-wrapper {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#story-bg1 {
	width: 100%;
	height: auto;
}
#story-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: story-bg2 10s ease infinite;
}
@keyframes story-bg2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#story {
	width: 100%;
	height: auto;
	padding: 12vw 0 0;
	position: absolute;
	top: 0%;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#story h2 img {
	width: 9%;
}
#story p {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
	font-weight: bold;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story-wrapper {
		display: contents;
	}
	#story-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
	}
	#story-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -28;
		animation: story-bg2 10s ease infinite;
	}
	#story-bg1 img ,
	#story-bg2 img {
		display: none;
	}
	#story {
		width: 100%;
		height: auto;
		padding: 50vw 0;
		position: static;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#story h2 img {
		width: 30%;
	}
	#story p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #000;
		font-size: 1.05rem;
		line-height: 2.1rem;
		letter-spacing: 1.0px;
		font-feature-settings: "palt";
	}
}

/* ========================================
スライダーエリア
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#slider-area .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#slider-area .slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider-area #slider1 .top-slide {
	animation: loop-slide-rev 200s infinite linear 0s both;
}
#slider-area #slider2 .top-slide {
	animation: loop-slide 200s infinite linear 0s both;
}
#slider-area #slider3 .top-slide {
	animation: loop-slide-rev 200s infinite linear 0s both;
}
#slider-area .slide-wrap .top-slide .content {
	width: 35vw;
	height: auto;
	margin: 0;
}
#slider-area .slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider-area #slider-logo {
	width: 25%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	mix-blend-mode: hard-light;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#slider-area #slider1 .top-slide {
		animation: loop-slide-rev 200s infinite linear 0s both;
	}
	#slider-area #slider2 .top-slide {
		animation: loop-slide 200s infinite linear 0s both;
	}
	#slider-area #slider3 .top-slide {
		animation: loop-slide-rev 200s infinite linear 0s both;
	}
	#slider-area .slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
		margin: 0;
	}
	#slider-area #slider-logo {
		width: 60%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#slider-area .slide-wrap .top-slide .content {
		width: 150vw;
		height: auto;
		margin: 0;
	}


}

/* ========================================
レビュー＆コメント
========================================== */
#rev-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
	opacity: 0;
	pointer-events: none;
	transition: 2.0s filter;
}
#rev-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -23;
	opacity: 0;
	pointer-events: none;
	transition: 2.0s filter;
}
#review {
	width: 100%;
	height: auto;
	padding: 30vw 0 10vw;
}
#review h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
}
#review h2 img {
	width: 10%;
}
#review #rev-list {
	width: 100%;
	height: auto;
}
#review #rev-list .review-image {
	width: 100%;
	height: auto;
	margin: 12vw 0 16vw;
	text-align: center;
}
#review #rev-list .review-image img {
	width: auto;
	height: 4.5vw;
}
#review #rev-list #rev1 img {
	aspect-ratio: 490 / 88;
}
#review #rev-list #rev2 img {
	aspect-ratio: 899 / 93;
}
#review #rev-list #rev3 img {
	aspect-ratio: 1090 / 88;
}
#review #rev-list #rev4 img {
	height: 7vw;
	aspect-ratio: 802 / 132;
}
#comment {
	width: 100%;
	height: auto;
	padding: 10vw 0 40vw;
	position: relative;
	z-index: -24;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
}
#comment h2 img {
	width: 16%;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	padding: 5vw 3vw;
	margin: 0 25% 10vw;
	background-color: rgba(0, 0, 0, 0.8);
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 2px;
	font-feature-settings: "palt";
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	color: #f3981c;
	text-align: right;
	font-size: 1.4vw;
	letter-spacing: 2px;
	font-feature-settings: "palt";
}
#comment .com-unit .name span {
	font-size: 1.0vw;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#review {
		width: 100%;
		height: auto;
		padding: 100vw 0 90vh;
	}
	#review h2 {
		width: 100%;
		height: auto;
		margin: 0 0 80vh;
		padding: 0;
		text-align: center;
	}
	#review h2 img {
		width: 35%;
	}
	#review #rev-list {
		width: 100%;
		height: auto;
	}
	#review #rev-list .review-image {
		width: 100%;
		height: auto;
		margin: 40vw 0;
		text-align: center;
	}
	#review #rev-list #rev1 img {
		width: 70%;
		height: auto;
	}
	#review #rev-list #rev2 img {
		width: 75%;
		height: auto;
	}
	#review #rev-list #rev3 img {
		width: 82%;
		height: auto;
	}
	#review #rev-list #rev4 img {
		width: 86%;
		height: auto;
	}
	#review #rev-list #rev1 img {
		aspect-ratio: 810 / 145;
	}
	#review #rev-list #rev2 img {
		aspect-ratio: 849 / 228;
	}
	#review #rev-list #rev3 img {
		aspect-ratio: 981 / 235;
	}
	#review #rev-list #rev4 img {
		aspect-ratio: 1016 / 319;
	}
	#comment {
		width: 100%;
		height: auto;
		padding: 10vw 0 90vh;
		position: relative;
		z-index: -24;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#comment h2 img {
		width: 50%;
	}
	#comment .com-unit {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 5vw;
		margin: 0 0 40vw;
		background-color: rgba(0, 0, 0, 0.7);
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 2px;
		font-feature-settings: "palt";
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		color: #f3981c;
		text-align: right;
		font-size: 1.4rem;
		letter-spacing: 2px;
		font-feature-settings: "palt";
	}
	#comment .com-unit .name span {
		font-size: 1.0rem;
	}


}

/* ========================================
スタッフ・キャスト
========================================== */
.staff-bgs {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	clip-path: inset(100% 0 0 0);
	pointer-events: none;
}
#staff-bg0 {
	background-color: #000;
	z-index: -20;
}
#staff-bg1 {
	z-index: -19;
	animation: staff-bg1 20s ease infinite;
}
@keyframes staff-bg1 {
	0% {opacity: 1;}
	23% {opacity: 1;}
	33% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
#staff-bg2 {
	z-index: -19;
	animation: staff-bg2 20s ease infinite;
}
@keyframes staff-bg2 {
	0% {opacity: 0;}
	23% {opacity: 0;}
	33% {opacity: 1;}
	56% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
#staff-bg3 {
	z-index: -19;
	animation: staff-bg3 20s ease infinite;
}
@keyframes staff-bg3 {
	0% {opacity: 0;}
	56% {opacity: 0;}
	66% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#staff {
	width: 100%;
	height: auto;
	padding: 30vw 0;
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	padding: 0;
	text-align: center;
}
#staff h2 img {
	width: 8%;
}
#staff h3 {
	width: 100%;
	height: auto;
	margin: 15vw 0 8vw;
	padding: 0;
	text-align: center;
}
#staff h3 img {
	width: 7%;
}
#staff .staff-unit {
	width: 60%;
	height: auto;
	box-sizing: border-box;
	padding: 5vw 5%;
	margin: 0 20% 10vw;
	background-color: rgba(0, 0, 0, 0.7);
}
#staff .staff-unit .name-jp {
	width: 100%;
	height: auto;
	text-align: center;
}
#staff .staff-unit .name-jp img {
	width: 50%;
}
#staff .staff-unit .photo {
	width: 100%;
	height: auto;
	margin: 0.5vw 0;
	text-align: center;
}
#staff .staff-unit .photo img {
	width: 50%;
}
#staff .staff-unit .name-en {
	width: 100%;
	height: auto;
	text-align: center;
}
#staff .staff-unit .name-en img {
	width: 35%;
}
#staff #staff3 .name-en img {
	width: 30%;
}
#staff #staff5 .name-en img {
	width: 30%;
}
#staff #staff6 .name-en img {
	width: 25%;
}
#staff .staff-unit .filmo {
	width: 80%;
	height: auto;
	margin: 2vw 10% 0;
}
#staff .staff-unit .filmo .title {
	width: 100%;
	height: auto;
	margin: 0.5vw 0;
	display: flex;
	justify-content: flex-start;
}
#staff .staff-unit .filmo .title .year {
	width: 10%;
	height: auto;
	margin-right: 1%;
	color: #fff;
	font-size: 1.1vw;
	letter-spacing: 1px;
	text-align: right;
}
#staff .staff-unit .filmo .title .name {
	width: 89%;
	height: auto;
	color: #fff;
	font-size: 1.1vw;
	letter-spacing: 1px;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff {
		width: 100%;
		height: auto;
		padding: 100vw 0;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 100vw;
		padding: 0;
		text-align: center;
	}
	#staff h2 img {
		width: 30%;
	}
	#staff h3 {
		width: 100%;
		height: auto;
		margin: 50vw 0 20vw;
		padding: 0;
		text-align: center;
	}
	#staff h3 img {
		width: 25%;
	}
	#staff .staff-unit {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 0;
		margin: 0 0 30vw;
		background-color: rgba(0, 0, 0, 0.7);
	}
	#staff .staff-unit .name-jp {
		width: 100%;
		height: auto;
		text-align: center;
	}
	#staff .staff-unit .name-jp img {
		width: 90%;
	}
	#staff .staff-unit .photo {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		text-align: center;
	}
	#staff .staff-unit .photo img {
		width: 100%;
	}
	#staff .staff-unit .name-en {
		width: 100%;
		height: auto;
		text-align: center;
	}
	#staff .staff-unit .name-en img {
		width: 70%;
	}
	#staff #staff3 .name-en img {
		width: 60%;
	}
	#staff #staff5 .name-en img {
		width: 60%;
	}
	#staff #staff6 .name-en img {
		width: 50%;
	}
	#staff .staff-unit .filmo {
		width: 94%;
		height: auto;
		margin: 10vw 3% 0;
	}
	#staff .staff-unit .filmo .title {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		display: flex;
		justify-content: flex-start;
	}
	#staff .staff-unit .filmo .title .year {
		width: 15%;
		height: auto;
		margin: 0 2% 0 0;
		color: #fff;
		font-size: 1rem;
		letter-spacing: 1px;
	}
	#staff .staff-unit .filmo .title .name {
		width: 83%;
		height: auto;
		color: #fff;
		font-size: 1rem;
		letter-spacing: 1px;
	}



}

/* ========================================
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:1vw 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:#000;
}
#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: 1024px) {
	#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 #footer__bg {
	width:100%;
	height:auto;
}
footer #footer__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 980;
}
footer .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	mix-blend-mode: screen;
	opacity: 0;
}
footer .slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	animation: loop-slide 200s infinite linear 0s both;
}
footer .slide-wrap .top-slide .content {
	width: 100vw;
	height: auto;
	margin: 0;
}
footer .slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer #foot__logo {
	width: 21%;
	height: auto;
	position: absolute;
	top: 40%;
	left: 18%;
	mix-blend-mode: hard-light;
	opacity: 0;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot__logo {
	animation: fadeIn 1.0s ease 0s forwards;
}
.foot-slider {
	animation: fadeIn 1.0s ease 0.7s forwards;
}
.footer__bg {
	animation: none;
}



@media (max-width: 1024px) {
	footer #footer__bg {
		width:100%;
		height:auto;
		filter: brightness(0%);
	}
	footer #footer__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	footer .slide-wrap {
		display: none;
	}
	footer #foot__logo {
		width: 80%;
		height: auto;
		position: absolute;
		top: 45%;
		left: 10%;
		mix-blend-mode: hard-light;
		opacity: 1;
	}
	.foot__logo {
		animation: none;
	}
	@keyframes footer__bg {
		0% {filter: brightness(0%);}
		100% {filter: brightness(100%);}
	}
	.footer__bg {
		animation: footer__bg 1.5s ease 0s forwards;
	}
	.foot-slider {
		animation: fadeIn 1.0s ease 0.7s forwards;
	}

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

}

