html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: 'Shippori Mincho', serif;
	width:100%; 
	height:100%;
	overflow-x:hidden;
}
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.5s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #abbcbc;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:5%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
    display: grid;
    place-items: center;
	animation-name: anime1;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
}
#loader #load1 img {
	width:100%;
	height:auto;
}
@keyframes anime1 {
	0% {	opacity:0;	}
	15% {	opacity:1;	}
	85% {	opacity:1;	}
	100% {	opacity:0;	}
}


/* 以下スマホ */
@media (max-width: 1024px) {

#loader {
	width:15%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	text-align:center;
}

#loader #load1 img {
	width:100%;
	height:auto;
}


}



/* ========================================
ヘッダー
========================================== */

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #fff, transparent);
	background: -webkit-linear-gradient(top, #fff, transparent);
	background: linear-gradient(to bottom, #fff, 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.3%;
	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;
	text-align: center;
	color: #000;
	letter-spacing: 1px;
	font-weight: bold;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(-2px);
}
#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: 60px;
	background: url(../img/KA-intro-bg-sp.jpg) repeat-y;
	background-size: 100%;
	background-position: center center;
	z-index: 200000;
	overflow-y: scroll;
}
.global-nav #menu-inner {
	width: 100%;
	height: auto;
	position: relative;
}
.global-nav #menu-inner #red-item {
	width: 10%;
	height: auto;
	position: absolute;
	top: -15%;
	right: 5%;
	pointer-events: none;
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 300000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:90%;
	height:auto;
	margin:1vw 5% 8vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 45%;
}
.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: 5px 0;
	text-decoration: none;	
	color: #fff;
	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;
	box-shadow: 0.5px 0.5px 1px 0.5px rgba(0, 0, 0, 0.6);
	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;
	text-shadow: 0.5px 0.5px 1.5px rgba(0, 0, 0, 0.6);
} 
.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: 4%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#000;
}

.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;
}
#menu-inu {
	width: 50%;
	margin-left: 49%;
	transform: translateY(-50%);
}

  .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: 800px) {
	#pcheader {
		display: none;
	}

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 80%;
	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: 95%;
	min-height: 95%;
	padding: 100px 0 10px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 20px 0 30px;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:3.5em;
	line-height: 1.5em;
	letter-spacing: 1px;	
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 2vw 2% 0;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
}
.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: 550px) {
	.global-nav__item {
		margin: 10px 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:1.7rem;
		line-height: 2.5rem;
		letter-spacing: 1px;
		font-weight: bold;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 2vw 2% 0;
		text-align: center;
	}
	
}




