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: #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 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: #040000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
    place-items: center;
}
#loader {
	width:30%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:auto;
	animation: load1 2.5s ease infinite;
}
#loader #load2 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load2 2.5s ease infinite;
}
@keyframes load1 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	20% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes load2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}


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

}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:5px 0 15px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #000 10%, transparent);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1%;
	padding:0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.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: #fff;
	font-family: "ten-mincho", serif;
	font-weight: 400;
	font-style: italic;
}
#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/MF-menu-bg.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: #fff !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#fff;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 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: 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: #fff;
	font-family: "ten-mincho", serif;
	font-weight: 400;
	font-style: italic;

}
.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%;
	}

	
}





/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 1100000;
}
.modal__bg {
	background:#CA0E02;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.9;
}
.modal__bg2 {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.95;
}
.uranai__content {
    width: 40%;
	height: auto;
    padding: 40px;
	box-sizing: border-box;
	border: #efeaba 3px solid;
	border-radius: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	scrollbar-width: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: #000;
}
.uranai__content::-webkit-scrollbar {
    width: 0px;
}
.uranai__content img {
	display: block;
	width: 35%;
	height: auto;
	margin: 0 2%;
}
.uranai__content #fortuneDesc {
	width: 60%;
	height: auto;
	color: #efeaba;
	font-size: 1.3vw;
	line-height: 2.6vw;
	font-weight: bold;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.uranai__content #fortuneDesc span {
	display: inline-block;
	margin-top: 15px;
}
.uranai__content .batsu {
	width: 7%;
	height: auto;
	position: fixed;
	top: 5%;
	right: 5%;
}
.t__content {
    width: 50%;
	height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	scrollbar-width: none;
}
.t__content::-webkit-scrollbar {
    width: 0px;
}
.t__content h3 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
.t__content h3 img {
	width: 20%;
}
.t__content .t-image {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
}
.t__content .t-image img {
	width: 50%;
}
.t__content p {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1.1rem;
	line-height: 2rem;
	text-align: center;
}
.batsu {
	width: 5%;
	height: auto;
	position: absolute;
	top: 3%;
	right: 10%;
}
.batsu img {
	width: 100%;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.uranai__content {
		width: 90%;
		height: auto;
		padding: 20px;
		border-radius: 20px;
	}
	.uranai__content img {
		display: block;
		width: 60%;
		height: auto;
		margin: 0 2% 5vw;
	}
	.uranai__content #fortuneDesc {
		width: 100%;
		height: auto;
		color: #efeaba;
		font-size: 1.5rem;
		line-height: 3rem;
		font-weight: bold;
		font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
		text-align: center;
	}
	.uranai__content .batsu {
		width: 15%;
		height: auto;
		position: fixed;
		top: 2%;
		right: 0%;
	}
	.t__content {
		width: 90%;
		height: auto;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		scrollbar-width: none;
	}
	.t__content::-webkit-scrollbar {
		width: 0px;
	}
	.t__content h3 {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		padding: 0;
		text-align: center;
	}
	.t__content h3 img {
		width: 40%;
	}
	.t__content .t-image {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
	}
	.t__content .t-image img {
		width: 90%;
	}
	.t__content p {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		text-align: center;
	}
	.batsu {
		width: 10%;
		height: auto;
		position: absolute;
		top: 3%;
		right: 3%;
	}

}

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



}

/* ========================================
占いボタン
========================================== */
#uranai-btn {
	display: block;
	width: 10%;
	height: auto;
	position: fixed;
	bottom: 1%;
	left: 1.5%;
	z-index: 30;
	opacity: 0;
}
#uranai-btn #uranai__base {
	width: 100%;
	height: auto;
}
#uranai-btn #uranai__disc {
	width: 70%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 15%;
}
#uranai-btn:hover #uranai__disc {
	transform: rotate(3600deg);
	transition: 10s all;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#uranai-btn {
		display: block;
		width: 20%;
		height: auto;
		position: fixed;
		bottom: 1%;
		left: auto;
		right: 1.5%;
		z-index: 30;
		opacity: 0;
		pointer-events: none;
	}
	@keyframes uranai-btn-sp {
		0% {opacity: 0;pointer-events: none;}
		100% {opacity: 1;pointer-events: all;}
	}
	.uranai-btn-sp {
		animation: uranai-btn-sp 0.5s ease forwards;
	}
	#uranai-btn #uranai__disc {
		width: 70%;
		height: auto;
		position: absolute;
		top: 15%;
		left: 15%;
		animation: round 2.0s infinite;
	}
	@keyframes round {
		0% {transform: rotate(0deg);}
		100% {transform: rotate(360deg);}
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#uranai-btn {
		display: block;
		width: 30%;
		height: auto;
		position: fixed;
		bottom: 1%;
		left: auto;
		right: 1.5%;
		z-index: 30;
		opacity: 0;
		pointer-events: none;
	}
}





