html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: '游ゴシック体',YakuHanJP,'Noto Sans JP', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	font-weight: bold;
}
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;
	}
}



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


/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #B31A25;
	}
	#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:10px 0 30px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #000, 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 0.8%;
	padding:0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.4vw;
	line-height:1.4vw;
	letter-spacing: 1.0px;
	text-align: center;
	color: #fff;
	font-family: "novecento-slab-narrow", serif;
	font-weight: 800;
	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/HT-menu-bg-sp.jpg) no-repeat;
	background-size: cover;
	background-position: top right;
	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:50%;
	height:auto;
	margin:0px 25% 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: 16%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#201519;
}
.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: 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:3.0rem;
	line-height: 3.0rem;
	letter-spacing: 1.5px;
	color: #000;
	font-family: "novecento-slab-narrow", serif;
	font-weight: 800;
	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__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.2rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}

	
	
}





/* ========================================
トップメイン画像まわり
========================================== */
#x-icon {
	width: 6%;
	height: auto;
	position: fixed;
	bottom: 1%;
	right: 1%;
	opacity: 0;
	z-index: 2;
}
#x-icon a img:hover {
	animation: flash 1.0s;
}
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background: #B31A25;
}
#top #top__inner {
	width: 100%;
	height: auto;
	position: relative;
}
#top #top__bg {
	width: 100%;
	height: auto;
}
#top .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: absolute;
	bottom: 0;
}
#top .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	animation: loop-slide 100s infinite linear 0s both;
}
#top .top-slide-wrap .top-slide .content {
	width: 100vw;
	height: auto;
	margin: 0;
}
#top .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#top #top__wm {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#top #top__tate {
	width: 6%;
	height: auto;
	position: absolute;
	top: 5%;
	left: 14%;
}
#top #top__tate #top__tate-inner {
	width: 100%;
	height: auto;
	position: relative;
}
#top #top__tate #top__tate-inner #top__tate1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__tate #top__tate-inner #top__tate2 {
	width: 53%;
	height: auto;
	position: absolute;
	top: 0;
	left: 47%;
	opacity: 0;
}
#top #top__fr {
	width: 15%;
	height: auto;
	position: absolute;
	top: 2%;
	right: 9.5%;
	opacity: 0;
}
#top #top__logo {
	width: 28%;
	height: auto;
	position: absolute;
	top: 13%;
	right: 9.5%;
}
#top #top__logo #top__logo-inner {
	width: 100%;
	height: auto;
	position: relative;
}
#top #top__logo #top__logo-inner #top__logo1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__logo #top__logo-inner #top__logo2 ,
#top #top__logo #top__logo-inner #top__logo3 ,
#top #top__logo #top__logo-inner #top__logo4 ,
#top #top__logo #top__logo-inner #top__logo5 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#top #top__bb {
	width: 16%;
	height: auto;
	position: absolute;
	top: 54%;
	right: 9.5%;
	opacity: 0;
}
#top #top__yoko {
	width: 58%;
	height: auto;
	position: absolute;
	bottom: 2%;
	left: 2%;
	opacity: 0;
}
#top #top__corp {
	width: 22%;
	height: auto;
	position: absolute;
	bottom: 2%;
	right: 11%;
	opacity: 0;
}
.top__tate1 {
	animation: fadeIn 1.0s ease 1.2s forwards;
}
@keyframes top__tate2 {
	0% {opacity: 0;transform: scale(10);}
	20% {opacity: 1;}
	90% {opacity: 1;transform: scale(0.7);}
	100% {opacity: 1;transform: scale(1);}
}
.top__tate2 {
	animation: top__tate2 0.3s cubic-bezier(0.32, 0, 0.67, 0) 1.6s forwards;
}
@keyframes top__logo {
	0% {opacity: 0;transform: translate3d(150%, 0, 0) ;}
	10% {opacity: 1;}
	90% {opacity: 1;transform: translate3d(-1%, 0, 0) ;}
	100% {opacity: 1;transform: translate3d(0, 0, 0);}
}
.top__logo1 {
	animation: top__logo 0.2s ease-in 2.0s forwards;
}
.top__logo2 {
	animation: top__logo 0.2s ease-in 2.3s forwards;
}
.top__logo3 {
	animation: top__logo 0.2s ease-in 2.6s forwards;
}
.top__logo4 {
	animation: top__logo 0.2s ease-in 2.9s forwards;
}
.top__logo5 {
	animation: top__logo 0.2s ease-in 3.2s forwards;
}
.top__bb {
	animation: top__logo 0.2s ease-in 3.5s forwards;
}
@keyframes shake {
	0% {transform: translate3d(0.5%, -0.5%, 0);}
	20% {transform: translate3d(-0.5%, 0.5%, 0);}
	60% {transform: translate3d(0.2%, 0.2%, 0);}
	80% {transform: translate3d(-0.2%, -0.2%, 0);}
	100% {transform: translate3d(0, 0, 0);}
}
.shake1 {
	animation: shake 0.1s linear 0s forwards;
}
.top-last-anime {
	animation: fadeIn 1.5s ease 2.7s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#x-icon {
		width: 23%;
		height: auto;
		position: fixed;
		bottom: 1%;
		right: 1%;
		opacity: 0;
		z-index: 3;
	}
	#top .top-slide-wrap .top-slide {
		animation: loop-slide 40s infinite linear 0s both;
	}
	#top #top__tate {
		width: 12%;
		height: auto;
		position: absolute;
		top: 8%;
		left: 43%;
	}
	#top #top__fr {
		width: 50%;
		height: auto;
		position: absolute;
		top: 1%;
		right: 2%;
		opacity: 0;
	}
	#top #top__logo {
		width: 55%;
		height: auto;
		position: absolute;
		top: 38%;
		right: 2%;
	}
	#top #top__bb {
		width: 30%;
		height: auto;
		position: absolute;
		top: 62%;
		right: 2%;
		opacity: 0;
	}
	#top #top__yoko {
		display: none;
	}
	#top #top__corp {
		width: 65%;
		height: auto;
		position: absolute;
		bottom: 10%;
		right: 2%;
		opacity: 0;
	}
	@keyframes shake {
		0% {transform: translate3d(1%, -1%, 0);}
		20% {transform: translate3d(-1%, 1%, 0);}
		60% {transform: translate3d(0.5%, 0.5%, 0);}
		80% {transform: translate3d(-0.5%, -0.5%, 0);}
		100% {transform: translate3d(0, 0, 0);}
	}
	
}