/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align: center;
	position:relative;
	overflow: hidden;
}
#topmain #top-bg {
	width: 100%;
	height: 100%;
}
#topmain #top-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
#topmain #mist {
	width: 200%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0%;
	left: -100%;
}
.ag-smoke-block {
	width: 100%;
	height: auto;
	z-index: 1;
	position: relative;
}
.ag-smoke-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	animation: an-smoke-1 1.2s ease-in-out infinite;
}
.ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 20%;
	animation: an-smoke-1 1.6s ease-in-out infinite;
}
.ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -20%;
	animation: an-smoke-1 2.0s ease-in-out infinite;
}
.ag-smoke__delay-1 {
	animation-delay: 0.4s;
}  
.ag-smoke__delay-2 {
	animation-delay: 0.8s;
}
.ag-smoke__delay-3 {
	animation-delay: 1.2s;
}
.ag-smoke__delay-4 {
	animation-delay: 0.1s;
}  
.ag-smoke__delay-5 {
	animation-delay: 0.5s;
}
.ag-smoke__delay-6 {
	animation-delay: 0.9s;
}
.ag-smoke-1 img ,
.ag-smoke-2 img ,
.ag-smoke-3 img {
	width: 100%;
	height: auto;
}
@keyframes an-smoke-1 {
0% {
	opacity: 0;

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

	-webkit-transform: translateX(0) rotate(.01deg);
	transform: translateX(0) rotate(.01deg);
	}
}
#topmain #top-logo-wrapper {
	width: 6%;
	height: 43vw;
	position: absolute;
	top: 7%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
}
#topmain #top-logo-wrapper #top-logo {
	width: 100%;
	height: 43vw;
	position: relative;
}
#topmain #top-logo-wrapper #top-logo #kazeyo {
	width: 100%;
	height: auto;
	opacity: 0;
}
#topmain #top-logo-wrapper #top-logo #arashiyo {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 7%;
	opacity: 0;
	text-align: center;
}
#topmain #top-logo-wrapper #top-logo #arashiyo img {
	width: 85%;
}
#topmain #top-logo-wrapper #top-logo #gekijoban {
	width: 27%;
	height: auto;
	position: absolute;
	bottom: 9.5%;
	left: -25%;
	text-align: left;
	opacity: 0;
}
#topmain #top-catch1 {
	width: 2.5%;
	height: auto;
	position: absolute;
	top: 11%;
	left: 20%;
	z-index: 4;
	opacity: 0;
}
#topmain #top-billing {
	width: 9%;
	height: auto;
	position: absolute;
	top: 27%;
	right: 17%;
	z-index: 4;
	opacity: 0;
}
#topmain #top-date {
	width: 28%;
	height: auto;
	position: absolute;
	bottom: 6%;
	left: 9.5%;
	z-index: 4;
	opacity: 0;
}
#topmain #top-catch2 {
	width: 37%;
	height: auto;
	position: absolute;
	bottom: 6%;
	right: 5%;
	z-index: 4;
	opacity: 0;
}
#topmain #top-eirin {
	width: 4%;
	height: auto;
	position: absolute;
	bottom: 13%;
	right: 5%;
	z-index: 4;
	opacity: 0;
}
@keyframes sway {
	from {
	  transform: translateY(50px) rotateX(10deg) rotateY(40deg) rotateZ(-20deg);
	  transform-origin: 50% 50%;
	}
	to {
		transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
		transform-origin: 50% 50%;
	  }
}
@keyframes sway2 {
	from {
	  transform: translateY(50px) rotateX(5deg) rotateY(100deg) rotateZ(-20deg);
	  transform-origin: 50% 50%;
	}
	to {
		transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
		transform-origin: 50% 50%;
	  }
}
@keyframes fromLeft {
	0% {
		top: -10%;
		left: -20%;
		opacity: 0;
	}
	100% {
		top: 0%;
		left: 0%;
		opacity: 1;
	}
}
@keyframes fromLeft2 {
	0% {
		bottom: 20%;
		left: -20%;
		opacity: 0;
	}
	100% {
		bottom: 0%;
		left: 0%;
		opacity: 1;
	}
}
.kazeyo {
	animation: fromLeft 1.5s ease-out 0s forwards , sway 1.5s linear 0s forwards;
}
.arashiyo {
	animation: fadeIn 1.5s ease-out 1.4s forwards;
}
.fadeInTop1 {
	animation: fadeIn 1.2s ease 1.8s forwards;
}
.fadeInTop2 {
	animation: fadeIn 1.2s ease 2.4s forwards;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	@keyframes an-smoke-1 {
		0% {
			opacity: 0;
		
			-webkit-transform: translateX(-15%) rotate(.01deg);
			transform: translateX(-15%) rotate(.01deg);
			}
			50% {
			opacity: .9;
			}
			to {
			opacity: 0;
		
			-webkit-transform: translateX(0) rotate(.01deg);
			transform: translateX(0) rotate(.01deg);
			}
		}
		
	#topmain #top-logo-wrapper {
		width: 18%;
		height: 130vw;
		position: absolute;
		top: 9%;
		left: 50%;
		transform: translateX(-50%);
		z-index: 4;
	}
	#topmain #top-logo-wrapper #top-logo {
		width: 100%;
		height: 130vw;
		position: relative;
	}
	#topmain #top-logo-wrapper #top-logo #kazeyo {
		width: 100%;
		height: auto;
		opacity: 0;
	}
	#topmain #top-logo-wrapper #top-logo #arashiyo {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 7%;
		opacity: 0;
		text-align: center;
	}
	#topmain #top-logo-wrapper #top-logo #arashiyo img {
		width: 85%;
	}
	#topmain #top-logo-wrapper #top-logo #gekijoban {
		width: 27%;
		height: auto;
		position: absolute;
		bottom: 9.5%;
		left: -25%;
		text-align: left;
		opacity: 0;
	}
	#topmain #top-catch1 {
		width: 6.5%;
		height: auto;
		position: absolute;
		top: 7%;
		left: 3%;
		z-index: 4;
		opacity: 0;
	}
	#topmain #top-billing {
		width: 27.5%;
		height: auto;
		position: absolute;
		top: 29%;
		right: 2%;
		z-index: 4;
		opacity: 0;
	}
	#topmain #top-date {
		width: 90%;
		height: auto;
		position: absolute;
		bottom: 6%;
		left: 5%;
		z-index: 4;
		opacity: 0;
	}
	#topmain #top-catch2 {
		width: 90%;
		height: auto;
		position: absolute;
		bottom: 17%;
		right: 5%;
		z-index: 4;
		opacity: 0;
	}
	#topmain #top-eirin {
		width: 6%;
		height: auto;
		position: absolute;
		bottom: 22%;
		right: 5%;
		z-index: 4;
		opacity: 0;
	}
	
}

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