/* ========================================
グラデ背景
========================================== */
#grd-bg {
	width: 100%;
	height: auto;
	background: linear-gradient(-45deg, #000, #346392, #000, #346392);
	background-size: 600% 600%;
    animation: gradientMove 8s linear infinite;
}
@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#top #top__bg {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__bg img  {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__catch {
	width: 23.5%;
	height: auto;
	position: absolute;
	top: 27.5%;
	left: 30%;
	opacity: 0;
}
#top #top__maincatch {
	width: 46.5%;
	height: auto;
	position: absolute;
	top: 10.5%;
	left: 2%;
	mix-blend-mode: screen;
	opacity: 0;
}
#top #top__title {
	width: 38.3%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 38%;
	left: 6%;
	opacity: 0;
}
#top #top__date {
	width: 33%;
	height: auto;
	position: absolute;
	top: 58%;
	left: 8.5%;
	opacity: 0;
}
#top #top__date img {
	width: 100%;
	height: auto;
	aspect-ratio: 1288 / 80;
}
#top #top__bb {
	width: 27%;
	height: auto;
	position: absolute;
	bottom: 8.5%;
	right: 2%;
	opacity: 0;
}
#top #top__copy {
	width: 67.5%;
	height: auto;
	position: absolute;
	bottom: 3%;
	right: 2%;
	mix-blend-mode: screen;
	opacity: 0;
}
.top__catch {
	animation: fadeIn 1.0s ease 1.3s forwards;
}
.top__bg {
	animation: fadeIn 1.5s ease 2.5s forwards;
}
.top-last-anime {
	animation: fadeIn 1.2s ease 3.7s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg img  {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__catch {
		width: 52%;
		height: auto;
		position: absolute;
		top: 31%;
		left: 8%;
		opacity: 0;
	}
	#top #top__maincatch {
		width: 98%;
		height: auto;
		position: absolute;
		top: 2%;
		left: 1%;
		mix-blend-mode: screen;
		opacity: 0;
	}
	#top #top__title {
		width: 65%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 43%;
		left: 2%;
		opacity: 0;
	}
	#top #top__date {
		width: 70%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 2%;
		left: 15%;
		opacity: 0;
	}
	#top #top__date img {
		width: 100%;
		height: auto;
		aspect-ratio: 1050 / 230;
	}
	#top #top__bb {
		width: 45%;
		height: auto;
		position: absolute;
		bottom: 18%;
		right: 2%;
		opacity: 0;
	}
	#top #top__copy {
		width: 67.5%;
		height: auto;
		position: absolute;
		bottom: 12%;
		right: auto;
		left: 2%;
		mix-blend-mode: screen;
		opacity: 0;
	}

}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 3vw;
	overflow: hidden;
	position: relative;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 15%;
}

#bridge #sns-icons {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-icons li {
	width: 4.5%;
	height: auto;
	margin: 0 1%;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}
#tshirts-banner {
	display: block;
	width: 26%;
	height: auto;
	box-sizing: border-box;
	margin: 0 37% 2vw;
	opacity: 0;
}
#bridge #banners {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	display: flex;
	justify-content: center;
}
#bridge #banners a {
	display: block;
	width: 26%;
	height: auto;
	margin: 0 1.0%;
	opacity: 0;
}
#bridge #banners a:hover ,
#tshirts-banner:hover ,
#bridge #sns-icons li a:hover ,
#bridge #theater a:hover {
	animation: flash 1.5s;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 10vw 0 5vw;
		position: relative;
	}
	#bridge #billing , 
	#bridge #bridge__yoko ,
	#bridge #date {
		display: none;
	}
	#bridge #sns-icons {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
	}
	#bridge #sns-icons li {
		width: 12%;
		height: auto;
		margin: 0 2%;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 60%;
	}
	#tshirts-banner {
		display: block;
		width: 80%;
		height: auto;
		box-sizing: border-box;
		margin: 5vw 10% 8vw;
		padding: 0;
		text-decoration: none;
	}
	#bridge #banners {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #banners a {
		display: block;
		width: 80%;
		height: auto;
		margin: 1vw 1.0%;
	}

		
}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 10vw;
	overflow: hidden;
	position: relative;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1.5vw;
	text-align: center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width: 12%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: relative;
	z-index: 2;
	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;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}
