html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: "dnp-shuei-gothic-gin-std", sans-serif;
	font-weight: 400;
	font-style: normal;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background: #000;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}
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;
	}
	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;
}
#loader-bg #loader {
	width:1%;
	height:auto;
	margin:0;
	padding:0;
	position: absolute;
	top: 13.5vw;
	left: 49.5%;
	animation: loader 2.0s ease forwards;
}
#loader img {
	width:100%;
	height:auto;
}
@keyframes loader {
	0% {opacity: 0;}
	20% {opacity: 1;}
	100% {opacity: 1;}
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg #loader {
		width: 3%;
		height: auto;
		position: absolute;
		top: 27vw;
		left: 67%;
	}

}

@media (max-width: 600px) {

}



/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:5px 0 15px;
	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: #c1cfd3;
	font-family: "freight-text-pro", serif;
	font-weight: 600;
	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/FT-menu-bg.jpg);
	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: 300000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:60%;
	height:auto;
	margin:0px 20%;
	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: #c1cfd3 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#c1cfd3;
	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: 0;
  }
  .global-nav__item {
	margin: 20px 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: 2.5rem;
	letter-spacing: 1.5px;
	color: #c1cfd3;
	font-family: "freight-text-pro", serif;
	font-weight: 600;
	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: 60px;
		background-size: cover;
		background-position: center bottom;
		z-index: 200000;
		display: flex;
		align-items: flex-start;
	}
	.global-nav__list {
		margin: 20px 0;
	}
	.global-nav__item {
		margin: 0 0 20px !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:2.2rem;
		line-height: 2.2rem;
		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: 15%;
		margin: 0 2%;
	}

}


/* 以下タブレット・スマホ */
@media (max-width: 375px) {
	  .global-nav__item a .en {
		width: 100%;
		font-size:1.5rem;
		line-height: 1.5rem;
		letter-spacing: 1.0px;
	}

}



