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;
	background: #1f3751;
}
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 loop-slide-tate {
	from {
		transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0); 
		background-color: transparent;
	}
	to {
		transform: translate3d(0, -100% , 0);
		-webkit-transform: translate3d(0, -100%, 0); 
		background-color: transparent;
	}
}
@keyframes loop-slide-tate-rev {
	from {
		transform: translate3d(0, -100%, 0);
		-webkit-transform: translate3d(0, -100%, 0);
		background-color: transparent;

	}
	to {
		transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0);
		background-color: transparent;
	}
}

@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;
	}
}
.fadeInZero {
	animation: fadeIn 0s forwards;
}
.fadeOutZero {
	animation: fadeOut 0s forwards;
}


@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: #aac3d8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
}
#loader {
	width: 1.3%;
	height: auto;
	position: absolute;
	top: 10vw;
	left: 66.5%;
}
#loader #load1 {
	width:100%;
	height:auto;
}



/* 以下スマホ */
@media (max-width: 767px) {
	#loader-bg {
		background: #aac3d8;
	}
	#loader {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 59vw;
		left: 27%;
	}
	
}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:5px 0 15px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #9cb7d0 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.3%;
	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: 0px;
	text-align: center;
	color: #000;
	font-family: "typeka", sans-serif;
	font-weight: 400;
	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/WTT-menu-bg-sp.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
	z-index: 2000001;
	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: 3000000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:60%;
	height:auto;
	margin:0px 20% 5vw;
	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: #000;
	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: #000 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#000;
	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: 767px) {
	#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: 2000000;
	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:2.5rem;
	line-height: 3.0rem;
	letter-spacing: 1.5px;
	color: #000;
	font-family: "typeka", sans-serif;
	font-weight: 400;
	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;
	
	}
	.global-nav ul.nav-sns li {
		width: 8%;
		margin: 0 1.5%;
	}
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.global-nav #menu-logo {
		width:70%;
		height:auto;
		margin:0px 15% 8vw;
		padding:0;
		text-align:center;
		position: relative;
	}  

	.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:2.0rem;
		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: 8vw 0 0 !important;
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 0 1.5%;
	}

	
}



/* ========================================
トップwrapper 
========================================== */
#wrapper {
	width: 100%;
	height: auto;
	position: relative;
	overflow-x: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000;  
	perspective: 1000;
}

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