/* ========================================
ブリッジトレイラーBG
========================================== */
#bridge-trailer-bg {
	width: 100%;
	height: auto;
	background: url(../img/KA-bridge-bg-pc.jpg) repeat-y;
	background-size: 100% auto;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge-trailer-bg {
		width: 100%;
		height: auto;
		background: #abbcbc;
		background-size: 100% auto;
	}
	
}



/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 17%;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi img {
	width: 17%;
}
#bridge #banners {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #banners .abanner {
	width: 20%;
	height: auto;
	margin: 0 2%;
	opacity: 0;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 5%;
}
#bridge #theater a:hover ,
#bridge #mubi a:hover ,
#bridge #banners .abanner a:hover ,
#bridge #sns-link a:hover {
	animation: flash 1.2s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 3vw 0;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 2vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 70%;
	}
	#bridge #mubi {
		width: 100%;
		height: auto;
		margin: 2vw 0 0vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #mubi img {
		width: 70%;
	}
	#bridge #banners {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #banners .abanner {
		width: 70%;
		height: auto;
		margin: 2vw 2%;
	}
	#bridge #sns-link li {
		width: 12%;
	}

}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:7vw 0 10vw;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.trailer h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
.trailer h2 img {
	width: 8%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0;
	padding: 0 20%;
	opacity: 0;
}
.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%;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:7vw 0 20vw;
		text-align: center;
		overflow: hidden;
		position: relative;
	}
	.trailer h2 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
	}
	.trailer h2 img {
		width: 20%;
	}
	#video-wrap {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:15vw 0 60vw;
		text-align: center;
		overflow: hidden;
		position: relative;
	}
	.trailer h2 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		text-align: center;
	}
	.trailer h2 img {
		width: 22%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}

}