/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	background-color: #000;
	position:relative;
	overflow: hidden;
	perspective: 1000;
}
#top #top__bg1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#top #top__bg1 img ,
#top #top__bg2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__tate {
	width: 1%;
	height: auto;
	position: absolute;
	top: 13.5vw;
	left: 49.5%;
}
#top #top__tate img { 
	width: 100%;
	height: auto;
}
#top #top__cast {
	width: 24%;
	height: auto;
	position: absolute;
	top: 34%;
	right: 13%;
	opacity: 0;
}
#top #top__title {
	width: 30%;
	height: auto;
	position: absolute;
	top: 40%;
	right: 10%;
	opacity: 0;
}
#top #top__entitle {
	width: 26%;
	height: auto;
	position: absolute;
	top: 62%;
	right: 12%;
	opacity: 0;
}
#top #top__bb {
	width: 30%;
	height: auto;
	position: absolute;
	top: 66%;
	right: 10%;
	opacity: 0;
}
#top #top__yoko {
	width: 28%;
	height: auto;
	position: absolute;
	top: 83%;
	right: 11%;
	opacity: 0;
}
#top #top__award {
	width: 13%;
	height: auto;
	position: absolute;
	top: 4%;
	left: 3%;
	opacity: 0;
}
#top #top__date {
	display: none;
}
.top-first-anime {
	animation: fadeIn 1.0s ease 1.2s forwards;
}
#top #top__gf1 {
	width: 15%;
	height: auto;
	position: absolute;
	top: 100%;
	left: 40%;
}
.top__gf1 {
	animation: fly 1.8s ease-out 0.5s forwards , swing1 2s infinite alternate, rotate1 1s infinite alternate;
}
#top #top__gf2 {
	width: 10%;
	height: auto;
	position: absolute;
	top: 100%;
	left: 50%;
}
.top__gf2 {
	animation: fly 2s ease-out 0.7s forwards , swing2 1.5s infinite alternate, rotate1 2s infinite alternate;
}
#top #top__gf3 {
	width: 13%;
	height: auto;
	position: absolute;
	top: 100%;
	left: 80%;
}
.top__gf3 {
	animation: fly 1.1s ease-out 0.9s forwards , swing3 1.7s infinite alternate, rotate1 1.6s infinite alternate;
}
#top #top__gf4 {
	width: 16%;
	height: auto;
	position: absolute;
	top: 100%;
	left: 100%;
}
.top__gf4 {
	animation: fly 2.2s ease-out 1.3s forwards , swing4 2.0s infinite alternate, rotate1 1.2s infinite alternate;
}
#top #top__gf5 {
	width: 7%;
	height: auto;
	position: absolute;
	top: 100%;
	left: 75%;
}
.top__gf5 {
	animation: fly 1.1s ease-out 1.2s forwards , swing3 2s infinite alternate, rotate1 2s infinite alternate;
}
.top-last-anime {
	animation: fadeIn 1.0s ease 1.8s forwards;
}
#top #top__bf1 {
	width: 10%;
	height: auto;
	position: absolute;
	top: -25%;
	left: 90%;
}
#top #top__bf1 img {
	width: 100%;
	height: auto;
	aspect-ratio: 820 / 915;
}
.top__bf1 {
	animation: fall 12s ease-out 2.8s infinite , swing6 3s infinite alternate, rotate2 1s infinite alternate;
}
#top #top__bf2 {
	width: 10%;
	height: auto;
	position: absolute;
	top: -25%;
	left: 90%;
}
#top #top__bf2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 719 / 718;
}
.top__bf2 {
	animation: fall 13s ease-out 7s infinite , swing4 3s infinite alternate, rotate2 1s infinite alternate;
}
#top #top__bf3 {
	width: 10%;
	height: auto;
	position: absolute;
	top: -25%;
	left: 90%;
}
#top #top__bf3 img {
	width: 100%;
	height: auto;
	aspect-ratio: 729 / 835;
}
.top__bf3 {
	animation: fall 11s ease-out 12s infinite , swing7 3s infinite alternate, rotate2 1s infinite alternate;
}
@keyframes fly {
	0% {top: 100%;}
	100% {top: -40%;}
}
@keyframes swing1 {
	from {
		left: 40%;
	}
	to {
		left: 80%;
	}
}
@keyframes swing2 {
	from {
		left: 50%;
	}
	to {
		left: 70%;
	}
}
@keyframes swing3 {
	from {
		left: 80%;
	}
	to {
		left: 50%;
	}
}
@keyframes swing4 {
	from {
		left: 100%;
	}
	to {
		left: 60%;
	}
}
@keyframes swing5 {
	from {
		left: 60%;
	}
	to {
		left: 90%;
	}
}
@keyframes swing6 {
	from {
		left: 80%;
	}
	to {
		left: 50%;
	}
}
@keyframes swing7 {
	from {
		left: 50%;
	}
	to {
		left: 90%;
	}
}
@keyframes fall {
	0% {top: -25%;}
	80% {top: 120%;}
	100% {top: 120%;}
}
@keyframes rotate1 {
	from {
		transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
	}
	to {
		transform: rotateY(20deg) rotateX(-30deg) rotateZ(10deg);
	}
}
@keyframes rotate2 {
	from {
		transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
	}
	to {
		transform: rotateY(-80deg) rotateX(30deg) rotateZ(-10deg);
	}
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg1 img ,
	#top #top__bg2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__tate {
		width: 3%;
		height: auto;
		position: absolute;
		top: 27vw;
		left: 67%;
	}
	#top #top__tate img { 
		width: 100%;
		height: auto;
	}
	#top #top__cast {
		width: 50%;
		height: auto;
		position: absolute;
		top: 43.3%;
		right: 7%;
		opacity: 0;
	}
	#top #top__title {
		width: 58%;
		height: auto;
		position: absolute;
		top: 49%;
		right: 3%;
		opacity: 0;
	}
	#top #top__entitle {
		width: 50%;
		height: auto;
		position: absolute;
		top: 60%;
		right: 7%;
		opacity: 0;
	}
	#top #top__bb {
		width: 58%;
		height: auto;
		position: absolute;
		top: 63%;
		right: 3%;
		opacity: 0;
	}
	#top #top__yoko {
		width: 80%;
		height: auto;
		position: absolute;
		top: 75%;
		right: 10%;
		opacity: 0;
	}
	#top #top__date {
		display: block;
		width: 60%;
		height: auto;
		position: absolute;
		top: 88%;
		right: 20%;
		opacity: 0;
	}
	#top #top__award {
		width: 34%;
		height: auto;
		position: absolute;
		top: 66%;
		left: 3%;
		opacity: 0;
	}
	#top #top__gf1 {
		width: 30%;
		height: auto;
		position: absolute;
		top: 100%;
		left: 40%;
	}
	#top #top__gf2 {
		width: 25%;
		height: auto;
		position: absolute;
		top: 100%;
		left: 50%;
	}
	#top #top__gf3 {
		width: 20%;
		height: auto;
		position: absolute;
		top: 100%;
		left: 80%;
	}
	#top #top__gf4 {
		width: 23%;
		height: auto;
		position: absolute;
		top: 100%;
		left: 100%;
	}
	#top #top__gf5 {
		width: 15%;
		height: auto;
		position: absolute;
		top: 100%;
		left: 75%;
	}
	#top #top__bf1 {
		width: 30%;
		height: auto;
		position: absolute;
		top: -25%;
		left: 90%;
	}
	#top #top__bf2 {
		width: 25%;
		height: auto;
		position: absolute;
		top: -25%;
		left: 90%;
	}
	#top #top__bf3 {
		width: 23%;
		height: auto;
		position: absolute;
		top: -25%;
		left: 90%;
	}
	@keyframes swing4 {
		from {
			left: 40%;
		}
		to {
			left: 70%;
		}
	}
	@keyframes swing6 {
		from {
			left: 80%;
		}
		to {
			left: 30%;
		}
	}
	@keyframes swing7 {
		from {
			left: 20%;
		}
		to {
			left: 90%;
		}
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#top #top__entitle {
		width: 50%;
		height: auto;
		position: absolute;
		top: 58%;
		right: 7%;
		opacity: 0;
	}

}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 4vw 0;
	background: linear-gradient(to bottom, #000, #b2bcc9);
	position: relative;
}
#bridge #br__date {
	width: 20%;
	height: auto;
	margin: 0 40% 3vw;
}
#bridge #br__date img {
	width: 100%;
	height: auto;
	aspect-ratio: 1057 / 148;
}
#bridge #br__theater {
	width: 16%;
	height: auto;
	margin: 0 42% 3vw;
}
#bridge #com__banner {
	display: block;
	width: 10%;
	height: auto;
	position: absolute;
	top: 0;
	right: 10%;
}
#bridge #com__banner img:hover {
	transform: rotate(5deg);
	transition: 0.6s;
}
#bridge #br__sns {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #br__sns a {
	display: block;
	width: 11%;
	height: auto;
	margin: 0 1%;
}
#bridge #br__theater a:hover ,
#bridge #br__sns a:hover {
	animation: flash 1.5s;
}
#mubi {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#mubi #mvtk-widgets-container {
	display: inline-block;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0;
		position: relative;
	}
	#bridge #br__date {
		display: none;
	}
	#bridge #br__theater {
		width: 70%;
		height: auto;
		margin: 0 15% 10vw;
	}
	#bridge #com__banner {
		display: block;
		width: 40%;
		height: auto;
		margin: 5vw 30%;
		position: static;
	}

	#bridge #br__sns {
		width: 100%;
		height: auto;
		margin: 5vw 0 5vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #br__sns a {
		display: block;
		width: 60%;
		height: auto;
		margin: 1vw 1%;
	}
	#bridge #br__theater a:hover ,
	#bridge #br__sns a:hover {
		animation: flash 1.5s;
	}
	#mubi {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}

}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 7vw;
	overflow: hidden;
	position: relative;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align: center;
	position: relative;
}
.trailer h2 img {
	width: 18%;
}
#video-wrap {
	width: 60%;
	height: auto;
	box-sizing: border-box;
	margin: 0 20%;
	padding: 0;
	position: relative;
	z-index: 2;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0;
	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: 2px solid #a66344;
	color: #a66344;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #a66344;
	border: 2px solid #a66344;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #fff;
	border: 2px solid #fff;
	color: #a66344;
	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%;
		position: relative;
		text-align: center;
	}
	.trailer h2 img {
		width: 50%;
	}
	#video-wrap {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0;
		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: 1rem;
	}

}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 20vw;
	}
	.trailer h2 {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	.trailer h2 img {
		width: 60%;
	}
	#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;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 1.1rem;
	}
}