/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 5vw;
	background-color: #000;
}
#bridge #top__yoko-sp {
	display: none;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 60%;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 15%;
}
#bridge #theater img:hover {
	animation: flash 1.0s;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 10vw 0 15vw;
		background-color: #000;
		position: relative;
		z-index: 0;
	}
	#bridge #top__yoko-sp {
		display: block;
		width: 90%;
		height: auto;
		position: absolute;
		top: -15vw;
		left: 5%;
		opacity: 0;
	}
	#bridge #date {
		width: 100%;
		height: auto;
		margin: 10vw 0 8vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #date img {
		width: 85%;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #mubi {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
	}
	
}




/* ========================================
ニュース
========================================== */
#news {
	width: 100%;
	height: auto;
	padding: 5vw 0 5vw;
	background-color: #000;
	position: relative;
}
#news #news__head {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 3vw;
	text-align: center;
}
#news #news__head img {
	width: 10%;
}
#news #news__box {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	padding: 5vw;
	margin: 0 25%;
	background-color: #b31a25;
}
#news #news__box .news__line {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	display: flex;
	justify-content: flex-start;
	opacity: 0;
}
#news #news__box .news__line .date {
	width: 20%;
	height: auto;
	color: #fff;
	text-align: left;
	font-size: 1.2vw;
	font-weight: bold;
}
#news #news__box .news__line .headline {
	width: 78%;
	height: auto;
	text-align: left;
	font-size: 1.2vw;
	font-weight: bold;
}
#news #news__box .news__line .headline a {
	color: #fff;
	text-decoration: underline;
}
#news #news__box .news__line .headline a:hover {
	animation: flash 1.0s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#news {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #000;
		position: relative;
	}
	#news #news__head {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 3vw;
		text-align: center;
	}
	#news #news__head img {
		width: 30%;
	}
	#news #news__box {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 5vw;
		margin: 0 5%;
		background-color: #b31a25;
	}
	#news #news__box .news__line {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		opacity: 0;
	}
	#news #news__box .news__line .date {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		color: #fff;
		text-align: left;
		font-size: 1.0rem;
		font-weight: bold;
	}
	#news #news__box .news__line .headline {
		width: 100%;
		height: auto;
		text-align: left;
		font-size: 1.0rem;
		font-weight: bold;
		letter-spacing: 1.5px;
	}
	
}


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11000;
}
.modal__bg {
	background:#b31a25;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.95;
}
.modal__bg2 {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.95;
}

