html{
  height:100%; 
  font-display: swap;
}
body { 
	width:100%; 
	height:100%;
	margin: 0; 
	padding:0;
	overflow-x:hidden;
	background-color: #0d233b;
}
.wf-loading body {
  font-family: system-ui, sans-serif;
}
.wf-active body {
	font-family: "vdl-v7gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

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 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: fadeIn 0.2s ease forwards !important;
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
.fadeOutFast {
	animation: fadeOut 0.1s forwards;
}



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		width:100%; 
		height:100vh;
		overflow-x:hidden;
		background-color: #0a1b30;
	}
	.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: #0d233b;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
	place-items: center;
}
#loader {
	width:30%;
	height:auto;
	position: relative;
}
#loader #load1 {
	width:100%;
	height:auto;
}
#loader #load2 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load2 2.0s linear forwards;
}
#loader #load3 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load3 2.0s linear forwards;
}
#loader #load4 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load4 2.0s linear forwards;
}
@keyframes load2 {
	0% {opacity: 0;}
	25% {opacity: 0;}
	26% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes load3 {
	0% {opacity: 0;}
	50% {opacity: 0;}
	51% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes load4 {
	0% {opacity: 0;}
	75% {opacity: 0;}
	76% {opacity: 1;}
	100% {opacity: 1;}
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #0a1b30;
	}
	#loader {
		width:30%;
		height:auto;
		margin:0;
		padding:0;
	}
}

@media (max-width: 600px) {
	#loader-bg {
		background: #0a1b30;
	}
	#loader {
		width:40%;
		height:auto;
		margin:0;
		padding:0;
	}
}

/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:5px 0 15px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #0d233b 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:2vw;
	line-height:2vw;
	letter-spacing: 1.5px;
	text-align: center;
	color: #fff;
	font-family: "apotek-comp", 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/SA-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: #b81c22;
	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: #b81c22 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#b81c22;
	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: #b81c22;
	font-family: "apotek-comp", 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;
	
	}
    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: 0;
		background-size: cover;
		background-position: center bottom;
		z-index: 200000;
		display: flex;
		align-items: center;
	}
	.global-nav__list {
		margin: 5px 0;
	}
	.global-nav__item {
		margin: 0 0 7px !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:3.3rem;
		line-height: 3.3rem;
		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:2.5rem;
		line-height: 2.5rem;
		letter-spacing: 1.0px;
	}

}