/* ========================================
イントロダクション・ストーリー
========================================== */
.intro-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
}
#intro-bg1 {
	z-index: -30;
}
#intro-bg2 {
	z-index: -28;
	pointer-events: none;
}
#intro__head-fixed {
	position: fixed;
	top: 30%;
	left: 38%;
	z-index: -27;
	transition: 0s all;
	pointer-events: none;
}
#intro__head-fixed #intro-fixed-hane {
	opacity: 0;
	transform: translate3d(-500%, -400%, 0) rotateY(80deg) rotateX(-120deg) rotateZ(150deg);
	transition: 1.5s ease-out all;
}
#intro {
	width: 100%;
	height: auto;
	padding: 40vw 0;
	position: relative;
	z-index: -29;
}
#intro h2 {
	width: 24%;
	height: auto;
	margin: 0 38% 20vw;
	position: relative;
	opacity: 0;
	transition: 0s all;
}
.intro-head {
	width: 24%;
	height: auto;
}
.intro-head .intro__head-txt {
	width: 100%;
	height: auto;
}
.intro-head .intro__head-hane {
	width: 30%;
	height: auto;
	position: absolute;
	top: 10%;
	right: 10%;
}
#intro #intro__lead1 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	text-align: center;
}
#intro #intro__lead1 img {
	width: 25%;
}
#intro #intro__lead2 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	text-align: center;
}
#intro #intro__lead2 img {
	width: 25%;
}
#intro p {
	width: 40%;
	height: auto;
	margin: 0 30% 7vw;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
	font-weight: 500;
}
#intro #intro__lead3 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	text-align: center;
}
#intro #intro__lead3 img {
	width: 25%;
}
#intro #gensaku {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 0 25%;
	padding: 3vw 5vw;
	background-color: rgba(166, 99, 68, 0.6);
}
#intro #gensaku h3 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#intro #gensaku h3 img {
	width: 25%;
	height: auto;
}
#intro #gensaku p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
}
#intro #gensaku #gensaku__data {
	width: 100%;
	height: auto;
	margin: 3vw 0 0;
}
#intro #gensaku #gensaku__data .title {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	color: #fff;
	font-size: 1.3vw;
	line-height: 1.8vw;
}
#intro #gensaku #gensaku__data .pub {
	width: 100%;
	height: auto;
	margin: 0 0 0.5vw;
	text-align: center;
	color: #fff;
	font-size: 1.0vw;
}
#intro #gensaku #gensaku__data .image {
	width: 100%;
	height: auto;
	margin: 0 0 0.5vw;
	text-align: center;
}
#intro #gensaku #gensaku__data .image img {
	width: 30%;
}
#intro #gensaku #gensaku__data .date {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
}
#intro #gensaku #gensaku__data .date span {
	font-size: 1.3vw;
}
#intro #gensaku #gensaku__data .other {
	width: 50%;
	height: auto;
	margin: 0 25%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.5vw;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro__head-fixed {
		position: fixed;
		top: 35%;
		left: 10%;
		z-index: -27;
		transition: 0s all;
		pointer-events: none;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 150vw 0;
		position: relative;
		z-index: -29;
	}
	#intro h2 {
		width: 80%;
		height: auto;
		margin: 0 10% 80vw;
		position: relative;
		opacity: 0;
		transition: 0s all;
	}
	.intro-head {
		width: 80%;
		height: auto;
	}
	.intro-head .intro__head-txt {
		width: 100%;
		height: auto;
	}
	.intro-head .intro__head-hane {
		width: 30%;
		height: auto;
		position: absolute;
		top: 10%;
		right: 10%;
	}
	#intro #intro__lead1 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
	}
	#intro #intro__lead1 img {
		width: 80%;
	}
	#intro #intro__lead2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
	}
	#intro #intro__lead2 img {
		width: 90%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5% 30vw;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
		font-weight: 600;
	}
	#intro #intro__lead3 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
	}
	#intro #intro__lead3 img {
		width: 90%;
	}
	#intro #gensaku {
		width: 96%;
		height: auto;
		box-sizing: border-box;
		margin: 0 2%;
		padding: 10vw 5vw;
		background-color: rgba(166, 99, 68, 0.6);
	}
	#intro #gensaku h3 {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}
	#intro #gensaku h3 img {
		width: 35%;
		height: auto;
	}
	#intro #gensaku p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
	}
	#intro #gensaku #gensaku__data {
		width: 100%;
		height: auto;
		margin: 8vw 0 0;
	}
	#intro #gensaku #gensaku__data .title {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		color: #fff;
		font-size: 1.5rem;
		line-height: 1.8rem;
	}
	#intro #gensaku #gensaku__data .pub {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		text-align: center;
		color: #fff;
		font-size: 1.0rem;
	}
	#intro #gensaku #gensaku__data .image {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		text-align: center;
	}
	#intro #gensaku #gensaku__data .image img {
		width: 50%;
	}

	#intro #gensaku #gensaku__data .date {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		text-align: center;
		color: #fff;
		font-size: 1.1rem;
	}
	#intro #gensaku #gensaku__data .date span {
		font-size: 1.5rem;
	}
	#intro #gensaku #gensaku__data .other {
		width: 60%;
		height: auto;
		margin: 0 20%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.5rem;
	}

}