.movie-btn {
	width: 32%;
	height: auto;
	margin: 5px 0.5%;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #FDDC6B;
	color: #FDDC6B;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #FDDC6B;
	border: 1px solid #FDDC6B;
	color: #000;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #FDDC6B;
	border: 1px solid #FDDC6B;
	color: #000;
	cursor: pointer;
	transition-duration: 0.6s;
}
.trailer #trailer__logo {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	mix-blend-mode: overlay;
}




/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 15vw;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 3vw;
		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: 90%;
		height: auto;
		margin: 10px 5%;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: center;
	}
	.movie-btn {
		width: 32%;
		font-size: 2vw;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 20vw;
	}
	.trailer h2 {
		width:100%;
		height:auto;
		padding:0;
		margin:0 0 3vw;
		position: relative;
	}
	.trailer h2 img {
		width: 35%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.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: 70%;
		height: auto;
		margin: 0 1% 3vw;
		font-size: 1.1rem;
	}


}


/* ========================================
イントロダクション
========================================== */
#intro-bg0 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: linear-gradient(90deg, #0d0c14, #1c2dbe, #522794, #970693, #820038);
	background-size: 600% 600%;
    animation: gradientMove 10s linear infinite;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#intro-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	opacity: 0;
	transition: 1.2s all;
}
#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	opacity: 0;
	transition: 1.2s all;
}
#kingyo1 {
	width: 12%;
	height: auto;
	position: fixed;
	top: 15%;
	left: 50%;
	z-index: -28;
	opacity: 0;
}
#kingyo2 {
	width: 15%;
	height: auto;
	position: fixed;
	top: 90%;
	left: 60%;
	z-index: -28;
	opacity: 0;
}
@keyframes kingyo1 {
	0% {
		opacity: 0;
		transform: translate(0, 0) scale(1) rotateY(50deg);
		filter: brightness(100%);
	}
	10% {
		filter: brightness(100%);
	}
	15% {
		filter: brightness(150%);
	}
	20% {
		filter: brightness(100%);
	}
	25% {
		opacity: 1;
		filter: brightness(100%);		
	}
	30% {
		filter: brightness(100%);
	}
	50% {
		transform: translate(700px, -200px) scale(0.7) rotateY(-50deg);
		filter: brightness(100%);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes kingyo2 {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
		transform: translate(0, 0) scale(0.8) rotateY(50deg);
		filter: brightness(100%);
	}
	85% {
		filter: brightness(170%);
	}
	90% {
		opacity: 1;
		filter: brightness(100%);		
	}
	95% {
		filter: brightness(100%);
	}
	100% {
		transform: translate(-1000px, -400px) scale(1) rotateY(-50deg);
		filter: brightness(100%);
		opacity: 0;
	}
}
.kingyo1 {
	animation: kingyo1 14s linear infinite;
}
.kingyo2 {
	animation: kingyo2 15s linear infinite;
}
#intro {
	width: 100%;
	height: auto;
	padding: 20vw 0;
	position: relative;
}
#intro #intro__tate {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
}
#intro #intro__tate img {
	width: 4%;
}
#intro #intro-bg2trg {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 40vw;
}
#intro #intro__lead1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead1 img {
	width: 46%;
	height: auto;
	aspect-ratio: 1815 / 68;
}
#intro #intro__lead2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead2 img {
	width: 46%;
	height: auto;
	aspect-ratio: 1773 / 85;
}
@keyframes bigIn {
	from {
	transform: scale(6);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}
.bigin {
	animation: bigIn 0.2s linear forwards;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 25%;
}
#intro #intro__lead3 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead3 img {
	width: 45%;
	height: auto;
	aspect-ratio: 1188 / 112;
}
#intro p {
	width: 40%;
	height: auto;
	margin: 0 30% 10vw;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.0vw;
	letter-spacing: 1.5px;
	opacity: 0;
}
#intro #intro__lead4 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead4 img {
	width: 35%;
	height: auto;
	aspect-ratio: 935 / 108;
}
#intro #intro__lead5 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead5 img {
	width: 35%;
	height: auto;
	aspect-ratio: 1032 / 205;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center top;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		opacity: 0;
		transition: 1.2s all;
	}
	#intro-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-size: cover;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		opacity: 0;
		transition: 1.2s all;
	}
	#kingyo1 {
		width: 60%;
		height: auto;
		position: fixed;
		top: 60%;
		left: 20%;
		z-index: -28;
		opacity: 0;
	}
	#kingyo2 {
		width: 50%;
		height: auto;
		position: fixed;
		top: 35%;
		left: 40%;
		z-index: -28;
		opacity: 0;
	}
	@keyframes kingyo1 {
		0% {
			opacity: 0;
			transform: translate(0, 0) scale(1) rotateY(50deg);
			filter: brightness(100%);
		}
		10% {
			filter: brightness(100%);
		}
		15% {
			filter: brightness(150%);
		}
		20% {
			filter: brightness(100%);
		}
		25% {
			opacity: 1;
			filter: brightness(100%);		
		}
		30% {
			filter: brightness(100%);
		}
		50% {
			transform: translate(80%, -200px) scale(0.7) rotateY(-50deg);
			filter: brightness(100%);
			opacity: 0;
		}
		100% {
			opacity: 0;
		}
	}
	@keyframes kingyo2 {
		0% {
			opacity: 0;
		}
		50% {
			opacity: 0;
			transform: translate(0, 0) scale(0.8) rotateY(50deg);
			filter: brightness(100%);
		}
		85% {
			filter: brightness(170%);
		}
		90% {
			opacity: 1;
			filter: brightness(100%);		
		}
		95% {
			filter: brightness(100%);
		}
		100% {
			transform: translate(-90%, -200px) scale(1) rotateY(-50deg);
			filter: brightness(100%);
			opacity: 0;
		}
	}
	.kingyo1 {
		animation: kingyo1 14s linear infinite;
	}
	.kingyo2 {
		animation: kingyo2 15s linear infinite;
	}

	#intro {
		width: 100%;
		height: auto;
		padding: 90vh 0 100vw;
		position: relative;
	}
	#intro #intro__tate {
		width: 100%;
		height: auto;
		margin: 0 0 70vw;
		text-align: center;
	}
	#intro #intro__tate img {
		width: 12%;
	}
	#intro #intro-bg2trg {
		width: 100%;
		height: 1px;
		position: absolute;
		top: 40vh;
	}
	#intro #intro__lead1 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead1 img {
		width: 90%;
		height: auto;
		aspect-ratio: 1124 / 189;
	}
	#intro #intro__lead2 {
		width: 100%;
		height: auto;
		margin: 0 0 50vh;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead2 img {
		width: 90%;
		height: auto;
		aspect-ratio: 1098 / 199;
	}
	@keyframes bigIn {
		from {
		transform: scale(6);
		opacity: 0;
		}

		to {
			transform: scale(1);
			opacity: 1;
		}
	}
	.bigin {
		animation: bigIn 0.2s linear forwards;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 50vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 70%;
	}
	#intro #intro__lead3 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead3 img {
		width: 80%;
		height: auto;
		aspect-ratio: 1114 / 250;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5% 30vw;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#intro #intro__lead4 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead4 img {
		width: 96%;
		height: auto;
		aspect-ratio: 1147 / 133;
	}
	#intro #intro__lead5 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead5 img {
		width: 70%;
		height: auto;
		aspect-ratio: 918 / 419;
	}


}



