html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: 'Yu Gothic UI','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	width:100%; 
	height:100%;
	overflow-x:hidden;
}
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 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: #11110F;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
    place-items: center;
}
#loader {
	width:15%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:auto;
	animation: load1 2.0s linear 0s infinite;
}
#loader #load2 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load2 2.0s linear 0s infinite;
}
#loader #load3 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load3 2.0s linear 0s infinite;
}

@keyframes load1 {
	0% {opacity: 0;}
	10% {opacity: 1;}
	79% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes load2 {
	0% {opacity: 0;}
	22% {opacity: 0;}
	33% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes load3 {
	0% {opacity: 0;}
	55% {opacity: 0;}
	66% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #12110F;
	}
	#loader {
		width:100%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
		text-align:center;
	}
	#loader {
		width:40%;
		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, #1a1613, 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.5vw;
	line-height:1.5vw;
	letter-spacing: 1.0px;
	text-align: center;
	color: #fff;
	font-family: 'Yu Gothic UI',YuGothic,'Yu Gothic',sans-serif;
}
#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: #1a1613;
	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:30%;
	height:auto;
	margin:0px 35% 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: 4%;
	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: 800px) {
	#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 a {
	display: block;
	padding: 1px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:2.0rem;
	line-height: 4.0rem;
	letter-spacing: 1vw;
	color: #fff;
	font-family: 'Yu Gothic UI',YuGothic,'Yu Gothic',sans-serif;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 0vw 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: 5px 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: 3rem;
		letter-spacing: 1.2px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav ul.nav-sns {
		width: 90%;
		height: auto;
		margin: 3vw 5% 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
	
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 2vw 1% 0;
		text-align: center;

	}
	
}


/* ========================================
劇場バナー
========================================== */
#theater {
	width: 16%;
	height: auto;
	position: fixed;
	bottom: 1%;
	right: 0;
	z-index: 10;
	opacity: 0;
}
#theater a img:hover {
	animation: flash 1.0s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#theater {
		width: 50%;
		height: auto;
		position: fixed;
		bottom: -5.5%;
		right: -8%;
		z-index: 10;
		opacity: 0;
	}

}


/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#topmain #top-bg1 {
	width: 100%;
	height: auto;
}
#topmain #mist {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: -25%;
	pointer-events: none;
	opacity: 0.3;
}
.ag-smoke-block {
	width: 100%;
	height: auto;
	z-index: 1;
	position: relative;
}
.ag-smoke-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -10%;
	animation: an-smoke-1 2.0s ease-in-out infinite;
	height: 30vw;
	width: 50vw;
}
.ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 25%;
	animation: an-smoke-1 2.8s ease-in-out infinite;
	height: 30vw;
	width: 50vw;
}
.ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -40%;
	animation: an-smoke-1 3.6s ease-in-out infinite;
	height: 30vw;
	width: 50vw;
}
.ag-smoke__delay-1 {
	animation-delay: 0.4s;
}  
.ag-smoke__delay-2 {
	animation-delay: 0.8s;
}
.ag-smoke__delay-3 {
	animation-delay: 1.2s;
}
.ag-smoke__delay-4 {
	animation-delay: 0.1s;
}  
.ag-smoke__delay-5 {
	animation-delay: 0.5s;
}
.ag-smoke__delay-6 {
	animation-delay: 0.9s;
}
.ag-smoke-1 img ,
.ag-smoke-2 img ,
.ag-smoke-3 img {
	width: auto;
	height: 100%;
}
@keyframes an-smoke-1 {
0% {
	opacity: 0;

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

	-webkit-transform: translateX(0) rotate(.01deg);
	transform: translateX(0) rotate(.01deg);
	}
}
#topmain #hongoku {
	width: 48%;
	height: auto;
	position: absolute;
	top: 2%;
	left: 26%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