/* ========================================
序説
========================================== */
#intro-bg {
	width: 120%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-intro-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -20;
	animation: intro-bg 30s ease 0s infinite;
}
@keyframes intro-bg {
	0% {
		transform: translateX(0%);
	}
	50% {
		transform: translateX(-5%);
	}
	100% {
		transform: translateX(0%);
	}
}
#intro {
	width: 60%;
	height: auto;
	padding: 15vw 0;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
}
#intro h2 img {
	width: 11%;
}
#intro p {
	width: 80%;
	height: auto;
	margin: 0 10%;
	padding: 0;
	font-size: 1.15vw;
	line-height: 2.1vw;
	font-feature-settings: "palt";
	letter-spacing: 2px;
}
#intro-head-sp ,
#intro .intro-head-inner {
	display: none;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#intro-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-intro-bg-sp.jpg) repeat-y;
		background-size: 100%;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -22;
		animation: none;
	}
	#intro-head-sp {
		display: block;
		width: 100%;
		height: auto;
		position: fixed;
		top: 0;
		left: 0;
		overflow-x: hidden;
		z-index: -20;
		opacity: 0;
	}
	#intro-head-sp .intro-head-inner {
		width: 100%;
		height: auto;
		position: relative;
	}
	#intro-head-sp .intro-head-inner .intro-head-bg {
		width: 120%;
		height: auto;
		animation: intro-bg 20s ease 0s infinite;
	}
	#intro-head-sp .intro-head-inner h2 {
		width: 17%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 30%;
		left: 20%;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 0 0 120vw;
		overflow-x: hidden;
		position: relative;
		z-index: -21;
	}
	#intro .intro-head-inner {
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 35vw;
		position: relative;
	}
	#intro .intro-head-inner .intro-head-bg {
		width: 120%;
		height: auto;
		animation: intro-bg 20s ease 0s infinite;
	}
	#intro .intro-head-inner #sph2 {
		display: block;
		width: 17%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 30%;
		left: 20%;
	}
	#intro .intro-head-inner #sph2 img {
		display: inline !important;
		width: 100%;
	}
	#intro h2#pch2 {
		display: none;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		font-size: 1rem;
		line-height: 2rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		color: #fff;
	}
	
}


/* ========================================
物語
========================================== */
#story-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-story-bg-pc-1214.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -19;
	opacity: 0;
}
#story-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-story-bg-pc-1214.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	opacity: 1;
	z-index: -18;
}
#story-bg3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -17;
	opacity: 0;
	transition: all 1.5s;
	opacity: 0;
}
.vanish {
	animation: fadeOut 0s linear 0s forwards;
}
.appear {
	animation: fadeIn 0s linear 0s forwards;
}
#story {
	width: 100%;
	height: auto;
	margin: -25vw 0 20vw;
	padding: 0;
	position: relative;
	z-index: -16;
}
#story h2 {
	width: 60%;
	height: auto;
	margin: 0 20% 20vw;
	padding: 0;
	text-align: left;
}
#story h2 img {
	width: 11%;
}
#story p {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	font-size: 1.15vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 2px;
	color: #fff;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#story-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-story-bg-sp-1214.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -19;
		opacity: 0;
	}
	#story-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-story-bg-sp-1214.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: relative;
		opacity: 1;
		z-index: -18;
	}
	#story {
		width: 100%;
		height: auto;
		margin: -100vw 0 70vw;
		padding: 0;
		position: relative;
		z-index: -16;
	}
	#story h2 {
		width: 17%;
		height: auto;
		margin: 0 auto 60vw 5%;
		padding: 0;
		text-align: left;
	}
	#story h2 img {
		width: 100%;
	}
	#story p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		font-size: 1rem;
		line-height: 2rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		color: #fff;
	}
	
	

}


