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;background-color: #000;
}
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;}
.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;
}

@keyframes fadeInUp {
	from {
	opacity: 0;
	transform: translateY(70px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeInUp2 {
	from {
	opacity: 0;
	transform: translateY(100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
@keyframes blurIn {
	from {
	opacity: 0;
	filter: blur(10px);
	transform: scale(4);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes fadeInRight {
	from {
	opacity: 0;
	transform: translateX(50%);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}
.fadeInRight1 {
	animation-name:fadeInRight;
	animation-duration:0.3s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 0s;
}
.fadeInRight2 {
	animation-name:fadeInRight;
	animation-duration:0.3s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 0.2s;
}
@keyframes fadeInLeft {
	from {
	opacity: 0;
	transform: translateX(-50%);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}
.fadeInLeft1 {
	animation-name:fadeInLeft;
	animation-duration:0.3s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 0.5s;
}
.fadeInLeft2 {
	animation-name:fadeInLeft;
	animation-duration:0.3s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 0.7s;
}
.fadeInTop {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.0s;
}

@keyframes zoomIn {
	from {
	transform: scale(0);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 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.sponly {display:inline;}
br.pconly {display:none;}

}

/* ========================================
ローディング
========================================== */

/* 非表示 */
.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 #load1 img {
	width:100%;
	height:auto;
}
@keyframes anime1 {
	0% {	opacity:0;	}
	15% {	opacity:1;	}
	85% {	opacity:1;	}
	100% {	opacity:0;	}
}


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

#loader {
	width:50%;
	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:6px 0 9px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #000 50%, transparent);
	background: -webkit-linear-gradient(top, #000 50%, transparent);
	background: linear-gradient(to bottom, #000 50%, transparent);
	z-index:1001;
	transition-duration: 0.6s;
	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;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 1px;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.4vw;
	line-height:1.4vw;
	text-align: center;
	color: #fff;
	font-family: 'Noto Sans Display', sans-serif;
}
#pcheader ul#pcmenu li a span.jp {
	display: block;
	width: 100%;
	font-size:0.8vw;
	line-height:0.8vw;
	text-align: center;
	color: #fff;
	transform: translateY(-15px);
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 30px;
}

#pcheader ul#pcmenu li.menusns a span.eng {
	color: #c21f1d !important;
}
#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: #000;
	background-size: 100% auto;
	background-position: center center;
	color:#fff;
	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:100%;
	height:auto;
	margin:0;
	padding:20px 0 10px;
	text-align:center;
}  
.global-nav #menu-logo img {
	width:20% !important;
	height:auto;
}    
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0;
	margin: 0;
	font-family: 'Pacifico', cursive;
}
.global-nav__item a {
	display: block;
	padding: 1px 0;
	text-decoration: none;	
	color: #fff;
	transition: all .6s;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
	font-family: 'Noto Sans Display', sans-serif;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #fff !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 7px;
	font-weight:bold;
	color:#fff;
	font-size:1.0em;
	font-family: 'Quicksand', sans-serif;
	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 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: -5px;
	  font-weight:bold;
	  font-size:0.9em;
	  font-family: 'Quicksand', sans-serif;
	}
  
  .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: 1px 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 #menu-logo {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 10px;
	text-align:center;
}  
  .global-nav #menu-logo img {
	width:50% !important;
	height:auto;
}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 0 2%;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
	color: #c21f1d;
}
.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: 0;
		padding: 0;
	}
	.global-nav__item a {
		display: block;
		padding: 1px 0;
		margin: 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:7vw;
		line-height: 7vw;
		letter-spacing: 1px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.6vw;
		transform: translateY(-27px);
	}
}





/* ========================================
トップメイン画像まわり
========================================== */
#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;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
#topmain-pc #ma {
	display: block;
	width:32%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	bottom: 0%;
	right: 0;
}
#topmain-pc #jung {
	display: block;
	width:26.9%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	bottom: 0%;
	left: 0;
}
#topmain-pc #ma-name {
	width:29%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	bottom: 32%;
	right: 22.5%;
}
#topmain-pc #jung-name {
	width:24%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	bottom: 32%;
	left: 21.5%;
}
#topmain-pc #tate-catch {
	width:5.7%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	top: 2%;
	right: 4%;
}
#topmain-pc #yoko-catch {
	width:83%;
	height:auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	bottom: 5%;
	left: 8.5%;
}
#topmain-pc .video-loop-sp {
	display: none;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain-pc {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position:relative;
		overflow: hidden;
	}
	#topmain-pc #ma ,
	#topmain-pc #jung {
		display: none;
	}
	#topmain-pc #ma-name {
		width:52%;
		height:auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 54%;
		bottom: auto;
		right: 3%;
	}
	#topmain-pc #jung-name {
		width:44%;
		height:auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 51.5%;
		bottom: auto;
		left: 3%;
	}
	#topmain-pc #tate-catch {
		width:16%;
		height:auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 0.5%;
		right: 1.5%;
	}
	#topmain-pc #yoko-catch {
		width:94%;
		height:auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 65.3%;
		bottom: auto;
		left: 3%;
	}
	#topmain-pc .video-loop-sp {
		display: block;
		width:94%;
		height:auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 72%;
		left: 3%;
		z-index: 4;
	}
	#topmain-pc .video-loop-sp video {
		width: 100%;
		height: auto;
		margin: 0;
		vertical-align: bottom;
	}
}