/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#story #story__bg {
	width: 100%;
	height: auto;
	transition: 1.0s all;
	filter: brightness(100%);
}
#story #story__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#story #story__contents {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 1.0s opacity ease 0.5s;
}
#story #story__contents h2 {
	width: 100%;
	height: auto;
	padding: 15vw 0 5vw;
	margin: 0;
	text-align: center;
}
#story #story__contents h2 img {
	width: 10%;
}
#story #story__contents p {
	width: 40%;
	height: auto;
	margin: 0 30%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.8px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: auto;
		padding: 0 0 70vw;
		background-color: #000;
		position: relative;
		overflow: hidden;
	}
	#story #story__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#story #story__contents h2 {
		width: 100%;
		height: auto;
		padding: 35vw 0 50vw;
		margin: 0;
		text-align: center;
	}
	#story #story__contents h2 img {
		width: 30%;
	}
	#story #story__contents p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.0rem;
		letter-spacing: 1.8px;
	}

}

/* ========================================
スライダー
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	padding: 0;
	overflow: hidden;
	position: relative;
}
#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 100s infinite linear 0s both;
}
#slider-logo .top-slide {
	animation: loop-slide 500s infinite linear 0s both;
}
#slider2 .top-slide {
	animation: loop-slide-rev 100s infinite linear 0s both;
}
.slide-wrap .top-slide .content {
	width: 30vw;
	height: auto;
	margin: 0;
}
#slider-logo .top-slide .content {
	width: 100vw;
	height: auto;
	margin: 0 25vw;
	mix-blend-mode: overlay;
}
.slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider-area #slider-jplogo {
	width: 25%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}
#slider-area #slider-shita-trg {
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 10vw;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#slider1 .top-slide {
		animation: loop-slide 100s infinite linear 0s both;
	}
	#slider-logo .top-slide {
		animation: loop-slide 300s infinite linear 0s both;
	}
	#slider2 .top-slide {
		animation: loop-slide-rev 100s infinite linear 0s both;
	}
	.slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
	}
	#slider-logo .top-slide .content {
		width: 200vw;
		height: auto;
		margin: 0 70vw;
		mix-blend-mode: overlay;
	}
	#slider-area #slider-jplogo {
		width: 50%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#slider1 .top-slide {
		animation: loop-slide 100s infinite linear 0s both;
	}
	#slider-logo .top-slide {
		animation: loop-slide 300s infinite linear 0s both;
	}
	#slider2 .top-slide {
		animation: loop-slide-rev 100s infinite linear 0s both;
	}
	.slide-wrap .top-slide .content {
		width: 110vw;
		height: auto;
		margin: 0;
	}
	#slider-logo .top-slide .content {
		width: 300vw;
		height: auto;
		margin: 0 70vw;
		mix-blend-mode: overlay;
	}
	#slider-area #slider-jplogo {
		width: 70%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}

}

/* ========================================
スタッフ
========================================== */
.staff-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	clip-path: inset(100% 0 0 0);
}
#staff-bg0 {
	background-color: #000;
	z-index: -13;
}
#staff-bg1 {
	background-size: cover;
	background-position: center center;
	z-index: -12;
	animation: staff-bg1 10s ease infinite;
	filter: brightness(0%);
	transition: 2.0s filter;
}
#staff-bg2 {
	background-size: cover;
	background-position: center center;
	z-index: -12;
	animation: staff-bg2 10s ease infinite;
	filter: brightness(0%);
	transition: 2.0s filter;
}
#staff-bg3 {
	background-size: cover;
	background-position: center center;
	z-index: -12;
	animation: staff-bg3 10s ease infinite;
	filter: brightness(0%);
	transition: 2.0s filter;
}
@keyframes staff-bg1 {
	0% {opacity: 1;}
	18% {opacity: 1;}
	33% {opacity: 0;}
	85% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes staff-bg2 {
	0% {opacity: 0;}
	18% {opacity: 0;}
	33% {opacity: 1;}
	51% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes staff-bg3 {
	0% {opacity: 0;}
	51% {opacity: 0;}
	66% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
#staff {
	width: 100%;
	height: auto;
	padding: 30vw 0 10vw;
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
}
#staff h2 img {
	width: 12%;
}
#staff .staff-unit {
	width: 60%;
	height: auto;
	margin: 0 20% 13vw;
}
#staff .staff-unit .name {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#staff .staff-unit .name img {
	width: 40%;
}
#staff .staff-unit .photo {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#staff .staff-unit .photo img {
	width: 30%;
}
#staff .staff-unit .prof {
	width: 70%;
	height: auto;
	margin: 0 15% 3vw;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}
