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;
}
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;
}
.fadeInZero {
	animation-name:fadeIn;
	animation-duration:0s;
	animation-fill-mode:forwards;
	animation-timing-function: linear;
}
.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;
	}
}
.fadeOutZero {
	animation-name:fadeOut;
	animation-duration:0s;
	animation-fill-mode:forwards;
	animation-timing-function: linear;
}

@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;
		font-family: '游ゴシック体',YakuHanJP,'Noto Sans JP', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif; 
		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: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
}
#loader {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	position:relative;
	display: grid;
	place-items: center;
	overflow: hidden;
}
#loader #load-tate {
	width: 3%;
	height: auto;
}
#loader #load-tate2 {
	width: 3%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	animation: load-tate2 2s ease 0s infinite alternate;
}
@keyframes load-tate2 {
	0% {top: -100%;}
	30% {top: 50%;}
	70% {top: 50%;}
	100% {top: 150%;}
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#loader #load-tate {
		width: 10%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#loader #load-tate2 {
		width: 10%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
		animation: load-tate2 2s ease 0s infinite alternate;
	}
	
}


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

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:10px 0 15px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #fff 20%, transparent);
	background: -webkit-linear-gradient(top, #fff 20%, transparent);
	background: linear-gradient(to bottom, #fff 20%, 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.2%;
	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;
	text-align: center;
	color: #000;
	font-family: 'EB Garamond', serif;
	font-style:italic;
	letter-spacing: 1px;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(-2px);
}
#pcheader ul#pcmenu li a span.eng img {
	width: auto;
	height: 1.6vw;
}
#pcheader ul#pcmenu li#review-top a span.eng img ,
#pcheader ul#pcmenu li#review-menu a span.eng img {
	width: auto;
	height: 1.4vw;

}

#pcheader ul#pcmenu li.menusns a span.eng img {
	width: auto;
	height: 2.0vw;
}
#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: 100px;
	background: #fff;
	z-index: 200000;
	overflow-y: scroll;
}
.global-nav #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 #nav-inner #menu-logo {
	width:10%;
	height:auto;
	position: absolute;
	top: 0%;
	right: 1%;
}  
.global-nav #menu-logo img {
	width: 100%;
}
.global-nav #nav-inner .global-nav__list {
	width: 80%;
	margin: 0 10%;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: left;
	padding: 0.5vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #000;
	transition: all .6s;
	text-align: center;
}  
.global-nav__item a img {
	width: 70%;
}
.sp-sns-nav a img {
	width: 15%;
}


.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: 2px;
	background-color: #000 !important;
	box-shadow: 0.5px 0.5px 1px 0.5px rgba(255, 255, 255, 0.6);
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#000;
	text-shadow: 0.5px 0.5px 1.5px rgba(255, 255, 255, 0.6);
	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:#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: 2px;
	  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: 50px 0 10px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 20px 0 0 2%;
  }
  .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;
	font-family: 'EB Garamond', serif;
	font-style:italic;
	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: 20px 0 !important;
	}
	.sp-sns-nav {
		margin: 40px 0 0!important;
	}
	.global-nav__item a {
		display: block;
		padding: 1px 0;
		text-decoration: none;
		transition: all .6s;
	  }

	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 2vw 2% 0;
		text-align: center;
	}
	
}