#topmain #hongoku #hongoku__part1 {
	width: 6%;
	height: auto;
	opacity: 0;
}
#topmain #hongoku #hongoku__part2 {
	width: 5.5%;
	height: auto;
	opacity: 0;
}
#topmain #hongoku #hongoku__part3 {
	width: 6%;
	height: auto;
	opacity: 0;
}
#topmain #hongoku #hongoku__part4 {
	width: 4.9%;
	height: auto;
	opacity: 0;
}
#topmain #hongoku #hongoku__part5 {
	width: 4.3%;
	height: auto;
	opacity: 0;
}
#topmain #hongoku #hongoku__part6 {
	width: 3.7%;
	height: auto;
	opacity: 0;
}
#topmain #hongoku #hongoku__part7 {
	width: 4.7%;
	height: auto;
	opacity: 0;
}
@keyframes blurIn {
	0% {
	opacity: 0;
	filter: blur(6px);
	transform: scale(20);
	}
	97% {opacity: 1;filter: blur(0);transform: scale(0.90);}
	100% {
	opacity: 1;
	filter: blur(0px);
	transform: scale(1);
	}
}
#topmain #top__date {
	width: 16%;
	height: auto;
	position: absolute;
	top: 41%;
	left: 9%;
	opacity: 0;
}
#topmain #top__award {
	width: 32%;
	height: auto;
	position: absolute;
	top: 8%;
	left: 34%;
	opacity: 0;
}
#topmain #top__title {
	width: 17%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 24%;
	left: 41.5%;
	opacity: 0;
}
#topmain #top__tatecatch {
	width: 1.3%;
	height: auto;
	position: absolute;
	top: 26%;
	right: 20%;
	opacity: 0;
}
#topmain #top__bb {
	width: 42%;
	height: auto;
	position: absolute;
	top: 68%;
	left: 29%;
	opacity: 0;
}
#topmain #top__yokocatch {
	width: 70%;
	height: auto;
	position: absolute;
	bottom: 5%;
	left: 15%;
	opacity: 0;
}
.hongoku__part1 {
	animation: blurIn 0.3s ease-in 1.6s forwards;
}
.hongoku__part2 {
	animation: blurIn 0.3s ease-in 1.8s forwards;
}
.hongoku__part3 {
	animation: blurIn 0.3s ease-in 2.0s forwards;
}
.hongoku__part4 {
	animation: blurIn 0.3s ease-in 2.2s forwards;
}
.hongoku__part5 {
	animation: blurIn 0.3s ease-in 2.4s forwards;
}
.hongoku__part6 {
	animation: blurIn 0.3s ease-in 2.6s forwards;
}
.hongoku__part7 {
	animation: blurIn 0.3s ease-in 2.8s forwards;
}
.top__title {
	animation: fadeIn 1.0s ease-in 2.9s forwards;
}
.top-others-anime {
	animation: fadeIn 1.5s ease 3.8s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain #mist {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 45%;
		left: -25%;
		pointer-events: none;
		opacity: 0.7;
	}
	.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 2.0s ease-in-out infinite;
		height: 110vw;
		width: 50vw;
	}
	.ag-smoke-2 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 25%;
		animation: an-smoke-1 2.8s ease-in-out infinite;
		height: 110vw;
		width: 50vw;
	}
	.ag-smoke-3 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: -40%;
		animation: an-smoke-1 3.6s ease-in-out infinite;
		height: 110vw;
		width: 50vw;
	}

		
	#topmain #hongoku {
		width: 90%;
		height: auto;
		position: absolute;
		top: 2%;
		left: 5%;
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	#topmain #hongoku #hongoku__part1 {
		width: 8%;
		height: auto;
		opacity: 0;
	}
	#topmain #hongoku #hongoku__part2 {
		width: 7.3%;
		height: auto;
		opacity: 0;
	}
	#topmain #hongoku #hongoku__part3 {
		width: 8%;
		height: auto;
		opacity: 0;
	}
	#topmain #hongoku #hongoku__part4 {
		width: 6.2%;
		height: auto;
		opacity: 0;
	}
	#topmain #hongoku #hongoku__part5 {
		width: 5.1%;
		height: auto;
		opacity: 0;
	}
	#topmain #hongoku #hongoku__part6 {
		width: 4.8%;
		height: auto;
		opacity: 0;
	}
	#topmain #hongoku #hongoku__part7 {
		width: 5.7%;
		height: auto;
		opacity: 0;
	}
	#topmain #top__date {
		width: 60%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 4%;
		left: 20%;
		opacity: 0;
	}
	#topmain #top__award {
		width: 76%;
		height: auto;
		position: absolute;
		top: 7%;
		left: 12%;
		opacity: 0;
	}
	#topmain #top__title {
		width: 46%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 24%;
		left: 27%;
		opacity: 0;
	}
	#topmain #top__tatecatch {
		width: 4.2%;
		height: auto;
		position: absolute;
		top: 37%;
		right: 3%;
		opacity: 0;
	}
	#topmain #top__bb {
		width: 76%;
		height: auto;
		position: absolute;
		top: 61%;
		left: 12%;
		opacity: 0;
	}
	#topmain #top__yokocatch {
		width: 96%;
		height: auto;
		position: absolute;
		bottom: 11.5%;
		left: 2%;
		opacity: 0;
	}
	
}