/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow-x: hidden;
	background-color: #aac3d8;
}
#top #top__bg1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__bg1 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__tate {
	width: 1.3%;
	height: auto;
	position: absolute;
	top: 10vw;
	left: 66.5%;
}
#top #top__award {
	width: 45%;
	height: auto;
	position: absolute;
	top: 2%;
	left: 2%;
	opacity: 0;
}
#top #top__bbjp {
	width: 40%;
	height: auto;
	position: absolute;
	bottom: 18%;
	left: 2%;
	opacity: 0;
}
#top #top__bben {
	width: 39%;
	height: auto;
	position: absolute;
	bottom: 14.8%;
	left: 3%;
	mix-blend-mode: screen;
	opacity: 0;
}
#top #top__yoko {
	width: 39%;
	height: auto;
	position: absolute;
	bottom: 7%;
	left: 3%;
	mix-blend-mode: screen;
	opacity: 0;
}
#top #top__logoen {
	width: 11.5%;
	height: auto;
	position: absolute;
	bottom: 6%;
	right: 4%;
	mix-blend-mode: hard-light;
	opacity: 0;
}
#top #top__logo {
	width: 37.2%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 5%;
	left: 52.2%;
}
#top #top__logo #top__logo1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__logo #top__logo2 ,
#top #top__logo #top__logo3 ,
#top #top__logo #top__logo4 ,
#top #top__logo #top__logo5 ,
#top #top__logo #top__logo6 ,
#top #top__logo #top__logo7 ,
#top #top__logo #top__logo8 ,
#top #top__logo #top__logo9 ,
#top #top__logo #top__logo10 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.top__bg1 {
	animation: fadeIn 1.2s ease 1.2s forwards;
}
.top__logo1 {
	animation: fadeIn 0.2s ease 2.2s forwards;
}
.top__logo2 {
	animation: fadeIn 0.2s ease 2.3s forwards;
}
.top__logo3 {
	animation: fadeIn 0.2s ease 2.4s forwards;
}
.top__logo4 {
	animation: fadeIn 0.2s ease 2.9s forwards;
}
.top__logo5 {
	animation: fadeIn 0.2s ease 3.0s forwards;
}
.top__logo6 {
	animation: fadeIn 0.2s ease 3.1s forwards;
}
.top__logo7 {
	animation: fadeIn 0.2s ease 3.2s forwards;
}
.top__logo8 {
	animation: fadeIn 0.2s ease 3.3s forwards;
}
.top__logo9 {
	animation: fadeIn 0.2s ease 3.4s forwards;
}
.top__logo10 {
	animation: fadeIn 0.2s ease 3.5s forwards;
}
.top-last-anime {
	animation: fadeIn 1.2s ease 3.9s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	#top {
		background-color: #aac3d8;
	}
	#top #top__bg1 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__tate {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 59vw;
		left: 27%;
	}
	#top #top__award {
		width: 94%;
		height: auto;
		position: absolute;
		top: 5%;
		left: 3%;
		opacity: 0;
	}
	#top #top__bbjp {
		width: 83%;
		height: auto;
		position: absolute;
		bottom: 10.7%;
		left: auto;
		right: 3%;
		opacity: 0;
	}
	#top #top__bben {
		width: 82%;
		height: auto;
		position: absolute;
		bottom: 8.5%;
		left: auto;
		right: 3%;
		mix-blend-mode: screen;
		opacity: 0;
	}
	#top #top__yoko {
		width: 94%;
		height: auto;
		position: absolute;
		bottom: 3%;
		left: 3%;
		mix-blend-mode: screen;
		opacity: 0;
	}
	#top #top__logoen {
		width: 30%;
		height: auto;
		position: absolute;
		bottom: 15%;
		right: 3%;
		mix-blend-mode: hard-light;
		opacity: 0;
	}
	#top #top__logo {
		width: 96%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: 10.5%;
		left: 2%;
	}




}

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



}

/* ========================================
X
========================================== */
#bridge__sns {
	width: 17%;
	height: auto;
	margin: 0;
	position: absolute;
	top: 60%;
	right: -20%;
	z-index: 10;
}
#bridge__sns a {
	width: 100%;
	height: auto;
}
#bridge__sns a:hover {
	animation: flash 1.5s;
}

@keyframes bridge__sns {
	0% {top:40vw;right: -20%;}
	100% {top:54vw;right: 5%;}
}
@keyframes sway2 {
	from {
	  transform: translateX(0px) rotateX(160deg) rotateY(40deg) rotateZ(-45deg);
	  transform-origin: 50% 50%;
	}
	to {
	  transform: translateX(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	  transform-origin: 50% 50%;
	}
}
.bridge__sns {
	animation: bridge__sns 1.5s ease-out 0s forwards , sway2 1.5s ease-in-out 0s forwards;
}



/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	#bridge__sns {
		width: 60%;
		height: auto;
		position: absolute;
		top: 45%;
		left: auto;
		right: -100%;
		z-index: 10;
	}
	@keyframes bridge__sns {
		0% {top:45%;right: -100%;}
		100% {top:55%;right: 20%;}
	}
}



/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 3vw;
	background-image: linear-gradient(to bottom, oklch(from #1f3751 l c h), oklch(from #9cb7d0 l c h));
	position: relative;
	overflow-x: hidden;
	overflow-y: visible !important;
	z-index: 3;
}
#bridge #bridge__date {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #bridge__date img {
	width: 40%;
	height: auto;
	aspect-ratio: 1303 / 61;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 15%;
}
#bridge #com-banner {
	width: 20%;
	height: auto;
	margin: 0 40% 2vw;
	text-align: center;
	opacity: 0;
	position: relative;
}
#bridge #com-banner img {
	width: 100%;
}
@keyframes com-banner {
	0% {opacity: 0;transform: translate3d(200%, -300%, 0) rotateX(160deg) rotateY(90deg) rotateZ(-60deg);}
	100% {opacity: 1;transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);}
}
.com-banner {
	animation: com-banner 1.0s forwards;
}
#bridge #bridge__sns a:hover ,
#bridge #theater a:hover {
	animation: flash 1.5s;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}



