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

@-webkit-keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop-slide-rev {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}
@keyframes 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;
}
@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;
}

@keyframes load2 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	31% {opacity: 1;}
	32% {opacity: 0.05;}
	33% {opacity: 0.1;}
	36% {opacity: 0.8;}
	37% {opacity: 1;}
	60% {opacity: 1;}
	63% {opacity: 0.1;}
	65% {opacity: 1;}
	100% {opacity: 1;}
}




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

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


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

.movie-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal{
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11000;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.96;
}
.modal-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.modal__content {
    width: 40%;
	height: auto;
	box-sizing: border-box;
	border: 1px solid #fff;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.movie__content {
    width: 65%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.movie__content .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.movie__content .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie__content ul#movie-changer {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.batsu {
	width: 5%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}


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

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

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

}





/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#top #top__bg1 {
	width: 100%;
	height: auto;
}
#top #top__bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#top #top__bg1 img ,
#top #top__bg2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__award {
	width: 15%;
	height: auto;
	position: absolute;
	top: 3%;
	right: 12.5%;
	opacity: 0;
}
#top #top__cast {
	width: 26%;
	height: auto;
	position: absolute;
	top: 12%;
	right: 7%;
	opacity: 0;
}
#top #top__title {
	width: 26%;
	height: auto;
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	position: absolute;
	top: 19%;
	right: 7%;
	opacity: 0;
}
#top #top__catch1 {
	width: 28%;
	height: auto;
	position: absolute;
	top: 40%;
	right: 6%;
	opacity: 0;
}
#top #top__catch2 {
	width: 2.5%;
	height: auto;
	position: absolute;
	top: 49%;
	left: 36%;
}
#top #top__catch2 #top__catch2-1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__catch2 #top__catch2-2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#top #top__date {
	width: 32%;
	height: auto;
	position: absolute;
	bottom: 18%;
	left: 4%;
	opacity: 0;
}
#top #top__date #top__date1 {
	width: 100%;
	height: auto;
}
#top #top__date #top__date2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#top #top__bb {
	width: 45%;
	height: auto;
	position: absolute;
	bottom: 5%;
	left: 4%;
	opacity: 0;
}
#top #top__sns {
	width: 20%;
	height: auto;
	position: absolute;
	bottom: 11%;
	right: 6%;
	display: flex;
	justify-content: flex-end;
	opacity: 0;
}
#top #top__sns a {
	display: block;
	width: 20%;
	height: auto;
	margin: 0 1.5%;
}
#top #top__sns a:hover {
	animation: flash 1.5s;
}

.top-first-anime {
	animation: fadeIn 0.3s ease-in 0.5s forwards;
}
.top__catch2-1 {
	animation: top__catch 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.2s both;
}
.top__catch2-2 {
	animation: top__catch 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.5s both;
}
.top-last-anime {
	animation: fadeIn 1.5s ease 1.9s forwards;
}
.top__date2 {
	animation: tenmetsu1 6s linear 3.0s infinite;
}
@keyframes top__catch {
	0% {transform: scale(0);opacity: 1;}
	100% {transform: scale(1);opacity: 1;}
}