/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:56.25vw;
	padding:0;
	margin:0;
	background-color: #fff;
	position:relative;
	overflow: hidden;
}
#topmain #top-logo {
	width: 3.7%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 8%;
	right: 3%;
}
#topmain #top-cast1-photo {
	width: 50%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain #top-cast2-photo {
	width: 50%;
	height: auto;
	position: absolute;
	top: 32%;
	left: 33.33%;
	opacity: 0;
}
#topmain #top-cast3-photo {
	width: 50%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
}
#topmain #top-cast1-name {
	width: 2.5%;
	height: auto;
	position: absolute;
	top: 22.5%;
	left: 1%;
	opacity: 0;
}
#topmain #top-cast2-name {
	width: 2.5%;
	height: auto;
	position: absolute;
	top: 48%;
	left: 36%;
	opacity: 0;
}
#topmain #top-cast3-name {
	width: 2.5%;
	height: auto;
	position: absolute;
	top: 65%;
	left: 1%;
	opacity: 0;
}
#topmain #top-line1 {
	width: 32.2%;
	height: auto;
	position: absolute;
	top: 0%;
	left: 24%;
	opacity: 0;
}
#topmain #top-line2 {
	width: 10%;
	height: auto;
	position: absolute;
	top: 0%;
	left: 2.5%;
	opacity: 0;
}
#topmain #top-line3 {
	width: 27%;
	height: auto;
	position: absolute;
	bottom: 0%;
	left: 36%;
	opacity: 0;
}
#topmain #top-awards {
	width: 39%;
	height: auto;
	position: absolute;
	top: 8%;
	right: 9%;
	opacity: 0;
}
#topmain #top-yoko {
	width: 24%;
	height: auto;
	position: absolute;
	top: 48%;
	left: 3.7%;
	opacity: 0;
}
#topmain #top-director {
	width: 25.3%;
	height: auto;
	position: absolute;
	bottom: 15%;
	left: 52%;
	opacity: 0;
}
#topmain #top-billing {
	width: 40%;
	height: auto;
	position: absolute;
	bottom: 4%;
	left: 52%;
	opacity: 0;
}
@keyframes fromTop {
	0% {
		opacity: 0;
		transform: translate3d(0, -60%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromBottom {
	0% {
		opacity: 0;
		transform: translate3d(0, 60%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromLeft {
	0% {
		opacity: 0;
		transform: translate3d(-60%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromRight {
	0% {
		opacity: 0;
		transform: translate3d(60%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromTopLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, -100%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromTopRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, -100%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromBottomLeft1 {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 100%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fromBottomLeft2 {
	0% {
		opacity: 0;
		transform: translate3d(-20%, 80%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.top-cast1-photo {
	animation: fromBottom 0.7s ease-out 1.2s forwards;
}
.top-cast1-name {
	animation: fromLeft 0.5s ease-out 1.6s forwards;
}
.top-line1 {
	animation: fromTopLeft 1.0s ease-out 1.6s forwards;
}
.top-cast3-photo {
	animation: fromTop 0.7s ease-out 1.6s forwards;
}
.top-cast3-name {
	animation: fromBottom 0.5s ease-out 2.0s forwards;
}
.top-line3 {
	animation: fromBottomLeft1 1.0s ease-out 2.0s forwards;
}
.top-cast2-photo {
	animation: fromLeft 0.7s ease-out 2.2s forwards;
}
.top-cast2-name {
	animation: fromTop 0.5s ease-out 2.6s forwards;
}
.top-line2 {
	animation: fromBottomLeft1 1.0s ease-out 2.6s forwards;
}
.top-fadein1 {
	animation: fadeIn 1.2s ease 2.9s forwards;
}
.top-fadein2 {
	animation: fadeIn 1.2s ease 3.4s forwards;
}
#topmain #top-sp-logo {
	display: none;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain {
		width:100%;
		height:180vw;
		padding:0;
		margin:0;
		background-color: #fff;
		position:relative;
		overflow: hidden;
	}
	#topmain #top-logo {
		width: 11.3%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 10.8%;
		right: 2%;
		z-index: 2;
	}
	#topmain #top-sp-logo {
		display: block;
		width: 11.3%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 10.8%;
		right: 2%;
		z-index: 3;
		opacity: 0;
	}	
	.top-sp-logo {
		animation: fadeIn 1.0s ease-out 2.0s forwards;
	}
	.top-logo {
		animation: fadeOut 1.0s ease-out 2.0s forwards;
	}
	#topmain #top-photo-wrap {
		width: 90%;
		height: auto;
		position: absolute;
		top: 15.6%;
		left: 0;
	}
	#topmain #top-photo-wrap #top-cast1-photo {
		width: 100%;
		height: auto;
		position: static;
		opacity: 0;
	}
	#topmain #top-photo-wrap #top-cast2-photo {
		width: 100%;
		height: auto;
		position: static;
		opacity: 0;
		margin-top: -0.5px;
	}
	#topmain #top-photo-wrap #top-cast3-photo {
		width: 100%;
		height: auto;
		position: static;
		opacity: 0;
		margin-top: -0.5px;
	}
	#topmain #top-cast1-name {
		width: 4%;
		height: auto;
		position: absolute;
		top: 29.5%;
		left: 3%;
		opacity: 0;
	}
	#topmain #top-cast2-name {
		width: 4%;
		height: auto;
		position: absolute;
		top: 49.5%;
		left: 3%;
		opacity: 0;
	}
	#topmain #top-cast3-name {
		width: 4%;
		height: auto;
		position: absolute;
		top: 70.5%;
		left: 3%;
		opacity: 0;
	}
	#topmain #top-line1 {
		width: 80%;
		height: auto;
		position: absolute;
		top: 10%;
		left: auto;
		right: 0;
		opacity: 0;
	}
	#topmain #top-line2 {
		width: 19%;
		height: auto;
		position: absolute;
		top: 16%;
		left: 0%;
		opacity: 0;
	}
	#topmain #top-line3 {
		width: 85%;
		height: auto;
		position: absolute;
		bottom: 0%;
		left: auto;
		right: 0;
		opacity: 0;
	}
	#topmain #top-awards {
		width: 72%;
		height: auto;
		position: absolute;
		top: 2%;
		right: 14%;
		opacity: 0;
	}
	#topmain #top-yoko {
		width: 30%;
		height: auto;
		position: absolute;
		top: 40%;
		left: 4.2%;
		opacity: 0;
	}
	#topmain #top-director {
		width: 70%;
		height: auto;
		position: absolute;
		bottom: 16%;
		left: 1%;
		opacity: 0;
	}
	#topmain #top-billing {
		width: 85%;
		height: auto;
		position: absolute;
		bottom: 8%;
		left: 1%;
		opacity: 0;
	}
	@keyframes fromTop {
		0% {
			opacity: 0;
			transform: translate3d(0, -200%, 0);
		}
		100% {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}
	@keyframes fromBottom {
		0% {
			opacity: 0;
			transform: translate3d(0, 200%, 0);
		}
		100% {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}
	@keyframes fromLeft {
		0% {
			opacity: 0;
			transform: translate3d(-150%, 0, 0);
		}
		100% {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}
	
	
}
/* 以下タブレット・スマホ */
@media (max-width: 550px) {



}



/* ========================================
3色背景
========================================== */
#color-back {
	width: 100%;
	height: 95vw;
	background-color: #fff;
	position: relative;
}
#color-back #color-line1 {
	width: 70%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 15%;
	animation: color-loop2 8s ease 0s infinite;
}
#color-back #color-line2 {
	width: 35%;
	height: auto;
	position: absolute;
	top: 50%;
	right: 0;
	animation: color-loop3 8s ease 0s infinite;
}
#color-back #color-line3 {
	width: 30%;
	height: auto;
	position: absolute;
	top: 20%;
	left: 0;
	animation: color-loop1 8s ease 0s infinite;
}
@keyframes color-loop1 {
	0% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes color-loop2 {
	0% {opacity: 0;}
	15% {opacity: 0;}
	25% {opacity: 1;}
	65% {opacity: 1;}
	75% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes color-loop3 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	40% {opacity: 1;}
	80% {opacity: 1;}
	90% {opacity: 0;}
	100% {opacity: 0;}
}
#color-back #com-banner {
	width: 12%;
	height: auto;
	position: absolute;
	top: -2%;
	right: 10%;
	z-index: 2;
	opacity: 0;
}
@keyframes com-banner {
	0% {transform: rotate(0);}
	100% {transform: rotate(-10deg);}
}
#color-back #com-banner a img:hover {
	animation: com-banner 0.5s ease 0s forwards;
} 



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#color-back {
		width: 100%;
		height: 260vw;
		background-color: #fff;
		position: relative;
	}
	#color-back #color-line1 {
		width: 70%;
		height: auto;
		position: absolute;
		bottom: 6%;
		left: 15%;
		animation: color-loop2 8s ease 0s infinite;
	}
	#color-back #color-line2 {
		width: 40%;
		height: auto;
		position: absolute;
		top: 65%;
		right: 0;
		animation: color-loop3 8s ease 0s infinite;
	}
	#color-back #color-line3 {
		width: 40%;
		height: auto;
		position: absolute;
		top: 60%;
		left: 0;
		animation: color-loop1 15s ease 0s infinite;
	}
	#color-back #com-banner {
		display: none;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 550px) {
	#color-back {
		width: 100%;
		height: 310vw;
		background-color: #fff;
		position: relative;
	}
}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 0 0 1vw;
	position: absolute;
	top: 0;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
	opacity: 0;
}
#bridge #sns-link li {
	width: 4%;
	height: auto;
	margin: 0 3%;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 15%;
}
#bridge #theater-banners {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #theater-banners li {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 1vw 0;
	opacity: 0;
}
#bridge #theater-banners img {
	width: 15%;
	height: auto;
	vertical-align: bottom;
}
#bridge #mubi-wrap {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi-wrap #mvtk-widgets-container {
	display: inline-block;
}
#bridge #theater-banners li a:hover , 
#bridge #sns-link li a:hover {
	animation: flash 1.5s;
}
#bridge #com-banner-sp {
	display: none;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0 10vw ;
		display: flex;
		flex-wrap: wrap;
	}
	#bridge #date {
		width: 100%;
		height: auto;
		margin: 0 0 4vw;
		text-align: center;
		order: 1;
	}
	#bridge #date img {
		width: 40%;
	}	
	#bridge #theater-banners {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		position: static;
		order: 2;
	}
	#bridge #theater-banners li {
		width: 100%;
		height: auto;
		text-align: center;
		margin: 2vw 0;
		opacity: 0;
	}
	#bridge #theater-banners img {
		width: 60%;
		height: auto;
		vertical-align: bottom;
	}
	#bridge #mubi-wrap {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
		opacity: 0;
		order: 3;
	}	
	#bridge #com-banner-sp {
		display: block;
		order: 4;
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #com-banner-sp img {
		width: 70%;
	}


	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		position: static;
		order: 5;
	}
	#bridge #sns-link li {
		width: 15%;
		height: auto;
		margin: 0 3%;
	}
	#bridge #sougo {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		text-align: center;
	}
	#bridge #sougo img {
		width: 80%;
		height: auto;
		vertical-align: bottom;
	}
	
}