#staff .staff-unit .com {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	margin: 0 0 2vw;
	padding: 4vw 15%;
	background-color: rgba(2, 5, 10, 0.8);
}
#staff .staff-unit .com h3 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#staff .staff-unit .com h3 img {
	width: 30%;
	height: auto;
}
#staff .staff-unit .com p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}
#staff .staff-unit .filmo {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	margin: 0 0 3vw;
	padding: 4vw 15%;
	background-color: rgba(2, 5, 10, 0.8);
}
#staff .staff-unit .filmo h3 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#staff .staff-unit .filmo h3.staff1 img {
	width: 30%;
	height: auto;
}
#staff .staff-unit .filmo h3.staff2-1 img {
	width: 40%;
	height: auto;
}
#staff .staff-unit .filmo h3.staff2-2 img {
	width: 18%;
	height: auto;
	margin-top: 4vw;
}
#staff .staff-unit .filmo h3.staff2-3 img {
	width: 36%;
	height: auto;
	margin-top: 4vw;
}
#staff .staff-unit .filmo h3.staff3 img {
	width: 55%;
	height: auto;
	aspect-ratio: 1046 / 172;
}
#staff .staff-unit .filmo h3.staff4 img {
	width: 20%;
	height: auto;
}
#staff .staff-unit .filmo p {
	width: 70%;
	height: auto;
	margin: 0 10% 0 20%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff {
		width: 100%;
		height: auto;
		padding: 45vh 0 80vw;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 45vh;
		padding: 0;
		text-align: center;
	}
	#staff h2 img {
		width: 30%;
	}
	#staff .staff-unit {
		width: 100%;
		height: auto;
		margin: 0 0 40vw;
	}
	#staff .staff-unit .name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#staff .staff-unit .name img {
		width: 80%;
	}
	#staff .staff-unit .photo {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#staff .staff-unit .photo img {
		width: 60%;
	}
	#staff .staff-unit .prof {
		width: 90%;
		height: auto;
		margin: 0 5% 6vw;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
	#staff .staff-unit .com {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 0 0 10vw;
		padding: 15vw 5%;
		background-color: rgba(2, 5, 10, 0.8);
	}
	#staff .staff-unit .com h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
	}
	#staff .staff-unit .com h3 img {
		width: 45%;
		height: auto;
	}
	#staff .staff-unit .com p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
	#staff .staff-unit .filmo {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 0 0 10vw;
		padding: 15vw 5%;
		background-color: rgba(2, 5, 10, 0.8);
	}
	#staff .staff-unit .filmo h3 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
	}
	#staff .staff-unit .filmo h3.staff1 img {
		width: 50%;
		height: auto;
	}
	#staff .staff-unit .filmo h3.staff2-1 img {
		width: 70%;
		height: auto;
	}
	#staff .staff-unit .filmo h3.staff2-2 img {
		width: 30%;
		height: auto;
		margin-top: 10vw;
	}
	#staff .staff-unit .filmo h3.staff2-3 img {
		width: 60%;
		height: auto;
		margin-top: 10vw;
	}
	#staff .staff-unit .filmo h3.staff3 img {
		width: 55%;
		height: auto;
		aspect-ratio: 827 / 353;
	}
	#staff .staff-unit .filmo h3.staff4 img {
		width: 30%;
		height: auto;
	}
	#staff .staff-unit .filmo p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}



}