/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 35vw 0 5vw;
		position: relative;
	}
	#bridge #bridge__date {
		width: 100%;
		height: auto;
		text-align: center;
	}
	#bridge #bridge__date img {
		width: 80%;
		aspect-ratio: 1081 / 151;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 5vw 0 3vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #com-banner {
		width: 70%;
		height: auto;
		margin: 0 15% 2vw;
		text-align: center;
		opacity: 0;
		position: relative;
	}

}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:6vw 0 10vw;
	overflow: hidden;
	position: relative;
}
.trailer h2 {
	width:17%;
	height:auto;
	padding:0;
	margin:0;
	position: absolute;
	top: 30%;
	right: -20%;
	z-index: 2;
	pointer-events: none;
}
.trailer h2 img {
	width: 100%;
}
@keyframes trailer-head {
	0% {top:30%;right: -20%;}
	100% {top:75%;right: 12%;}
}
@keyframes sway3 {
	from {
	  transform: translateX(0px) rotateX(160deg) rotateY(40deg) rotateZ(-45deg);
	  transform-origin: 50% 50%;
	}
	to {
	  transform: translateX(0px) rotateX(0deg) rotateY(0deg) rotateZ(-10deg);
	  transform-origin: 50% 50%;
	}
}
.trailer-head {
	animation: trailer-head 1.0s ease-out 0s forwards , sway3 1.0s ease-in-out 0s forwards;
}
#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: 767px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	.trailer h2 {
		width:30%;
		height:auto;
		padding:0;
		margin:0;
		position: absolute;
		top: auto;
		bottom: 20%;
		right: -80%;
		z-index: 2;
		pointer-events: none;
	}
	.trailer h2 img {
		width: 100%;
	}
	@keyframes trailer-head {
		0% {bottom: 20%;right: -80%;}
		100% {bottom:5%;right: 12%;}
	}
	.trailer-head {
		animation: trailer-head 0.8s ease-out 0s forwards , sway3 0.8s ease-in-out 0s forwards;
	}
	#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:15vw 0 20vw;
	}
	.trailer h2 {
		width:50%;
		height:auto;
		padding:0;
		margin:0;
		position: absolute;
		top: auto;
		bottom: 25%;
		right: -80%;
		z-index: 2;
		pointer-events: none;
	}
	.trailer h2 img {
		width: 100%;
	}
	@keyframes trailer-head {
		0% {bottom: 25%;right: -80%;}
		100% {bottom:10%;right: 5%;}
	}

	#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: top center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#intro__lead1 {
	width: 100%;
	height: auto;
	position: fixed;
	top: 8vw;
	z-index: -29;
	text-align: center;
	opacity: 0;
}
#intro__lead1 img {
	width: 19%;
	height: auto;
}
#intro__lead2 {
	width: 100%;
	height: auto;
	position: fixed;
	top: 15vw;
	z-index: -29;
	text-align: center;
	opacity: 0;
}
#intro__lead2 img {
	width: 35%;
	height: auto;
	aspect-ratio: 1175 / 220;
}
.intro__lead1 {
	animation: zoomIn 1.0s ease 0s forwards;
}
.intro__lead2 {
	animation: zoomIn 1.0s ease 0.4s forwards;
}
#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -28;
	pointer-events: none;
	opacity: 0;
}
#intro-bg3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -26;
	pointer-events: none;
	opacity: 0;
}
#intro {
	width: 100%;
	height: auto;
	padding: 60vw 0 20vw;
	position: relative;
	z-index: -27;
}
#intro #intro-bg2-scroll {
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	background: url(../img/WWT-intro-bg2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
#intro #intro-bg2-scroll img {
	display: none;
}
#intro #intro__tate {
	width: 1.3%;
	height: auto;
	position: absolute;
	top: 68vw;
	left: 53%;
}
#intro #intro-trg {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 80vw;
}
.typewriter {
	display: inline-block;
	font-size: 2.3vw;
	font-family: "typeka", sans-serif;
	font-weight: 400;
	font-style: normal;
	white-space: nowrap;
	overflow: hidden;
}
.cursor {
	display: inline-block;
	width: 2px;
	height: 2.3vw;
	background-color: #000;
	margin-left: 3px;
	animation: blink 0.6s steps(1) infinite;
	vertical-align: bottom;
}
.wc {
	background-color: #fff;
}