/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:40vw;
	margin:0;
	padding:3vw 0 7vw;
	overflow: hidden;
	position: absolute;
	top: 40%;
}
.trailer h2 {
	width:60%;
	height:auto;
	padding:0;
	margin:0 20% 2vw;
	text-align: right;
	opacity: 0;
}
.trailer h2 img {
	width: 13%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	box-sizing: border-box;
	box-shadow: 6px 6px 15px 5px rgba(0, 0, 0, 0.45);
}
.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: #fff;
	border: 1px solid #000;
	color: #000;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {opacity: 0;}
.activee {
	background: #000;
	border: 1px solid #000;
	color: #fff;
}
.activee i {opacity: 1;}
.movie-btn:hover {
	background: #000;
	border: 1px solid #000;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		height: auto;
		padding:10vw 0;
		position: absolute;
		top: 65%;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 5vw;
		position: relative;
		text-align: right;
	}	
	.trailer h2 img {
		width: 20%;
	}
	#video-wrap {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.trailer ul#movie-changer {
		width: 100%;
		height: auto;
		margin: 10px 0;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: center;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
	
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:0;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 5vw;
		position: relative;
		text-align: right;
	}	
	.trailer h2 img {
		width: 20%;
	}
	#video-wrap {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		padding: 0;
	}
	.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/KNC-intro-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
	transition: 1.0s all;
}
#intro-bg1 img {display: none;}

