html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: 'Yu Gothic UI','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	width:100%; 
	height:100%;
	overflow-x:hidden;
}
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;
	}
}
.fadeOut {
	animation: fadeOut 1.0s ease forwards;
}
@keyframes zoomIn {
	0% {transform: scale(0);opacity: 0;}
	98% {transform: scale(1.1);opacity: 1;}
	100% {transform: scale(1);opacity: 1;}
}
@keyframes bigIn {
	0% {transform: scale(6);opacity: 0;}
	98% {transform: scale(0.95);opacity: 1;}
	100% {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;}
}




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

/* 非表示 */
.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.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;
	display: grid;
    place-items: center;
}
#loader {
	width:30%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:auto;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #000;
	}
	#loader {
		width:100%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
		text-align:center;
	}
	#loader {
		width:80%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
	}
	

}

/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    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.8;
}
.modal__bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.9;
}
.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;
}
.movie__content .movie-btn {
	width: 30%;
	height: auto;
	margin: 0 0.5%;
	padding: 5px 0;
	text-align: center;
	background-color: #fff;
	border: 1px solid #fff;
	color: #0672A2;
	font-size: 0.9vw;
}
.movie__content .activee {
	background: #0672A2;
	border: 1px solid #0672A2;
	color: #fff;
}
.movie__content .movie-btn i {
	display: none;
}
.movie__content .activee i {
	display: inline;
}
.movie-btn:hover {
	background: #0672A2;
	border: 1px solid #0672A2;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}
.pre__content {
    width: 100%;
	height: auto;
    padding: 5vw 0;
	box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.pre__content h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
.pre__content h2 img {
	width: 20%;
}
.pre__content p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}
.pre__content p span {
	font-size: 1rem;
}
.pre__content .pre-img {
	width: 100%;
	height: auto;
	text-align: center;
}
.pre__content .pre-img img {
	width: 22%;
}
.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%);
	}
	.pre__content {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		box-sizing: border-box;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.pre__content h2 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
	}
	.pre__content h2 img {
		width: 70%;
	}
	.pre__content p {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
		color: #fff;
		font-size: 1.3rem;
		font-weight: bold;
	}
	.pre__content p span {
		font-size: 1rem;
	}
	.pre__content .pre-img {
		width: 100%;
		height: auto;
		text-align: center;
	}
	.pre__content .pre-img img {
		width: 80%;
	}

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

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

}

/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:10px 0 30px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #0d0a0e, 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 0.8%;
	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.4vw;
	line-height:1.4vw;
	letter-spacing: 1.0px;
	text-align: center;
	color: #fff;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 900;
	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: #000;
	background-size: cover;
	background-position: center center;
	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: 300;
	opacity:0;
}  
.global-nav #menu-logo {
	width:70%;
	height:auto;
	margin:0px 15% 1vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.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: #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: 10vw 0 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 16%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#201519;
}
.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:3.0rem;
	line-height: 3.0rem;
	letter-spacing: 1.5px;
	color: #fff;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 900;
	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__item {
		margin: 25px 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.5rem;
		line-height: 1.9rem;
		letter-spacing: 1.2px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}

	
	
}



/* ========================================
fire BG
========================================== */
#particles-js {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	pointer-events: none;
}

/* ========================================
トップ
========================================== */
#black-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -31;
}