@keyframes blink {
	50% { opacity: 0; }
}

  /* フェードアウト用 */
.fade-out {
	animation: fadeoutc 0.8s forwards;
}
@keyframes fadeoutc {
	to { opacity: 0; }
}
#intro #intro__head {
	width: 62%;
	height: auto;
	box-sizing: border-box;
	margin-left: 30%;
	padding: 2vw 8% 2vw 12%;
	text-align: center;
	color: #fff;
}
#intro p {
	width: 62%;
	height: auto;
	box-sizing: border-box;
	margin-left: 30%;
	padding: 0vw 8% 1vw 12%;
	font-size: 1.0rem;
	line-height: 1.8rem;
	letter-spacing: 1.5px;
	color: #fff;
}

/* 以下小画面 */
@media (max-width: 1024px) {
	#intro-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -28;
		pointer-events: none;
		opacity: 0;
	}
	#intro-bg3 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -26;
		pointer-events: none;
		opacity: 0;
	}
	.typewriter {
		display: inline-block;
		font-size: 1.8rem;
		font-family: "typeka", sans-serif;
		font-weight: 400;
		font-style: normal;
		white-space: nowrap;
		overflow: hidden;
	}
	.cursor {
		display: inline-block;
		width: 2px;
		height: 1.8rem;
		background-color: #000;
		margin-left: 3px;
		animation: blink 0.6s steps(1) infinite;
		vertical-align: bottom;
	}
	.wc {
		background-color: #fff;
	}

	#intro #intro__tate {
		width: 2%;
		height: auto;
		position: absolute;
		top: 68vw;
		left: 53%;
	}
	#intro__lead1 {
		width: 100%;
		height: auto;
		position: fixed;
		top: 8vw;
		z-index: -29;
		text-align: center;
		opacity: 0;
	}
	#intro__lead2 {
		width: 100%;
		height: auto;
		position: fixed;
		top: 20vw;
		z-index: -29;
		text-align: center;
		opacity: 0;
	}



}

/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	#intro-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: 0% center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -30;
	}
	.typewriter {
		display: inline-block;
		font-size: 2.3rem;
		font-family: "typeka", sans-serif;
		font-weight: 400;
		font-style: normal;
		white-space: nowrap;
		overflow: hidden;
	}
	.cursor {
		display: inline-block;
		width: 2px;
		height: 2.3rem;
		background-color: #000;
		margin-left: 3px;
		animation: blink 0.6s steps(1) infinite;
		vertical-align: bottom;
	}
	.wc {
		background-color: #fff;
	}
	/* フェードアウト用 */
	.fade-out {
		animation: fadeoutc 0.8s forwards;
	}
	@keyframes fadeoutc {
		to { opacity: 0; }
	}
	#intro__lead1 {
		width: 100%;
		height: auto;
		position: fixed;
		top: 15vw;
		z-index: -29;
		text-align: center;
		opacity: 0;
	}
	#intro__lead1 img {
		width: 50%;
		height: auto;
	}
	#intro__lead2 {
		width: 100%;
		height: auto;
		position: fixed;
		top: 40vw;
		z-index: -29;
		text-align: center;
		opacity: 0;
	}
	#intro__lead2 img {
		width: 80%;
		height: auto;
		aspect-ratio: 1112 / 135;
	}
	.intro__lead1 {
		animation: fadeIn 1.0s ease 0s forwards;
	}
	.intro__lead2 {
		animation: fadeIn 1.0s ease 0.4s forwards;
	}
	#intro-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -28;
		pointer-events: none;
		opacity: 0;
	}
	#intro-bg3 {
		width: 100%;
		height: 50%;
		min-height: 50%;
		background-size: cover;
		background-position: top center;
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		z-index: -26;
		pointer-events: none;
		opacity: 0;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 200vw 0 200vw;
		position: relative;
		z-index: -27;
	}
	#intro #intro-bg2-scroll {
		width: 100%;
		height: 100vh;
		min-height: 100vh;
		background: #000;
		background-size: 100% auto;
		background-position: bottom center;
		position: relative;
		overflow: hidden;
	}
	#intro #intro-bg2-scroll img {
		display: block;
		width: 100%;
		height: auto;
		position: absolute;
		bottom: -40%;
	}
	#intro #intro__tate {
		width: 2.5%;
		height: auto;
		position: absolute;
		top: 215vw;
		left: 30%;
	}
	#intro #intro-trg {
		width: 100%;
		height: 1px;
		position: absolute;
		top: 300vw;
	}
	#intro #intro__head {
		width: 100%;
		height: auto;
		margin: 20vw 0 10vw;
		text-align: center;
	}
	#intro p {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin-left: 5%;
		padding: 2vw 0 2vw;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
		color: #fff;
	}


}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#intro #intro-bg2-scroll img {
		display: block;
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 0;
	}
	#intro #intro__tate {
		width: 4%;
		height: auto;
		position: absolute;
		top: 250vw;
		left: 30%;
	}

}