#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KNC-intro-bg-neon-pc.png) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -28;
}
@keyframes blink {
	40% { opacity: 0.8;}
	42% { opacity: .2;}
	43% { opacity: 0.8;}
	45% { opacity: .2;}
	46% { opacity: 0.8;}
}
.intro-bg2 {
	animation: blink 3s infinite alternate;
}
#intro {
	width: 100%;
	height: auto;
	padding: 30vw 0;
	position: relative;
}
#intro #intro-trg {
	width: 100%;
	position: absolute;
	top: 10%;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 10vw 0 20vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 20%;
}
#intro h3 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h3 img {
	width: 40%;
}
#intro .intro-lead {
	width: 100%;
	height: auto;
	margin: 10vw 0 4vw;
	text-align: center;
	opacity: 0;
}
#intro .intro-lead img {
	width: 40%;
	height: auto;
}
#intro p {
	width: 40%;
	height: auto;
	margin: 0 30%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
	opacity: 0;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#intro-bg1 {
		width: 100%;
		height: auto;
		min-height: auto;
		background: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -30;
		transition: 1.0s all;
		overflow: hidden;
	}
	#intro-bg1 img {
		display: block;
		width: 320%;
		height: auto;
		animation: lr-anime 15s ease 0s infinite alternate;
	}
	@keyframes lr-anime {
		0%{transform: translate3d(0, 0, 0);}
		100%{transform: translate3d(-65%, 0, 0);}
	}
	#intro-bg1-2 ,
	#intro-bg2 {
		display: none;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 60vw 0 200vw;
		position: relative;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 50vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 60%;
	}
	#intro h3 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h3 img {
		width: 70%;
	}
	#intro .intro-lead {
		width: 100%;
		height: auto;
		margin: 25vw 0 10vw;
		text-align: center;
		opacity: 0;
	}
	#intro .intro-lead img {
		width: 80%;
		height: auto;
	}
	#intro #intro-lead2 img {
		width: 70%;
		height: auto;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 3.8vw;
		line-height: 7.6vw;
		letter-spacing: 1.2px;
		opacity: 0;
	}
	
}



/* ========================================
ストーリー
========================================== */
#story-headline-fixed {
	width: 1.8%;
	height: auto;
	position: fixed;
	top: 30%;
	left: 25%;
	z-index: -24;
	opacity: 0;
	transition: 0s all;
}
#nobu-headline-fixed {
	width: 1.8%;
	height: auto;
	position: fixed;
	top: 30%;
	left: 25%;
	z-index: -24;
	opacity: 0;
	transition: 0s all;
}
#bike-loop {
	width: 15%;
	height: auto;
	position: fixed;
	bottom: 3%;
	left: -15%;
	animation: bike 8s linear infinite;
	transform-origin: left bottom;
	opacity: 0;
	z-index: -20;
	transition: 0.7s all;
}
@keyframes bike {
	0% {left: -15%;}
	20% {transform: rotate(0);}
	21% {transform: rotate(-3deg);}
	22% {transform: rotate(0deg);}
	60% {transform: rotate(0);}
	61% {transform: rotate(-3deg);}
	62% {transform: rotate(0deg);}
	100% {left: 100%;}
}
#story {
	width: 60%;
	height: auto;
	padding: 20vw 15% 20vw 25%;
	background-color: #fff;
	position: relative;
	z-index: -25;
}
#story #story-header {
	width: 100%;
	height: auto;
	padding: 5vw 0;
}
#story #story-header #story-headline {
	width: 100%;
	height: auto;
}
#story #story-header #story-headline img {
	width: 3%;
	height: auto;
}
#story #story-header #story-lead {
	width: 84%;
	height: auto;
	margin: 3vw 8% 0;
}
#story #story-header #story-lead img {
	width: 70%;
}
#story p {
	width: 84%;
	height: auto;
	margin: 0 8%;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
}
#story #nobu-headline {
	width: 100%;
	height: auto;
	margin: 25vw 0 0;
}
#story #nobu-headline img {
	width: 3%;
	height: auto;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#story-headline-fixed {
		width: 8%;
		height: auto;
		position: fixed;
		top: 10%;
		left: 2%;
		z-index: -24;
		opacity: 0;
		transition: 0s all;
	}
	#nobu-headline-fixed {
		width: 8%;
		height: auto;
		position: fixed;
		top: 10%;
		left: 2%;
		z-index: -24;
		opacity: 0;
		transition: 0s all;
	}
	#bike-loop {
		width: 35%;
		height: auto;
		position: fixed;
		bottom: 40%;
		left: -15%;
		animation: bike 5s linear infinite;
		transform-origin: left bottom;
		opacity: 0;
		z-index: -20;
		transition: 0.7s all;
	}
	#story {
		width: 100%;
		height: auto;
		padding: 40vw 0;
		background-color: #fff;
		position: relative;
		z-index: -25;
	}
	#story #story-header {
		width: 100%;
		height: auto;
		padding: 5vw 0;
	}
	#story #story-header #story-headline {
		width: 100%;
		height: auto;
	}
	#story #story-header #story-headline img {
		width: 8%;
		height: auto;
		margin-left: 2%;
	}
	#story #story-header #story-lead {
		width: 85%;
		height: auto;
		margin: 3vw 0 5vw 15%;
	}
	#story #story-header #story-lead img {
		width: 65%;
	}
	#story p {
		width: 80%;
		height: auto;
		margin: 0 5% 0 15%;
		color: #000;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.2px;
	}
	#story #nobu-headline {
		width: 100%;
		height: auto;
		margin: 50vw 0 0;
	}
	#story #nobu-headline img {
		width: 8%;
		height: auto;
		margin-left: 2%;
	}
	


}