/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 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/AJ-present-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.com-bg {
	background:url(../img/AJ-comment-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content {
    width: 70%;
	height: auto;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background:rgba( 255,225,0 , 0.6 );
	backdrop-filter: blur(3px);
	background-size: cover;
	background-position: center center;
}
.modal__content h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
.modal__content h2 img {
	width: 50%;
}
.modal__content2 {
    width: 90%;
	height: 85%;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-size: cover;
	background-position: center center;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal__content2::-webkit-scrollbar {  
	display:none;
}
.modal__content2 h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 3vw 0 1vw;
	text-align: center;
}
.modal__content2 h2 img {
	width: 20%;
}
.modal__content2 #junfu {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	font-size: 1vw;
	color: #fff;
}
.modal__content2 .com-unit {
	width: 60%;
	height: auto;
	margin: 0 15% 5vw;
	padding: 2vw 5%;
	background-color: rgba( 255,255,255 , 0.6 );
	backdrop-filter: blur(3px);
}
.modal__content2 .com-unit .txt {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	padding: 0;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	color: #000;
	text-align: left;
	font-weight: bold;
}
.modal__content2 .com-unit .name {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	color: #B86F27;
	text-align: right;
	font-weight: bold;
}
.modal__content #suuryou {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	color: #000;
	font-size: 0.9vw;
}
.modal__content #pre-list {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.modal__content #pre-list li {
	width: 26%;
	height: auto;
	margin: 0 2%;
}
.modal__content #pre-list li .pre-img {
	width: 100%;
	height: auto;
	text-align: center;
}
.modal__content #pre-list li .pre-img img {
	width: 80%;
}
.modal__content #pre-list li p {
	width: 100%;
	height: auto;
	text-align: center;
	color: #000;
	font-size: 1vw;
}
.modal__content #pre-list li p span {
	font-size: 0.85vw;
}
.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) {
	.event-bg {
		background:url(../img/AJ-present-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll;
	}
	.com-bg {
		background:url(../img/AJ-comment-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		height: 100%;
		position: absolute;
		width: 100%;
	}	
	.movie__content {
		width: 98%;
		height: auto;
		padding: 1%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content {
		width: 80%;
		height: 85%;
		padding: 20px 5%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		background:none;
		overflow-y: scroll;
	}
	.modal__content h2 img {
		width: 90%;
	}
	.modal__content #suuryou {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		color: #000;
		font-size: 0.9em;
	}	
	.modal__content #pre-list {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.modal__content #pre-list li {
		width: 90%;
		height: auto;
		margin: 10vw 5%;
	}
	.modal__content #pre-list li .pre-img {
		width: 100%;
		height: auto;
		text-align: center;
	}
	.modal__content #pre-list li .pre-img img {
		width: 80%;
	}
	.modal__content #pre-list li p {
		width: 100%;
		height: auto;
		text-align: center;
		color: #000;
		font-size: 1em;
	}
	.modal__content #pre-list li p span {
		font-size: 0.85em;
	}
	.modal__content2 {
		width: 100%;
		height: 85%;
		padding: 20px 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		background-size: cover;
		background-position: center center;
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}	
	.modal__content2 h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0 2vw;
		text-align: center;
	}
	.modal__content2 h2 img {
		width: 40%;
	}
	.modal__content2 #junfu {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		font-size: 0.9em;
	}
	.modal__content2 .com-unit {
		width: 90%;
		height: auto;
		margin: 0 3% 15vw;
		padding: 5vw 2%;
		backdrop-filter: blur(3px);
	}
	.modal__content2 .com-unit .txt {
		width: 100%;
		height: auto;
		margin: 0 0 1.5em;
		padding: 0;
		font-size: 1em;
		line-height: 1.9em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		text-align: left;
		font-weight: bold;
	}
	.modal__content2 .com-unit .name {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 1.1em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		text-align: right;
	}
	
}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 3vw 0 6vw;
	background-color: #000;
	position: relative;
}
#bridge #date {
	display: block;
	width: 40%;
	height: auto;
	margin: 0 30%;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 3%;
	height: auto;
	margin: 0 1%;
}
#bridge #modal-banners {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #modal-banners .fi {
	display: block;
	width: 24%;
	height: auto;
	margin: 0 2% 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#bridge #theater {
	display: block;
	width: 14%;
	height: auto;
	margin: 0 43%;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi {
	display: block;
	width: 14%;
	height: auto;
	margin: 0 43%;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #tokuten-chicket {
	display: block;
	width: 14%;
	height: auto;
	margin: 0 43%;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #modal-banners .fi img:hover ,
#bridge #sns-link li img:hover ,
#bridge #theater img:hover ,
#bridge #tokuten-chicket img:hover ,
#bridge #mubi img:hover {
	animation: flash 1.0s;
}
#bridge .video-loop {
	display: block;
	width: 26%;
	height: auto;
	position: absolute;
	top: 1%;
	right: 2%;
	overflow: hidden;
	opacity: 0;
}
#bridge .video-loop video {
	width: 100%;
	height: auto;
	margin: 0;
	vertical-align: bottom;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 10vw;
		background-color: #000;
		position: relative;
	}
	#bridge #date {
		display: block;
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 3vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #present {
		display: block;
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 3vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #modal-banners {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #modal-banners .fi {
		display: block;
		width: 90%;
		height: auto;
		margin: 2vw 5%;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater {
		display: block;
		width: 60%;
		height: auto;
		margin: 0 20%;
		padding: 3vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #mubi ,
	#bridge #tokuten-chicket {
		display: block;
		width: 60%;
		height: auto;
		margin: 0 20%;
		padding: 3vw 0;
		text-align: center;
		opacity: 0;
	}	
	#bridge #sns-link li {
		width: 12%;
		height: auto;
		margin: 0 1%;
	}
	#bridge .video-loop {
		display: none;

	}
	
}