/* ========================================
ブリッジ
========================================== */

#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 3vw; 
	background-color: #11110F;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}
#bridge #com-banner {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	opacity: 0;
}
#bridge #com-banner img {
	width: 25%;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 3vw;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 4%;
	height: auto;
	margin: 0 1%;
}
#bridge #com-banner img:hover ,
#bridge #sns-link li a:hover {
	animation: flash 1.5s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 8vw 0 8vw;
		background-color: #12110F;
	}
	#bridge #mubi {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}	
	#bridge #com-banner {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #com-banner img {
		width: 80%;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 8vw;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
	}
	#bridge #sns-link li {
		width: 12%;
		height: auto;
		margin: 0 2%;
	}
	
	


}

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


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

	
}



/* ========================================
イントロダクション
========================================== */
#intro-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KKS-introstory-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#story-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	opacity: 0;
	transition: 1.0s all;
}
#story-bg #story-bg-inner {
	width: 100%;
	height: auto;
	position: relative;
}
#story-bg #story-bg-inner #story-bg1 {
	width: 100%;
	height: 100%;
	text-align: right;
	opacity: 0;
}
#story-bg #story-bg-inner #story-bg1 img {
	width: auto;
	height: 100%;
}
#story-bg #story-bg-inner #story-bg2 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	text-align: left;
	opacity: 0;
}
#story-bg #story-bg-inner #story-bg2 img {
	width: auto;
	height: 100%;
}
#intro-bld1 {
	width: 22%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -28;
	opacity: 0;
}
#intro-bld2 {
	width: 53%;
	height: auto;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: -28;
	clip-path: inset(0 0 0 100%);
}
#intro-bld3 {
	width: 30%;
	height: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: -28;
	opacity: 0;
}
#intro-bld4 {
	width: 40%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -28;
	clip-path: inset(0 0 0 100%);
}
@keyframes story-bg1 {
	0% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes story-bg2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
.story-bg1 {
	animation: story-bg1 7s ease 0s infinite;
}
.story-bg2 {
	animation: story-bg2 7s ease 0s infinite;
}
#intro {
	width: 100%;
	height: auto;
	padding: 20vw 0;
	position: relative;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 25%;
}
#intro #intro-lead {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-lead img {
	width: 50%;
}
#intro p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	opacity: 0;
}
#intro #bld-trg1 {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 10%;
}
#intro #bld-trg2 {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 25%;
}
#intro #bld-trg3 {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 40%;
}
#intro #bld-trg4 {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 65%;
}
@keyframes blood1 {
	0% {opacity: 0;filter: blur(8px);transform: scale(6) translate3d(2%, -2%, 0);}
	97% {opacity: 1;filter: blur(0px);transform: scale(0.8) translate3d(0, 0, 0);}
	100% {opacity: 1;filter: blur(0px);transform: scale(1) translate3d(0, 0, 0);}
}
@keyframes blood2 {
	0% {
		clip-path: inset(0 0 0 100%);
	}
	100% {
		clip-path: inset(0 0 0 0);
	}
}
.blood1 {
	animation: blood1 0.3s ease-in 0s forwards;
}
.blood2 {
	animation: blood2 0.2s ease-in 0s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KKS-introstory-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -30;
	}
	#story-bg {
		width: 100%;
		height: 60%;
		min-height: 60%;
		position: fixed;
		top: 40%;
		left: 0;
		z-index: -29;
		opacity: 0;
		transition: 1.0s all;
	}
	#story-bg #story-bg-inner {
		width: 100%;
		height: auto;
		position: relative;
	}
	#story-bg #story-bg-inner #story-bg1 {
		width: 100%;
		height: 100%;
		text-align: right;
		opacity: 0;
	}
	#story-bg #story-bg-inner #story-bg1 img {
		width: 100%;
		height: auto;
	}
	#story-bg #story-bg-inner #story-bg2 {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		text-align: left;
		opacity: 0;
	}
	#story-bg #story-bg-inner #story-bg2 img {
		width: 100%;
		height: auto;
	}	
	#intro-bld1 {
		width: 30%;
		height: auto;
		position: fixed;
		top: 0%;
		left: 0;
		z-index: -28;
		opacity: 0;
	}
	#intro-bld2 {
		width: 50%;
		height: auto;
		position: fixed;
		bottom: 45%;
		right: 0;
		z-index: -28;
		clip-path: inset(0 0 0 100%);
	}
	#intro-bld3 {
		width: 40%;
		height: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: -28;
		opacity: 0;
	}
	#intro-bld4 {
		width: 40%;
		height: auto;
		position: fixed;
		bottom: 45%;
		left: 0;
		z-index: -28;
		clip-path: inset(0 0 0 100%);
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 40vw 0;
		position: relative;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 60%;
	}
	#intro #intro-lead {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-lead img {
		width: 70%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#intro #bld-trg1 {
		width: 100%;
		height: 1px;
		position: absolute;
		top: 10%;
	}
	#intro #bld-trg2 {
		width: 100%;
		height: 1px;
		position: absolute;
		top: 25%;
	}
	#intro #bld-trg3 {
		width: 100%;
		height: 1px;
		position: absolute;
		top: 40%;
	}
	#intro #bld-trg4 {
		width: 100%;
		height: 1px;
		position: absolute;
		top: 65%;
	}
	
}