/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#top #top__bg {
	width: 100%;
	height: auto;
}
#top #top__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1280;
}
#top #mist {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 18%;
	left: -20%;
	pointer-events: none;
	opacity: 1;
}
.ag-smoke-block {
	width: 100%;
	height: auto;
	z-index: 1;
	position: relative;
}
.ag-smoke-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -10%;
	animation: an-smoke-1 2.0s ease-in-out infinite;
	height: 25vw;
	width: 50vw;
}
.ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 25%;
	animation: an-smoke-1 2.8s ease-in-out infinite;
	height: 25vw;
	width: 50vw;
}
.ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -40%;
	animation: an-smoke-1 3.6s ease-in-out infinite;
	height: 25vw;
	width: 50vw;
}
.ag-smoke__delay-1 {
	animation-delay: 0.4s;
}  
.ag-smoke__delay-2 {
	animation-delay: 0.8s;
}
.ag-smoke__delay-3 {
	animation-delay: 1.2s;
}
.ag-smoke__delay-4 {
	animation-delay: 0.1s;
}  
.ag-smoke__delay-5 {
	animation-delay: 0.8s;
}
.ag-smoke__delay-6 {
	animation-delay: 1.5s;
}
.ag-smoke-1 img ,
.ag-smoke-2 img ,
.ag-smoke-3 img {
	width: auto;
	height: 100%;
}
@keyframes an-smoke-1 {
0% {
	opacity: 0;

	-webkit-transform: translateX(-15%) rotate(.01deg);
	transform: translateX(-15%) rotate(.01deg);
	}
	50% {
	opacity: 0.8;
	}
	to {
	opacity: 0;

	-webkit-transform: translateX(15%) rotate(.01deg);
	transform: translateX(0) rotate(.01deg);
	}
}
#top #top__award1 {
	width: 29%;
	height: auto;
	position: absolute;
	top: 5%;
	left: 5%;
	opacity: 0;
}
#top #top__award2 {
	width: 29%;
	height: auto;
	position: absolute;
	top: 5%;
	left: 34.5%;
	opacity: 0;
}
#top #top__catch {
	width: 1.15%;
	height: auto;
	position: absolute;
	top: 38.3%;
	left: 29%;
	opacity: 0;
}
#top #top__logo-en {
	width: 21%;
	height: auto;
	position: absolute;
	top: 12%;
	right: 8%;
}
#top #top__logo-jp {
	width: 27.2%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	position: absolute;
	top: 30%;
	right: 8%;
	opacity: 0;
}
#top #top__bbjp {
	width: 33%;
	height: auto;
	position: absolute;
	top: 35%;
	right: 8%;
	opacity: 0;
}
#top #top__date {
	width: 27.2%;
	height: auto;
	position: absolute;
	top: 45%;
	right: 8%;
	opacity: 0;
}
#top #top__bben {
	width: 40%;
	height: auto;
	position: absolute;
	bottom: 12%;
	left: 30%;
	opacity: 0;
}
#top #top__catch2 {
	width: 50%;
	height: auto;
	position: absolute;
	bottom: 4%;
	left: 25%;
	opacity: 0;
}
@keyframes award {
	0% {
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0);
		opacity: 1;
	}
}
.top__award1 {
	animation: award 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s both;
}
.top__award2 {
	animation: award 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.7s both;
}
.top__catch {
	animation: fadeIn 1.0s ease 1.5s forwards;
}
.top-last-anime {
	animation: fadeIn 1.0s ease 2.3s forwards;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	@keyframes an-smoke-1 {
	0% {
		opacity: 0;

		-webkit-transform: translateX(-50%) rotate(.01deg);
		transform: translateX(-50%) rotate(.01deg);
		}
		50% {
		opacity: 0.4;
		}
		to {
		opacity: 0;

		-webkit-transform: translateX(50%) rotate(.01deg);
		transform: translateX(50%) rotate(.01deg);
		}
	}
	#top #mist {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 18%;
		left: -20%;
		pointer-events: none;
		opacity: 1;
	}
	.ag-smoke-block {
		width: 100%;
		height: auto;
		z-index: 1;
		position: relative;
	}
	.ag-smoke-1 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 30%;
		animation: an-smoke-1 2.0s ease-in-out infinite;
		height: 50vh;
		width: 50vw;
	}
	.ag-smoke-2 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 70%;
		animation: an-smoke-1 2.8s ease-in-out infinite;
		height: 50vh;
		width: 50vw;
	}
	.ag-smoke-3 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: -40%;
		animation: an-smoke-1 3.6s ease-in-out infinite;
		height: 50vh;
		width: 50vw;
	}
	#top #top__award1 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 6%;
		left: 20%;
		opacity: 0;
	}
	#top #top__award2 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 13%;
		left: 20%;
		opacity: 0;
	}
	#top #top__catch {
		width: 3%;
		height: auto;
		position: absolute;
		top: 38.3%;
		left: 10%;
		opacity: 0;
	}
	#top #top__logo-en {
		width: 50%;
		height: auto;
		position: absolute;
		top: 25%;
		right: 4%;
	}
	#top #top__logo-jp {
		width: 65%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 39%;
		right: 4%;
		opacity: 0;
	}
	#top #top__bbjp {
		width: 80%;
		height: auto;
		position: absolute;
		top: 43%;
		right: 4%;
		opacity: 0;
	}
	#top #top__date {
		width: 80%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 3%;
		right: 4%;
		opacity: 0;
	}
	#top #top__bben {
		width: 92%;
		height: auto;
		position: absolute;
		bottom: 13%;
		left: 4%;
		opacity: 0;
	}
	#top #top__catch2 {
		display: none;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.ag-smoke-1 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 30%;
		animation: an-smoke-1 2.0s ease-in-out infinite;
		height: 40vh;
		width: 50vw;
	}
	.ag-smoke-2 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 70%;
		animation: an-smoke-1 2.8s ease-in-out infinite;
		height: 40vh;
		width: 50vw;
	}
	.ag-smoke-3 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: -40%;
		animation: an-smoke-1 3.6s ease-in-out infinite;
		height: 40vh;
		width: 50vw;
	}
	#top #top__award1 {
		width: 84%;
		height: auto;
		position: absolute;
		top: 3%;
		left: 8%;
		opacity: 0;
	}
	#top #top__award2 {
		width: 84%;
		height: auto;
		position: absolute;
		top: 13%;
		left: 8%;
		opacity: 0;
	}
	#top #top__catch {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 46%;
		left: 5%;
		opacity: 0;
	}
	#top #top__logo-en {
		width: 50%;
		height: auto;
		position: absolute;
		top: 28%;
		right: 4%;
	}
	#top #top__logo-jp {
		width: 65%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 42.5%;
		right: 4%;
		opacity: 0;
	}
	#top #top__bbjp {
		width: 80%;
		height: auto;
		position: absolute;
		top: 47%;
		right: 4%;
		opacity: 0;
	}
	#top #top__date {
		width: 91%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 3%;
		right: 4%;
		opacity: 0;
	}

}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 2vw 0 1vw;
	background-color: #0d233b;
	position: relative;
}
#bridge #top__catch2-sp {
	display: none;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #theater img {
	width: 18%;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	display: flex;
	justify-content: center;
}
#bridge #sns-link a {
	display: block;
	width: 3.5%;
	height: auto;
	margin: 0 0.5%;
}
#bridge #sns-link a:hover ,
#bridge #theater a:hover {
	animation: flash 1.5s;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0 5vw;
		background-color: #0a1b30;
		position: relative;
	}
	#bridge #top__catch2-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #top__catch2-sp img {
		width: 80%;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#bridge #theater img {
		width: 40%;
	}
	#bridge #mubi {
		width: 100%;
		height: auto;
		margin: 0 0 7vw;
		text-align: center;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		display: flex;
		justify-content: center;
	}
	#bridge #sns-link a {
		display: block;
		width: 10%;
		height: auto;
		margin: 0 1%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 10vw 0 5vw;
		background-color: #0a1b30;
		position: relative;
	}
	#bridge #top__catch2-sp img {
		width: 90%;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#bridge #top__catch2-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		display: flex;
		justify-content: center;
	}
	#bridge #sns-link a {
		display: block;
		width: 12%;
		height: auto;
		margin: 0 1%;
	}

}