.news-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.5;
}
.movie__content {
    width: 65%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.prof__content {
    width: 100%;
	height: 90%;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
	scrollbar-width: none;
}
.prof__content::-webkit-scrollbar {
    width: 0px;
}
.prof__content h2 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 2vw 0 0;
	color: #fff;
	font-size: 2rem;
	text-align: center;
}
.prof__content h2 span {
	font-size: 1.4rem;
}
.prof__content .news-img1 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
.prof__content .news-img1 img {
	width: 40%;
}
.prof__content .news-img2 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	text-align: center;
}
.prof__content .news-img2 img {
	width: 30%;
}
.prof__content .news-img3 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.prof__content .news-img3 .img-part {
	width: 20%;
	height: auto;
	margin: 0 2%;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
}
.prof__content p {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	color: #fff;
	font-size: 1.0rem;
	line-height: 2.0rem;
}
.prof__content ul {
	width: 60%;
	height: auto;
	margin: 2vw 20% 2vw;
}
.prof__content ul li {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1rem;
}
.prof__content ul li .strong {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0.5rem;
}
.prof__content .eve-unit {
	width: 50%;
	height: auto;
	margin: 2vw 25%;
}
.prof__content .eve-unit p {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	color: #fff;
	font-size: 1.0rem;
}
.prof__content .eve-unit ul {
	width: 100%;
	height: auto;
	margin: 0;
}
.prof__content .eve-unit ul li {
	width: 100%;
	height: auto;
	margin: 0.3vw 0 0.3vw;
	color: #fff;
	font-size: 1rem;
	word-break: break-all;
}
.prof__content .eve-unit p a ,
.prof__content .eve-unit ul li a {
	color: #fff;
}
.prof__content h3 {
	width: 100%;
	height: auto;
	margin: 5vw 0 1vw;
	padding: 2vw 0 0;
	color: #fff;
	font-size: 2rem;
	text-align: center;
}
.prof__content .eve-movie {
	width: 60%;
	height: auto;
	box-sizing: border-box;
	margin: 0 20% 3vw;
	padding: 2vw 3vw;
	border: 2px solid #fff;
}
.prof__content .eve-movie h4 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	font-size: 1.4rem;
	color: #fff;
}
.prof__content .eve-movie p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.0rem;
	color: #fff;
}
.prof__content .eve-movie p span {
	font-size: 0.9rem;
}
.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) {
	.prof__content {
		width: 90%;
		height: 80%;
		box-sizing: border-box;
		padding: 40px 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.prof__content h2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 2vw 0 0;
		color: #fff;
		font-size: 1.9rem;
		text-align: center;
	}
	.prof__content h2 span {
		font-size: 1.2rem;
	}
	.prof__content .news-img1 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	.prof__content .news-img1 img {
		width: 100%;
	}
	.prof__content .news-img2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	.prof__content .news-img2 img {
		width: 100%;
	}
	.prof__content .news-img3 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.prof__content .news-img3 .img-part {
		width: 90%;
		height: auto;
		margin: 3vw 0;
		text-align: center;
		color: #fff;
		font-size: 1.1rem;
	}

	.prof__content p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
	}
	.prof__content ul {
		width: 90%;
		height: auto;
		margin: 5vw 0;
		padding-left: 5vw;
	}
	.prof__content ul li {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1rem;
	}
	.prof__content .eve-unit {
		width: 100%;
		height: auto;
		margin: 5vw 0;
	}
	.prof__content .eve-unit p {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
	}
	.prof__content .eve-unit ul {
		width: 90%;
		height: auto;
		margin: 0;
	}
	.prof__content .eve-unit ul li {
		width: 100%;
		height: auto;
		margin: 0.3vw 0 0.3vw;
		color: #fff;
		font-size: 1rem;
		word-break: break-all;
	}
	.prof__content .eve-unit ul li a {
		color: #fff;
	}
	.prof__content h3 {
		width: 100%;
		height: auto;
		margin: 5vw 0 1vw;
		padding: 2vw 0 0;
		color: #fff;
		font-size: 1.6rem;
		text-align: center;
	}
	.prof__content .eve-movie {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 0 0 3vw;
		padding: 5vw 3vw;
		border: 2px solid #fff;
	}
	.prof__content .eve-movie h4 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		font-size: 1.4rem;
		color: #fff;
	}
	.prof__content .eve-movie p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 1.0rem;
		color: #fff;
	}
	.prof__content .eve-movie p span {
		font-size: 0.9rem;
	}

	.batsu {
		width: 15%;
		height: auto;
		position: fixed;
		top: 2%;
		right: 2%;
	}
	

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	ul#movie-changer {
		margin: 30px 0 0;
	}
	.movie__content .movie-btn {
		width: 82%;
		font-size: 3.2vw;
		margin: 5px 0;
	}
	.modal__content p {
		width: 90%;
		height: auto;
		margin: 0;
		padding: 5vw 5%;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		font-feature-settings: "palt";
		letter-spacing: 1.0px;
	}


}



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


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 5vw;
		position: relative;
		text-align: left;
		left: 0;
	}
	.trailer h2 img {
		width: 30%;
	}
	#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:10vw 0 20vw;
	}
	.trailer h2 {
		width:99%;
		height:auto;
		padding:0;
		margin:0 0 5vw 1%;
		position: relative;
		text-align: left;
	}
	.trailer h2 img {
		width: 40%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}


}


