html{
  height:100vh; 
}

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;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background:url(../img/story_bg_pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
img {
    image-rendering: -webkit-optimize-contrast;
}
.clearfix{
  zoom:1;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.pconly {display:inline;}
.pcimg {display: inline;}
.spimg {display: none;}

@-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;
	}
}
@keyframes fadeInUp {
	from {
	opacity: 0;
	transform: translateY(70px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeInUp2 {
	from {
	opacity: 0;
	transform: translateY(100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
@keyframes blurIn {
	from {
	opacity: 0;
	filter: blur(8px);
	transform: scale(3);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes zoomIn {
	0% {
	opacity: 0;
	transform: scale(0);
	}
	96% {
		transform: scale(1.1);
		}
	
	100% {
	opacity: 1;
	transform: scale(1);
	}
}



@media (max-width: 1024px) {
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(../img/story_bg_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}
	br.pconly {display:none;}
	br.sponly {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: #000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:20%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
    display: grid;
    place-items: center;
	animation-name: anime1;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
}
#loader #load2 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	animation-name: anime2;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
    display: grid;
    place-items: center;
	position: absolute;
	top: 0;
	left: 0;
}
#loader #load3 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	animation-name: anime3;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
    display: grid;
    place-items: center;
	position: absolute;
	top: 0;
	left: 0;
}

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

@keyframes anime1 {
	0% {	opacity:0;	}
	20% {	opacity:1;	}
	80% {	opacity:1;	}
	100% {	opacity:0;	}
}
@keyframes anime2 {
	0% {	opacity:0;	}
	5% {	opacity:0;	}
	25% {	opacity:1;	}
	80% {	opacity:1;	}
	100% {	opacity:0;	}
}
@keyframes anime3 {
	0% {	opacity:0;	}
	10% {	opacity:0;	}
	30% {	opacity:1;	}
	80% {	opacity:1;	}
	100% {	opacity:0;	}
}

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

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

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


}



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

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #000 10%, transparent);
	background: -webkit-linear-gradient(top, #000 10%, transparent);
	background: linear-gradient(to bottom, #000 10%, transparent);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1.2%;
	padding:0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:1.5vw;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li.menusns img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.4vw;
	line-height:1.4vw;
	text-align: center;
	color: #fff;
	font-family: 'Source Serif Pro', serif;
	letter-spacing: 3px;
}
#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: 60px;
}  
  .global-nav {
	position: fixed;
	right: 0; /* これで隠れる */
	top: -2000px;
	width: 100%; /* スマホに収まるくらい */
	height: 100vh;
	min-height: 100%;
	padding-top: 10px;
	background-color: #000;
	transition: all .6s;
	z-index: 200000;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 65px; /* クリックしやすいようにちゃんと高さを指定する */
	cursor: pointer;
	z-index: 300000;
	opacity:0;
  }
  
  .global-nav #menu-logo {
	width:50%;
	height:auto;
	margin:80px 25% 10px;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 100%;
}
  .global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  .global-nav__item {
	text-align: center;
	padding: 0.1vw 14px;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #fff;
	font-weight: bold;
	transition: all .6s;
	font-family: 'Source Serif Pro', serif;
	letter-spacing: 3px;

  }  
  .global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
	.global-nav__item a .jp {
		width: 100%;
		font-size:1vw;
}

  .hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #808E98 !important;
	transition: all .6s;
  }  
  .hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#808E98;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
  } 
  .global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 20px 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:#fff;
}
.global-nav ul.nav-sns li img {
	width: 100%;
}

.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: 60px;
	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: 100vh;
	min-height: 100%;
	padding-top: 40px;
	transition: all .6s;
	z-index: 200;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:4vw;
}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3vw;
	}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 0 2%;
	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 a {
		display: block;
		padding: 10px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:6vw;
		line-height: 8vw;
		font-family: 'PT Serif', serif;
		letter-spacing: 3px;	
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.6vw;
	}
}