/* ========================================
イントロダクション＆ストーリー
========================================== */
#intro-bg1 {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-15;
	width:100%;
	height:100%;
	min-height: 100%;
	background:url(../img/AJ-storyintro-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
@keyframes intro-anime1 {
	0% {opacity: 1;}
	35% {opacity: 1;}
	45% {opacity: 0;}
	65% {opacity: 0;}
	75% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes intro-anime2 {
	0% {opacity: 0;}
	25% {opacity: 0;}
	35% {opacity: 1;}
	80% {opacity: 1;}
	90% {opacity: 0;}
	100% {opacity: 0;}
}
#intro-bgright {
	display:block;
	position:fixed;
	bottom:0;
	right:0;
	z-index:-13;
	width:27%;
	height:auto;
	z-index: -13;
	animation: intro-anime1 8s ease-in-out 0s infinite;
}
#intro-bgleft {
	display:block;
	position:fixed;
	bottom:0;
	left:0;
	z-index:-13;
	width:31%;
	height:auto;
	z-index: -13;
	animation: intro-anime2 8s ease-in-out 0s infinite;
}
#intro-intro {
	width: 100%;
	height: auto;
	padding: 12vw 0 5vw;
	position: relative;
	z-index: -14;
}
#intro-intro #intro-c1 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
	opacity: 0;
}
#intro-intro #intro-c1 img {
	width: 25%;
}
#intro-intro #intro-c2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro-intro #intro-c2 img {
	width: 40%;
}
#intro {
	width: 44%;
	height: auto;
	margin: 5vw 20% 10vw;
	padding: 5vw 8%;
	background-color: rgba( 219,130,57 , 0.7 );
	backdrop-filter: blur(8px);
	position: relative;
	z-index: -14;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 50%;
}
#intro p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: left;
	color: #000;
	font-size: 1.2vw;
	line-height: 2.2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.2px;
	opacity: 0;
}
#story {
	width: 44%;
	height: auto;
	margin: 5vw 20% 15vw;
	padding: 5vw 8%;
	background-color: rgba( 239,189,76 , 0.7 );
	backdrop-filter: blur(8px);
	position: relative;
	z-index: -14;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#story h2 img {
	width: 24%;
}
#story #story-c1 {
	width: 100%;
	height: auto;
	margin: 3vw 0;
	text-align: center;
	font-size: 2vw;
	color: #000;
	opacity: 0;
}
#story p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: left;
	color: #000;
	font-size: 1.2vw;
	line-height: 2.2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.2px;
	opacity: 0;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg1 {
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-15;
		width:100%;
		height:100%;
		min-height: 100%;
		background:url(../img/AJ-storyintro-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}
	@keyframes intro-anime1 {
		0% {opacity: 1;}
		40% {opacity: 1;}
		50% {opacity: 0;}
		90% {opacity: 0;}
		100% {opacity: 1;}
	}
	@keyframes intro-anime2 {
		0% {opacity: 0;}
		40% {opacity: 0;}
		50% {opacity: 1;}
		90% {opacity: 1;}
		100% {opacity: 0;}
	}
	#intro-bgright {
		display:block;
		position:fixed;
		bottom:0;
		right:0;
		z-index:-13;
		width:55%;
		height:auto;
		z-index: -13;
		animation: intro-anime1 8s ease-in-out 0s infinite;
	}
	#intro-bgleft {
		display:block;
		position:fixed;
		bottom:0;
		left:10%;
		z-index:-13;
		width:80%;
		height:auto;
		z-index: -13;
		animation: intro-anime2 8s ease-in-out 0s infinite;
	}
	#intro-intro {
		width: 100%;
		height: auto;
		padding: 25vw 0 10vw;
		position: relative;
		z-index: -14;
	}
	#intro-intro #intro-c1 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro-intro #intro-c1 img {
		width: 80%;
	}
	#intro-intro #intro-c2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
		opacity: 0;
	}
	#intro-intro #intro-c2 img {
		width: 90%;
	}
	#intro {
		width: 90%;
		height: auto;
		margin: 10vw 0 20vw;
		padding: 15vw 5%;
		background-color: rgba( 219,130,57 , 0.7 );
		backdrop-filter: blur(8px);
		position: relative;
		z-index: -14;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 80%;
	}
	#intro p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: left;
		color: #000;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.2px;
		opacity: 0;
	}
	#story {
		width: 90%;
		height: auto;
		margin: 10vw 0 50vw;
		padding: 15vw 5%;
		background-color: rgba( 239,189,76 , 0.7 );
		backdrop-filter: blur(8px);
		position: relative;
		z-index: -14;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 6vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#story h2 img {
		width: 40%;
	}
	#story #story-c1 {
		width: 100%;
		height: auto;
		margin: 6vw 0;
		text-align: center;
		font-size: 1.4em;
		color: #000;
		opacity: 0;
	}
	#story p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: left;
		color: #000;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.2px;
		opacity: 0;
	}
	

}