#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#top #top__bg {
	width: 100%;
	height: auto;
}
#top #top__topcatch {
	width: 55%;
	height: auto;
	position: absolute;
	top: 2%;
	left: 23%;
	opacity: 0;
}
#top #top__cast {
	width: 20%;
	height: auto;
	position: absolute;
	top: 6%;
	left: 41%;
	opacity: 0;
}
#top #top__center1 {
	width: 20%;
	height: auto;
	position: absolute;
	top: 24%;
	left: 41%;
	text-align: center;
	opacity: 0;
}
#top #top__center1 img {
	width: 80%;
}
#top #top__center2 {
	width: 20%;
	height: auto;
	position: absolute;
	top: 40.5%;
	left: 41%;
	text-align: center;
	opacity: 0;
}
#top #top__center2 img {
	width: 40%;
}
#top #top__center3 {
	width: 20%;
	height: auto;
	position: absolute;
	top: 53%;
	left: 41%;
	text-align: center;
	opacity: 0;
}
#top #top__center3 img {
	width: 46%;
}
#top #top__title {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 63%;
	left: 0;
	text-align: center;
	opacity: 0;
}
#top #top__title img {
	width: 35.5%;
}
#top #billing-sp {
	display: none;
}
#top #top__bottom {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0%;
	left: 0%;
	text-align: center;
	opacity: 0;
}
#top #top__bottom img {
	width: 74%;
}
@keyframes top__topcatch {
	0% {
	opacity: 0;
	transform: scale(20);
	}
	97% {opacity: 1;transform: scale(0.90);}
	100% {
	opacity: 1;
	transform: scale(1);
	}
}
.top__topcatch {
	animation: top__topcatch 0.3s ease-in 0.4s forwards;
}
.top__center1 {
	animation: fadeIn 0.5s ease-in 0.7s forwards;
}
.top__center2 {
	animation: fadeIn 0.5s ease-in 1.0s forwards;
}
.top__center3 {
	animation: fadeIn 0.5s ease-in 1.3s forwards;
}
.top__title {
	animation: fadeIn 1.2s ease-in 1.8s forwards;
}
.top-last-anime {
	animation: fadeIn 1.0s ease-in 2.5s forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__topcatch {
		width: 96%;
		height: auto;
		position: absolute;
		top: 4.5%;
		left: 2%;
		opacity: 0;
	}
	#top #top__cast {
		width: 60%;
		height: auto;
		position: absolute;
		top: 5%;
		left: 20%;
		opacity: 0;
	}
	#top #top__center1 {
		width: 42%;
		height: auto;
		position: absolute;
		top: 22%;
		left: 29%;
		text-align: center;
		opacity: 0;
	}
	#top #top__center1 img {
		width: 100%;
	}
	#top #top__center2 {
		width: 22%;
		height: auto;
		position: absolute;
		top: 35%;
		left: 39%;
		text-align: center;
		opacity: 0;
	}
	#top #top__center2 img {
		width: 100%;
	}
	#top #top__center3 {
		width: 24%;
		height: auto;
		position: absolute;
		top: 45%;
		left: 38%;
		text-align: center;
		opacity: 0;
	}
	#top #top__center3 img {
		width: 100%;
	}
	#top #top__title {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 53%;
		left: 0;
		text-align: center;
		opacity: 0;
	}
	#top #top__title img {
		width: 74%;
	}
	#top #billing-sp {
		display: block;
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 69%;
		left: 0;
		opacity: 0;
	}
	#top #billing-sp img {
		width: 80%;
	}
	#top #top__bottom {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 6%;
		left: 0%;
		text-align: center;
		opacity: 0;
	}
	#top #top__bottom img {
		width: 94%;
	}


}





/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 1vw 0 5vw;
	position: relative;
}
#bridge #billing {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	opacity: 0;
}
#bridge #billing img {
	width: 30%;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 50%;
}
#bridge #round-banners {
	width: 25%;
	height: auto;
	position: absolute;
	top: -5%;
	left: 68%;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #round-banners a {
	display: block;
	width: 35%;
	height: auto;
	margin: 0 2%;
}
#bridge #round-banners a:hover {
	transform: rotate(10deg);
	transition: 0.5s all;
}

#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 15%;
}
#bridge #mubi-banner {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #mubi-banner img {
	width: 15%;
}
#bridge #theater a:hover ,
#bridge #mubi-banner a:hover {
	animation: flash 1.0s;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	opacity: 0;
	display: flex;
	justify-content: center;
}
#bridge #sns-link a {
	display: block;
	width: 4%;
	height: auto;
	margin: 0 1%;
}
#bridge #sns-link a:hover {
	animation: flash 1.0s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 0 0 5vw;
		background-color: #000;
		position: relative;
		z-index: 0;
	}
	#bridge #billing {
		display: none;
	}
	#bridge #date {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #date img {
		width: 88%;
	}
	#bridge #round-banners {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		position: static;
		display: flex;
		justify-content: center;
	}
	#bridge #round-banners a {
		display: block;
		width: 35%;
		height: auto;
		margin: 0 2%;
	}

	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #mubi-banner {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #mubi-banner img {
		width: 60%;
	}

	#bridge #sns-link {
		width: 100%;
		height: auto;
		opacity: 0;
		display: flex;
		justify-content: center;
	}
	#bridge #sns-link a {
		display: block;
		width: 12%;
		height: auto;
		margin: 0 2%;
	}
	
		
}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 7vw;
	overflow: hidden;
	position: relative;
	z-index: 5;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1.5vw;
	text-align: center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width: 12%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}