/* ========================================
スライダーエリア
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	padding: 8vw 0;
	background: url(../img/KA-slider-bg-pc.jpg);
	background-size: cover;
	background-position: center center;
	position: relative;
}
#slider-area .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(to left, transparent, black, black, black, black, black, transparent);
    mask-image: linear-gradient(to left,  transparent, black, black, black, black, black, transparent);
}
#slider-area #slide1 .top-slide {
	animation: loop-slide-rev 80s infinite linear 0s both;
	display: flex;
	flex-wrap: nowrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#slider-area #slide2 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 80s infinite linear 0s both;
}
#slider-area #logo-slide2 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 90s infinite linear 0s both;
}
#slider-area .top-slide-wrap .top-slide .content {
	width: 35vw;
	height: auto;
}
#slider-area .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#slider-area #slide-logo {
	width: 5%;
	height: auto;
	position: absolute;
	top: 3%;
	right: 4%;
}
#slider-area #slide-catch {
	width: 7.5%;
	height: auto;
	position: absolute;
	bottom: 3%;
	left: 4%;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#slider-area {
		width: 100%;
		height: auto;
		padding: 40vw 0;
		background: url(../img/KA-slider-bg-pc.jpg);
		background-size: cover;
		background-position: center center;
		position: relative;
	}
	#slider-area .top-slide-wrap {
		-webkit-mask-image: none;
		mask-image: none;
	}
	
	#slider-area .top-slide-wrap .top-slide .content {
		width: 120vw;
		height: auto;
	}
	#slider-area #slide-logo {
		width: 12%;
		height: auto;
		position: absolute;
		top: 3%;
		right: 4%;
	}
	#slider-area #slide-catch {
		width: 18%;
		height: auto;
		position: absolute;
		bottom: 4%;
		left: 4%;
	}
	
}


/* ========================================
キャスト
========================================== */
#cast-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-cast-bg-pc.jpg);
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -15;
	pointer-events: none;
}
#mist2 {
	width: 200%;
	height: 70%;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0%;
	left: -100%;
	opacity: 0;
	z-index: -14;
	overflow: hidden;
	pointer-events: none;
}
#mist2 .ag-smoke-block {
	width: 100%;
	height: auto;
	position: relative;
}
#mist2 .ag-smoke-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	animation: an-smoke-1 1.8s ease-in-out infinite;
}
#mist2 .ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 20%;
	animation: an-smoke-1 3.0s ease-in-out infinite;
}
#mist2 .ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -20%;
	animation: an-smoke-1 2.0s ease-in-out infinite;
}
#mist2 .ag-smoke-4 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 50%;
	animation: an-smoke-1 2.5s ease-in-out infinite;
}
#mist2 .ag-smoke-1 img ,
#mist2 .ag-smoke-2 img ,
#mist2 .ag-smoke-3 img {
	width: 100%;
}
#cast {
	width: 100%;
	height: auto;
	padding: 30vw 0 15vw;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 30vw;
	text-align: center;
}
#cast h2 img {
	width: 15%;
}
#cast #cast-list {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#cast #cast-list li {
	width: 40%;
	height: auto;
	margin: 6vw 0;
	position: relative;
}
#cast #cast-list li a:hover .plus-mark img {
	animation: plus-anime 1.0s ease 0s infinite;
}
@keyframes plus-anime {
	0% {transform: scale(1);}
	50% {transform: scale(1.3);}
	100% {transform: scale(1);}
}
#cast #cast-list li .cast-photo {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}
#cast #cast-list li .cast-photo img {
	display: block;
}
#cast #cast-list li .cast-photo .plus-left {
	width: 30px;
	position: absolute;
	bottom: 5%;
	right: 2%;
}
#cast #cast-list li .cast-photo .plus-right {
	width: 30px;
	position: absolute;
	bottom: 5%;
	left: 2%;
}