/* ========================================
Director’s Message
========================================== */
#diremsg-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
	pointer-events: none;
	clip-path: inset(100% 0 0 0);
	transition: 0.6s filter;
}
#dire-msg {
	width: 100%;
	height: auto;
	padding: 20vw 0;
	background: linear-gradient(to bottom, transparent 20%, rgba(31, 55, 81, 0.8));
}
#dire-msg h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
}
#dire-msg p {
	width: 40%;
	height: auto;
	margin: 0 30%;
	padding: 0;
	color: #fff;
	font-size: 1.0rem;
	line-height: 2.0rem;
	letter-spacing: 1.5px;
	opacity: 0;
}
#dire-msg .dire-name {
	width: 40%;
	height: auto;
	margin: 2vw 30% 0;
	padding: 0;
	text-align: right;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.8rem;
	letter-spacing: 1.5px;
	opacity: 0;
}
.dire-msg {
	animation: fadeIn 1.0s ease 1.2s forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#dire-msg p {
		width: 70%;
		height: auto;
		margin: 0 15%;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#dire-msg .dire-name {
		width: 70%;
		height: auto;
		margin: 2vw 15% 0;
		padding: 0;
		text-align: right;
		color: #fff;
		font-size: 1.2rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	#dire-msg {
		width: 100%;
		height: auto;
		padding: 100vw 0;
		background: linear-gradient(to bottom, transparent 20%, rgba(31, 55, 81, 0.8));
	}
	#dire-msg h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#dire-msg p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#dire-msg .dire-name {
		width: 90%;
		height: auto;
		margin: 5vw 5% 0;
		padding: 0;
		text-align: right;
		color: #fff;
		font-size: 1.2rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}

}

/* ========================================
スライダー
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	padding: 15vw 0 20vw;
	background: linear-gradient(0deg, #1f3751, #9cb7d0);
	background-size: 600% 600%;
    animation: gradientMove 10s linear infinite;
	overflow: hidden;
	position: relative;
}
@keyframes gradientMove {
	0% {
		background-position: 50% 0%;
	}
	50% {
		background-position: 50% 100%;
	}
	100% {
		background-position: 50% 0%;
	}
}

#slider-area .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
.slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider1 .top-slide {
	animation: loop-slide-rev 400s infinite linear 0s both;
}
.slide-wrap .top-slide .content {
	width: 40vw;
	height: auto;
	margin: 0;
}
.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: 24%;
	height: auto;
	position: absolute;
	top: 61%;
	left: 38%;
}

/* 以下スマホ */
@media (max-width: 767px) {
	#slider-area {
		width: 100%;
		height: auto;
		min-height: auto;
		padding: 60vw 0 80vw;
		background: linear-gradient(0deg, #1f3751, #9cb7d0);
		background-size: 600% 600%;
		animation: gradientMove 10s linear infinite;
		overflow: hidden;
		position: relative;
	}
	.slide-wrap .top-slide .content {
		width: 120vw;
		height: auto;
		margin: 0;
	}

	#slider-area #slider-logo {
		width: 50%;
		height: auto;
		position: absolute;
		top: 58%;
		left: 25%;
	}

}


/* ========================================
キャスト
========================================== */
#cast-spbg ,
#cast-head-sp {
	display: none;
}
#cast {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#cast #cast__bg {
	width: 100%;
	height: auto;
}
#cast__contents {
	width: 100%;
	height: auto;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}