/* ========================================
ニュース
========================================== */
#news-wrapper {
	width: 100%;
	height: auto;
	padding: 7vw 0;
	background-color: #0d233b;
}
#news {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 0 25%;
	border: 1px solid #fff;
	position: relative;
}
#news #news__bg {
	width: 100%;
	height: auto;
}
#news #news__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1193 / 547;
}
#news h2 {
	width: 14%;
	height: auto;
	position: absolute;
	top: 0;
	left: 10%;
	transform: translateY(-50%);
}
#news #news__list {
	width: 80%;
	height: auto;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 15%;
	left: 10%;
}
#news #news__list li {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	display: flex;
	justify-content: flex-start;
}
#news #news__list li .date {
	width: 16%;
	height: auto;
	margin: 0 5% 0 0;
	color: #fff;
	font-size: 1.6vw;
	font-family: "apotek-comp", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 2.3vw;
	letter-spacing: 1.5px;
}
#news #news__list li .headline {
	width: 79%;
	height: auto;
	margin: 0;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.2px;
}
#news #news__list li .headline a {
	color: #fff;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#news-wrapper {
		width: 100%;
		height: auto;
		padding: 7vw 0;
		background-color: #0a1b30;
	}
	#news {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin: 0 5%;
		border: 1px solid #fff;
		position: relative;
	}
	#news #news__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1072 / 1695;
	}
	#news h2 {
		width: 20%;
		height: auto;
		position: absolute;
		top: 0;
		left: 10%;
		transform: translateY(-50%);
	}
	#news #news__list {
		width: 90%;
		height: auto;
		list-style-type: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 10%;
		left: 5%;
	}
	#news #news__list li {
		width: 100%;
		height: auto;
		margin: 8vw 0;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	#news #news__list li .date {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		color: #fff;
		font-size: 1.7rem;
		font-family: "apotek-comp", sans-serif;
		font-weight: 400;
		font-style: normal;
		line-height: 1.5rem;
		letter-spacing: 1.5px;
	}
	#news #news__list li .headline {
		width: 100%;
		height: auto;
		margin: 0;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.2px;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#news h2 {
		width: 30%;
		height: auto;
		position: absolute;
		top: 0;
		left: 10%;
		transform: translateY(-50%);
	}

}