#cast #cast-list li .cast-name {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
@keyframes left-cast {
	0% {
		transform: translate(0% , 0%);
	}
	100% {
		transform: translate(15% , 28%);
	}
}
.left-cast-anime {
	animation: left-cast 1.0s ease 0s forwards;
}
@keyframes right-cast {
	0% {
		transform: translate(0% , 0%);
	}
	100% {
		transform: translate(-15% , 28%);
	}
}
.right-cast-anime {
	animation: right-cast 1.0s ease 0s forwards;
}
#cast #cast-list li .plus-left {
	width: 20px;
	height: 20ox;
	font-size: 3vw;
	position: absolute;
	bottom: -27%;
	right: -8.5%;
	color: #000;
	opacity: 1;
	z-index: 2;
}
#cast #cast-list li .plus-right {
	width: 20px;
	height: 20ox;
	font-size: 3vw;
	position: absolute;
	bottom: -27%;
	left: -12.2%;
	color: #000;
	opacity: 1;
	z-index: 2;
}
#cast #cast-list li .plus-white {
	color: #fff !important;
}
.plus-fadeIn {
	animation: fadeIn 0.5s ease 0s forwards;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#cast-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-cast-bg-sp.jpg);
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: -15;
		pointer-events: none;
	}
	#mist2 {
		display: none;
	}
	#cast {
		width: 100%;
		height: auto;
		padding: 80vw 0 40vw;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 80vw;
		text-align: center;
	}
	#cast h2 img {
		width: 37%;
	}
	#cast #cast-list {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		overflow-x: hidden;
	}
	#cast #cast-list li:nth-child(odd) {
		width: 87%;
		height: auto;
		margin: 15vw 0;
		position: relative;
	}
	#cast #cast-list li:nth-child(even) {
		width: 87%;
		height: auto;
		margin: 15vw 0 15vw 13%;
		position: relative;
	}
	#cast #cast-list li .plus-left {
		width: auto;
		height: auto;
		font-size: 7vw;
		position: absolute;
		bottom: -27%;
		right: -12.2%;
		color: #000;
		opacity: 1;
		z-index: 2;
	}
	#cast #cast-list li .plus-right {
		width: auto;
		height: auto;
		font-size: 7vw;
		position: absolute;
		bottom: -27%;
		left: -12.2%;
		color: #000;
		opacity: 1;
		z-index: 2;
	}
	#cast #cast-list li .cast-photo .plus-left {
		position: absolute;
		bottom: 5%;
		right: 2%;
	}

}


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
}
.modal__bg{
	background:url(../img/KA-rightbox-bg-pc-wh-2.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.8;
}
.movie__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content {
    width: 60%;
	height: 80%; /* スクロール時は80% */
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-size: cover;
	background-position: center center;
	overflow-y: scroll;
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: thin;
	scrollbar-color: #113044 #ccc;
}
.modal__content::-webkit-scrollbar {
	display: block;
	width: 5px;
}
.modal__content::-webkit-scrollbar-track{
	background-color: #ccc;
}
.modal__content::-webkit-scrollbar-thumb{
	background-color: #113044;
}	
.modal__content .cast-photo {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
}
.modal__content .cast-photo img {
	width: 40%;
}
.modal__content .cast-name {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
}
.modal__content .cast-name img {
	width: auto;
	height: 2vw;
}
.modal__content p {
	width: 80%;
	margin: 0 10%;
	padding: 0 0 3vw;
	font-size: 1.15vw;
	line-height: 2.1vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	color: #000;
}
.modal__content .role-name {
	width: 100%;
	height: auto;
	margin: 5vw 0 2vw;
	text-align: center;
}
.modal__content .role-name img {
	width: auto;
	height: 2vw;
}
.movie__content .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.movie__content .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie__content ul#movie-changer {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.movie__content .movie-btn {
	width: 30%;
	height: auto;
	margin: 0 0.5%;
	padding: 3px 0;
	text-align: center;
	background-color: #010103;
	border: 1px solid #FFFEEC;
	color: #FFFEEC;
	font-size: 1.1vw;
}
.activee {
	background: #FFFEEC;
	border: 1px solid #FFFEEC;
	color: #010103;
	font-weight: bold;
}
.movie-btn:hover {
	background: #FFFEEC;
	border: 1px solid #FFFEEC;
	color: #010103;
	cursor: pointer;
	transition-duration: 0.6s;
}
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.modal__bg{
		background:url(../img/KA-rightbox-bg-wh-2.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		height: 100%;
		position: absolute;
		width: 100%;
	}
	
	.movie__content {
		width: 100%;
		height: auto;
		padding: 1% 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content {
		width: 80%;
		height: 70%; /* スクロール時は80% */
		padding: 50px 5%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		background-size: cover;
		background-position: center center;
		overflow-y: scroll;
		overflow-x: hidden;
		border-radius: 10px;
		-ms-overflow-style: none;
		scrollbar-width: thin;
		scrollbar-color: #113044 #ccc;
	}
	.modal__content::-webkit-scrollbar {
		display: block;
		width: 5px;
	}
	.modal__content::-webkit-scrollbar-track{
		background-color: #ccc;
	}
	.modal__content::-webkit-scrollbar-thumb{
		background-color: #113044;
	}	
	.modal__content .cast-photo {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
	}
	.modal__content .cast-photo img {
		width: 100%;
	}
	.modal__content .cast-name {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		text-align: center;
	}
	.modal__content .cast-name img {
		width: auto;
		height: 6vw;
	}	
	.modal__content p {
		width: 100%;
		margin: 0;
		padding: 0 0 3vw;
		font-size: 1rem;
		line-height: 1.7rem;
		font-feature-settings: "palt";
		letter-spacing: 1.0px;
	}
	.modal__content .role-name {
		width: 100%;
		height: auto;
		margin: 10vw 0 2vw;
		text-align: center;
	}
	.modal__content .role-name img {
		width: auto;
		height: 6vw;
	}
	
}



/* ========================================
スタッフ
========================================== */
#staff-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-staff-bg-1-pc.jpg);
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -13;
	pointer-events: none;
}
#staff-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-staff-bg-2-pc.jpg);
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -12;
	pointer-events: none;
}
#staff-bg3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-staff-bg-3-pc.jpg);
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -12;
	pointer-events: none;
}
@keyframes staff-bg2 {
	0% {opacity: 0;}
	27% {opacity: 0;}
	33% {opacity: 1;}
	60% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes staff-bg3 {
	0% {opacity: 0;}
	60% {opacity: 0;}
	66% {opacity: 1;}
	94% {opacity: 1;}
	100% {opacity: 0;}
}
.staff-bg2 {
	animation: staff-bg2 13s ease 0s infinite;
}
.staff-bg3 {
	animation: staff-bg3 13s ease 0s infinite;
}
#staff-bg4 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-staff-bg-1-pc.jpg);
	background-size: cover;
	background-position: center center;
	z-index: -11;
	pointer-events: none;
	position: relative;
}
#staff {
	width: 100%;
	height: auto;
	margin: -30vw 0 30vw;
	position: relative;
	z-index: -10;
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	padding: 0;
	text-align: center;
}
#staff h2 img {
	width: 13%;
	height: auto;
	vertical-align: bottom;
}
#staff .staff-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 8vw;
}
#staff .staff-unit .staff-name {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	text-align: center;
}
#staff .staff-unit .staff-name img {
	width: auto;
	height: 1.7vw;
}
#staff .staff-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.15vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-staff-bg-1-sp.jpg);
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: -13;
		pointer-events: none;
	}
	#staff-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-staff-bg-2-sp.jpg);
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: -12;
		pointer-events: none;
	}
	#staff-bg3 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-staff-bg-3-sp.jpg);
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: -12;
		pointer-events: none;
	}
	#staff-bg4 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KA-staff-bg-1-sp.jpg);
		background-size: cover;
		background-position: center center;
		z-index: -11;
		pointer-events: none;
		position: relative;
	}
	#staff {
		width: 100%;
		height: auto;
		margin: -120vw 0 60vw;
		position: relative;
		z-index: -10;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		padding: 0;
		text-align: center;
	}
	#staff h2 img {
		width: 35%;
		height: auto;
		vertical-align: bottom;
	}
	#staff .staff-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 25vw;
	}
	#staff .staff-unit .staff-name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#staff .staff-unit .staff-name img {
		width: auto;
		height: 5vw;
	}
	#staff .staff-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 1.8rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
	}
	

}