/* ========================================
キャスト
========================================== */
#cast-bg-black {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
	opacity: 0;
	pointer-events: none;
}
#cast-bg-right1 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: left center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: -23;
	opacity: 0;
	pointer-events: none;
	transition: 0.6s transform;
}
#cast-bg-left1 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: right center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -23;
	opacity: 0;
	pointer-events: none;
	transition: 0.6s transform;
}
#cast-fixed-head {
	width: 10%;
	height: auto;
	position: fixed;
	top: 25%;
	left: 45%;
	z-index: -22;
	opacity: 0;
	pointer-events: none;
}
#cast-bg-left2 {
	width: 20%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -21;
	opacity: 0;
	pointer-events: none;
}
#cast-bg-left3 {
	width: 20%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -20;
	opacity: 0;
	pointer-events: none;
}
#cast-bg-right2 {
	width: 20%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: -21;
	opacity: 0;
	pointer-events: none;
}
#cast-bg-right3 {
	width: 20%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: -20;
	opacity: 0;
	pointer-events: none;
}
@keyframes cast-bg-left2 {
	0% {opacity: 0;}
	10% {opacity: 1;}
	60% {opacity: 1;}
	70% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes cast-bg-right2 {
	0% {opacity: 0;}
	20% {opacity: 0;}
	30% {opacity: 1;}
	70% {opacity: 1;}
	80% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes cast-bg-left3 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	70% {opacity: 1;}
	80% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes cast-bg-right3 {
	0% {opacity: 0;}
	60% {opacity: 0;}
	70% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
.cast-bg-left2 {
	animation: cast-bg-left2 10s ease infinite;
}
.cast-bg-left3 {
	animation: cast-bg-left3 10s ease infinite;
}
.cast-bg-right2 {
	animation: cast-bg-right2 10s ease infinite;
}
.cast-bg-right3 {
	animation: cast-bg-right3 10s ease infinite;
}
#cast-bg-right4 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: left center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: -19;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(60%, 0, 0);
	transition: 0.6s transform;
}
#cast-bg-left4 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: right center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -19;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(-60%, 0, 0);
	transition: 0.6s transform;
}
#cast-scroll-head {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	padding: 30vw 0 0;
	text-align: center;
	position: relative;
	z-index: -21;
	opacity: 0;
}
#cast-scroll-head img {
	width: 10%;
}
#cast {
	width: 100%;
	height: auto;
	padding: 0 0 30vw;
	position: relative;
	z-index: -24;
}
#cast .cast-unit {
	width: 40%;
	height: auto;
	margin: 0 30% 10vw;
	position: relative;
}
#cast .cast-unit .name {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	position: relative;
	z-index: 2;
}
#cast .cast-unit .name img {
	width: 65%;
}
#cast .cast-unit .photo {
	width: 100%;
	height: auto;
	margin: -3vw 0 0;
	text-align: center;
	position: relative;
	z-index: 1;
}
#cast .cast-unit .photo img {
	width: 85%;
}
#cast .cast-unit p {
	width: 100%;
	height: auto;
	margin: 1vw 0 0;
	text-align: left;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast-fixed-head {
		width: 30%;
		height: auto;
		position: fixed;
		top: 47%;
		left: 35%;
		z-index: -22;
		opacity: 0;
		pointer-events: none;
	}
	#cast-scroll-head {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 60vh 0 0;
		text-align: center;
		position: relative;
		z-index: -21;
		opacity: 0;
	}
	#cast-scroll-head img {
		width: 30%;
	}
	#cast {
		width: 100%;
		height: auto;
		padding: 45vh 0 80vh;
		position: relative;
		z-index: -24;
	}
	#cast .cast-unit {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		position: relative;
	}
	#cast .cast-unit .name {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		position: relative;
		z-index: 2;
	}
	#cast .cast-unit .name img {
		width: 81%;
	}
	#cast .cast-unit .photo {
		width: 100%;
		height: auto;
		margin: -5vw 0 0;
		text-align: center;
		position: relative;
		z-index: 1;
	}
	#cast .cast-unit .photo img {
		width: 100%;
	}
	#cast .cast-unit p {
		width: 90%;
		height: auto;
		margin: 1vw 5% 0;
		text-align: left;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
	}



}