@keyframes tenmetsu1 {
	0% {opacity: 1;filter: hue-rotate(0deg);}
	20% {opacity: 1;filter: hue-rotate(0deg);transform: skewX(0deg);}
	20.6% {transform: skewX(0deg);}
	21% {opacity: 1;filter: hue-rotate(270deg);transform: skewX(15deg);}
	21.4% {transform: skewX(0deg);}
	22% {opacity: 1;filter: hue-rotate(0deg);}
	23% {opacity: 1;filter: hue-rotate(15deg);}
	24% {opacity: 1;filter: hue-rotate(0deg);}
	30% {opacity: 1;transform: skewX(0deg);}
	31% {opacity: 0.4;transform: skewX(0deg);filter: hue-rotate(0deg);}
	31.5% {transform: skewX(30deg);}
	32% {opacity: 0.8;transform: skewX(0deg);filter: hue-rotate(280deg);}
	32.5% {opacity: 0.4;transform: skewX(-10deg);}
	33% {opacity: 0.4;transform: skewX(0deg);filter: hue-rotate(0deg);}
	34% {opacity: 1;transform: skewX(0deg);}
	70% {opacity: 1;}
	71% {opacity: 0.2;filter: hue-rotate(0deg);transform: skewX(0deg);}
	71.5% {transform: skewX(0deg);}
	72% {opacity: 0.8;filter: hue-rotate(270deg);transform: skewX(-12deg);}
	72.5% {transform: skewX(0deg);}
	73% {opacity: 0.3;filter: hue-rotate(0deg);}
	74% {opacity: 1;}
	100% {opacity: 1;}
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg1 img ,
	#top #top__bg2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__award {
		width: 35%;
		height: auto;
		position: absolute;
		top: 2%;
		right: 14%;
		opacity: 0;
	}
	#top #top__cast {
		width: 59%;
		height: auto;
		position: absolute;
		top: 8%;
		right: 2%;
		opacity: 0;
	}
	#top #top__title {
		width: 59%;
		height: auto;
		margin: 0;
		font-size: inherit;
		font-weight: inherit;
		position: absolute;
		top: 12%;
		right: 2%;
		opacity: 0;
	}
	#top #top__catch1 {
		width: 62%;
		height: auto;
		position: absolute;
		top: 24%;
		right: 1%;
		opacity: 0;
	}
	#top #top__catch2 {
		width: 9%;
		height: auto;
		position: absolute;
		top: 45%;
		left: 6%;
	}
	#top #top__date {
		width: 88%;
		height: auto;
		position: absolute;
		bottom: 5%;
		left: 6%;
		opacity: 0;
	}
	#top #top__bb {
		display: none;
	}
	#top #top__sns {
		display: none;
	}


}

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

}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 2vw 0 1vw;
	background-color: #000;
	position: relative;
}
#bridge #sp__bb {
	display: none;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #theater img {
	width: 18%;
}
#bridge #sns-link {
	display: none;
}
#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: 0 0 5vw;
		background-color: #000;
		position: relative;
	}
	#bridge #sp__bb {
		display: block;
		width: 96%;
		height: auto;
		margin: 0 2% 5vw;
		opacity: 0;
	}

	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#bridge #theater img {
		width: 40%;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		display: flex;
		justify-content: center;
	}
	#bridge #sns-link a {
		display: block;
		width: 13%;
		height: auto;
		margin: 0 1%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 0 0 5vw;
		background-color: #000;
		position: relative;
	}
	#bridge #theater {
		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: 14%;
		height: auto;
		margin: 0 1%;
	}

}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 7vw;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.trailer h2 {
	width:20%;
	height:auto;
	padding:0;
	margin:0 40% 0;
	text-align: center;
	position: relative;
}
.trailer h2 #trailer__head1 {
	width: 100%;
	height: auto;
}
.trailer h2 #trailer__head2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: tenmetsu1 5s linear 0s infinite;
}
@keyframes tenmetsu2 {
	0% {opacity: 1;filter: hue-rotate(0deg);}
	20% {opacity: 1;filter: hue-rotate(0deg);transform: translateX(0);}
	20.6% {transform: translateX(0);}
	21% {opacity: 1;filter: hue-rotate(-60deg);transform: translateX(80%);}
	21.4% {transform: translateX(0);}
	22% {opacity: 1;filter: hue-rotate(0deg);}
	23% {opacity: 1;filter: hue-rotate(120deg);}
	24% {opacity: 1;filter: hue-rotate(0deg);}
	30% {opacity: 1;transform: translateX(0);}
	31% {opacity: 0.4;transform: translateX(0);filter: hue-rotate(0deg);}
	31.5% {transform: translateX(80%);}
	32% {opacity: 0.8;transform: translateX(0);filter: hue-rotate(280deg);}
	32.5% {opacity: 0.4;transform: translateX(60%);}
	33% {opacity: 0.4;transform: translateX(0);filter: hue-rotate(0deg);}
	34% {opacity: 1;transform: translateX(0);}
	70% {opacity: 1;}
	71% {opacity: 0.2;filter: hue-rotate(0deg);transform: translateX(0);}
	71.5% {transform: translateX(0);}
	72% {opacity: 0.8;filter: hue-rotate(190deg);transform: translateX(100%);}
	72.5% {transform: translateX(0);}
	73% {opacity: 0.3;filter: hue-rotate(0deg);}
	74% {opacity: 1;}
	100% {opacity: 1;}
}

#video-wrap {
	width: 60%;
	height: auto;
	box-sizing: border-box;
	margin: 0 20%;
	padding: 0;
	border: 2px solid #72abb8;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0;
	display:block;
} 
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.trailer ul#movie-changer {
	width: 60%;
	height: auto;
	margin: 10px 20%;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.movie-btn {
	width: 30%;
	height: auto;
	margin: 0 1%;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fe0505;
	color: #fe0505;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
		background-color: #000;
	}
	.trailer h2 {
		width:30%;
		height:auto;
		padding:0;
		margin:0 35%;
		position: relative;
		text-align: center;
	}
	#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%;
		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: 600px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 20vw;
	}
	.trailer h2 {
		width:50%;
		height:auto;
		padding:0;
		margin:0 25%;
		position: relative;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}


}



/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:1vw 0;
	opacity: 1;
}
#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
#button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
#button-area ul.social_sq_buttons li.fb {
	background:#1877F2;
}
#button-area ul.social_sq_buttons li.tw {
	background:#000;
}
#button-area ul.social_sq_buttons li.line {
	background:#06C755;
}
#button-area ul.social_sq_buttons li.checkin {
	background:#10519D;
}
#button-area ul.social_sq_buttons li.filmarks {
	background:#FFE100;
	text-align: center;
}
#button-area ul.social_sq_buttons li.filmarks img {
	width: 60%;
}
#button-area ul.social_sq_buttons li.fb .fb_iframe_widget > span {
  vertical-align: baseline !important;
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
	#button-area {
		width:100%;
		height:auto;
		margin:0;
		padding:10px 0 10px;
	}
	#button-area ul.social_sq_buttons {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		list-style-type: none;
		display:flex;
		justify-content: center;
		flex-wrap:wrap;
	}
	#button-area ul.social_sq_buttons li {
		width:160px;
		height: 20px;
		margin:5px;
		padding:3px 0;
		display: flex;
		justify-content: center;
	}
}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: relative;
	overflow: hidden;
}

@media (max-width: 1024px) {

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

}