/* ========================================
黒板
========================================== */
#kokuban {
	width: 100%;
	height: auto;
	overflow: hidden;
}
#kokuban #kokuban-img {
	width: 130%;
	height: auto;
	transition: all 3.0s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#kokuban #kokuban-img {
		width: 100%;
		height: auto;
		transition: all 1.0s;
	}
	

}


/* ========================================
監督
========================================== */
#director-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KA-message-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -9;
	opacity: 0;
}
#director-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -8;
	opacity: 0;
	transition: all 1.5s;
	opacity: 0;
}
#director {
	width: 100%;
	height: auto;
	padding: 15vw 0;
}
#director h2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	padding: 0;
	text-align: center;
}
#director h2 img {
	width: 30%;
}
#director p {
	width: 50%;
	height: auto;
	margin: 1.5vw 25%;
	padding: 0;
	color: #fff;
	font-size: 1.15vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
}
#director #dire-name {
	width: 50%;
	height: auto;
	margin: 2.5vw 25% 0;
	padding: 0;
	color: #fff;
	font-size: 1.15vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	text-align: right;
}
#director-sp-btm {
	display: none;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#director-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -9;
		opacity: 0;
	}
	#director-sp-btm {
		display: block;
		width: 100%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: -6;
		pointer-events: none;
		opacity: 0;
	}
	#director {
		width: 100%;
		height: auto;
		padding: 30vw 0 90vw;
		position: relative;
		z-index: -7;
	}
	#director h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
	}
	#director h2 img {
		width: 90%;
	}
	#director p {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
	}
	#director #dire-name {
		width: 90%;
		height: auto;
		margin: 5vw 5% 0;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		text-align: right;
	}
	

}

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




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