/* ========================================
トップメイン画像まわり
========================================== */
#topmain-pc {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background-color: #000;
}
#topmain-pc #up1 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 1;
}
#topmain-pc #up2 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain-pc #up3 {
	width:47%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 5%;
	left: 2%;
	opacity: 0;
}
#topmain-pc #up4 {
	width:32%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 19%;
	left: 9%;
	opacity: 0;
}
#topmain-pc #date {
	width:49%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 3%;
	left: 1%;
	opacity: 0;
}
#topmain-pc #com-eve-bnr-pc {
	display: block;
	width: 30%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 15%;
	left: 40%;
	opacity: 0;
}
#topmain-pc #com-eve-bnr-pc li {
	width: 40%;
	height: auto;
	margin: 0 2%;
}
#topmain-pc #up1 img ,
#topmain-pc #up2 img ,
#topmain-pc #up3 img ,
#topmain-pc #up4 img ,
#topmain-pc #date img ,
#topmain-pc #com-eve-bnr-pc li img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}
#topmain-pc #com-eve-bnr-pc li img:hover {
	transform: rotate(10deg);
	transition: 0.7s;
}

#topmain-pc .video-loop {
	width: 25%;
	height: auto;
	position: absolute;
	top: 60%;
	left: 13%;
	overflow: hidden;
	opacity: 0;
}
#topmain-pc .video-loop video {
	width: 100%;
	height: auto;
	margin: 0;
	vertical-align: bottom;
}
#topmain-pc #prize {
	width: 13%;
	height: auto;
	position: absolute;
	top: 52.5%;
	left: 1%;
	opacity: 0;
}
#topmain-pc #prize img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#topmain-pc #catch-sp ,
#topmain-pc #billing-sp {
	display: none;
}

@keyframes slideInDown {
	from {
	opacity: 0;
	transform: translate(10% , -80%);
	}

	to {
		opacity: 1;
		transform: translate(0 , 0);
	}
}
.slideInDown {
	animation-name:slideInDown;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
}
.blurIn {
	animation-name:blurIn;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
	animation-timing-function: cubic-bezier(0.5, 0, 0.75, 0);
	animation-delay: 0.1s;
}
.zoomIn {
	animation-name:zoomIn;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	animation-timing-function: cubic-bezier(0.5, 0, 0.75, 0);
	animation-delay: 0.1s;
}
.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;
}
.fadeInSlow {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 0.2s;
}