.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%;
}
.trailer ul#movie-changer {
	width: 60%;
	height: auto;
	margin: 10px 20%;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.movie-btn {
	width: 30%;
	height: auto;
	margin: 0 1%;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fe0505;
	color: #fe0505;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 5vw;
		position: relative;
		text-align: center;
	}
	.trailer h2 img {
		width: 30%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	.video {
		width:90%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 5% 10px;
		display:block;
	}
	.trailer ul#movie-changer {
		width: 100%;
		height: auto;
		margin: 10px 0;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: center;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 10vw;
	}
	.trailer h2 {
		width:99%;
		height:auto;
		padding:0;
		margin:0 0 5vw 1%;
		position: relative;
	}
	.trailer h2 img {
		width: 35%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}


}


/* ========================================
ストーリー＆イントロダクション
========================================== */
#intro-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
	clip-path: inset(100% 0 0 0);
	filter: brightness(100%);
	transition: filter 1.0s;
}
#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	opacity: 0;
	filter: brightness(40%);
	transition: 1.0s all;
}
#intro-tail1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
	clip-path: inset(100% 0 0 0);
}
#intro-tail2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -24;
	clip-path: inset(100% 0 0 0);
}
#intro-tail3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -23;
	clip-path: inset(100% 0 0 0);
}
#intro-red2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -22;
	mix-blend-mode: screen;
	clip-path: inset(100% 0 0 0);
	animation: red 3.0s ease infinite;
}
#intro-red3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -21;
	mix-blend-mode: screen;
	clip-path: inset(100% 0 0 0);
	animation: red 3.0s ease 1.0s infinite;
}
@keyframes red {
	0% {opacity: 0;}
	40% {opacity: 1;}
	60% {opacity: 1;}
	100% {opacity: 0;}
}
#intro {
	width: 100%;
	height: auto;
	padding: 30vw 0 20vw;
	position: relative;
	z-index: -27;
	overflow: hidden;
}
#intro #intro-c1 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
}
#intro #intro-c1 #intro-c1__spbg {
	display: none;
}
#intro #intro-c1 #intro-c1__headline {
	width: 100%;
	height: auto;
	text-align: center;
	opacity: 0;
}
#intro #intro-c1 #intro-c1__headline img {
	display: inline-block;
	width: 60%;
	height: auto;
	aspect-ratio: 1230 / 149;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 30%;
}
#intro #intro-sc1 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-sc1 img {
	width: 20%;
}
#intro #intro-sc2 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-sc2 img {
	width: 20%;
}
#intro #intro-sc3 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-sc3 img {
	width: 24%;
}
#intro #intro-sc4 {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-sc4 img {
	width: 16%;
}
#intro p {
	width: 40%;
	height: auto;
	margin: 0 30%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.4vw;
	letter-spacing: 1.5px;
	opacity: 0;
}
#intro h3 {
	width: 100%;
	height: auto;
	margin: 15vw 0 7vw;
	text-align: center;
	opacity: 0;
}
#intro h3 #story-head-spbg {
	display: none;
}
#intro h3 #story-head {
	width: 100%;
	height: auto;
	text-align: center;
}
#intro h3 #story-head img {
	width: 12%;
}
#intro #intro-trg2 {
	width: 100%;
	height: 1px;
	margin: 3vw 0 0;
}

.BigIn {
	animation: bigIn 0.3s ease-in forwards;
}
.ZoomIn {
	animation: zoomIn 0.4s ease-in forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg1 ,
	#intro-bg2 {
		display: none;
	} 
	#intro {
		width: 100%;
		height: auto;
		padding: 30vw 0 50vw;
		position: relative;
		z-index: -27;
		overflow: hidden;
	}
	#intro #intro-c1 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0 0 60vw;
		position: relative;
	}
	#intro #intro-c1 #intro-c1__spbg {
		display: block;
		width: 100%;
		height: auto;
	}
	#intro #intro-c1 #intro-c1__headline {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		bottom: 10%;
		opacity: 0;
	}
	#intro #intro-c1 #intro-c1__headline img {
		display: inline-block;
		width: 80%;
		height: auto;
		aspect-ratio: 1116 / 720;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 70%;
	}
	#intro #intro-sc1 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-sc1 img {
		width: 60%;
	}
	#intro #intro-sc2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-sc2 img {
		width: 60%;
	}
	#intro #intro-sc3 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-sc3 img {
		width: 80%;
	}
	#intro #intro-sc4 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-sc4 img {
		width: 50%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#intro h3 {
		width: 100%;
		height: auto;
		margin: 30vw 0 12vw;
		text-align: center;
		position: relative;
		opacity: 0;
	}
	#intro h3 #story-head-spbg {
		display: block;
		width: 100%;
		height: auto;
	}
	#intro h3 #story-head {
		width: 40%;
		height: auto;
		position: absolute;
		top: 40%;
		left: 50%;
	}
	#intro h3 #story-head img {
		width: 100%;
	}
	#intro #intro-trg2 {
		width: 100%;
		height: 1px;
		margin: 3vw 0 0;
	}

}