/* ========================================
モーダル
========================================== */
.modal{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
	z-index: 11000;
	display: none;
	opacity: 0;
}
.modal__bg1 {
	background:#0d233b;
    height: 100%;
    position: absolute;
    width: 100%;
}
.modal__bg2 {
	background:rgba(0, 0, 0, 0.5);
    height: 100%;
    position: absolute;
    width: 100%;
}
.news__content {
    width: 60%;
	height: 90%;
	box-sizing: border-box;
	border: 1px solid #fff;
	color: #fff;
    padding: 40px 5vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.news__content::-webkit-scrollbar{
  display:none;
}
.news__content h3 {
	width: 100%;
	height: auto;
	margin: 0 0 7px;
	text-align: left;
	font-size: 1.5rem;
	font-weight: 600;
	color: #e50012;
	letter-spacing: 1.5px;
}
.news__content .date {
	width: 100%;
	height: auto;
	margin: 0 0 20px;
	text-align: right;
	color: #fff;
	font-size: 1.4rem;
	line-height: 2rem;
	font-family: "apotek-comp", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1.2px;
}
.news__content p {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: left;
	font-size: 1.0rem;
	line-height: 2rem;
	color: #fff;
	word-break: break-all;
	letter-spacing: 1.2px;
}
.news__content p a {
	color: #fff;
}
.cast__content {
    width: 34%;
	height: auto;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 60px;
    padding: 2vw 1vw 1vw;
    position: absolute;
    place-self: center;
	inset: 0;
	overflow: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.cast__content::-webkit-scrollbar{
  display:none;
}
.cast__content .role {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
.cast__content .role img {
	width: 40%;
}
.cast__content .photo {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
.cast__content .photo img {
	width: 50%;
}
.cast__content .name {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
.cast__content .name img {
	width: 60%;
}
.cast__content p {
	width: 100%;
	height: auto;
	text-align: center;
	color: #000;
	font-size: 1.0vw;
	line-height: 2.0vw;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
.modal-prev {
	width: 10%;
	height: auto;
	position: absolute;
	top: 48%;
	left: 23%;
	text-align: center;
	color: #fff;
	font-size: 1.5vw;
	text-decoration: none;
	font-weight: 700;
}
.modal-next {
	width: 10%;
	height: auto;
	position: absolute;
	top: 48%;
	right: 23%;
	text-align: center;
	color: #fff;
	font-size: 1.5vw;
	text-decoration: none;
	font-weight: 700;
}

.batsu {
	width: 5%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu-cast {
	width: 5%;
	height: auto;
	position: fixed;
	top: 10%;
	right: 27%;
}

.batsu img:hover ,
.batsu-cast img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.news__content {
		width: 98%;
		height: 80%;
		box-sizing: border-box;
		border: 1px solid #fff;
		color: #fff;
		padding: 40px 5vw;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.news__content h3 {
		width: 100%;
		height: auto;
		margin: 0 0 20px;
		text-align: left;
		font-size: 1.3rem;
		color: #e50012;
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
}

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


}






/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 10vw;
	overflow: hidden;
	position: relative;
	background-color: #0d233b;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1.5vw;
	text-align: center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width: 10%;
}
#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 #B81C22;
	color: #B81C22;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #B81C22;
	border: 1px solid #B81C22;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #B81C22;
	border: 1px solid #B81C22;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}


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

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 20vw;
	}
	.trailer h2 {
		width:99%;
		height:auto;
		padding:0;
		margin:0 0 5vw 1%;
		position: relative;
	}
	.trailer h2 img {
		width: 30%;
	}
	#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;
	}
	.trailer ul#movie-changer {
		flex-wrap: wrap;
	}
	.movie-btn {
		width: 65%;
		height: auto;
		margin: 1vw 0;
		font-size: 1rem;
	}

}


/* ========================================
イントロダクション
========================================== */
.intro-bgs {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	inset: 0;
}
#intro__bg {
	background-image: url(../img/SA-intro-bg-pc.jpg);
	z-index: -30;
}
#intro__futa1 {
	background-image: url(../img/SA-intro-futa-1-pc.png);
	z-index: -28;
	animation: intro__futa1 8s ease infinite;
}
#intro__futa2 {
	background-image: url(../img/SA-intro-futa-2-pc.png);
	z-index: -28;
	animation: intro__futa2 8s ease infinite;
}
@keyframes intro__futa1 {
	0% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes intro__futa2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#intro {
	width: 100%;
	height: auto;
	padding: 30vw 0 40vw;
	position: relative;
	z-index: -29;
	perspective: 500px;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	text-align: center;
}
#intro h2 img {
	width: 16%;
}
#intro #intro__award1 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	opacity: 0;
	backface-visibility: hidden;
}
#intro #intro__award2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	text-align: center;
	opacity: 0;
	backface-visibility: hidden;
}
#intro #intro__award1 img ,
#intro #intro__award2 img {
	width: 27%;
}
@keyframes turnIn {
	0% {opacity: 0;transform: rotateX(180deg);transform-origin: center bottom;}
	100% {opacity: 1;transform: rotateX(0deg);transform-origin: center bottom;}
}
.intro__award1 ,
.intro__award2 {
	animation: turnIn 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
#intro .intro__leads {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#intro__lead1 img {
	width: 40%;
	height: auto;
	aspect-ratio: 1326 / 113;
}
#intro__lead2 img {
	width: 40%;
	height: auto;
	aspect-ratio: 1313 / 114;
}
#intro p {
	width: 40%;
	height: auto;
	margin: 0 30% 10vw;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
	font-weight: 600;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#intro__bg {
		background-image: url(../img/SA-intro-bg-sp.jpg);
		z-index: -30;
	}
	#intro__futa1 {
		background-image: url(../img/SA-intro-futa-1-sp.png);
		z-index: -28;
		animation: intro__futa1 8s ease infinite;
	}
	#intro__futa2 {
		background-image: url(../img/SA-intro-futa-2-sp.png);
		z-index: -28;
		animation: intro__futa2 8s ease infinite;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 100vw 0 100vw;
		position: relative;
		z-index: -29;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 70vw;
		text-align: center;
	}
	#intro h2 img {
		width: 60%;
	}
	#intro #intro__award1 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#intro #intro__award2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
	}
	#intro #intro__award1 img ,
	#intro #intro__award2 img {
		width: 80%;
	}
	#intro .intro__leads {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		text-align: center;
	}
	#intro__lead1 img {
		width: 70%;
		height: auto;
		aspect-ratio: 1144 / 519;
	}
	#intro__lead2 img {
		width: 60%;
		height: auto;
		aspect-ratio: 1021 / 410;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5% 30vw;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
		font-weight: 600;
	}
}


/* 以下スマホ */
@media (max-width: 600px) {
	#intro__lead1 img {
		width: 90%;
		height: auto;
		aspect-ratio: 1144 / 519;
	}
	#intro__lead2 img {
		width: 80%;
		height: auto;
		aspect-ratio: 1021 / 410;
	}

}