.fadeIn2 {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.2s;
}
.fadeIn3 {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.5s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain-pc #up1 {
		width:100%;
		height:auto;
		margin: 0;
		padding: 0;
		opacity: 1;
	}
	#topmain-pc #up2 ,
	#topmain-pc #up4 {
		width:100%;
		height:auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	#topmain-pc #up3 {
		width:98%;
		height:auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 3%;
		left: 1%;
		opacity: 0;
	}
	#topmain-pc #prize {
		width: 40%;
		height: auto;
		position: absolute;
		top: 28%;
		left: 1%;
		opacity: 0;
	}
	@keyframes slideInDown {
		from {
		opacity: 0;
		transform: translate(20% , -80%);
		}
	
		to {
			opacity: 1;
			transform: translate(0 , 0);
		}
	}
	#topmain-pc #catch-sp {
		display: block;
		width: 75%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 23%;
		opacity: 1;
	}
	#topmain-pc #billing-sp {
		display: block;
		width: 98%;
		height: auto;
		position: absolute;
		top: 60%;
		left: 1%;
		opacity: 1;
	}
	#topmain-pc #catch-sp img ,
	#topmain-pc #billing-sp img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#topmain-pc .video-loop {
		width: 96%;
		height: auto;
		margin: -20vw 2% 5vw;
		position: static;
		overflow: hidden;
		opacity: 0;
	}
	#topmain-pc #date {
		width:94%;
		height:auto;
		margin: 5vw 3% 15vw;
		position: static;
		opacity: 0;
	}
	#topmain-pc #com-eve-bnr-pc {
		display: none;
	}
}


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: 999999;
}
.modal__bg{
	background:#AAA5DB;
	opacity: 0.8;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie-bg {
	background:#000;
	opacity: 0.85;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.event-bg {
	background:url(../img/CC-com-present-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 1;
    width: 100%;
    height: 100%;
    position: absolute;
	overflow-y: scroll;
}
.spacial-mv-bg {
	background:url(../img/CC-spacial-mv-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 1;
    width: 100%;
    height: 100%;
    position: absolute;
	overflow-y: scroll;
}
.movie__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.movie__content2 {
    width: 90%;
	height: 80%;
	margin: 0;
    padding: 40px 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
}
.movie__content2 h3 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	padding: 0;
	text-align: center;
}
.movie__content2 h3 img {
	width: 50%;
}
.movie__content2 ul {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.movie__content2 ul li {
	width: 43%;
	height: auto;
	margin: 2vw 2%;
}
.movie__content2 ul li .movie-title {
	width: 100%;
	height: auto;
	text-align: center;
	color: #fff;
	font-size: 1vw;
	transform: translateY(-6px);
}
.modal__content {
    width: 90%;
	height: 70%;
    padding: 40px 2%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
}
.modal__content::-webkit-scrollbar ,
.movie__content2::-webkit-scrollbar  {
    width: 10px;
}
.modal__content::-webkit-scrollbar-track ,
.movie__content2::-webkit-scrollbar-track {
    background-color: #fff;
}
.modal__content::-webkit-scrollbar-thumb ,
.movie__content2::-webkit-scrollbar-thumb {
	background-color: #393a3a;
    box-shadow: inset 0 0 6px rgba(218, 218, 221, 0.3);
}
.modal__content h2 {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	text-align: center;
}
.modal__content h2 img {
	width: auto;
	height: 2.8vw;
}
.modal__content #keisho {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	text-align: center;
	font-size: 1vw;
	color: #fff;
}
.modal__content .com-unit {
	width: 66%;
	height: auto;
	margin: 2vw 15%;
	padding: 1vw 2%;
	background: -moz-linear-gradient(top, rgba( 255,255,255 , 0.8 ), rgba( 149,165,177 , 0.8 ));
	background: -webkit-linear-gradient(top, rgba( 255,255,255 , 0.8 ), rgba( 149,165,177 , 0.8 ));
	background: linear-gradient(to bottom, rgba( 255,255,255 , 0.8 ), rgba( 149,165,177 , 0.8 ));
}
.modal__content .com-unit p {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	text-align: left;
	color: #000;
	font-size: 1.15vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}
.modal__content .com-unit .com-name {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	text-align: right;
	color: #000;
	font-size: 1.3vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	font-weight: bold;
}
.modal__content .eve-unit {
	width: 98%;
	height: auto;
	margin: 2vw 0 4vw;
	padding: 1vw 1%;
}
.modal__content .eve-unit h3 {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	text-align: center;
}
.modal__content .eve-unit h3 img {
	width: auto;
	height: 2vw;
}
.modal__content .eve-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: center;
}
.modal__content .eve-unit ul {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.modal__content .eve-unit ul li {
	width: 32%;
	height: auto;
	margin: 0 0.5%;
}
.modal__content .eve-unit ul li img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.modal__content .eve-unit #jpposter {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
}
.modal__content .eve-unit #jpposter img {
	width: 40%;
	height: auto;
	vertical-align: bottom;
}
.modal__content .eve-unit #ouen-detail {
	width: 40%;
	height: auto;
	margin: 1vw 30%;
	text-align: left;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}
.modal__content .eve-unit .poster {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
}
.modal__content .eve-unit .poster img {
	width: 70%;
	height: auto;
	vertical-align: bottom;
}
.modal__content .eve-unit .talk-details {
	width: 40%;
	height: auto;
	margin: 3vw 25% 0 35%;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: left;
}
.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%;
}