/* ========================================
スライダー
========================================== */
#slider {
	width: 100%;
	height: auto;
	padding: 0 0 20vw;
	background-color: #fff;
	position: relative;
	overflow: hidden;
	z-index: -21;
}
#slider .top-slide-wrap {
	width: 100%;
	height: auto;
	margin-top: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#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;
	animation: loop-slide 120s infinite linear 0s both;
}
#slider .top-slide-wrap .top-slide .content {
	width: 90vw;
	height: auto;
	margin: 0;
}
#slider .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	outline: none;
	border: none;
}
#slider #slide-img1 {
	width: 29%;
	height: auto;
	position: absolute;
	top: 10%;
	right: 5%;
	animation: slide-img1 20s ease 0s infinite;
}
@keyframes slide-img1 {
	0% {opacity: 0;}
	10% {opacity: 0;filter: blur(10px);}
	20% {opacity: 1; filter: blur(0px);}
	35% {opacity: 1; filter: blur(0px);}
	45% {opacity: 0; filter: blur(10px);}
	100% {opacity: 0;}
}
#slider #slide-img2 {
	width: 30%;
	height: auto;
	position: absolute;
	top: 10%;
	left: 10%;
	animation: slide-img2 20s ease 0s infinite;
}
@keyframes slide-img2 {
	0% {opacity: 0;}
	60% {opacity: 0;filter: blur(10px);}
	70% {opacity: 1; filter: blur(0px);}
	85% {opacity: 1; filter: blur(0px);}
	95% {opacity: 0; filter: blur(10px);}
	100% {opacity: 0;}
}
#slider #slide-img3 {
	width: 23%;
	height: auto;
	position: absolute;
	top: 35%;
	right: 20%;
	animation: slide-img3 20s ease 0s infinite;
}
@keyframes slide-img3 {
	0% {opacity: 0;}
	30% {opacity: 0;filter: blur(10px);}
	40% {opacity: 1; filter: blur(0px);}
	55% {opacity: 1; filter: blur(0px);}
	65% {opacity: 0; filter: blur(10px);}
	100% {opacity: 0;}
}
#slider #slide-img4 {
	width: 21%;
	height: auto;
	position: absolute;
	top: 33%;
	left: 25%;
	animation: slide-img4 20s ease 0s infinite;
}
@keyframes slide-img4 {
	0% {opacity: 1; filter: blur(0px);}
	20% {opacity: 1;filter: blur(0px);}
	30% {opacity: 0; filter: blur(10px);}
	85% {opacity: 0; filter: blur(10px);}
	100% {opacity: 1; filter: blur(0px);}
}
#slider #slide-img5 {
	width: 25%;
	height: auto;
	position: absolute;
	top: 52%;
	right: 7%;
	animation: slide-img5 20s ease 0s infinite;
}
@keyframes slide-img5 {
	0% {opacity: 0;}
	70% {opacity: 0;filter: blur(10px);}
	80% {opacity: 1; filter: blur(0px);}
	90% {opacity: 1; filter: blur(0px);}
	100% {opacity: 0; filter: blur(10px);}
}
#slider #slide-img6 {
	width: 21%;
	height: auto;
	position: absolute;
	top: 55%;
	left: 3%;
	animation: slide-img6 20s ease 0s infinite;
}
@keyframes slide-img6 {
	0% {opacity: 0;}
	15% {opacity: 0;filter: blur(10px);}
	25% {opacity: 1; filter: blur(0px);}
	40% {opacity: 1; filter: blur(0px);}
	50% {opacity: 0; filter: blur(10px);}
	100% {opacity: 0;}
}
#slider #slide-tate {
	width: 1.5%;
	height: auto;
	position: absolute;
	top: 1%;
	right: 10%;
	animation: slide-tate 20s ease 0s infinite;
}
@keyframes slide-tate {
	0% {opacity: 0;}
	40% {opacity: 0;filter: blur(10px);}
	50% {opacity: 1; filter: blur(0px);}
	85% {opacity: 1; filter: blur(0px);}
	100% {opacity: 0; filter: blur(10px)}
}
#slider #slide-yoko {
	width: 20%;
	height: auto;
	position: absolute;
	top: 30%;
	left: 10%;
	animation: slide-yoko 20s ease 0s infinite;
}
@keyframes slide-yoko {
	0% {opacity: 0;filter: blur(10px);}
	10% {opacity: 1;filter: blur(0px);}
	50% {opacity: 1; filter: blur(0px);}
	60% {opacity: 0; filter: blur(10px);}
	100% {opacity: 0; filter: blur(10px)}
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#slider {
		width: 100%;
		height: auto;
		padding: 0 0 60vw;
		background-color: #fff;
		position: relative;
		overflow: hidden;
		z-index: -21;
	}
	#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;
		animation: loop-slide 60s infinite linear 0s both;
	}
	#slider .top-slide-wrap .top-slide .content {
		width: 150vw;
		height: auto;
		margin: 0;
	}
	#slider #slide-img1 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 10%;
		right: 5%;
		animation: slide-img1 10s ease 0s infinite;
	}
	#slider #slide-img2 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 10%;
		animation: slide-img2 10s ease 0s infinite;
	}
	#slider #slide-img3 {
		width: 45%;
		height: auto;
		position: absolute;
		top: 35%;
		right: 20%;
		animation: slide-img3 10s ease 0s infinite;
	}
	#slider #slide-img4 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 33%;
		left: 25%;
		animation: slide-img4 10s ease 0s infinite;
	}
	#slider #slide-img5 {
		width: 50%;
		height: auto;
		position: absolute;
		top: 52%;
		right: 7%;
		animation: slide-img5 10s ease 0s infinite;
	}
	#slider #slide-img6 {
		width: 55%;
		height: auto;
		position: absolute;
		top: 55%;
		left: 3%;
		animation: slide-img6 10s ease 0s infinite;
	}
	#slider #slide-tate {
		width: 5%;
		height: auto;
		position: absolute;
		top: 10%;
		right: auto;
		left: 5%;
		animation: slide-tate 10s ease 0s infinite;
	}
	#slider #slide-yoko {
		width: 60%;
		height: auto;
		position: absolute;
		top: 30%;
		left: auto;
		bottom: auto;
		right: 5%;
		animation: slide-yoko 10s ease 0s infinite;
	}
	


}