/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: 120%;
	min-height: 120%;
	overflow-y: hidden;
	background: #fff;
	position: relative;
}
@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;
	}
}
#story .top-slide-wrap {
	width: 23%;
	height: auto;
	overflow-y: hidden;
	overflow-x: visible;
	position: absolute;
	opacity: 1;
}
.left-down-slide {
	width: 23%;
	height: auto;
	margin: 0;
	overflow-y: hidden;
	overflow-x: visible;
	opacity: 1;
	background: linear-gradient(
	to right,
	#b81c22 0%,
	#b81c22 85%,
	#ffffff 85%,
	#ffffff 100%
	);
	left: 0;
}
.right-up-slide {
	width: 23%;
	height: auto;
	overflow-y: hidden;
	overflow-x: visible;
	opacity: 1;
	background: linear-gradient(
	to left,
	#0d233b 0%,
	#0d233b 85%,
	#ffffff 85%,
	#ffffff 100%
	);
	right: 0;
}
.left-down-slide .top-slide {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	animation: loop-slide-tate 128s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
.right-up-slide .top-slide {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	animation: loop-slide-tate-rev 220s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#story .top-slide-wrap .top-slide .content {
	width: 90%;
	height: auto;
	margin: 1.5vw 0;
	position: relative;
	z-index: 2;
}
#story .right-up-slide .top-slide .content {
	margin: 1.5vw 0 1.5vw 10%;
}
#story .right-up-slide .top-slide .content:nth-child(even) {
	transform: translateX(-8%);
}
#story .left-down-slide .top-slide .content:nth-child(even) {
	transform: translateX(8%);
}

#story .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	aspect-ratio: 900 / 500;
}
#story #story-contents {
	width: 48%;
	height: auto;
	position: absolute;
	place-self: center;
	inset: 0;
}
#story #story-contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#story #story-contents h2 img {
	width: 17%;
}
#story #story-contents #story__lead {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#story #story-contents #story__lead img {
	width: 90%;
	height: auto;
	aspect-ratio: 1090 / 125;
}
#story #story-contents p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.1vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
	font-weight: 600;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: auto;
		min-height: auto;
		overflow: hidden;
		pointer-events: none;
		display: flex;
		flex-wrap: wrap;
		position: relative;
	}
	#story .top-slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
		opacity: 1;
		position: static;
	}
	#story .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;	
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	#story .left-down-slide {
		width: 100%;
		height: 70vw;
		margin: 0;
		align-items: flex-end;
		overflow: hidden;
		opacity: 1;
		order: 3;
		background: linear-gradient(
		to top,
		#b81c22 0%,
		#b81c22 85%,
		#ffffff 85%,
		#ffffff 100%
		);
	}
	#story .right-up-slide {
		width: 100%;
		height: 70vw;
		align-items: flex-start;
		overflow: hidden;
		opacity: 1;
		order: 1;
		background: linear-gradient(
		to bottom,
		#0d233b 0%,
		#0d233b 85%,
		#ffffff 85%,
		#ffffff 100%
		);
	}	
	#story .left-down-slide .top-slide {
		width: auto;
		animation: loop-slide 87.3s infinite linear 0s both;
	}
	#story .right-up-slide .top-slide {
		width: auto;
		animation: loop-slide-rev 150s infinite linear 0s both;
	}
	#story .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
	}
	#story .right-up-slide .top-slide .content {
		margin: 0;
	}
	#story .right-up-slide .top-slide .content:nth-child(even) {
		transform: translate3d(0, 0, 0);
	}
	#story .left-down-slide .top-slide .content:nth-child(even) {
		transform: translate3d(0, 0, 0);
	}
	#story .top-slide-wrap .top-slide .content img {
		width: 90%;
		height: auto;
		aspect-ratio: 900 / 680;
		transform: translate3d(0, 0, 0);
	}
	#story .right-up-slide .top-slide .content:nth-child(even) img {
		width: 90%;
		height: auto;
		aspect-ratio: 900 / 680;
		transform: translate3d(0, 30%, 0);
	}
	#story .left-down-slide .top-slide .content:nth-child(even) img {
		width: 90%;
		height: auto;
		aspect-ratio: 900 / 680;
		transform: translate3d(0, -30%, 0);
	}
	#story #story-contents {
		width: 90%;
		height: auto;
		padding: 20vw 5%;
		margin: 0;
		position: static;
		transform: translate3d(0, 0, 0);
		order: 2;
	}
	#story #story-contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
	}
	#story #story-contents h2 img {
		width: 30%;
	}
	#story #story-contents #story__lead {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#story #story-contents #story__lead img {
		width: 90%;
		height: auto;
		aspect-ratio: 1140 / 516;
	}
	#story #story-contents p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
		text-align: left;
	}
	

}