.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
	.modal__content{
		width: 96%;
		height: 75%;
		padding: 2% 2%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: auto;
		overflow-y: scroll;
	}
	.modal__content::-webkit-scrollbar {
		width: 0px;
	}	
	.movie__content ,
	.movie__content2 {
		width: 98%;
		height: 90%;
		padding: 1%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
	}
	.movie__content2 h3 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 10vw 0 5vw;
		text-align: center;
	}
	.movie__content2 h3 img {
		width: 60%;
	}
	.movie__content2 ul li {
		width: 96%;
		height: auto;
		margin: 10vw 2%;
	}
	.movie__content2 ul li .movie-title {
		width: 100%;
		height: auto;
		text-align: center;
		color: #fff;
		font-size: 1em;
		transform: translateY(-3px);
	}
	
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.event-bg {
		background:url(../img/CC-com-present-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 1;
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll;
	}
	.spacial-mv-bg {
		background:url(../img/CC-spacial-mv-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 1;
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll;
	}	
	.modal__content h2 {
		width: 100%;
		height: auto;
		margin: 0 0 1.5vw;
		text-align: center;
	}
	.modal__content h2 img {
		width: auto;
		height: 6vw;
	}
	.modal__content #keisho {
		width: 100%;
		height: auto;
		margin: 0 0 4vw;
		text-align: center;
		font-size: 0.8em;
		color: #fff;
	}
	.modal__content .com-unit {
		width: 94%;
		height: auto;
		margin: 12vw 0;
		padding: 1vw 3%;
		background-color: #fff;
	}
	.modal__content .com-unit p {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		text-align: left;
		color: #000;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}
	.modal__content .com-unit .com-name {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		text-align: right;
		color: #000;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		font-weight: bold;
	}
	.modal__content .eve-unit {
		width: 100%;
		height: auto;
		margin: 12vw 0;
		padding: 1vw 0;
	}
	
	.modal__content .eve-unit h3 {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		text-align: center;
	}
	.modal__content .eve-unit h3 img {
		width: auto;
		height: 4.5vw;
	}
	.modal__content .eve-unit h3.sp2gyo img {
		width: auto;
		height: 12vw;
		margin-bottom: 2vw;
	}
	.modal__content .eve-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 0.9em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: center;
	}
	.modal__content .eve-unit #ouen-detail {
		width: 70%;
		height: auto;
		margin: 1vw 15%;
		text-align: left;
		color: #fff;
		font-size: 0.9em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}
	.modal__content .eve-unit ul {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.modal__content .eve-unit ul li {
		width: 100%;
		height: auto;
		margin: 8vw 0;
	}
	.modal__content .eve-unit ul li img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	.modal__content .eve-unit #jpposter img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	
	.modal__content .eve-unit .poster {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		text-align: center;
	}
	.modal__content .eve-unit .poster img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	.modal__content .eve-unit .talk-details {
		width: 96%;
		height: auto;
		margin: 7vw 2% 0;
		padding: 0;
		color: #fff;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: left;	
	}
	
	

}





/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 5vw;
	background-color: #000;
}
#bridge #billing {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #billing img {
	width: 55%;
	height: auto;
	vertical-align: bottom;
}
#bridge #bri-catch {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #bri-catch img {
	width: 60%;
	height: auto;
	vertical-align: bottom;
}
#bridge #theater-banner {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
}
#bridge #theater-banner li:first-child {
	width: 15%;
	height: auto;
	margin: 0.5vw 40%;
}
#bridge #theater-banner li {
	width: 15%;
	height: auto;
	margin: 0.5vw 1%;
}
#bridge #theater-banner li img {
	width: 100%;
	height: auto;
}
#bridge #theater-banner li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 3.5%;
	height: auto;
	margin: 0 1%;
}
#bridge #sns-link li img {
	width: 100%;
	height: auto;
}
#bridge #sns-link li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#bridge #present {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #present img {
	width: 30%;
}
#bridge #com-eve-bnr-sp {
	display: none;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0 20vw;
	}
	#bridge #billing ,
	#bridge #bri-catch {
		display: none;
	}
	#bridge #theater-banner {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 6vw 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
	}
	#bridge #theater-banner li:first-child ,
	#bridge #theater-banner li {
		width: 60%;
		height: auto;
		margin: 1vw 1%;
	}
	#bridge #sns-link li {
		width: 12%;
		height: auto;
		margin: 0 3%;
	}
	#bridge #com-eve-bnr-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 5vw 0;
		padding: 0;
		list-style-type: none;	
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#bridge #com-eve-bnr-sp li {
		width: 85%;
		height: auto;
		margin: 2vw 0;
	}
	#bridge #com-eve-bnr-sp li img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}


	#bridge #present {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #present img {
		width: 85%;
	}



}