/* ========================================
イントロダクション
========================================== */
#intro-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -28;
}
#intro {
	width: 80%;
	height: auto;
	padding: 20vw 0;
	position: relative;
	z-index: -29;
}
#intro #intro__lead {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead img {
	width: 60%;
}
#intro p {
	width: 50%;
	height: auto;
	margin: 2vw 25%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	opacity: 0;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 7vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 25%;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#intro-bg1 ,
	#intro-bg2 {
		background-position: center bottom;
	}
	
	#intro {
		width: 100%;
		height: auto;
		padding: 100vw 0;
		position: relative;
		z-index: -29;
	}
	#intro #intro__lead {
		width: 100%;
		height: auto;
		margin: 0 0 60vw;
		text-align: center;
	}
	#intro #intro__lead img {
		width: 80%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 8vw 5%;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 40vw 0 20vw;
		padding: 0;
		text-align: center;
	}
	#intro h2 img {
		width: 60%;
	}
	

}


/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: auto;
	position: relative;
}
#story #story__bg {
	width: 100%;
	height: auto;
	text-align: center;
	overflow: hidden;
}
#story #story__bg video {
	display: inline;
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#story #story__contents {
	width: 50%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 25%;
	transform: translate3d(0, -50%, 0);
	display: flex;
	justify-content: center;
	align-items: center;
}
#story #story__contents h2 {
	width: 20%;
	height: auto;
	margin: 0 8% 0 5%;
	opacity: 0;
}
#story #story__contents p {
	width: 60%;
	height: auto;
	margin: 0 5% 0 8%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	opacity: 0;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: 110vh;
		position: relative;
	}
	#story #story__bg {
		width: 100%;
		height: 110vh;
		text-align: center;
		overflow: hidden;
	}
	#story #story__bg video {
		display: inline;
		width: 130%;
		height: auto;
		vertical-align: bottom;
	}
	#story #story__contents {
		width: 100%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate3d(0, -50%, 0);
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#story #story__contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		opacity: 0;
		text-align: center;
	}
	#story #story__contents h2 img {
		width: 30%;
	}
	#story #story__contents p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	

}