/* ========================================
コメント
========================================== */
#foot-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}
#foot-wrap #particles-js {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	pointer-events: none;
  /* マスク */
	-webkit-mask-image: linear-gradient(
		to top,
		black 30%,         /* ここまで完全に見える50% */
		transparent 50%,   /* ここで完全に消える60% */
		transparent 100%   /* 上部はずっと透明 */
	);
	mask-image: linear-gradient(
		to top,
		black 30%,
		transparent 50%,
		transparent 100%
	);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
@keyframes bg-color {
  0% { background-color: #a870a3; }
  33% { background-color: #b5d080; }
  66% { background-color: #efeaba; }
  100% { background-color: #a870a3; }
}
#comment {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #a870a3;
	animation: bg-color 10s infinite;
	position: relative;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
#comment h2 img {
	width: 15%;
}
#comment #junf {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
	font-size: 1rem;
	color: #000;
}

#comment .com-unit {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 0 25% 7vw;
	padding: 3vw 5%;
	background-color: #fff;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}
#comment .com-unit .title {
	width: 100%;
	height: auto;
	text-align: right;
	font-size: 1.1vw;
	font-weight: bold;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	text-align: right;
	font-size: 1.3vw;
	font-weight: bold;
}
#comment .com-unit .name span {
	font-size: 1.1vw;
}
#comment .com-unit:nth-child(odd) .color {
	color: #a870a3;
}
#comment .com-unit:nth-child(even) .color{
	color: #b5d080;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: #a870a3;
		animation: bg-color 10s infinite;
		position: relative;
	}
	@keyframes bg-color {
	0% { background-color: #a870a3; }
	33% { background-color: #b5d080; }
	66% { background-color: #b5d080; }
	100% { background-color: #a870a3; }
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
	}
	#comment h2 img {
		width: 60%;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin: 0 5% 15vw;
		padding: 10vw 5%;
		background-color: #fff;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
	#comment .com-unit .title {
		width: 100%;
		height: auto;
		text-align: right;
		font-size: 1.1rem;
		font-weight: bold;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		text-align: right;
		font-size: 1.2rem;
		font-weight: bold;
	}
	#comment .com-unit .name span {
		font-size: 1.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:2vw 0 1vw;
	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: 1024px) {
	#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;
	background-color: #a870a3;
	animation: bg-color 10s infinite;
}
footer #foot-bg {
	width: 100%;
	height: auto;
}
footer #foot-bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
	vertical-align: bottom;
}
footer #foot-bb {
	width: 30%;
	height: auto;
	position: absolute;
	top: 25%;
	right: 2%;
	opacity: 0;
}
footer #foot-logo {
	width: 28%;
	height: auto;
	position: absolute;
	top: 40%;
	left: 6%;
	opacity: 0;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-last-anime {
	animation: fadeIn 1.2s ease 0.7s forwards;
}