/* ========================================
イントロダクション
========================================== */
#intro-sp-img {
	display: none;
}
#intro-bg1 {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-20;
	background:url(../img/CC-storyintro-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center right;
}
#intro-bg2 {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-19;
	background:url(../img/CC-storyintro-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center right;
	animation: intro-bg2 9s linear 0s infinite;
}
#intro-bg3 {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-18;
	background:url(../img/CC-storyintro-bg-3-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center right;
	animation: intro-bg3 9s linear 0s infinite;
}
#intro-bgbk {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-21;
	background:#000;
}
@keyframes intro-bg1 {
	0% {opacity: 0;}
	1% {opacity: 1;}
	33% {opacity: 1;}
	34% {opacity: 0;}
	100% {opacity: 0;}	
}
@keyframes intro-bg2 {
	0% {opacity: 0;}
	23% {opacity: 0;}
	33% {opacity: 1;}
	56% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}	
}
@keyframes intro-bg3 {
	0% {opacity: 0;}
	56% {opacity: 0;}
	66% {opacity: 1;}
	89% {opacity: 1;}	
	100% {opacity: 0;}	
}
#intro {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 20vw 0;
	overflow: hidden;
}
#intro #intro-contents {
	width: 55%;
	height: auto;
	margin: 0;
	left: 0;
	position: relative;
}
#intro #intro-contents #intro-catch1 {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro #intro-contents #intro-catch1 img {
	width: 90%;
}
#intro #intro-contents #intro-catch2 {
	width: 100%;
	height: auto;
	margin: 6vw 0 10vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro #intro-contents #intro-catch2 img {
	width: 70%;
}
#intro #intro-contents h2 {
	width: 100%;
	height: auto;
	margin: 3vw 0 6vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro #intro-contents h2 img {
	width: 40%;
}
#intro #intro-contents p {
	width: 80%;
	height: auto;
	margin: 2vw 10%;
	padding: 0;
	text-align: left;
	font-size: 1.15vw;
	line-height: 2.1vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	color: #fff;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg1 ,
	#intro-bg2 ,
	#intro-bg3 {
		display:none;
	}
	#intro-sp-img {
		display: block;
		width: 100%;
		height: auto;
		position: fixed;
		bottom: 0;
		z-index: -15;
	}
	#intro-sp-img #intro-sp-img-inner {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
		background-color: #000;
	}
	#intro-sp-img #intro-sp-img-inner #intro-sp-img1 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		animation: intro-bg1 6s linear 0s infinite;
	}
	#intro-sp-img #intro-sp-img-inner #intro-sp-img2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		animation: intro-bg2 6s linear 0s infinite;
	}
	#intro-sp-img #intro-sp-img-inner #intro-sp-img3 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		animation: intro-bg3 6s linear 0s infinite;
	}
	#intro-sp-img #intro-sp-img-inner #intro-sp-img1 img ,
	#intro-sp-img #intro-sp-img-inner #intro-sp-img2 img ,
	#intro-sp-img #intro-sp-img-inner #intro-sp-img3 img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#intro #intro-contents {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0 120vw;
		left: 0;
		position: relative;
		z-index: -16;
	}
	#intro #intro-contents #intro-catch1 {
		width: 100%;
		height: auto;
		margin: 2vw 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-contents #intro-catch1 img {
		width: 90%;
	}
	#intro #intro-contents #intro-catch2 {
		width: 100%;
		height: auto;
		margin: 20vw 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-contents #intro-catch2 img {
		width: 80%;
	}
	#intro #intro-contents h2 {
		width: 100%;
		height: auto;
		margin: 10vw 0 5vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-contents h2 img {
		width: 70%;
	}
	#intro #intro-contents p {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		padding: 0;
		text-align: left;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		color: #fff;
		opacity: 0;
	}
	

}