/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: auto;
	padding: 10vw 0 20vw;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	text-align: center;
	opacity: 0;
}
#story h2 img {
	width: 12%;
}
#story .story-lead {
	width: 65%;
	height: auto;
	margin: 0 0 2vw 35%;
	text-align: left;
	opacity: 0;
}
#story #story__lead1 img {
	width: 25%;
}
#story #story__lead2 img {
	width: 45%;
}
#story #story__lead3 img {
	width: 40%;
}
#story #story__lead4 {
	width: 100%;
	height: auto;
	margin: 10vw 0 10vw;
	text-align: center;
	opacity: 0;
}
#story #story__lead4 img {
	width: 40%;
}
#story p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.5px;
	opacity: 0;
}
@keyframes blurIn2 {
	0% {opacity: 0;filter: blur(10px);}
	100% {opacity: 1;filter: blur(0px);}
}
.story-lead-anime {
	animation: blurIn2 0.7s ease 0s forwards;
}
.story__lead4 {
	animation: blurIn2 1.2s ease 0s forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: auto;
		padding: 20vw 0 120vw;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
		opacity: 0;
	}
	#story h2 img {
		width: 30%;
	}
	#story .story-lead {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
		opacity: 0;
	}
	#story #story__lead1 img {
		width: 60%;
	}
	#story #story__lead2 img {
		width: 70%;
	}
	#story #story__lead3 img {
		width: 70%;
	}
	#story #story__lead4 {
		width: 100%;
		height: auto;
		margin: 20vw 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#story #story__lead4 img {
		width: 85%;
	}
	#story p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.5px;
		opacity: 0;
	}
	

}


/* ========================================
スライダー
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#slider-area .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-area .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider-area #slider2 {
	margin: -1px 0 0;
}
#slider-area #slider1 .top-slide {
	animation: loop-slide 70s infinite linear 0s both;
}
#slider-area #slider2 .top-slide {
	animation: loop-slide-rev 70s infinite linear 0s both;
}
#slider-area .top-slide-wrap .top-slide .content {
	width: 30vw;
	height: auto;
	margin: 0;
	pointer-events: none;
}
#slider-area .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#slider-area .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
		pointer-events: none;
	}
	

}


/* ========================================
火の粉
========================================== */
#fire-bg {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#fire-bg #particles-js {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	pointer-events: none;
}