/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	position: relative;
}
#cast #cast-bg {
	width: 100%;
	height: auto;
}
#cast h2 {
	width: 7%;
	height: auto;
	position: absolute;
	inset: 10% 47% 0 47%;
}
#cast .cast-unit {
	display: none;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 30vw 0 60vw;
		background-color: #0d233b;
		position: relative;
	}
	#cast #cast-bg {
		display: none;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0;
		position: static;
		inset: initial;
		text-align: center
	}
	#cast h2 img {
		width: 20%;
	}
	#cast .cast-unit {
		display: block;
		width: 100%;
		height: auto;
		margin: 10vw 0 0;
		position: relative;
		z-index: 2;
		overflow: hidden;
	}
	#cast .cast-unit .img-area {
		width: 100%;
		height: auto;
		padding: 20vw 0 0;
		position: relative;
		z-index: 2;
	}
	#cast .cast-unit .img-area .photo {
		width: 100%;
		height: auto;
		text-align: center;
	}
	#cast .cast-unit .img-area .photo img {
		width: 50%;
	}
	#cast .cast-unit .img-area .name {
		width: 27%;
		height: auto;
		position: absolute;
		top: 10vw;
		right: 10%;
		transform: scale(0) translate3d(-50%, 50%, 0);
	}
	#cast .cast-unit .txt-area {
		width: 100%;
		height: auto;
		margin: -5vw 0 0;
		padding: 10vw 0;
		position: relative;
		z-index: 1;
	}
	#cast .cast-unit .txt-area .name {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
		position: relative;
		z-index: 2;
	}
	#cast .cast-unit .txt-area .name img {
		width: 70%;
	}
	#cast .cast-unit .txt-area p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #000;
		font-size: 1.1rem;
		font-weight: 600;
		line-height: 2rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
		position: relative;
		z-index: 2;
	}
	#cast .cast-unit .txt-area .white-bg {
		width: 100%;
		height: 100%;
		background-color: #fff;
		position: absolute;
		inset: 0;
		transform: translateX(-100%);
	}
	@keyframes cast-name {
		0% {transform: scale(0) translate3d(-50%, 50%, 0);}
		98% {transform: scale(1.1) translate3d(0, 0, 0);}
		100% {transform: scale(1) translate3d(0, 0, 0);}
	}
	.cast1-name ,
	.cast2-name ,
	.cast3-name ,
	.cast4-name ,
	.cast5-name ,
	.cast6-name {
		animation: cast-name 0.1s ease-in forwards;
	}
	@keyframes cast-white {
		0% {transform: translateX(-100%);}
		100% {transform: translateX(0%);}
	}
	.cast1-white ,
	.cast2-white ,
	.cast3-white ,
	.cast4-white ,
	.cast5-white ,
	.cast6-white {
		animation: cast-white 0.5s ease forwards;
	}
}


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#cast .cast-unit .img-area {
		width: 100%;
		height: auto;
		padding: 20vw 0 0;
		position: relative;
		z-index: 2;
	}
	#cast .cast-unit .img-area .photo {
		width: 100%;
		height: auto;
		text-align: center;
	}
	#cast .cast-unit .img-area .photo img {
		width: 70%;
	}
	#cast .cast-unit .img-area .name {
		width: 30%;
		height: auto;
		position: absolute;
		top: 10vw;
		right: 10%;
		transform: scale(0) translate3d(-50%, 50%, 0);
	}
	#cast .cast-unit .txt-area .name img {
		width: 98%;
	}


}


/* ========================================
Festival&Award
========================================== */
.award-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center top;
	position: fixed;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}
#award-bg1 {
	z-index: -25;
}
#award-bg2 {
	z-index: -23;
}
#award {
	width: 100%;
	height: auto;
	padding: 20vw 0 40vw;
	position: relative;
	z-index: -24;
	overflow: hidden;
	perspective: 500px;
}
#award h2 {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	text-align: center;
}
#award h2 img {
	width: 14%;
}
#award #award__award1 ,
#award #award__award2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
	backface-visibility: hidden;
}
#award #award__award1 img ,
#award #award__award2 img {
	width: 27%;
}
@keyframes award-award {
	0% {opacity: 0;transform: scale(10);}
	100% {opacity: 1;transform: scale(1);}
}
.award__award1 ,
.award__award2 {
	animation: turnIn 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
#award #award__lead {
	width: 100%;
	height: auto;
	margin: 6vw 0 10vw;
	text-align: center;
	clip-path: inset(0 50% 0 50%);
}
#award #award__lead img {
	width: 32%;
}
@keyframes award__lead {
	0% {clip-path: inset(0 50% 0 50%);}
	100% {clip-path: inset(0 0 0 0);}
}
.award__lead {
	animation: award__lead 0.8s cubic-bezier(0.5, 0, 0.75, 0) both;
}

#award #award__list {
	width: 52%;
	height: auto;
	margin: 0 24%;
}
#award #award__list .award {
	width: 100%;
	height: auto;
	margin: 0.5vw 0;
	color: #000;
	font-size: 1.1vw;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