/* ========================================
スタッフ＆キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 10vw;
	overflow: hidden;
}
#cast #staff-bg {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5vw 0;
	background-image: linear-gradient(
  0deg,
  hsl(206deg 15% 64%) 0%,
  hsl(206deg 15% 68%) 11%,
  hsl(206deg 15% 72%) 22%,
  hsl(206deg 15% 76%) 33%,
  hsl(206deg 15% 80%) 44%,
  hsl(206deg 15% 84%) 56%,
  hsl(206deg 15% 88%) 67%,
  hsl(207deg 15% 92%) 78%,
  hsl(207deg 15% 96%) 89%,
  hsl(0deg 0% 100%) 100%
);
}
#cast #staff-bg h2 {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast #staff-bg h2 img {
	width: 30%;
}
#cast .cast-unit {
	width: 60%;
	height: auto;
	margin: 2vw 20% 5vw;
	padding: 0;
}
#cast .photo-unit {
	padding-top: 30vw;
}
#cast .cast-unit .cast-img-wrap {
	width: 40%;
	height: auto;
	margin: 0 30%;
	padding: 0;
	position: relative;
}
#cast .cast-unit .cast-img-wrap .cast-img1 {
	width: 100%;
	height: auto;
}
#cast .cast-unit .cast-img-wrap .cast-img2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#cast .cast-unit .cast-img-wrap .cast-img1 img ,
#cast .cast-unit .cast-img-wrap .cast-img2 img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#cast .cast-unit h3 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast .cast-unit h3.staffname img {
	width: auto;
	height: 4vw;
	vertical-align: bottom;
	margin: 10px 0;
}
#cast .cast-unit h3.gensakuname img {
	width: auto;
	height: 2vw;
	vertical-align: bottom;
	margin-bottom: 1vw;
}
#cast .cast-unit h3.castname img {
	width: auto;
	height: 5.2vw;
	vertical-align: bottom;
	margin: 10px 0;
}
#cast .cast-unit p {
	width: 100%;
	height: auto;
	margin: 1.5vw 0;
	padding: 0;
	text-align: left;
	font-size: 1.15vw;
	line-height: 2vw;
	color: #000;
	font-weight: bold;
	font-feature-settings: "palt";
	opacity: 0;
}
#cast .cast-unit p.filmo {
	width: 70%;
	margin: 1.5vw 0 1.5vw 30%;
}
#cast0bg {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-14;
	background-color: #F5F6F8;
	opacity: 0;
}
#cast1bg {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-13;
	background:url(../img/CC-directorcast-bg-パク・ジニョン用-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#cast2bg {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-12;
	background:url(../img/CC-directorcast-bg-キム・ヨンミン用-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#cast3bg {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-12;
	background:url(../img/CC-directorcast-bg-キム・ドンフィソン・ゴニ用-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#cast4bg {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-12;
	background:url(../img/CC-directorcast-bg-ソン・ゴニ用-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#cast5bg {
	display:block;
	width:100%;
	height:100%;
	min-height: 100%;
	position:fixed;
	top:0;
	left:0;
	z-index:-12;
	background:url(../img/CC-directorcast-bg-ホ・ドンウォン用-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 40vw;
	}
	#cast #staff-bg {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0;
		background-image: linear-gradient(
	  0deg,
	  hsl(206deg 15% 64%) 0%,
	  hsl(206deg 15% 68%) 11%,
	  hsl(206deg 15% 72%) 22%,
	  hsl(206deg 15% 76%) 33%,
	  hsl(206deg 15% 80%) 44%,
	  hsl(206deg 15% 84%) 56%,
	  hsl(206deg 15% 88%) 67%,
	  hsl(207deg 15% 92%) 78%,
	  hsl(207deg 15% 96%) 89%,
	  hsl(0deg 0% 100%) 100%
	);
	}
	#cast #staff-bg h2 {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast #staff-bg h2 img {
		width: 70%;
	}
	#cast .cast-unit {
		width: 100%;
		height: auto;
		margin: 10vw 0 15vw;
		padding: 0;
	}
	#cast .photo-unit {
		padding-top: 130vw;
	}
	#cast .cast-unit .cast-img-wrap {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		position: relative;
	}
	#cast .cast-unit .cast-img-wrap .cast-img1 {
		width: 100%;
		height: auto;
	}
	#cast .cast-unit .cast-img-wrap .cast-img2 {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	#cast .cast-unit .cast-img-wrap .cast-img1 img ,
	#cast .cast-unit .cast-img-wrap .cast-img2 img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#cast .cast-unit h3 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast .cast-unit h3.staffname img {
		width: auto;
		height: 12vw;
		vertical-align: bottom;
		margin: 10px 0;
	}
	#cast .cast-unit h3.gensakuname img {
		width: auto;
		height: 6.4vw;
		vertical-align: bottom;
		margin-bottom: 2vw;
	}
	#cast .cast-unit h3.castname img {
		width: auto;
		height: 17vw;
		vertical-align: bottom;
		margin: 10px 0;
	}
	#cast .cast-unit p {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		padding: 0;
		text-align: left;
		font-size: 1em;
		line-height: 2em;
		letter-spacing: 1px;
		color: #000;
		font-weight: bold;
		font-feature-settings: "palt";
		opacity: 0;
	}
	#cast .cast-unit p.filmo {
		width: 90%;
		margin: 5vw 5%;
	}
	#cast1bg {
		display:block;
		width:100%;
		height:100%;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-13;
		background:url(../img/CC-directorcast-bg-パク・ジニョン用-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#cast2bg {
		display:block;
		width:100%;
		height:100%;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-12;
		background:url(../img/CC-directorcast-bg-キム・ヨンミン用-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#cast3bg {
		display:block;
		width:100%;
		height:100%;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-12;
		background:url(../img/CC-directorcast-bg-キム・ドンフィソン・ゴニ用-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#cast4bg {
		display:block;
		width:100%;
		height:100%;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-12;
		background:url(../img/CC-directorcast-bg-ソン・ゴニ用-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#cast5bg {
		display:block;
		width:100%;
		height:100%;
		min-height: 100%;
		position:fixed;
		top:0;
		left:0;
		z-index:-12;
		background:url(../img/CC-directorcast-bg-ホ・ドンウォン用-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}



}

/* ========================================
スライダー
========================================== */