/* ========================================
スタッフ
========================================== */
#staff {
	width: 100%;
	height: auto;
	background-color: #b31a25;
	padding: 10vw 0;
	position: relative;
	overflow: hidden;
}
#staff #staff__contents {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#staff h2 img {
	width: 10%;
}
#staff .staff__name {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#staff .staff__name img {
	width: 23%;
}
#staff .staff__image {
	width: 14.85%;
	height: auto;
	margin: 0 42% 3vw;
	position: relative;
}
#staff .staff__image .cutter {
	width: 100%;
	height: auto;
	animation: cutter 2.5s linear infinite;
}
@keyframes cutter {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
#staff .staff__image .photo {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#staff p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
}
@keyframes blood1 {
	0% {opacity: 0;filter: blur(8px);transform: scale(6) translate3d(2%, -2%, 0);}
	59.9% {opacity: 1;filter: blur(0px);transform: scale(0.9) translate3d(0, 0, 0);}
	60% {opacity: 1;filter: blur(0px);transform: scale(1) translate3d(0, 0, 0);}
	100% {opacity: 1;}
}
@keyframes blood2 {
	0% {clip-path: inset(0 0 60% 0);}
	100% {clip-path: inset(0 0 0 0);}
}
#staff #story-bld1 {
	width: 40%;
	height: auto;
	position: absolute;
	top: -5%;
	right: 7%;
	opacity: 0;
	clip-path: inset(0 0 60% 0);
}
.blood1 {
	animation: blood1 0.4s cubic-bezier(0.32, 0, 0.67, 0) 0s forwards , blood2 2.0s ease-out 0.1s forwards;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#staff {
		width: 100%;
		height: auto;
		background-color: #b31a25;
		padding: 20vw 0;
		position: relative;
		overflow: hidden;
	}
	#staff #staff__contents {
		width: 100%;
		height: auto;
		position: relative;
		z-index: 2;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
	}
	#staff h2 img {
		width: 35%;
	}
	#staff .staff__name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#staff .staff__name img {
		width: 80%;
	}
	#staff .staff__image {
		width: 70%;
		height: auto;
		margin: 0 15% 5vw;
		position: relative;
	}
	#staff p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
	}
	#staff #story-bld1 {
		width: 100%;
		height: auto;
		position: absolute;
		top: -5%;
		right: -10%;
		opacity: 0;
		clip-path: inset(0 0 60% 0);
	}


}