@media (max-width: 1024px) {
	footer {
		width:100%;
		height:100vh;
		padding:0;
		margin:0;
		position: relative;
		background-color: #a870a3;
		animation: bg-color 10s infinite;
	}
	footer #foot-bg {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 0;
	}
	footer #foot-bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 1119;
		vertical-align: bottom;
	}
	footer #foot-logo {
		width: 40%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 30%;
		opacity: 0;
	}
	footer #foot-bb {
		width: 60%;
		height: auto;
		position: absolute;
		top: 22%;
		right: 20%;
		opacity: 0;
	}
	footer #button-area {
		position: absolute;
		bottom: 50%;
		opacity: 0;
	}

}
@media (max-width: 600px) {
	footer #foot-logo {
		width: 70%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 15%;
		opacity: 0;
	}
	footer #foot-bb {
		width: 80%;
		height: auto;
		position: absolute;
		top: 22%;
		right: 10%;
		opacity: 0;
	}
	footer #button-area {
		position: absolute;
		bottom: 45%;
		opacity: 0;
	}

}


/* ========================================
ポスター
========================================== */
#poster-body #pcheader ,
#poster-body .hamburger {
	opacity: 1 !important;
} 
#poster {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #000;
}
#poster h1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#poster h1 img {
	width: 13%;
}
#poster h2 {
	width: 100%;
	height: auto;
	margin: 8vw 0 5vw;
	padding: 0;
	text-align: center;
}
#poster h2 img {
	width: 40%;
	height: auto;
	aspect-ratio: 1549 / 98;
}
#poster .poster-unit {
	width: 80%;
	height: auto;
	margin: 0 10% 5vw;
	display: flex;
	justify-content: center;
}
#poster a {
	width: 25%;
	height: auto;
	margin: 0 3%;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
	text-decoration: none;
}
#poster a img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 0.2vw;
}

@media (max-width: 1024px) {
	#poster {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: #000;
	}
	#poster h1 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#poster h1 img {
		width: 30%;
	}
	#poster h2 {
		width: 100%;
		height: auto;
		margin: 20vw 0 10vw;
		padding: 0;
		text-align: center;
	}
	#poster h2 img {
		width: 60%;
		height: auto;
		aspect-ratio: 1042 / 224;
	}

	#poster .poster-unit {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		position: relative;
		z-index: 10;
	}
	#poster a {
		width: 60%;
		height: auto;
		margin: 4vw 3%;
		text-align: center;
		color: #fff;
		font-size: 1.1rem;
		text-decoration: none;
	}
	#poster a img {
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 0.5vw;
	}

}



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

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


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