#cast__head {
	width: 15%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: -30%;
	right: -20%;
}
#chara-head img {
	width: 100%;
}
@keyframes cast__head {
	0% {top:-30%;right: -20%;}
	100% {top:5%;right: 10%;}
}
.cast__head {
	animation: cast__head 1.0s ease-out 0s forwards , sway3 1.0s ease-in-out 0s forwards;
}
#prevBtn {
	width: 4%;
	position: absolute;
	top: 22%;
	left: 17%;
	border: none;
	background-color: transparent;
	cursor: pointer;
	z-index: 2;
}
#nextBtn {
	width: 4%;
	position: absolute;
	top: 22%;
	right: 16%;
	border: none;
	background-color: transparent;
	cursor: pointer;
	z-index: 2;
}
/* コントローラーエリア */
.tabs {
	width: 100%;
	height: auto;
	margin: 5vw 0 3vw;
	padding: 2vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center; 
	flex-wrap: wrap;
	background-color: rgba(99, 115, 161, 0.8);
}
.tab {
	width: 10%;
	height: auto;
	margin: 0 1%;
	padding: 0;
	text-align: center;
	cursor: pointer; 
	transform: scale(1);
	transition: all 0.1s ease-in-out;
}
.tab.active {
	transform: scale(1.1);
}
.tab .photo {
	width: 80%;
}
.tab .name {
	width: 100%;
	margin-top: 1vw;
}

/* 中身エリア */
.panels {
	width: 80%;
	height: auto;
	margin: 0 10%;
}
.panels .panel {
	display: none;
	width: 70%;
	height: auto;
	box-sizing: border-box;
	margin: 6vw 15% 0;
	padding: 0;
	position: relative;
	justify-content: center;
	align-items: center;
}
.panels .panel.active {
	display: flex !important;
}
.panels .panel .chara-photo {
	width: 30%;
	height: auto;
	position: relative;
	z-index: 2;
	text-align: center;
}
.panels .panel .chara-photo .photo {
	width: 80%;
}
.panels .panel .chara-photo .name {
	width: 100%;
	height: auto;
	margin: 1vw 0 0;
}
.panels .panel .chara-txt {
	width: 55%;
	height: auto;
	box-sizing: border-box;
	padding: 0;
	margin-left: 2vw;
	z-index: 1;
}
.panels .panel .chara-txt p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.8vw;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast-spbg {
		display: block;
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-color: #ABC2D0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -23;
		opacity: 0;
		pointer-events: none;
	}
	#cast-head-sp {
		display: block;
		width: 50%;
		height: auto;
		position: fixed;
		top: 1%;
		left: 3%;
		z-index: -21;
		opacity: 0;
		pointer-events: none;
	}
	#cast {
		width: 100%;
		height: auto;
		padding: 30vw 0;
		position: relative;
		overflow: hidden;
		z-index: -22;
	}
	#cast #cast__bg {
		display: none;
	}
	#cast__contents {
		width: 100%;
		height: auto;
		padding: 0;
		position: static;
	}
	#cast__contents h2 {
		display: none;
	}
	#cast__contents #prevBtn ,
	#cast__contents #nextBtn ,
	#cast__contents .tabs {
		display: none;
	}
	/* 中身エリア */
	.panels {
		width: 100%;
		height: auto;
		margin: 0;
	}
	.panels .panel {
		display: block;
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin: 20vw 5% 40vw;
		padding: 0;
		position: relative;
	}
	.panels .panel.active {
		display: block !important;
	}
	.panels .panel .chara-photo {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		position: relative;
		z-index: 2;
		text-align: center;
	}
	.panels .panel .chara-photo .photo {
		width: 40%;
	}
	.panels .panel .chara-photo .name {
		width: 50%;
		height: auto;
		margin: 0;
	}
	.panels .panel .chara-txt {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 0;
		margin-left: 0;
		z-index: 1;
	}
	.panels .panel .chara-txt p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.8rem;
		font-weight: bold;
	}

}


/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	.panels .panel .chara-photo {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		position: relative;
		z-index: 2;
		text-align: center;
	}
	.panels .panel .chara-photo .photo {
		width: 60%;
	}
	.panels .panel .chara-photo .name {
		width: 75%;
		height: auto;
		margin: 0;
	}

}