/* ========================================
スライダー
========================================== */
#slider {
	width: 100%;
	height: auto;
	position: relative;
}
#slider .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
#slider .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	position: relative;
	z-index: 2;
	opacity: 1;
}
#slider #slider1 {
	padding: 5vw 0 8vw;
	background-color: #b31a25;
}
#slider #slider1 .top-slide {
	animation: loop-slide 70s infinite linear 0s both;
} 
#slider #slider2 {
	padding: 8vw 0 5vw;
	background-color: #f4bb0d;
}
#slider #slider2 .top-slide {
	animation: loop-slide-rev 80s infinite linear 0s both;
} 
#slider .top-slide-wrap .top-slide .content {
	width: 33vw;
	height: auto;
	margin: 0;
	pointer-events: none;
}
#slider .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider #slider__logo {
	width: 20%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate3d(0, -50%, 0);
	z-index: 3;
}
#slider .top-slide-wrap #slider__saw-up {
	width: 22%;
	height: auto;
	position: absolute;
	top: 2.5vw;
	left: -25%;
	animation: saw-up 5s linear infinite , round-right 1.5s linear infinite;
}
@keyframes saw-up {
	0% {left: -25%;}
	100% {left: 101%;}
}
@keyframes round-right {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
#slider .top-slide-wrap #slider__saw-low {
	width: 22%;
	height: auto;
	position: absolute;
	top: 5.5vw;
	left: 101%;
	animation: saw-low 5s linear infinite , round-left 1.5s linear infinite;
}
@keyframes saw-low {
	0% {left: 101%;}
	100% {left: -25%;}
}
@keyframes round-left {
	0% {transform: rotate(0deg) rotateY(180deg); }
	100% {transform: rotate(-360deg) rotateY(180deg);}
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#slider #slider1 .top-slide {
		animation: loop-slide 60s infinite linear 0s both;
	} 
	#slider #slider2 .top-slide {
		animation: loop-slide-rev 50s infinite linear 0s both;
	} 
	#slider .top-slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
		margin: 0;
		pointer-events: none;
	}
	#slider #slider1 {
		padding: 30vw 0;
		background-color: #b31a25;
	}
	#slider #slider2 {
		padding: 30vw 0;
		background-color: #f4bb0d;
	}
	#slider #slider__logo {
		width: 60%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 20%;
		transform: translate3d(0, -50%, 0);
		z-index: 3;
	}
	#slider .top-slide-wrap #slider__saw-up {
		width: 70%;
		height: auto;
		position: absolute;
		top: 21vw;
		left: -25%;
		animation: saw-up 3s linear infinite , round-right 1.2s linear infinite;
	}
	#slider .top-slide-wrap #slider__saw-low {
		width: 70%;
		height: auto;
		position: absolute;
		top: 21vw;
		left: 101%;
		animation: saw-low 3s linear infinite , round-left 1.2s linear infinite;
	}
	
}


/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	background-color: #f4bb0d;
	padding: 10vw 0;
	position: relative;
	overflow: hidden;
}
#cast #cast__contents {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#cast h2 img {
	width: 8%;
}
#cast #cast__wrap {
	width: 66%;
	height: auto;
	margin: 0 17%;
}
#cast #cast__wrap .cast__unit {
	width: 100%;
	height: auto;
	margin: 8vw 0;
	display: grid;
    grid-template-columns: 25% 75%;
    grid-template-rows: 5vw 15vw;
}
#cast #cast__wrap .cast__unit .name {
    grid-column-start: 1;
    grid-column-end: 2;
	margin: 0 0 1vw;
	text-align: center;
}
#cast #cast__wrap .cast__unit .name img {
	width: 100%;
}
#cast #cast__wrap .cast__unit .cast__image {
    grid-column-start: 1;
    grid-column-end: 2;
	width: 90%;
	height: auto;
	margin: 0 5%;
	position: relative;
}
#cast #cast__wrap .cast__unit .cast__image .cutter {
	width: 100%;
	height: auto;
	animation: cutter 2.5s linear infinite;
}
#cast #cast__wrap .cast__unit .cast__image .photo {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#cast #cast__wrap .cast__unit .cast__txt {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
	box-sizing: border-box;
	padding-left: 2vw;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
	align-content: center;
	font-weight: bold;
}
#cast #cast-bld1 {
	width: 40%;
	height: auto;
	position: absolute;
	top: -5%;
	right: -15%;
	opacity: 0;
	clip-path: inset(0 0 60% 0);
}
#cast #cast-bld2 , 
#cast #cast-bld3 {
	display: none;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		background-color: #f4bb0d;
		padding: 20vw 0;
		position: relative;
		overflow: hidden;
	}
	#cast #cast__contents {
		width: 100%;
		height: auto;
		position: relative;
		z-index: 2;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#cast h2 img {
		width: 30%;
	}
	#cast #cast__wrap {
		width: 100%;
		height: auto;
		margin: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast #cast__wrap .cast__unit {
		width: 90%;
		height: auto;
		margin: 15vw 5%;
		display: block;
	}
	#cast #cast__wrap .cast__unit .name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#cast #cast__wrap .cast__unit .name img {
		width: 90%;
	}
	#cast #cast__wrap .cast__unit .cast__image {
		width: 80%;
		height: auto;
		margin: 0 10% 5vw;
		position: relative;
	}
	#cast #cast__wrap .cast__unit .cast__image .cutter {
		width: 100%;
		height: auto;
		animation: cutter 2.5s linear infinite;
	}
	#cast #cast__wrap .cast__unit .cast__image .photo {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
	}
	#cast #cast__wrap .cast__unit .cast__txt {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
	#cast #cast-bld1 {
		width: 110%;
		height: auto;
		position: absolute;
		top: 0%;
		right: auto;
		left: -15%;
		opacity: 0;
		clip-path: inset(0 0 60% 0);
	}
	#cast #cast-bld2 {
		display: block;
		width: 110%;
		height: auto;
		position: absolute;
		top: 33%;
		right: auto;
		left: 15%;
		opacity: 0;
		clip-path: inset(0 0 60% 0);
	}
	#cast #cast-bld3 {
		display: block;
		width: 110%;
		height: auto;
		position: absolute;
		top: 64%;
		right: auto;
		left: -15%;
		opacity: 0;
		clip-path: inset(0 0 60% 0);
	}
	
}