/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #1a1613;	
	position: relative;
}
#cast #cast-firebg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: radial-gradient(rgba(254, 50, 4, 0.2), transparent); 
	animation: chira 10s ease 0s infinite;
	z-index: 1;
}
#cast #cast-content {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast h2 img {
	width: 9%;
}
#cast .cast-unit {
	width: 60%;
	height: auto;
	margin: 0 20% 10vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#cast .cast-unit h3 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast .cast-unit h3 img {
	width: 50%;
}
#cast .cast-unit .cast-photo {
	width: 45%;
	height: auto;
	margin: 0 2% 0 0;
	position: relative;
	opacity: 0;
}
@keyframes chira {
	0% {opacity: 0;}
	10% {opacity: 0.9;}
	20% {opacity: 0.2;}
	40% {opacity: 0.5;}
	60% {opacity: 0.1;}
	80% {opacity: 0.7;}
	100% {opacity: 0;}
}
#cast .cast-unit .cast-photo .cast-img1 {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
#cast .cast-unit .cast-photo .cast-img2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 3;
}
#cast .cast-unit .cast-photo .cast-img3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 3;
}
#cast .cast-unit .cast-txt {
	width: 51%;
	height: auto;
	margin: 0 0 0 2%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.2px;
	opacity: 0;
}
.cast-img2-anime {
	animation: fadeIn 1.5s ease 0.5s forwards;
}
.cast-img3-anime {
	animation: fadeIn 1.5s ease 1.8s forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 30vw 0;
		background-color: #1a1613;	
		position: relative;
	}
	#cast #cast-firebg {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: radial-gradient(rgba(254, 50, 4, 0.4), transparent); 
		animation: chira 10s ease 0s infinite;
		z-index: 1;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast h2 img {
		width: 25%;
	}
	#cast .cast-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 30vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast .cast-unit h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast .cast-unit h3 img {
		width: 90%;
	}
	#cast .cast-unit .cast-photo {
		width: 80%;
		height: auto;
		margin: 0 10%;
		position: relative;
		opacity: 0;
	}
	#cast .cast-unit .cast-photo .cast-img1 {
		width: 100%;
		height: auto;
		position: relative;
		z-index: 2;
	}
	#cast .cast-unit .cast-photo .cast-img2 {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: 3;
	}
	#cast .cast-unit .cast-photo .cast-img3 {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: 3;
	}
	#cast .cast-unit .cast-txt {
		width: 100%;
		height: auto;
		margin: 5vw 0 0;
		color: #fff;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.2px;
		opacity: 0;
	}
	


}


/* ========================================
コメント
========================================== */
#cast #comment {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	position: relative;
	z-index: 3;
}
#cast #comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	padding: 0;
	text-align: center;
}
#cast #comment h2 img {
	width: 18%;
}
#cast #comment .com-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 7vw;
	opacity: 0;
}
#cast #comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2vw;
	letter-spacing: 1.2px;
}
#cast #comment .com-unit .com-name {
	width: 100%;
	height: auto;
	text-align: right;
	color: #fe0505;
	font-weight: bold;
	font-size: 1.4vw;
	letter-spacing: 1.2px;
}
#cast #comment .com-unit .com-name span {
	font-size: 1.1vw;
}
#cast #comment #junf {
	width: 50%;
	height: auto;
	margin: 0 25%;
	text-align: left;
	color: #fff;
	font-size: 1.1vw;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast #comment {
		width: 100%;
		height: auto;
		padding: 25vw 0;
		position: relative;
		z-index: 3;
	}
	#cast #comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#cast #comment h2 img {
		width: 50%;
	}
	#cast #comment .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
		opacity: 0;
	}
	#cast #comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 4vw;
		padding: 0;
		color: #fff;
		font-size: 4vw;
		line-height: 7vw;
		letter-spacing: 1.2px;
	}
	#cast #comment .com-unit .com-name {
		width: 100%;
		height: auto;
		text-align: right;
		color: #fe0505;
		font-weight: bold;
		font-size: 4.3vw;
		letter-spacing: 1.2px;
	}
	#cast #comment .com-unit .com-name span {
		font-size: 3.4vw;
	}
	#cast #comment #junf {
		width: 90%;
		height: auto;
		margin: 0 5%;
		text-align: left;
		color: #fff;
		font-size: 3.4vw;
		opacity: 0;
	}
	

}