#award #award__list .award:nth-last-child(1) {
	width: 60%;
	margin-top: 3vw;
	text-align: right;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.award-bg {
		background-position: center 60%;
	}
	#award {
		width: 100%;
		height: auto;
		padding: 100vw 0 130vw;
		position: relative;
		z-index: -24;
		overflow: hidden;
	}
	#award h2 {
		width: 100%;
		height: auto;
		margin: 0 0 40vw;
		text-align: center;
	}
	#award h2 img {
		width: 40%;
	}
	#award #award__award1 ,
	#award #award__award2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#award #award__award1 img ,
	#award #award__award2 img {
		width: 60%;
	}
	#award #award__lead {
		width: 100%;
		height: auto;
		margin: 30vw 0 60vw;
		text-align: center;
	}
	#award #award__lead img {
		width: 60%;
	}
	#award #award__list {
		width: 70%;
		height: auto;
		margin: 0 15%;
	}
	#award #award__list .award {
		width: 100%;
		height: auto;
		margin: 8vw 0;
		color: #000;
		font-size: 1.1rem;
		font-family: "kozuka-gothic-pr6n", sans-serif;
		font-weight: 600;
		font-style: normal;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
	#award #award__list .award:nth-last-child(1) {
		margin: 8vw 0;
		text-align: right;
	}
}


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.award-bg {
		background-position: center top;
	}
	#award h2 {
		width: 100%;
		height: auto;
		margin: 0 0 40vw;
		text-align: center;
	}
	#award h2 img {
		width: 60%;
	}
	#award #award__award1 ,
	#award #award__award2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#award #award__award1 img ,
	#award #award__award2 img {
		width: 85%;
	}
	#award #award__lead {
		width: 100%;
		height: auto;
		margin: 30vw 0 150vw;
		text-align: center;
	}
	#award #award__lead img {
		width: 90%;
	}
	#award #award__list {
		width: 90%;
		height: auto;
		margin: 0 5%;
	}
	#award #award__list .award {
		width: 100%;
		height: auto;
		margin: 8vw 0;
		color: #000;
		font-size: 1.1rem;
		font-family: "kozuka-gothic-pr6n", sans-serif;
		font-weight: 600;
		font-style: normal;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
	#award #award__list .award:nth-last-child(1) {
		width: 80%;
		margin: 8vw 0;
		text-align: right;
	}


}

/* ========================================
Director
========================================== */
#director {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #0d233b;
	position: relative;
}
#director .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 12vw 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#director .slider3 {
	display: none;
}
#director .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#director .slider1 .top-slide {
	animation: loop-slide 500s infinite linear 0s both;
}
#director .slider2 .top-slide {
	animation: loop-slide-rev 500s infinite linear 0s both;
}
#director .top-slide-wrap .top-slide .content {
	width: 35vw;
	height: auto;
	margin: 0;
}
#director .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#director #director__contents {
	width: 100%;
	height: auto;
	position: absolute;
	top: 10vw;
}
#director #director__contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#director #director__contents h2 img {
	width: 12%;
}
#director #director__contents .photo {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#director #director__contents .photo img {
	width: 12%;
}
#director #director__contents .name {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#director #director__contents .name img {
	width: 18%;
}
#director #director__contents p {
	width: 50%;
	height: auto;
	margin: 0 25% 2vw;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
.nosp {
	display: block;
}
.nopc {
	display: none;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.nosp {
		display: none;
	}
	.nopc {
		display: block;
	}
	#director {
		width: 100%;
		height: auto;
		padding: 40vw 0;
		background-color: #0d233b;
		position: relative;
	}
	#director .top-slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
	}
	#director .slider3 {
		display: flex;
	}
	#director .slider1 .top-slide ,
	#director .slider3 .top-slide {
		animation: loop-slide 100s infinite linear 0s both;
	}
	#director .slider2 .top-slide {
		animation: loop-slide-rev 100s infinite linear 0s both;
	}
	#director .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
	}
	#director #director__contents {
		width: 100%;
		height: auto;
		position: absolute;
		top: 30vw;
	}
	#director #director__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
	}
	#director #director__contents h2 img {
		width: 30%;
	}
	#director #director__contents .photo {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#director #director__contents .photo img {
		width: 40%;
	}
	#director #director__contents .name {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#director #director__contents .name img {
		width: 40%;
	}
	#director #director__contents p {
		width: 70%;
		height: auto;
		margin: 0 15% 10vw;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#director .top-slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 50vw 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
	}
	#director .top-slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
		margin: 0;
	}
	#director #director__contents {
		width: 100%;
		height: auto;
		position: absolute;
		top: 30vw;
	}
	#director #director__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
	}
	#director #director__contents h2 img {
		width: 40%;
	}
	#director #director__contents .photo {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#director #director__contents .photo img {
		width: 50%;
	}
	#director #director__contents .name {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#director #director__contents .name img {
		width: 60%;
	}
	#director #director__contents p {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}

}