/* ========================================
レビュー
========================================== */
#review {
	width: 100%;
	height: auto;
	padding: 5vw 0 0;
	background-color: #000;
	position: relative;
}
#review #rev-redlight {
	width: 100%;
	height: auto;
}
#review #rev-redlight img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 279;
}
#review #bottom-redlight {
	width: 100%;
	height: auto;
	margin: 5vw 0 0;
}
#review #bottom-redlight img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 279;
}
#review .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	opacity: 1;
}
#review #slider1 {
	position: absolute;
	top: 5vw;
}
#review #slider2 {
	position: absolute;
	bottom: 5vw;
}
#review .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#review #slider1 .top-slide {
	animation: loop-slide-rev 100s infinite linear 0s both;
}
#review #slider2 .top-slide {
	animation: loop-slide 100s infinite linear 0s both;
}
#review .top-slide-wrap .top-slide .content {
	width: 25vw;
	height: auto;
	margin: 0 1vw;
}
#review .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	aspect-ratio: 900 / 500;
}
#review h2#com-head {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 10vw 0 0;
	text-align: center;
	opacity: 0;
}
#review h2#com-head img {
	display: inline-block;
	width: 18%;
	height: auto;
	aspect-ratio: 946 / 164;
}
#review #junf {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	text-align: center;
	color: #fff;
	font-size: 1vw;
}
#review .com-unit {
	width: 40%;
	height: auto;
	margin: 0 30% 10vw;
	opacity: 0;
}
#review .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	font-family: "toppan-bunkyu-midashi-min-st", serif;
	font-weight: 900;
	font-style: normal;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.4vw;
	letter-spacing: 1.2px;
}
#review .com-unit .name {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	font-family: "toppan-bunkyu-midashi-min-st", serif;
	font-weight: 900;
	font-style: normal;
	color: #ff0000;
	font-size: 1.4vw;
	letter-spacing: 1.2px;
	text-align: right;
}
#review .com-unit .name span {
	font-size: 1.1vw;
}
#review h2#rev-head {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 5vw 0 0;
	text-align: center;
	opacity: 0;
}
#review h2#rev-head img {
	display: inline-block;
	width: 14%;
	height: auto;
	aspect-ratio: 824 / 189;
}
#review .rev-unit {
	width: 100%;
	height: auto;
	margin: 3vw 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "toppan-bunkyu-midashi-min-st", serif;
	font-weight: 900;
	font-style: normal;
	opacity: 0;
}
#review .rev-unit p {
	width: auto;
	margin: 0 0.5vw;
	color: #fff;
	font-size: 1.5vw;
	line-height: 1.5vw;
	letter-spacing: 1.5px;
	font-weight: bold;
}
#review .rev-unit .line {
	width: 3vw;
	height: auto;
	margin: 0;
	border-bottom: 2px solid #fff;
}
#review .rev-unit .name {
	width: auto;
	margin: 0 0.5vw;
	color: #ff0000;
	font-size: 1.5vw;
	line-height: 1.5vw;
	letter-spacing: 1.5px;
	font-weight: bold;
}
#review #rev-end {
	width: 100%;
	height: 1px;
	margin: 5vw 0 0;
}
#review #cast-link {
	display: none;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#review {
		width: 100%;
		height: auto;
		padding: 0;
		background-color: #000;
		position: relative;
	}
	#review #rev-redlight img {
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 502;
	}
	#review #bottom-redlight {
		width: 100%;
		height: auto;
		margin: 40vw 0 0;
	}
	#review #bottom-redlight img {
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 502;
	}
	#review .top-slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
		opacity: 1;
		position: absolute;
	}
	#review #slider1 {
		top: 0;
	}
	#review #slider2 {
		bottom: 0;
	}
	#review #slider1 .top-slide {
		animation: loop-slide-rev 50s infinite linear 0s both;
	}
	#review #slider2 .top-slide {
		animation: loop-slide 50s infinite linear 0s both;
	}
	#review .top-slide-wrap .top-slide .content {
		width: 70vw;
		height: auto;
		margin: 0 5vw;
	}
	#review .top-slide-wrap .top-slide .content img {
		aspect-ratio: 900 / 640;
	}
	#review h2#com-head {
		width: 100%;
		height: auto;
		margin: 30vw 0 5vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#review h2#com-head img {
		display: inline-block;
		width: 45%;
		height: auto;
		aspect-ratio: 946 / 164;
	}
	#review #junf {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		text-align: center;
		color: #fff;
		font-size: 1rem;
	}
	#review .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
		opacity: 0;
	}
	#review .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		font-family: "toppan-bunkyu-midashi-min-st", serif;
		font-weight: 900;
		font-style: normal;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
	}
	#review .com-unit .name {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		font-family: "toppan-bunkyu-midashi-min-st", serif;
		font-weight: 900;
		font-style: normal;
		color: #ff0000;
		font-size: 1.3rem;
		letter-spacing: 1.2px;
		text-align: right;
	}
	#review .com-unit .name span {
		font-size: 1rem;
	}
	#review h2#rev-head {
		width: 100%;
		height: auto;
		margin: 30vw 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#review h2#rev-head img {
		display: inline-block;
		width: 40%;
		height: auto;
		aspect-ratio: 824 / 189;
	}





	#review h2 {
		width: 100%;
		height: auto;
		margin: 30vw 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#review h2 img {
		display: inline-block;
		width: 40%;
		height: auto;
		aspect-ratio: 824 / 189;
	}
	#review .rev-unit {
		width: 100%;
		height: auto;
		margin: 12vw 0;
		display: flex;
		justify-content: center;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#review .rev-unit p {
		width: 100%;
		margin: 0 0 3vw;
		color: #fff;
		font-size: 1.2rem;
		line-height: 1.5rem;
		letter-spacing: 1.5px;
		font-weight: bold;
		text-align: center;
	}
	#review .rev-unit .line {
		width: 6%;
		height: auto;
		margin: 0;
		border-bottom: 2px solid #fff;
	}
	#review .rev-unit .name {
		width: auto;
		margin: 0 1vw;
		color: #ff0000;
		font-size: 1.2rem;
		line-height: 1.5rem;
		letter-spacing: 1.5px;
		font-weight: bold;
	}
	#review #cast-link {
		display: block;
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 30vw;
	}


}