/* ========================================
コメント
========================================== */
#foot__bg {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -20;
	opacity: 0;
	overflow: hidden;
}
#foot__bg #foot-video {
	width: 100%;
	height: auto;
	position: relative;
	bottom: 0;
	text-align: center;
}
#foot__bg #foot-video video {
	display: inline;
	width: 120%;
	height: auto;
	vertical-align: bottom;
}
#comment {
	width: 100%;
	height: auto;
	padding: 20vw 0;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#comment h2 img {
	width: 16%;
}
#comment #keisho {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 6vw 25%;
	padding: 5vw;
	background-color: rgba( 179,26,37 , 0.9 );
}
#comment .com-unit:nth-child(even) {
	background-color: rgba( 244,187,13 , 0.9 );
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1.5vw;
	letter-spacing: 1.5px;
	font-weight: bold;
	text-align: right;
}
#comment .com-unit .name span {
	font-size: 1.1vw;
}
#comment .com-unit:nth-child(even) p ,
#comment .com-unit:nth-child(even) .name {
	color: #000;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#foot__bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background-color: #000;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: -20;
		opacity: 0;
		overflow: hidden;
	}
	#foot__bg #foot-video {
		width: 100%;
		height: auto;
		text-align: center;
		position: relative;
		bottom: 0;
	}
	#foot__bg #foot-video video {
		display: inline;
		width: 120%;
		height: auto;
		vertical-align: bottom;
	}	
	#comment {
		width: 100%;
		height: auto;
		padding: 100vw 0;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		padding: 0;
		text-align: center;
	}
	#comment h2 img {
		width: 60%;
	}
	#comment #keisho {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
		color: #fff;
		font-size: 1rem;
	}
	
	#comment .com-unit {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 20vw 0;
		padding: 15vw 5vw;
		background-color: rgba( 244,187,13 , 0.8 );
	}
	#comment .com-unit:nth-child(odd) {
		background-color: rgba( 179,26,37 , 0.8 );
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
		letter-spacing: 1.5px;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1.3rem;
		letter-spacing: 1.5px;
		font-weight: bold;
		text-align: right;
	}
	#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;
	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:1px 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:15vw 0 0;
	margin:0;
	position: relative;
}
footer #foot-logo {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
}
footer #foot-logo img {
	width: 25%;
}


@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0 0 20vw;
		margin:0;
		position: relative;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		margin: 0 0 40vw;
		text-align: center;
	}
	footer #foot-logo img {
		width: 70%;
	}
	
}
@media (max-width: 510px) {

}




/* ========================================
ダウンロード
========================================== */
#dl-body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-5;
	width:100%;
	height:100vh;
	background:url(../download/images/EYD-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;
	  font-feature-settings:"palt";
		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.1em;
	  font-weight: bold;
	  font-feature-settings: "palt";
	  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;
  }