/* ========================================
スタッフ
========================================== */
#staff {
	width: 100%;
	height: auto;
	position: relative;
}
#staff #staff__bg1 {
	width: 100%;
	height: auto;
}
#staff #staff__bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#staff #staff__bg1 img ,
#staff #staff__bg2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#staff #staff__contents {
	width: 30%;
	height: auto;
	position: absolute;
	top: 10vw;
	left: 55%;
}
#staff #staff__contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	padding: 0;
	text-align: center;
	color: #fff;
}
#staff #staff__contents #staff__list {
	width: 75%;
	height: auto;
	margin: 0 0 0 25%;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	opacity: 0;
}
.staff__list {
	animation: fadeIn 1.0s ease 0.8s forwards;
}
.staff__bg2 {
	animation: fadeIn 1.5s ease 1.2s forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff #staff__bg1 img ,
	#staff #staff__bg2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#staff #staff__contents {
		width: 100%;
		height: auto;
		position: absolute;
		top: 40vw;
		left: 0;
	}
	#staff #staff__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		color: #fff;
	}
	#staff #staff__contents #staff__list {
		width: 80%;
		height: auto;
		margin: 0 0 0 20%;
		color: #fff;
		font-size: 1.2rem;
		line-height: 2.7rem;
		letter-spacing: 1.8px;
		opacity: 0;
	}


}


/* ========================================
ディレクター
========================================== */
#dire-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;
	transition: 1.0s all;
}
#director {
	width: 100%;
	height: auto;
	padding: 30vw 0 20vw;
	overflow: hidden;
}
#director h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	color: #fff;
}
#director #dire__photo {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	text-align: center;
}
#director #dire__photo img {
	width: 25%;
	height: auto;
	aspect-ratio: 1280 / 853;
}
#director #dire__name {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#director #dire__name img {
	width: 25%;
	height: auto;
	aspect-ratio: 1019 / 65;
}
#director p {
	width: 36%;
	height: auto;
	margin: 0 32% 5vw;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.5px;
}
#director .filmo {
	width: 44%;
	height: auto;
	margin: 0 28% 2vw;
}
#director .filmo h3 {
	width: 35%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	position: relative;
	top:0;
	left: 0;
	opacity: 0;
}
#director .filmo h3 img {
	width: 100%;
}
@keyframes filmo__head {
	0% {top:-30%;left: 100%;opacity: 0;}
	100% {top:0%;left: 0;opacity: 1;}
}
@keyframes sway4 {
	from {
	  transform: translateX(0px) rotateX(160deg) rotateY(40deg) rotateZ(-45deg);
	  transform-origin: 50% 50%;
	}
	to {
	  transform: translateX(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	  transform-origin: 50% 50%;
	}
}
.filmo__head {
	animation: filmo__head 1.0s ease-out 0s forwards , sway4 1.0s ease-in-out 0s forwards;
}
#director .filmo p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.5px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#director {
		width: 100%;
		height: auto;
		margin: 50vh 0 0;
		padding: 40vh 0 100vw;
	}
	#director h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		color: #fff;
	}
	#director #dire__photo {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}
	#director #dire__photo img {
		width: 40%;
		height: auto;
		aspect-ratio: 900 / 900;
	}
	#director #dire__name {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}
	#director #dire__name img {
		width: 50%;
		height: auto;
		aspect-ratio: 1122 / 211;
	}
	#director p {
		width: 90%;
		height: auto;
		margin: 0 5% 5vw;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
	}
	#director .filmo {
		width: 90%;
		height: auto;
		margin: 15vw 5% 2vw;
	}
	#director .filmo h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
	}
	#director .filmo h3 img {
		width: 40%;
	}
	#director .filmo p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 767px) {
	#director #dire__photo {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}
	#director #dire__photo img {
		width: 70%;
		height: auto;
		aspect-ratio: 900 / 900;
	}
	#director #dire__name {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}
	#director #dire__name img {
		width: 70%;
		height: auto;
		aspect-ratio: 1122 / 211;
	}
	#director .filmo h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
	}
	#director .filmo h3 img {
		width: 70%;
	}

}

/* ========================================
ディレクター下
========================================== */
#under {
	width: 100%;
	height: auto;
	position: relative;
}
#under #under__bg1 {
	width: 100%;
	height: auto;
}
#under #under__bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#under #under__bg1 img ,
#under #under__bg2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}