/* ========================================
キャスト
========================================== */
#cast-bg1 {
	width: 110%;
	height: 110%;
	min-height: 110%;
	background-size: cover;
	background-position: center center;
	pointer-events: none;
	position: fixed;
	top: -3%;
	left: -3%;
	z-index: -10;
	opacity: 0;
	transition: 0.5s opacity, 1.0s filter;
}
#cast-bg2 {
	width: 110%;
	height: 110%;
	min-height: 110%;
	background-size: cover;
	background-position: center center;
	pointer-events: none;
	position: fixed;
	top: -3%;
	left: -3%;
	z-index: -9;
	filter: blur(15px);
	opacity: 0;
	transition: 0.5s opacity;
}
#cast-bg3 {
	width: 110%;
	height: 110%;
	min-height: 110%;
	background-size: cover;
	background-position: center center;
	pointer-events: none;
	position: fixed;
	top: -3%;
	left: -3%;
	z-index: -8;
	filter: blur(15px);
	opacity: 0;
	transition: 0.5s opacity;
}
#cast-bg4 {
	width: 110%;
	height: 110%;
	min-height: 110%;
	background-size: cover;
	background-position: center center;
	pointer-events: none;
	position: fixed;
	top: -3%;
	left: -3%;
	z-index: -7;
	filter: blur(15px);
	opacity: 0;
	transition: 0.5s opacity , 3.0s filter;
}
#cast {
	width: 100%;
	height: auto;
	padding: 10vw 0 10vw;
	overflow: hidden;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 10vw 0 0;
	text-align: center;
}
#cast h2 img {
	display: inline-block;
	width: 10%;
	height: auto;
	aspect-ratio: 806 / 285;
}
#cast .cast-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 2vw;
	padding: 30vw 0 0;
	position: relative;
	display: flex;
	flex-direction: column;
}
#cast .cast-unit .cast-photo {
	width: 80%;
	height: auto;
	margin: 0 10%;
	transition: 0.8s all 0.3s;
}
#cast .cast-unit .cast-photo img {
	display: inline-block;
	width: 100%;
	height: auto;
	aspect-ratio: 1000 / 1000;
}
#cast .cast-unit #cast-photo1 {
	margin-bottom: -20vw;
}
#cast .cast-unit #cast-photo2 {
	margin-bottom: -15vw;
}
#cast .cast-unit #cast-photo3 {
	margin-bottom: -15vw;
}
#cast .cast-unit #cast-photo4 {
	margin-bottom: -10vw;
}
#cast .cast-unit .cast-txt {
	width: 100%;
	height: auto;
	position: relative;
	opacity: 0;
	transition: 0.8s all 1.0s;
}
#cast .cast-unit .cast-txt .cast-name {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#cast .cast-unit .cast-txt .cast-name img {
	display: inline-block;
	width: 50%;
	height: auto;
	aspect-ratio: 1032 / 355;
}
#cast .cast-unit .cast-txt p {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
}
#cast h3 {
	width: 100%;
	height: auto;
	margin: 0 0 -2vw;
	padding: 15vw 0 0;
	text-align: center;
	position: relative;
}
#cast h3 img {
	display: inline-block;
	width: 12%;
	height: auto;
	aspect-ratio: 727 / 215;
}
#cast #staff1 .cast-name img ,
#cast #staff2 .cast-name img {
	display: inline-block;
	width: 40%;
	height: auto;
	aspect-ratio: 887 / 309;
}
#cast #staff1 ,
#cast #staff2 {
	margin: 0 25% 2vw;
	padding: 10vw 0 0;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 0 0 40vw;
		overflow: hidden;
		position: relative;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 40vw 0 0;
		text-align: center;
	}
	#cast h2 img {
		display: inline-block;
		width: 30%;
		height: auto;
		aspect-ratio: 806 / 285;
	}
	#cast .cast-unit {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 80vw 0 0;
		position: relative;
		display: flex;
		flex-direction: column;
	}
	#cast .cast-unit .cast-photo {
		width: 100%;
		height: auto;
		margin: 0;
		transition: 0.8s all 0.3s;
	}
	#cast .cast-unit .cast-photo img {
		display: inline-block;
		width: 100%;
		height: auto;
		aspect-ratio: 1000 / 1000;
	}
	#cast .cast-unit #cast-photo1 {
		margin-bottom: 10vw;
	}
	#cast .cast-unit #cast-photo2 {
		margin-bottom: 10vw;
	}
	#cast .cast-unit #cast-photo3 {
		margin-bottom: 10vw;
	}
	#cast .cast-unit #cast-photo4 {
		margin-bottom: 10vw;
	}
	#cast .cast-unit .cast-txt {
		width: 100%;
		height: auto;
		position: relative;
		opacity: 0;
		transition: 0.8s all 1.0s;
	}
	#cast .cast-unit .cast-txt .cast-name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#cast .cast-unit .cast-txt .cast-name img {
		display: inline-block;
		width: 80%;
		height: auto;
		aspect-ratio: 1032 / 355;
	}
	#cast .cast-unit .cast-txt p {
		width: 90%;
		height: auto;
		margin: 2vw 5%;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
	}
	#cast h3 {
		width: 100%;
		height: auto;
		margin: 30vw 0 2vw;
		padding: 20vw 0 0;
		text-align: center;
		position: relative;
	}
	#cast h3 img {
		display: inline-block;
		width: 35%;
		height: auto;
		aspect-ratio: 727 / 215;
	}
	#cast #staff1 .cast-name img ,
	#cast #staff2 .cast-name img {
		display: inline-block;
		width: 60%;
		height: auto;
		aspect-ratio: 887 / 309;
	}
	#cast #staff1 ,
	#cast #staff2 {
		margin: 0 0 2vw;
		padding: 30vw 0 0;
	}

}