/* ========================================
スライダー
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	padding: 0;
	position: relative;
}
#slider-area #slider-bg {
	width: 100%;
	height: auto;
}
#slider-area .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 1;
}
#slider-area #slider1 {
	position: absolute;
	top: 0;
}
#slider-area #slider2 {
	position: absolute;
	bottom: 0;
}
#slider-area .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 50s infinite linear 0s both;
}
#slider-area .top-slide-wrap .slider2 {
	animation: loop-slide 50s infinite linear 0s both;
}
#slider-area .top-slide-wrap .top-slide .content {
	width: 30vw;
	height: auto;
}
#slider-area .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#slider-area #slider-logo {
	width: 25%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	opacity: 0;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#slider-area .top-slide-wrap .top-slide .content {
		width: 90vw;
		height: auto;
	}
	#slider-area #slider-logo {
		width: 60%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		opacity: 0;
	}
}


/* ========================================
キャスト
========================================== */
#cast-bg0 {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-12;
	width:100%;
	height:100%;
	min-height: 100%;
	background: #fff;
	opacity: 0;
}
#cast-bg1 {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-11;
	width:100%;
	height:100%;
	min-height: 100%;
	background: linear-gradient(130deg, #28b7b5, #ffffff, #f907be,#28b7b5, #ffffff, #f907be);
    background-size: 600% 600%;
	overflow: hidden;
	opacity: 0;
}
@keyframes castbggrad {
    0%{background-position:0% 5%}
    50%{background-position:100% 96%}
    100%{background-position:0% 5%}
}
.cast-bg1 {
	animation: fadeIn 0.2s ease 0s forwards , castbggrad 22s ease 0s infinite;
}
#cast-bg2 {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100%;
	min-height: 100%;
	background:url(../img/AJ-director&cast-ami-pc.png) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#cast {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	overflow-x: hidden;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast h2 img {
	width: 30%;
}
#cast .cast-unit1 {
	width: 60%;
	height: auto;
	margin: 5vw 20% 10vw;
	padding: 0;
}
#cast .cast-unit1 .cast-img-area {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
#cast .cast-unit1 .cast-img-area .role-catch {
	width: 33%;
	height: auto;
	opacity: 0;
}
#cast .cast-unit1 .cast-img-area .cast-photo {
	width: 30%;
	height: auto;
	margin: 0 1%;
	position: relative;
	transform: scale(0);
}
#cast .cast-unit1 .cast-img-area .cast-photo .cast-photo1 {
	width: 100%;
	height: auto;
}
#cast .cast-unit1 .cast-img-area .cast-photo .cast-photo1 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: cast-photo 5s ease 0s infinite;
}
@keyframes cast-photo {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#cast .cast-unit1 .cast-img-area .actor-name {
	width: 30%;
	height: auto;
	opacity: 0;
}
@keyframes SlideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-1000px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes SlideInRight {
	0% {
		opacity: 0;
		transform: translateX(1000px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes ZoomIn {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(100%);
	}
}
.SlideInLeft {
	animation: SlideInLeft 0.9s cubic-bezier(0.5, 0, 0.75, 0) 0s forwards;
}
.SlideInRight {
	animation: SlideInRight 0.9s cubic-bezier(0.5, 0, 0.75, 0) 0.2s forwards;
}
.ZoomIn {
	animation: ZoomIn 0.6s cubic-bezier(0.5, 0, 0.75, 0) 0.8s forwards;
}
.fadeInCast {
	animation: fadeIn 1.2s ease-out 0.8s forwards;
}

#cast .cast-unit1 .profle {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: left;
	opacity: 0;
}
#cast .cast-unit1 .filmo {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: center;
	opacity: 0;
}
#cast #other-casts {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#cast #other-casts .cast-unit2 {
	width: 18%;
	height: auto;
	margin: 0 5%;
	padding: 0;
}
#cast #other-casts .cast-unit2 .cast-img-area {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}
#cast #other-casts .cast-unit2 .cast-img-area .role-catch {
	height: auto;
	position: absolute;
	opacity: 0;
	z-index: 2;
}
#cast #other-casts .cast-unit2 .cast-img-area .other-c1 {
	width: 115%;
	top: -30%;
	left: -20%;
}
#cast #other-casts .cast-unit2 .cast-img-area .other-c2 {
	width: 75%;
	top: -17%;
	left: -20%;
}
#cast #other-casts .cast-unit2 .cast-img-area .other-c3 {
	width: 75%;
	top: -30%;
	left: -20%;
}
#cast #other-casts .cast-unit2 .cast-img-area .cast-photo {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	position: relative;
	transform: scale(0);
}
#cast #other-casts .cast-unit2 .cast-img-area .actor-name {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: -8%;
	opacity: 0;
	text-align: center;
}
#cast #other-casts .cast-unit2 .cast-img-area .actor-name img {
	width: auto;
	height: 2.5vw;
}
#cast #other-casts .cast-unit2 .profle {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: left;
	opacity: 0;
}
#cast #other-casts .cast-unit2 .filmo {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: center;
	opacity: 0;
}
#cast .director {
	width: 60%;
	height: auto;
	margin: 5vw 20%;
	padding: 0;
}
#cast .director .cast-img-area {
	width: 100%;
	height: auto;
	position: relative;
}
#cast .director .cast-img-area .cast-photo {
	width: 30%;
	height: auto;
	margin: 0 35%;
	position: relative;
	opacity: 0;
}
#cast .director .cast-img-area .actor-name {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	opacity: 0;
	text-align: center;
}
#cast .director .cast-img-area .actor-name img {
	width: 30%;
}
#cast .director .profle {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: left;
	opacity: 0;
}
#cast .director .filmo {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: center;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	@keyframes SlideInLeft {
		0% {
			opacity: 0;
			transform: translateX(-400px);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}
	@keyframes SlideInRight {
		0% {
			opacity: 0;
			transform: translateX(400px);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}
	
	#cast-bg2 {
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100%;
		min-height: 100%;
		background:url(../img/AJ-director&cast-ami-sp.png) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#cast {
		width: 100%;
		height: auto;
		padding: 40vw 0;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast h2 img {
		width: 80%;
	}
	#cast .cast-unit1 {
		width: 100%;
		height: auto;
		margin: 10vw 0 20vw;
		padding: 0;
	}	
	#cast .cast-unit1 .cast-img-area {
		width: 100%;
		height: auto;
		padding: 20vw 0 10vw;
		position: relative;
		display: block;
	}
	#cast .cast-unit1 .cast-img-area .main-c1 {
		width: 73%;
		height: auto;
		position: absolute;
		top: -3%;
		left: 3%;
		opacity: 0;
		z-index: 2;
	}
	#cast .cast-unit1 .cast-img-area .main-c2 {
		width: 75%;
		height: auto;
		position: absolute;
		top: 5%;
		left: 3%;
		opacity: 0;
		z-index: 2;
	}
	#cast .cast-unit1 .cast-img-area .cast-photo {
		width: 80%;
		height: auto;
		margin: 0 10%;
		position: relative;
		transform: scale(0);
	}
	#cast .cast-unit1 .cast-img-area .actor-name {
		width: 95%;
		height: auto;
		position: absolute;
		bottom: 5%;
		right: 5%;
		opacity: 0;
		text-align: right;
	}
	#cast .cast-unit1 .cast-img-area .actor-name img {
		width: auto;
		height: 8vw;
	}
	#cast .cast-unit1 .profle {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: left;
		opacity: 0;
	}
	#cast .cast-unit1 .filmo {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: center;
		opacity: 0;
	}
	#cast #other-casts .cast-unit2 {
		width: 100%;
		height: auto;
		margin: 10vw 0 20vw;
		padding: 0;
	}
	#cast #other-casts .cast-unit2 .cast-img-area {
		width: 100%;
		height: auto;
		padding: 20vw 0 10vw;
		position: relative;
		display: block;
	}
	#cast #other-casts .cast-unit2 .cast-img-area .role-catch {
		height: auto;
		position: absolute;
		opacity: 0;
		z-index: 2;
	}
	#cast #other-casts .cast-unit2 .cast-img-area .other-c1 {
		width: 78%;
		top: -2%;
		left: 3%;
	}
	#cast #other-casts .cast-unit2 .cast-img-area .other-c2 {
		width: 57%;
		top: 2%;
		left: 3%;
	}
	#cast #other-casts .cast-unit2 .cast-img-area .other-c3 {
		width: 55%;
		top: -5%;
		left: 3%;
	}
	#cast #other-casts .cast-unit2 .cast-img-area .cast-photo {
		width: 80%;
		height: auto;
		margin: 0 10%;
		position: relative;
		transform: scale(0);
	}
	#cast #other-casts .cast-unit2 .cast-img-area .actor-name {
		width: 95%;
		height: auto;
		position: absolute;
		bottom: 5%;
		right: 5%;
		opacity: 0;
		text-align: right;
	}
	#cast #other-casts .cast-unit2 .cast-img-area .actor-name img {
		width: auto;
		height: 8vw;
	}
	#cast #other-casts .cast-unit2 .profle {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: left;
		opacity: 0;
	}
	#cast #other-casts .cast-unit2 .filmo {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: center;
		opacity: 0;
	}
	#cast .director {
		width: 100%;
		height: auto;
		margin: 10vw 0 20vw;
		padding: 0;
	}
	#cast .director .cast-img-area {
		width: 100%;
		height: auto;
		position: relative;
	}
	#cast .director .cast-img-area .cast-photo {
		width: 80%;
		height: auto;
		margin: 0 10%;
		position: relative;
		opacity: 0;
	}
	#cast .director .cast-img-area .actor-name {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		opacity: 0;
		text-align: center;
	}
	#cast .director .cast-img-area .actor-name img {
		width: 70%;
	}
	#cast .director .profle {
		width: 90%;
		height: auto;
		margin: 2vw 5%;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: left;
		opacity: 0;
	}
	#cast .director .filmo {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: center;
		opacity: 0;
	}
	
		



}