/* ========================================
スライダー
========================================== */
#slider {
	width: 100%;
	height: auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}
#slider .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#slider .slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider #slider1 .top-slide ,
#slider #slider3 .top-slide {
	animation: loop-slide-rev 150s infinite linear 0s both;
}
#slider #slider2 .top-slide {
	animation: loop-slide 150s infinite linear 0s both;
}
#slider .slide-wrap .top-slide .content {
	width: 60vw;
	height: auto;
	margin: 0;
}
#slider .slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider #slider__logo {
	width: 20%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}
@keyframes swing8 {
	from {
		left: 0%;
	}
	to {
		left: 40%;
	}
}
@keyframes swing9 {
	from {
		left: 20%;
	}
	to {
		left: 60%;
	}
}
#slider #slider__bf1 {
	width: 10%;
	height: auto;
	position: absolute;
	top: -25%;
	left: 90%;
	animation: fall 12s ease-out 2.8s infinite , swing8 3s infinite alternate, rotate2 1s infinite alternate;
}
#slider #slider__bf2 {
	width: 10%;
	height: auto;
	position: absolute;
	top: -25%;
	left: 90%;
	animation: fall 13s ease-out 7s infinite , swing4 3s infinite alternate, rotate2 1s infinite alternate;
}
#slider #slider__bf3 {
	width: 10%;
	height: auto;
	position: absolute;
	top: -25%;
	left: 90%;
	animation: fall 11s ease-out 12s infinite , swing9 3s infinite alternate, rotate2 1s infinite alternate;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#slider #slider1 .top-slide ,
	#slider #slider3 .top-slide {
		animation: loop-slide-rev 150s infinite linear 0s both;
	}
	#slider #slider2 .top-slide {
		animation: loop-slide 150s infinite linear 0s both;
	}
	#slider .slide-wrap .top-slide .content {
		width: 230vw;
		height: auto;
		margin: 0;
	}
	#slider #slider__logo {
		width: 50%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}
	#slider #slider__bf1 {
		width: 40%;
		height: auto;
		position: absolute;
		top: -25%;
		left: 90%;
		animation: fall 12s ease-out 2.8s infinite , swing8 3s infinite alternate, rotate2 1s infinite alternate;
	}
	#slider #slider__bf2 {
		width: 30%;
		height: auto;
		position: absolute;
		top: -25%;
		left: 90%;
		animation: fall 13s ease-out 7s infinite , swing4 3s infinite alternate, rotate2 1s infinite alternate;
	}
	#slider #slider__bf3 {
		width: 35%;
		height: auto;
		position: absolute;
		top: -25%;
		left: 90%;
		animation: fall 11s ease-out 12s infinite , swing9 3s infinite alternate, rotate2 1s infinite alternate;
	}


}