#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0 10px;
}

#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

#button-area ul.social_sq_buttons li {
	width:160px;
	height: 20px;
	margin:5px;
	padding:3px 0;
	display: flex;
	justify-content: center;
}


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	overflow-x: hidden;
	position: relative;
}
footer #foot-bg1 {
	width: 100%;
	height: auto;
}
footer #foot-bg2 ,
footer #foot-bg3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-logo {
	width: 4.3%;
	height: auto;
	position: absolute;
	top: 32%;
	left: 41%;
	opacity: 0;
}
footer #foot-catch {
	width: 7%;
	height: auto;
	position: absolute;
	top: 18%;
	left: 53%;
	opacity: 0;
}
footer #button-area {
	position: absolute;
	bottom: 3%;
	opacity: 0;
}
footer #copyright {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5px 0;
	text-align: center;
	color: #000;
	font-size: 1em;
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-ani1 {
	animation: fadeIn 1.0s ease 0s forwards;
}
.foot-ani2 {
	animation: fadeIn 1.0s ease 0.8s forwards;
}
.foot-ani3 {
	animation: fadeIn 1.0s ease 1.6s forwards;
}
.foot-ani4 {
	animation: fadeIn 1.0s ease 2.4s forwards;
}
.foot-ani5 {
	animation: fadeIn 1.0s ease 3.0s forwards;
}



@media (max-width: 1024px) {
	footer #foot-bg1 {
		width: 210%;
		height: auto;
		transition: all 2.0s ease-in;
	}
	footer #foot-bg2 ,
	footer #foot-bg3 {
		display: none;
	}
	footer #copyright {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5px 0;
		text-align: center;
		color: #000;
		font-size: 0.8em;
	}
	footer #copyright span {
		color: #fff;
	}
	footer #foot-logo {
		width: 14%;
		height: auto;
		position: absolute;
		top: 32%;
		left: 10%;
		opacity: 0;
	}
	footer #foot-catch {
		width: 20%;
		height: auto;
		position: absolute;
		top: 15%;
		left: 65%;
		opacity: 1;
	}
	.foot-ani3 {
		animation: none;
	}
}
@media (max-width: 610px) {
	footer #foot-bg1 {
		width: 250%;
		height: auto;
		transition: all 2.0s ease-in;
	}
	footer #foot-logo {
		width: 14%;
		height: auto;
		position: absolute;
		top: 32%;
		left: 20%;
		opacity: 0;
	}

}