/* ========================================
監督メッセージ
========================================== */
#director-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KNC-message-director-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -23;
	opacity: 0;
	pointer-events: none;
	transition: 1.0s all;
}
#director-line {
	width: 3px;
	height: 80vh;
	background-color: #000;
	position: fixed;
	top: 20%;
	left: 24%;
	z-index: -22;
	opacity: 0;
	pointer-events: none;
}
.director {
	width: 60%;
	height: auto;
	padding: 15vw 20% 5vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}
.director .dire-name {
	width: 10%;
	height: auto;
	text-align: left;
}
.director .dire-name img {
	width: 30%;
}
.director .msg-txt {
	width: 90%;
	height: auto;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
}
.director #director-line-scroll {
	width: 3px;
	height: 80vh;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 24%;
	pointer-events: none;
	opacity: 0;
}
#dire-prof {
	width: 100%;
	height: auto;
	padding: 20vw 0 60vw;
	background: linear-gradient(to top, #000 40%, transparent);
}
#dire-prof h3 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#dire-prof h3 img {
	width: 25%;
}
#dire-prof p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1px;
	color: #fff;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#director-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KNC-message-director-bg-1-sp-rev.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -23;
		opacity: 0;
		pointer-events: none;
		transition: 1.0s all;
	}
	#director-line {
		width: 3px;
		height: 80vh;
		background-color: #000;
		position: fixed;
		top: 20%;
		left: 12.5%;
		z-index: -22;
		opacity: 0;
		pointer-events: none;
	}
	.director {
		width: 100%;
		height: auto;
		padding: 80vw 0 10vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		position: relative;
	}
	.director .dire-name {
		width: 15%;
		height: auto;
		text-align: center;
	}
	.director .dire-name img {
		width: 40%;
	}
	.director .msg-txt {
		width: 85%;
		height: auto;
		padding: 0 2%;
		color: #000;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.2px;
		box-sizing: border-box;
	}
	.director #director-line-scroll {
		width: 3px;
		height: 80vh;
		background-color: #000;
		position: absolute;
		top: 60%;
		left: 12.5%;
		pointer-events: none;
		opacity: 0;
	}
	#dire-prof {
		width: 100%;
		height: auto;
		margin: 50vw 0 0;
		padding: 70vw 0 220vw;
		background: linear-gradient(to top, #000 10%, transparent);
		position: relative;
	}
	#dire-prof h3 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
	}
	#dire-prof h3 img {
		width: 70%;
	}
	#dire-prof p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1px;
		color: #fff;
	}
	#dire-prof #fes-trg {
		width: 100%;
		position: absolute;
		top: 50%;
	}


}

/* ========================================
映画祭・レビュー
========================================== */
#fes-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KNC-review-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -19;
	opacity: 0;
	pointer-events: none;
	transition: 1.0s all;
}
#fes-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KNC-fes-review-bg-FUTA-pc.png) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -17;
	opacity: 0;
	pointer-events: none;
	transition: 1.0s all;
}
#fes {
	width: 100%;
	height: auto;
	padding: 35vw 0 20vw;
	position: relative;
	z-index: -18;
}
#fes #eigasai {
	width: 50%;
	height: auto;
	margin: 0;
}
#fes #eigasai h3 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#fes #eigasai h3 img {
	width: 12%;
}
#fes #eigasai p {
	width: 70%;
	height: auto;
	margin: 0 10% 0 20%;
	padding: 0;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1px;
	font-weight: bold;
}
#fes #review {
	width: 50%;
	height: auto;
	padding: 15vw 0 0;
	margin: 0 0 15vw;
}
#fes #review h3 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#fes #review h3 img {
	width: 18%;
}
#fes #review .rev-unit {
	width: 100%;
	height: auto;
	margin: 8vw 0;
}
#fes #review .rev-unit .rev-txt {
	width: 100%;
	height: auto;
	margin: 0 0 0.5vw;
	color: #000;
	text-align: center;
	font-size: 1.3vw;
}
#fes #review .rev-unit .kore-txt {
	width: 62%;
	height: auto;
	margin: 0 19% 0.5vw;
	font-size: 1.1vw;
	line-height: 2.5vw;
	letter-spacing: 1.3px;
	text-align: left;
}
#fes #review .rev-unit .rev-name {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	color: #E50048;
	text-align: center;
	font-size: 1.3vw;
}
#fes #review .rev-unit .kore-name {
	width: 58%;
	height: auto;
	margin: 0 21% 1vw;
	text-align: right;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#fes-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KNC-fes-review-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -19;
		opacity: 0;
		pointer-events: none;
		transition: 1.0s all;
	}
	#fes-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KNC-fes-review-bg-FUTA-sp.png) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -17;
		opacity: 0;
		pointer-events: none;
		transition: 1.0s all;
	}
	#fes {
		width: 100%;
		height: auto;
		padding: 30vw 0 170vw;
		position: relative;
		z-index: -18;
	}
	#fes #eigasai {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
	}
	#fes #eigasai h3 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#fes #eigasai h3 img {
		width: 20%;
	}
	#fes #eigasai p {
		width: 80%;
		height: auto;
		margin: 0 10%;
		padding: 0;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1px;
		font-weight: bold;
		color: #fff;
	}
	#fes #eigasai p span {
		display: inline-block;
		margin: 5vw 0;
	}
	#fes #review {
		width: 100%;
		height: auto;
		margin: 10vw 0 15vw;
	}
	#fes #review h3 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#fes #review h3 img {
		width: 30%;
	}
	#fes #review .rev-unit {
		width: 100%;
		height: auto;
		margin: 12vw 0;
	}
	#fes #review .rev-unit .rev-txt {
		width: 100%;
		height: auto;
		margin: 0 0 0.5vw;
		color: #fff;
		text-align: center;
		font-size: 4.2vw;
		font-weight: normal;
	}
	#fes #review .rev-unit .kore-txt {
		width: 90%;
		height: auto;
		margin: 0 5% 0.5vw;
		font-size: 4.0vw;
		text-align: left;
		line-height: 9vw;
		letter-spacing: 1.2px;
	}
	#fes #review .rev-unit .rev-name {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		color: #E3D13C;
		text-align: center;
		font-size: 4vw;
		font-weight: normal;
	}
	#fes #review .rev-unit .kore-name {
		width: 90%;
		height: auto;
		margin: 0 5% 1vw;
		text-align: right;
	}
	

}