/* ========================================
レビュー
========================================== */
#rev-bg-Black {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -19;
	pointer-events: none;
	opacity: 0;
	transition: 1.0s all;
}
#rev-bg-Black2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -21;
	pointer-events: none;
	opacity: 0;
}

.rev-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -20;
	pointer-events: none;
	opacity: 0;	
}
@keyframes review-bg1 {
	0% {opacity: 1;}
	23% {opacity: 1;}
	33% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes review-bg2 {
	0% {opacity: 0;}
	23% {opacity: 0;}
	33% {opacity: 1;}
	56% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes review-bg3 {
	0% {opacity: 0;}
	56% {opacity: 0;}
	66% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
.rev-bg-Black2 {
	opacity: 1 !important;
}
.review-bg1 {
	filter: brightness(60%);
	animation: review-bg1 10s ease infinite;
}
.review-bg2 {
	animation: review-bg2 10s ease infinite;
}
.review-bg3 {
	filter: brightness(70%);
	animation: review-bg3 10s ease infinite;
}
#review {
	width: 100%;
	height: auto;
	padding: 30vw 0 5vw;
}
#review h2 {
	width: 100%;
	height: auto;
	margin: 0 0 30vw;
	text-align: center;
}
#review h2 img {
	width: 14%;
}
#review .rev-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 7vw;
}
#review .rev-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 0.5vw;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	font-size: 1.4vw;
	color: #fff;
}
#review .rev-unit .name {
	width: 100%;
	height: auto;
	text-align: right;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	font-size: 1.4vw;
	color: #c8e7f0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#review .rev-unit .name::before {
  background-color: #c8e7f0; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 20px; /* 横線の長さ */
}
#review .rev-unit .name::before {
  margin-right: 10px; /* 文字との余白 */
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#review {
		width: 100%;
		height: auto;
		padding: 40vh 0 10vh;
	}
	#review h2 {
		width: 100%;
		height: auto;
		margin: 0 0 40vh;
		text-align: center;
	}
	#review h2 img {
		width: 50%;
	}
	#review .rev-unit {
		width: 86%;
		height: auto;
		margin: 0 7% 40vw;
	}
	#review .rev-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		font-family: "Zen Old Mincho", serif;
		font-weight: 900;
		font-style: normal;
		font-size: 1.3rem;
		color: #fff;
	}
	#review .rev-unit .name {
		width: 100%;
		height: auto;
		text-align: right;
		font-family: "Zen Old Mincho", serif;
		font-weight: 900;
		font-style: normal;
		font-size: 1.3rem;
		color: #c8e7f0;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	#review .rev-unit .name::before {
	background-color: #c8e7f0; /* 横線の色 */
	content: "";
	height: 1px; /* 横線の高さ */
	width: 20px; /* 横線の長さ */
	}
	#review .rev-unit .name::before {
	margin-right: 10px; /* 文字との余白 */
	}



}