/* ========================================
コメント
========================================== */
#com-bgwrap {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -20;
}
.com-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	inset: 0;
	pointer-events: none;
}
#com-bg0 {
	background-color: #000;
	z-index: -20;
}
@keyframes com-bg1 {
	0% {opacity: 1;}
	15% {opacity: 1;}
	25% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes com-bg2 {
	0% {opacity: 0;}
	15% {opacity: 0;}
	25% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes com-bg3 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	65% {opacity: 1;}
	75% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes com-bg4 {
	0% {opacity: 0;}
	65% {opacity: 0;}
	75% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#com-bg1 {
	animation: com-bg1 15s ease infinite;
	z-index: -19;
}
#com-bg2 {
	animation: com-bg2 15s ease infinite;
	z-index: -19;
}
#com-bg3 {
	animation: com-bg3 15s ease infinite;
	z-index: -19;
}
#com-bg4 {
	animation: com-bg4 15s ease infinite;
	z-index: -19;
}

#comment {
	width: 100%;
	height: auto;
	padding: 20vw 0;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	text-align: center;
}
#comment h2 img {
	width: 12%;
}
#comment .com-unit {
	width: 34%;
	height: auto;
	margin: 0 33% 9vw;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 0.5vw;
	text-align: center;
	color: #fff;
	font-size: 1.2vw;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
}
#comment .com-unit p span ,
#comment .com-unit p.big {
	font-size: 2.2vw;
}
#comment .com-unit p.left {
	text-align: left;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	color: #aed3f0;
	font-size: 1.2vw;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 50vw 0;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
	}
	#comment h2 img {
		width: 30%;
	}
	#comment .com-unit {
		width: 70%;
		height: auto;
		margin: 0 15% 15vw;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 0.5vw;
		text-align: center;
		color: #fff;
		font-size: 1.2rem;
		font-family: "kozuka-gothic-pr6n", sans-serif;
		font-weight: 500;
		font-style: normal;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
	}
	#comment .com-unit p span ,
	#comment .com-unit p.big {
		font-size: 2.2rem;
	}
	#comment .com-unit p.left {
		text-align: left;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		color: #aed3f0;
		font-size: 1.2rem;
		font-family: "kozuka-gothic-pr6n", sans-serif;
		font-weight: 500;
		font-style: normal;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 100vw 0;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 100vw;
		text-align: center;
	}
	#comment h2 img {
		width: 43%;
	}
	#comment .com-unit {
		width: 96%;
		height: auto;
		margin: 0 2% 20vw;
	}
	#comment .com-unit p span ,
	#comment .com-unit p.big {
		font-size: 2.0rem;
	}
}


/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:1vw 0;
	opacity: 1;
}
#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
#button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
#button-area ul.social_sq_buttons li.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:46.875vw;
	padding:0;
	margin:0;
	position: relative;
	overflow: hidden;
}
footer .foot-slide {
	width: 100%;
	height: auto;
	overflow: hidden;
}
footer .foot-slide .top-slide {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	animation: loop-slide-tate 50s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer .foot-slide .top-slide .content {
	width: 100%;
	height: auto;
	margin: 0;
	position: relative;
}
footer .foot-slide .top-slide .content img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 490;
}
footer .foot-logo-slide {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: absolute;
	top: 35%;
}
footer .foot-logo-slide .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	animation: loop-slide 200s infinite linear 0s both;
}
footer .foot-logo-slide .top-slide .content {
	width: 70vw;
	height: auto;
	margin: 0;
}
footer .foot-logo-slide .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer #foot__logo {
	width: 24%;
	height: auto;
	position: absolute;
	inset: 60% 38% 0 38%;
}
footer #button-area {
	position: absolute;
	bottom: 0;
}

@media (max-width: 1024px) {
	footer {
		width:100%;
		height:133.3333vw;
		padding:0;
		margin:0;
		position: relative;
		overflow: hidden;
	}
	footer .foot-slide .top-slide {
		width: 100%;
		list-style-type: none;
		margin: 0;
		padding: 0;
		animation: loop-slide-tate 30s infinite linear 0s both;
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	footer .foot-slide .top-slide .content img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 620;
	}
	footer .foot-logo-slide .top-slide .content {
		width: 150vw;
		height: auto;
		margin: 0;
	}
	footer #foot__logo {
		width: 60%;
		height: auto;
		position: absolute;
		inset: 55% 20% 0 20%;
	}
	footer .foot-logo-slide .top-slide {
		animation: loop-slide 100s infinite linear 0s both;
	}

	
}
@media (max-width: 600px) {
	footer {
		width:100%;
		height:216.744vw;
		padding:0;
		margin:0;
		position: relative;
		overflow: hidden;
	}
	footer .foot-logo-slide {
		top: 40%;
	}
	footer .foot-logo-slide .top-slide .content {
		width: 200vw;
		height: auto;
		margin: 0;
	}
	footer #foot__logo {
		width: 60%;
		height: auto;
		position: absolute;
		inset: 55% 20% 0 20%;
	}

}