/* ========================================
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: 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:8px 5px;
	padding:3px 0;
	display: flex;
	justify-content: center;
}


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: relative;
}
footer #foot-bg {
	width: 100%;
	height: auto;
}
footer #foot-logo {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 12%;
	opacity: 0;
}
footer #foot-logo img {
	width: 22%;
}
footer .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 1;
	position: absolute;
	top: 37%;
}
footer .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 50s infinite linear 0s both;
}
footer .top-slide-wrap .top-slide .content {
	width: 28vw;
	height: auto;
}
footer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
footer #sns-link-foot {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 1;
	position: absolute;
	bottom: 10%;
}
footer #sns-link-foot li {
	width: 3%;
	height: auto;
	margin: 0 1%;
}
footer #sns-link-foot li img:hover {
	animation: flash 1.5s;
}
footer #button-area {
	position: absolute;
	bottom: 0;
}




@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 10%;
		opacity: 0;
	}
	footer #foot-logo img {
		width: 65%;
	}
	footer .top-slide-wrap {
		display: block;
		width: 100%;
		height: auto;
		display: flex;
		align-items: center;
		overflow: hidden;
		opacity: 1;
		position: absolute;
		top: 33%;
	}
	footer .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide-rev 50s infinite linear 0s both;
	}
	footer .top-slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
	}
	footer #sns-link-foot {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 1;
		position: absolute;
		bottom: 21%;
	}
	footer #sns-link-foot li {
		width: 12%;
		height: auto;
		margin: 0 2%;
	}
	
}
@media (max-width: 510px) {

}

/* ========================================
ダウンロード
========================================== */

body#dl-body:before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(../download/images/BSK-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: bottom center;
	animation: none;
  }
  body#dl-body::after{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-9;
	width:100%;
	height:100vh;
	background-color: rgba(255, 255, 255, 0.4);
	animation: none;
  }  
  .dlButton {
	  background-color:#fff;
	  border:1px solid #678DC9;
	  display:inline-block;
	  cursor:pointer;
	  color:#678DC9;
	  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:#f6ecec;
	  border:1px solid #ED7C86;
	  color:#ED7C86;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#678DC9 !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#f6ecec;
	  color:#ED7C86 !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:#031018;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:35%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#000;
	  margin:20px 0 5px;
	  font-size: 0.9em;
	  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;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }  
  .dl-wrap .img-box {
	  width:22%;
	  height:auto;
	  padding:0 1%;
	  margin:50px 1%;
	  color:#000;
	  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;
  }