/* ========================================
コメント
========================================== */
#comment {
	width: 100%;
	height: auto;
	padding: 5vw 0;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 0.5vw;
	text-align: center;
}
#comment h2 img {
	width: 16%;
}
#comment #keisho {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	text-align: center;
	color: #fff;
	font-size: 1rem;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 0 25% 8vw;
	padding: 5vw;
	border: 3px solid #c8e7f0;
	background-color: rgba(0, 0, 0, 0.5);
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2vw;
	color: #fff;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	margin: 0;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.3vw;
	color: #c8e7f0;
	text-align: right;
}
#comment .com-unit .name span {
	font-size: 1.0vw;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 5vw 0 60vw;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	#comment h2 img {
		width: 55%;
	}
	#comment #keisho {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		color: #fff;
		font-size: 1rem;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin: 0 5% 15vw;
		padding: 5vw;
		border: 3px solid #c8e7f0;
		background-color: rgba(0, 0, 0, 0.5);
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		font-family: "Zen Old Mincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 1.1rem;
		color: #fff;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		margin: 0;
		font-family: "Zen Old Mincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 1.2rem;
		color: #c8e7f0;
		text-align: right;
	}
	#comment .com-unit .name span {
		font-size: 1.0rem;
	}


}

/* ========================================
スタッフ・キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	background-color: #000;
	position: relative;
}
#cast #cast__bg {
	width: 100%;
	height: auto;
}
#cast #cast__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#cast #cast__contents {
	width: 40%;
	height: auto;
	position: absolute;
	top: 13%;
	left: 50%;
}
#cast #cast__contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#cast #cast__contents h2 img {
	width: 40%;
}
#cast #cast__contents #cast__name {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#cast #cast__contents #cast__name img {
	width: 60%;
}
#cast #cast__contents p {
	width: 100%;
	height: auto;
	margin: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
}
#staff-bg-wrap {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -15;
	pointer-events: none;
	opacity: 0;
}
#staff-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
}
@keyframes lighter {
	0% {opacity: 1;}
	100% {opacity: 0.3;}
}
.lighter {
	animation: lighter 2.0s ease forwards;
}
#staff {
	width: 100%;
	height: auto;
	padding: 30vw 0 15vw;
}
#staff .staff-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 8vw;
	box-sizing: border-box;
	padding: 4vw;
	background-color: rgba(200, 231, 240, 0.85);
}
#staff .staff-unit .staff-photo {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
#staff .staff-unit .staff-photo img {
	width: 40%;
}
#staff .staff-unit .staff-name {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#staff .staff-unit .staff-name img {
	width: 50%;
}
#staff .staff-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
	font-weight: 500;
}
#staff #other-staff {
	width: 40%;
	height: auto;
	margin: 0 30%;
	color: #000;
	font-size: 1vw;
	line-height: 1.6vw;
	letter-spacing: 1px;
	font-feature-settings: "palt";
	font-weight: 500;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 5vw 0 20vh;
		background-color: #000;
		position: relative;
	}
	#cast #cast__bg {
		width: 100%;
		height: auto;
	}
	#cast #cast__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#cast #cast__contents {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0%;
		left: 0%;
	}
	#cast #cast__contents h2 {
		width: 100%;
		height: auto;
		margin: 20vw 0 80vw;
		text-align: center;
	}
	#cast #cast__contents h2 img {
		width: 63%;
	}
	#cast #cast__contents #cast__name {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
	}
	#cast #cast__contents #cast__name img {
		width: 90%;
	}
	#cast #cast__contents p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
	}
	#staff {
		width: 100%;
		height: auto;
		padding: 100vh 0 15vw;
	}
	#staff .staff-unit {
		width: 100%;
		height: auto;
		margin: 0 0 25vw;
		box-sizing: border-box;
		padding: 10vw 5vw;
		background-color: rgba(200, 231, 240, 0.7);
	}
	#staff .staff-unit .staff-photo {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#staff .staff-unit .staff-photo img {
		width: 65%;
	}
	#staff .staff-unit .staff-name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#staff .staff-unit .staff-name img {
		width: 90%;
	}
	#staff .staff-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
		font-weight: 600;
	}
	#staff #other-staff {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #000;
		font-size: 0.9rem;
		line-height: 1.6rem;
		letter-spacing: 1px;
		font-feature-settings: "palt";
		font-weight: 600;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 5vw 0 90vh;
		background-color: #000;
		position: relative;
	}
}

@media (max-width: 375px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 5vw 0 130vh;
		background-color: #000;
		position: relative;
	}
}




/* ========================================
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;
	position: relative;
}
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 {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 980;
}
footer #foot__logo {
	width: 20%;
	height: auto;
	position: absolute;
	top: 67%;
	left: 40%;
	opacity: 0;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot__bg2 {
	animation: fadeIn 2.5s ease 1.0s forwards;
}
.foot__logo ,
.button-area {
	animation: fadeIn 1.0s ease 2.2s forwards;
}


@media (max-width: 1024px) {
	footer #foot__bg1 img ,
	footer #foot__bg2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	footer #foot__logo {
		width: 54%;
		height: auto;
		position: absolute;
		top: 53%;
		left: 23%;
		opacity: 0;
	}
}
@media (max-width: 600px) {

}



/* ========================================
ダウンロード
========================================== */
#dl-body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-5;
	width:100%;
	height:100vh;
	background:url(../download/images/SM-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 1;
}
#dl-bg-item {
	width: 30%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 35%;
}

  .dlButton {
	  background-color:transparent;
	  border:1px solid #fff;
	  display:inline-block;
	  cursor:pointer;
	  color:#fff;
	  font-family:Arial;
	  width: 16vw;
	  font-size:1.1vw;
	  padding:10px 0;
	  text-align: center;
	  text-decoration:none;
	  font-weight: bold;
	  font-feature-settings:"palt";
  }
  .dlButton:hover {
	  background-color:#fff;
	  border:1px solid #fff;
	  color:#000;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#fff !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#fff;
	  color:#000 !important;
  }
  .dl-contents {
	  width:80%;
	  height:auto;
	  padding:20px 10% 80px;
	  font-size:1.3em;
  }  
  .dl-contents h2 {
	  width:100%;
	  text-align:center;
	  padding:0;
	  color:#fff;
	  font-size:2em;
	  margin-bottom:50px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:30%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  #dl-wrapper .dl-txt2 {
	width:100%;
	height:auto;
	text-align:center;
	margin: 15px 0 0;
  }
  #dl-wrapper .dl-txt2 img {
	width: 30%;
  }
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#fff;
	  margin:10px 0 5px;
	  font-size: 1.1em;
	  font-weight: bold;
	letter-spacing: 1.5px;
  }
  #dl-wrapper .dl-txt1 span {
	display: inline-block;
	position: relative;
	z-index: 2;
  }
  
  #dl-wrapper .dl-txt1 a {
	  color:#fff;
  }
  
  #dl-wrapper .dl-txt1 img {
	  width:30%;
  }
  
  #dl-wrapper .sikiri {
	  width:100%;
	  height:auto;
	  padding:40px 0 20px;
	  text-align:center;
  }
  
  #dl-wrapper .sikiri img {
	  width:10%;
  }
  
  
  #dl-wrapper .dl-uline {
	  display:inline-block;
	  width:70%;
	  margin:20px 0 30px;
  }
  
  #dl-wrapper .dl-uline img {
	  width:100%;
	  height:60px;
  }
  .dl-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 10vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }  
  .dl-wrap .img-box {
	  width:22%;
	  height:auto;
	  padding:0 1%;
	  margin:50px 1%;
	  color:#fff;
	  text-align: center;
	  font-size: 1.0em;
	  font-weight: bold;
	  letter-spacing: 1.4px;
  }  
  .img-box img {
	  width:90%;
  }
  .dl-wrap .img-box span {
	display: inline-block;
	font-size: 0.7em;
	line-height: 1.3em;
  }


  .longname {
	  font-size:0.75em;
  }
  
  footer.dl-footer {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:50px 0 0;
	  background:#000;
  }
  
  footer.dl-footer .footimg {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:0;
  }
  
  footer.dl-footer .footimg img {
	  width:100%;
	  height:auto;
	  vertical-align:bottom;
  }