/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 6vw;
	padding: 0;
	text-align: center;
}
#cast h2 img {
	width: 1.6%;
}
#cast #cast-list {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 0;
	list-style-type: none;
	position: relative;
	z-index: 2;
}
#cast #cast-list li {
	width: 100%;
	height: auto;
	margin: 10vw 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
#cast #cast-list li .cast-photo {
	width: 25%;
	height: auto;
	position: relative;
	z-index: 2;
}
#cast #cast-list li#cast1 .cast-photo {
	margin: -5% -3% 0;
}
#cast #cast-list li#cast2 .cast-photo {
	margin: -2% -3% 0;
}
#cast #cast-list li#cast3 .cast-photo {
	margin: -3% -3% 0;
}
#cast #cast-list li .cast-photo img {
	box-shadow: 1px 2px 15px 4px rgba(0, 0, 0, 0.35);
}
#cast #cast-list li .cast-txt {
	width: 72%;
	height: auto;
	box-sizing: border-box;
	padding: 3vw 5vw;
	position: relative;
	z-index: 1;
	margin: 0 -2%;
}
#cast #cast-list li .cast-txt p {
	width: 100%;
	height: auto;
	font-size: 1.05vw;
	line-height: 1.7vw;
	letter-spacing: 1px;
	color: #fff;
	position: relative;
	z-index: 2;
}
#cast #cast-list li .cast-txt .sara {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
}
#cast #cast-list li#cast1 .cast-txt .sara {
	background-color: rgba( 235,59,114 , 0.8 );
}
#cast #cast-list li#cast2 .cast-txt .sara {
	background-color: rgba( 75,170,87 , 0.8 );
}
#cast #cast-list li#cast3 .cast-txt .sara {
	background-color: rgba( 59,142,180 , 0.8 );
}
#cast #cast-list li#cast1 .name {
	width: 8%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 10%;
	z-index: 3;
}
#cast #cast-list li#cast2 .name {
	width: 8%;
	height: auto;
	position: absolute;
	bottom: -24%;
	right: 30%;
	z-index: 3;
}
#cast #cast-list li#cast3 .name {
	width: 8%;
	height: auto;
	position: absolute;
	bottom: -31%;
	left: 30%;
	z-index: 3;
}
#cast #cast-line-blue {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
}
#cast #cast-line-green {
	width: 50%;
	height: auto;
	position: absolute;
	top: 40%;
	right: 0;
	opacity: 0;
}
#cast #cast-line-pink {
	width: 22%;
	height: auto;
	position: absolute;
	top: 0;
	left: 10%;
	opacity: 0;
}
.sara-pink {
	animation: fromLeft 1.2s ease 0s forwards;
}
.sara-green {
	animation: fromRight 1.2s ease 0s forwards;
}
.line-pink {
	animation: fromTopLeft 1.5s ease 0s forwards;
}
.line-green {
	animation: fromTopRight 1.5s ease 0s forwards;
}
.line-blue {
	animation: fromTopLeft 1.5s ease 0s forwards;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 30vw 0;
		background-color: #fff;
		position: relative;
		overflow: hidden;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
	}
	#cast h2 img {
		width: 5%;
	}
	#cast #cast-list {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		position: relative;
		z-index: 2;
	}
	#cast #cast-list li {
		width: 100%;
		height: auto;
		margin: 30vw 0;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#cast #cast-list li#cast2 .cast-photo {
		order: 1;
	}
	#cast #cast-list li#cast2 .cast-txt {
		order: 2;
	}
	#cast #cast-list li .cast-photo {
		width: 80%;
		height: auto;
		position: relative;
		z-index: 2;
	}
	#cast #cast-list li#cast1 .cast-photo {
		margin: 0 10% -10%;
	}
	#cast #cast-list li#cast2 .cast-photo {
		margin: 0 10% -10%;
	}
	#cast #cast-list li#cast3 .cast-photo {
		margin: 0 10% -10%;
	}
	#cast #cast-list li .cast-photo img {
		box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
	}
	#cast #cast-list li .cast-txt {
		width: 95%;
		height: auto;
		box-sizing: border-box;
		padding: 60vw 5vw 5vw;
		position: relative;
		z-index: 1;
		margin: 0 5% 0 0;
	}
	#cast #cast-list li .cast-txt p {
		width: 100%;
		height: auto;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1px;
		color: #fff;
		position: relative;
		z-index: 2;
	}
	#cast #cast-list li .cast-txt .sara {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		opacity: 0;
	}
	.sara-green {
		animation: fromLeft 1.2s ease 0s forwards;
	}
	#cast #cast-list li#cast1 .name {
		width: 18%;
		height: auto;
		position: absolute;
		bottom: auto;
		left: auto;
		top: 30%;
		right: 15%;
		z-index: 3;
	}
	#cast #cast-list li#cast2 .name {
		width: 18%;
		height: auto;
		position: absolute;
		bottom: auto;
		left: auto;
		top: 45%;
		right: 15%;
		z-index: 3;
	}
	#cast #cast-list li#cast3 .name {
		width: 18%;
		height: auto;
		position: absolute;
		bottom: auto;
		left: auto;
		top: 47%;
		right: 15%;
		z-index: 3;
	}
	#cast #cast-line-blue {
		width: 100%;
		height: auto;
		position: absolute;
		bottom: 15%;
		left: 0;
		opacity: 0;
	}
	#cast #cast-line-green {
		width: 100%;
		height: auto;
		position: absolute;
		top: 50%;
		right: 0;
		opacity: 0;
	}
	#cast #cast-line-pink {
		width: 50%;
		height: auto;
		position: absolute;
		top: 5%;
		left: 0%;
		opacity: 0;
	}
	@keyframes line-blue-sp {
		0% {
			opacity: 0;
			transform: translate3d(-100%, -50%, 0);
		}
		100% {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}
	.line-blue {
		animation: line-blue-sp 1.5s ease 0s forwards;
	}
	

}