.top-slide-wrap {
	display: block;
	width: 100%;
    height: auto;
	display: flex;
	align-items: center;
    overflow: hidden;
	opacity: 1;
}
.top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 50s infinite linear 0s both;
}
.top-slide-wrap .top-slide .content {
	width: 35vw;
	height: auto;
}
.top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.top-slide-wrap .top-slide .content {
		width: 90vw;
		height: auto;
	}


}


/* ========================================
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;
}
#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:#1B95E0;
}
#button-area ul.social_sq_buttons li.line {
	background:#06C755;
}
#button-area ul.social_sq_buttons li.checkin {
	background:#10519D;
}
#button-area ul.social_sq_buttons li.filmarks {
	background:#FFE100;
	text-align: center;
}
#button-area ul.social_sq_buttons li.filmarks img {
	width: 60%;
}
#button-area ul.social_sq_buttons li.fb .fb_iframe_widget > span {
  vertical-align: baseline !important;
}




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

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

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

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


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: relative;
	background:url(../img/CC-footet-bg-pc-rev.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}
footer #foot-logo {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 15vw 0 4vw;
	text-align: center;
	opacity: 0;
}
footer #foot-logo img {
	width: 23%;
	height: auto;
	vertical-align: bottom;
}
footer #foot-date {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
footer #foot-date img {
	width: 30%;
	height: auto;
	vertical-align: bottom;
}
footer #sns-link-foot {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
footer #sns-link-foot li {
	width: 3%;
	height: auto;
	margin: 0 1%;
}
footer #sns-link-foot li img {
	width: 100%;
	height: auto;
}
footer #sns-link-foot li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
footer #copyright {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5px 0;
	text-align: center;
	color: #fff;
	font-size: 0.8em;
}

@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
		background:url(../img/CC-footet-bg-sp-rev2.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		display: flex;
		flex-wrap: wrap;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 65vw 0 5vw;
		text-align: center;
		opacity: 0;
		order: 2;
	}
	footer #foot-logo img {
		width: 70%;
		height: auto;
		vertical-align: bottom;
	}
	footer #foot-date {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 5vw;
		text-align: center;
		opacity: 0;
		order: 1;
	}
	footer #foot-date img {
		width: 70%;
		height: auto;
		vertical-align: bottom;
	}
	footer #sns-link-foot {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 1vw 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
		order: 3;
	}
	footer #sns-link-foot li {
		width: 13%;
		height: auto;
		margin: 0 1%;
	}
	footer #button-area {
		order: 4;
	}
	footer #copyright {
		order: 5;
		font-size: 0.55em;
	}
	
}
@media (max-width: 510px) {

}