/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
#button-area-sp {
	display: none;
}
.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: 1024px) {
	#button-area-sp {
		display: block;
	}
	#button-area {
		display: none;
	}
	
	.button-area {
		width:100%;
		height:auto;
		margin:0;
		padding:10px 0 10px;
	}
	.button-area ul.social_sq_buttons {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		list-style-type: none;
		display:flex;
		justify-content: center;
		flex-wrap:wrap;
	}
	.button-area ul.social_sq_buttons li {
		width:160px;
		height: 20px;
		margin:5px;
		padding:3px 0;
		display: flex;
		justify-content: center;
	}
}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: relative;
	overflow: hidden;
}
footer #foot-bg1 {
	width: 100%;
	height: auto;
}
footer #foot-bg2 {
	width: 5.4%;
	height: auto;
	position: absolute;
	top: 52.5%;
	left: 41%;
	opacity: 0;
	transform-origin: bottom center;
}
footer #foot-bg3 {
	width: 7.4%;
	height: auto;
	position: absolute;
	top: 52%;
	left: 43.5%;
	opacity: 0;
	transform-origin: bottom center;
}
footer #foot-bg4 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-title {
	width: 10%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 23%;
	left: 45%;
	transform: scale(0);
	z-index: 3;
}
footer #foot-date {
	width: 18%;
	height: auto;
	position: absolute;
	bottom: 27%;
	right: 2%;
	opacity: 0;
	z-index: 3;
}
footer #foot-billing {
	width: 25%;
	height: auto;
	position: absolute;
	bottom: 8%;
	left: 37.5%;
	opacity: 0;
}
@keyframes ud1 {
	0% {
		opacity: 0;
		filter: blur(8px);
	}
	50% {
		opacity: 1;
		filter: blur(0px);
	}
	80% {
		opacity: 1;
		filter: blur(0px);
	}
	100% {
		opacity: 0;
		filter: blur(5px);
	}
}
@keyframes ud2 {
	0% {
		transform: rotate(-3deg);
	}
	100% {
		transform: rotate(2deg);
	}
}
.foot-bg2 {
	animation: ud1 1.1s ease 0.3s forwards , ud2 1.4s ease 0s infinite;
}
.foot-bg3 {
	animation: ud1 1.1s ease 1.3s forwards , ud2 1.5s ease 0s infinite alternate ;
}
.foot-bg4 {
	animation: fadeIn 1.5s ease 2.3s forwards;
}
@keyframes top-title {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
.foot-title {
	animation: top-title 0.7s ease 3.5s forwards;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-last-anime {
	animation: fadeIn 1.2s ease 3.8s forwards;
}


@media (max-width: 1024px) {
	footer #foot-bg2 {
		width: 11%;
		height: auto;
		position: absolute;
		top: 53%;
		left: 30%;
		opacity: 0;
		transform-origin: bottom center;
	}
	footer #foot-bg3 {
		width: 16%;
		height: auto;
		position: absolute;
		top: 51%;
		left: 34%;
		opacity: 0;
		transform-origin: bottom center;
	}
	footer #foot-title {
		width: 43%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 16%;
		left: 28.5%;
		transform: scale(0);
		z-index: 3;
	}
	footer #foot-billing {
		width: 80%;
		height: auto;
		position: absolute;
		bottom: 17%;
		left: 10%;
		opacity: 0;
		z-index: 3;
	}
	footer #foot-date {
		width: 70%;
		height: auto;
		position: absolute;
		bottom: 25%;
		right: 15%;
		opacity: 0;
		z-index: 3;
	}



}
@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/KKS-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
	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";

  }
  #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: 0.9em;
	  font-weight: bold;
	  font-feature-settings: "palt";

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