/* ========================================
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:#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: 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;
	overflow: hidden;
}
footer #footer__inner {
	width: 100%;
	height: auto;
	position: relative;
	top: 7vw;
}
footer #foot-bg1 {
	width:100%;
	height:auto;
}
footer #foot-bg2 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-bg1 img ,
footer #foot-bg2 img {
	display: inline-block;
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
footer #foot-logo {
	width: 40%;
	height: auto;
	position: absolute;
	top: 23%;
	left: 30%;
	opacity: 0;
}
footer #foot-logo img {
	display: inline-block;
	width: 100%;
	height: auto;
	aspect-ratio: 1072 / 508;
}
footer #button-area {
	position: absolute;
	bottom: 7vw;
	opacity: 0;
}
footer #foot-red1 {
	width: 22%;
	height: auto;
	mix-blend-mode: screen;
	position: absolute;
	top: 29%;
	right: 0%;
	opacity: 0;
}
footer #foot-red2 {
	width: 19%;
	height: auto;
	mix-blend-mode: screen;
	position: absolute;
	bottom: -4%;
	right: 23%;
	opacity: 0;
}
footer #foot-red3 {
	width: 20%;
	height: auto;
	mix-blend-mode: screen;
	position: absolute;
	top: 43%;
	left: 10%;
	opacity: 0;
}
footer #foot-red4 {
	width: 20%;
	height: auto;
	mix-blend-mode: screen;
	position: absolute;
	bottom: 4%;
	right: 30%;
	opacity: 0;
}
footer #foot-red5 {
	width: 20%;
	height: auto;
	mix-blend-mode: screen;
	position: absolute;
	bottom: 4%;
	left: -5%;
	opacity: 0;
}

.foot1 {
	animation: fadeIn 1.5s ease 0.5s forwards;
}
.foot2 {
	animation: fadeIn 1.0s ease 1.4s forwards;
}
.foot3 {
	animation: fadeIn 1.0s ease 2.1s forwards;
}
.foot-red1 {
	animation: red 3.0s ease 2.0s infinite;
}
.foot-red2 {
	animation: red 2.0s ease 1.8s infinite;
}
.foot-red3 {
	animation: red 3.5s ease 2.2s infinite;
}
.foot-red4 {
	animation: red 2.5s ease 2.8s infinite;
}
.foot-red5 {
	animation: red 1.8s ease 2.1s infinite;
}



@media (max-width: 1024px) {
	footer #footer__inner {
		width: 100%;
		height: auto;
		position: relative;
		top: 60vw;
	}
	footer #foot-bg1 {
		width:100%;
		height:auto;
	}
	footer #foot-bg2 {
		width:100%;
		height:auto;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	footer #foot-bg1 img ,
	footer #foot-bg2 img {
		display: inline-block;
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	footer #foot-logo {
		width: 70%;
		height: auto;
		position: absolute;
		top: 23%;
		left: 15%;
		opacity: 0;
	}
	footer #foot-logo img {
		display: inline-block;
		width: 100%;
		height: auto;
		aspect-ratio: 1072 / 508;
	}
	footer #button-area {
		position: absolute;
		bottom: 60vw;
		opacity: 0;
	}
	footer #foot-red1 {
		width: 30%;
		height: auto;
		mix-blend-mode: screen;
		position: absolute;
		top: auto;
		bottom: 19%;
		right: 0%;
		opacity: 0;
	}
	footer #foot-red2 {
		width: 30%;
		height: auto;
		mix-blend-mode: screen;
		position: absolute;
		bottom: 17%;
		right: 25%;
		opacity: 0;
	}
	footer #foot-red3 {
		width: 20%;
		height: auto;
		mix-blend-mode: screen;
		position: absolute;
		top: 43%;
		left: 10%;
		opacity: 0;
	}
	footer #foot-red4 {
		width: 20%;
		height: auto;
		mix-blend-mode: screen;
		position: absolute;
		bottom: 4%;
		right: 30%;
		opacity: 0;
	}
	footer #foot-red5 {
		width: 20%;
		height: auto;
		mix-blend-mode: screen;
		position: absolute;
		bottom: 4%;
		left: -5%;
		opacity: 0;
	}

}


@media (max-width: 610px) {
	footer #footer__inner {
		width: 100%;
		height: auto;
		position: relative;
		top: 10vw;
	}
	footer #foot-logo {
		width: 90%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 40%;
		left: 5%;
		opacity: 0;
	}
	footer #button-area {
		position: absolute;
		bottom: 10vw;
		opacity: 0;
	}

}