/* ========================================
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;
	position: relative;
	overflow: hidden;
}
footer #foot-bg {
	width: 100%;
	height: auto;
}
footer .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	opacity: 0;
}
footer #slider-sparkle {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	mix-blend-mode: screen;
	opacity: 1;
}
footer #slider-sparkle .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 150s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer #slider-sparkle .top-slide .content {
	width: 100vw;
	height: auto;
	margin: 0;
}
footer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer #foot-logo {
	width: 2.2%;
	height: auto;
	position: absolute;
	top: 25%;
	left: 58%;
	opacity: 0;
}
footer #button-area {
	position: absolute;
	bottom: 0;
}


@media (max-width: 1024px) {
	footer #slider-sparkle .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 80s infinite linear 0s both;
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	footer #foot-logo {
		width: 9.5%;
		height: auto;
		position: absolute;
		top: 15%;
		left: 65%;
	}
	
}
@media (max-width: 510px) {

}




/* ========================================
コメント
========================================== */
#combody .hamburger ,
#combody #pcheader {
	opacity: 1;
}

#com-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/KNC-message-director-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -23;
	opacity: 1;
	pointer-events: none;
}
#comment {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	position: relative;
	overflow: hidden;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	padding: 0;
	text-align: center;
}
#comment h2 img {
	width: 1.6%;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 10vw;
	position: relative;
}
#comment .com-unit .com-main {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 3vw 5%;
	position: relative;
	z-index: 2;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
#comment .com-unit .com-main .com-txt {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	font-size: 1.2vw;
	line-height: 2.4vw;
	letter-spacing: 1.2px;
	color: #fff;
}
#comment .com-unit .com-main .com-txt span {
	font-size: 1.5vw;
	font-weight: bold;
}
#comment .com-unit .com-main .com-name {
	width: 100%;
	height: auto;
	margin: 0;
	font-size: 1.5vw;
	line-height: 3.0vw;
	letter-spacing: 1.2px;
	color: #fff;
	font-weight: bold;
	text-align: right;
}
#comment .com-unit .com-main .com-name span {
	font-size: 1.1vw;
}
#comment .com-unit .com-main .com-name span {
	width: 1.1vw;
}
#comment .com-unit .com-sara {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#comment #com-unit-wrap .com-unit:nth-child(1) .com-sara ,
#comment #com-unit-wrap .com-unit:nth-child(4) .com-sara ,
#comment #com-unit-wrap .com-unit:nth-child(7) .com-sara {
	background-color: rgba( 235,59,114 , 0.8 );
}
#comment #com-unit-wrap .com-unit:nth-child(2) .com-sara ,
#comment #com-unit-wrap .com-unit:nth-child(5) .com-sara ,
#comment #com-unit-wrap .com-unit:nth-child(8) .com-sara {
	background-color: rgba( 75,170,87 , 0.8 );
}
#comment #com-unit-wrap .com-unit:nth-child(3) .com-sara ,
#comment #com-unit-wrap .com-unit:nth-child(6) .com-sara ,
#comment #com-unit-wrap .com-unit:nth-child(9) .com-sara {
	background-color: rgba( 59,142,180 , 0.8 );
}
#comment #junfu {
	width: 50%;
	height: auto;
	margin: 10vw 25% 0;
	text-align: right;
	color: #000;
	font-size: 1.1vw;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#com-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/KNC-message-director-bg-1-sp-rev.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -23;
		opacity: 1;
		pointer-events: none;
	}
	#comment {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		position: relative;
		overflow: hidden;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#comment h2 img {
		width: 5%;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
		position: relative;
	}
	#comment .com-unit .com-main {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 6vw 5%;
		position: relative;
		z-index: 2;
	}
	#comment .com-unit .com-main .com-txt {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.2px;
		color: #fff;
	}
	#comment .com-unit .com-main .com-txt span {
		font-size: 5.5vw;
		font-weight: bold;
	}
	#comment .com-unit .com-main .com-name {
		width: 100%;
		height: auto;
		margin: 0;
		font-size: 5.5vw;
		line-height: 12.0vw;
		letter-spacing: 1.2px;
		color: #fff;
		font-weight: bold;
		text-align: right;
	}
	#comment .com-unit .com-main .com-name span {
		font-size: 4vw;
	}
	#comment #junfu {
		width: 90%;
		height: auto;
		margin: 10vw 5% 0;
		text-align: right;
		color: #000;
		font-size: 4vw;
	}
	

}



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

  .dlButton {
	  background-color:transparent;
	  border:1px solid #D4E181;
	  display:inline-block;
	  cursor:pointer;
	  color:#D4E181;
	  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:#D4E181;
	  border:1px solid #D4E181;
	  color:#000;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#D4E181 !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#D4E181;
	  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:40%;
  }  
  #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;
  }