#under #under__tate {
	width: 1%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	opacity: 0;
}
.under__bg2 {
	animation: fadeIn 1.5s ease 0.3s forwards;
}
.under__tate {
	animation: fadeIn 1.5s ease 0.7s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#under #under__bg1 img ,
	#under #under__bg2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}

	#under #under__tate {
		width: 4%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
		opacity: 0;
	}

}

/* ========================================
コメント
========================================== */
#comment {
	width: 100%;
	height: auto;
	padding: 15vw 0;
	position: relative;
	z-index: -14;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
}
#comment h2 img {
	width: 17%;
}
#comment .com-unit {
	width: 40%;
	height: auto;
	margin: 0 30% 10vw;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	color: #000;
	font-size: 1.2vw;
	font-weight: bold;
	letter-spacing: 1.5px;
	text-align: right;
}
#comment .com-unit .name span {
	font-size: 1vw;
	margin-left: 1vw;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		position: relative;
		z-index: -14;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#comment h2 img {
		width: 30%;
	}
	#comment .com-unit {
		width: 80%;
		height: auto;
		margin: 0 10% 10vw;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.2rem;
		font-weight: bold;
		letter-spacing: 1.5px;
		text-align: right;
	}
	#comment .com-unit .name span {
		font-size: 1rem;
		margin-left: 1rem;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#comment h2 img {
		width: 40%;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.2rem;
		font-weight: bold;
		letter-spacing: 1.5px;
		text-align: right;
	}
	#comment .com-unit .name span {
		font-size: 1rem;
		margin-right: 1rem;
	}

}


/* ========================================
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;
	}
}



/* ========================================
フッター
========================================== */
#foot-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -15;
	pointer-events: none;
	opacity: 0;
}
#foot-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -13;
	pointer-events: none;
	opacity: 0;
}
footer {
	width:100%;
	height:auto;
	padding:20vw 0 0;
	margin:0;
	position: relative;
	z-index: -14;
}
footer #foot__logo-jp {
	width: 100%;
	height: auto;
	padding: 0 0 23vw;
	text-align: center;
}
footer #foot__logo-jp img {
	width: 22%;
}
footer #foot__logo-en {
	width: 10%;
	height: auto;
	position: absolute;
	top: 28vw;
	left: 53%;
	opacity: 0;
}
#button-area {
	position: fixed;
	bottom: 0;
	z-index: -12;
	opacity: 0;
	pointer-events: none;
}
@keyframes button-area {
	0% {opacity: 0;pointer-events: none;}
	100% {opacity: 1;pointer-events: all;}
}

.button-area {
	animation: button-area 1.0s ease 0.9s forwards;
}



@media (max-width: 1024px) {
	#foot-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -15;
		pointer-events: none;
		opacity: 0;
	}
	#foot-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -13;
		pointer-events: none;
		opacity: 0;
	}
	footer {
		width:100%;
		height:auto;
		padding:50vw 0 0;
		margin:0;
		position: relative;
		z-index: -14;
	}
	footer #foot__logo-jp {
		width: 100%;
		height: auto;
		padding: 0 0 60vw;
		text-align: center;
	}
	footer #foot__logo-jp img {
		width: 60%;
	}
	footer #foot__logo-en {
		width: 25%;
		height: auto;
		position: absolute;
		top: 155vw;
		left: 55%;
		opacity: 0;
	}
	
}
@media (max-width: 600px) {
	#foot-bg1 {
		width: 100%;
		height: 90%;
		min-height: 90%;
		background-size: cover;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -15;
		pointer-events: none;
		opacity: 0;
	}
	#foot-bg2 {
		width: 100%;
		height: 90%;
		min-height: 90%;
		background-size: cover;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -13;
		pointer-events: none;
		opacity: 0;
	}
	#foot-bg2::after {
		content: "";
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 10%;
		background-color: #000;
		z-index: -13;
	}
	footer {
		width:100%;
		height:auto;
		padding:50vw 0 0;
		margin:0;
		position: relative;
		z-index: -14;
	}
	footer #foot__logo-jp {
		width: 100%;
		height: auto;
		padding: 0 0 100vw;
		text-align: center;
	}
	footer #foot__logo-jp img {
		width: 60%;
	}
	footer #foot__logo-en {
		width: 25%;
		height: auto;
		position: absolute;
		top: 175vw;
		left: 55%;
		opacity: 0;
	}

}


