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: #fff;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
@keyframes fade1 {
	0% {
    opacity: 0;
	}
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
	100% {
    opacity: 0;
	}
}
@keyframes fade2 {
	0% {
    opacity: 1;
	}
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
	100% {
    opacity: 1;
	}
}
body::before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(../img/FIXBG-1.jpg) center no-repeat;
	background-size: cover;
	background-position: center center;
	min-width: 100%;
	min-height: 100%;
	animation: fade1 ease-in 6s;
	animation-iteration-count: infinite;
}
  body::after{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-9;
	width:100%;
	height:100vh;
	background:url(../img/FIXBG-2.jpg) center no-repeat;
	background-size: cover;
	background-position: center center;
	min-width: 100%;
	min-height: 100%;
	animation: fade2 ease-in 6s;
	animation-iteration-count: infinite;
}


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;
}
@-webkit-keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
@keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
br.sponly {display:none;}
.pcimg {display: inline;}
.spimg {display: none;}

@media (max-width: 800px) {
	.pcimg {display: none;}
	.spimg {display: inline;}
	br.sponly {display:inline;}
	body::before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(../img/FIXBG-SP1.jpg) no-repeat;
		background-size: cover;
		background-position: right center;
		min-width: 100%;
		min-height: 100%;
		animation: fade1 ease-in 6s;
		animation-iteration-count: infinite;
	}
	  body::after{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-9;
		width:100%;
		height:100vh;
		background:url(../img/FIXBG-SP2.jpg) no-repeat;
		background-size: cover;
		background-position: left center;
		min-width: 100%;
		min-height: 100%;
		animation: fade2 ease-in 6s;
		animation-iteration-count: infinite;
	}
	
	
}

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

/* 非表示 */
.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:auto;
	margin:0;
	padding:0;
	animation-name: anime1;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
	opacity:0;
}
#loader #load2 {
	width:100%;
	height:auto;
	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;
	opacity:0;
	position: absolute;
	top: 0;
	left: 0;
}
#loader #load3 {
	width:100%;
	height:auto;
	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;
	opacity:0;
	position: absolute;
	top: 0;
	left: 0;
}
#loader #load1 img ,
#loader #load2 img ,
#loader #load3 img {
	width:100%;
	height:auto;
	vertical-align: bottom;
}
@keyframes anime1 {
	0% {	opacity:1;	}
	50% {	opacity:1;	}
	100% {	opacity:1;	}
}
@keyframes anime2 {
	0% {	opacity:0;	}
	33% {	opacity:1;	}
	100% {	opacity:1;	}
}
@keyframes anime3 {
	0% {	opacity:0;	}
	66% {	opacity:1;	}
	100% {	opacity:1;	}
}




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

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




}




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

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:10px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #9A151A, transparent);
	background: -webkit-linear-gradient(top, #9A151A, transparent);
	background: linear-gradient(to bottom, #9A151A, transparent);
	z-index:1001;
	transition-duration: 0.6s;
	opacity: 0;
}

#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:5px 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: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 {
	color:#fff;
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	color:#8375A7;
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.6vw;
	line-height:1.8vw;
	text-align: center;
	color: #fff;
	font-family: 'Cambria Math','Georgia',sans-serif;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.85vw;
	line-height:0.85vw;
	text-align: center;
	color: #fff;
}
#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:rgba( 0,0,0 , 0.8 );
	color:#fff;
	transition: all .6s;
	z-index: 200000;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
	position: fixed;
	left: 15px;
	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.1vw 14px;
  }
  .global-nav__item a {
	display: block;
	padding: 4px 0;
	text-decoration: none;	
	color: #fff;
	font-family: 'Mongolian Baiti','Georgia',sans-serif;
	transition: all .6s;
  }  
  .global-nav__item a:hover {
	color:#fff;
  }  
  .global-nav__item a .en {
	width: 100%;
	font-size:2vw;
	font-family: 'Cambria Math','Georgia',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: 'Libre Baskerville', serif;
  } 
  .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%;
  
  }
  .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: 'Libre Baskerville', 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: 30px;
	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:5vw;
}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3vw;
	}

   .global-nav #menu-logo {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0 10px;
	text-align:center;
}  
  .global-nav #menu-logo img {
	width:50% !important;
	height:auto;
}
.global-nav ul.nav-sns li {
	width: 12%;
	margin: 0 4%;
}
.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: 7px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:5.6vw;
	}
		.global-nav__item a .jp {
			width: 100%;
			font-size:3.6vw;
		}
}




/* ========================================
予告編モーダル
========================================== */

.trailer-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	overflow: hidden !important;
	z-index: 1500;
  }
  .trailer-overlay:after {
	position: relative;
  }
  .trailer-bg {
	width: 100vw;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	position: absolute;
	top: 0;
	left: 0;
  }
  .trailer-close {
	display: none;
	position: absolute;
	top: -40px;
	right: -40px;
	cursor: pointer;
	z-index: 16000;
  }
  .trailer-close img {
	  width: 3vw;
  }
  .trailer-wrapall {
	width: 100vw;
	height: 100%;
	overflow-x: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
		-ms-flex-align: center;
			align-items: center;
	position: absolute;
	top: 0;
	left: 0;
  }
  .trailer-video {
	z-index: 1500;
	width: 100%;
	max-width: 1100px;
	position: relative;
  }  

  @media screen and (max-height: 700px) {
	.trailer-video {
	  max-width: 137.14286vh;
	}
  }

  .trailer-moviewrap {
	clear: both;
	z-index: 2000;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 56.25%;
	height: 0px;
	position: relative;
	background: #000;
  }
  .trailer-moviewrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  .trailer-loader {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto auto;
	width: 128px;
	height: 128px;
	z-index: 0;
  }
  .trailer-tabs {
	  width: 100%;
	  height: auto;
	  margin: 0;
	  padding: 0;
	  list-style-type: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
	margin-top: 10px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
		-ms-flex-align: center;
			align-items: center;  
  } 
  .trailer-tab {
	width: 29%;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 1.2;
	border: solid 1px #fff;
	-webkit-transition: .3s;
	transition: .3s;
	cursor: pointer;
	padding: 6px 0;
	margin: 0 1%;
  } 
  .trailer-tab:nth-child(n+4) {
	margin-top: 10px;
  }
  .trailer-tab.active, .trailer-tab:hover {
	background: #fff;
	color: #000;
  }
  .trailer-tab.active {
	cursor: default;
  }

/* 以下タブレット・スマホ */

@media (max-width: 800px) {
	.trailer-close {
		display: none;
		position: absolute;
		top: -10.5vw;
		right: 40px;
		cursor: pointer;
		z-index: 16000;
	  }
	  .trailer-close img {
		  width: 10vw;
	  }

}	


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
}
.modal__bg{
	background:url(../img/message_bg_pc.jpg) no-repeat;
	opacity: 0.8;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.modal__content{
    width: 60%;
	height: 70%;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: auto;
	overflow-y: scroll;
}

.modal__content::-webkit-scrollbar {
    width: 10px;
}
.modal__content::-webkit-scrollbar-track {
    background-color: rgb(26, 157, 30);
}
.modal__content::-webkit-scrollbar-thumb {
	background-color: #170908;
    box-shadow: inset 0 0 6px rgba(205, 18, 18, 0.3);
}

.modal__content .msg-unit {
	width: 94%;
	height: auto;
	margin: 3vw 0;
	padding: 2vw 3%;
	background-color: #170908;
	border-radius: 20px;
}
.modal__content .msg-unit h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 0;
	text-align: center;
}
.modal__content .msg-unit h2 img {
	width: 60%;
}
.modal__content .msg-unit p {
	color: #fff;
	margin: 1vw 0 8vw;
	font-size: 1.3vw;
}
.modal__content .msg-unit p span {
	display: inline-block;
	width: 100%;
	margin-top: 2vw;
	text-align: right;
}
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 5%;
	right: 13%;
}
.batsu img {
	width: 100%;
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
	.modal__content{
		width: 86%;
		height: 80%;
		padding: 2%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: auto;
		overflow-y: scroll;
	}
	.modal__content .msg-unit {
		width: 90%;
		height: auto;
		margin: 3vw 0;
		padding: 5vw 5%;
		background-color: #170908;
		border-radius: 20px;
	}
	.modal__content .msg-unit h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0;
		text-align: center;
	}
	.modal__content .msg-unit h2 img {
		width: 80%;
	}
	.modal__content .msg-unit p {
		color: #fff;
		font-size: 4vw;
		margin: 2vw 0 17vw;
	}
	.modal__content .msg-unit p span {
		display: inline-block;
		width: 100%;
		margin-top: 2vw;
		text-align: right;
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 13%;
	}
	

}


/* ========================================
トップメイン画像まわり
========================================== */

#topmain-sp { 
	display:none !important;
}

#topmain-pc {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	background-color: #6F0201;
	overflow: hidden;
}
#topmain-pc h1 {
	width:100%;
	height:auto;
	text-align:center;
	opacity:0;
	position:absolute;
	top:0;
	left:0;
}
#topmain-pc h1 img {
	width: 20%;
}

#topmain-pc #up1 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
}
#topmain-pc #up2 { 
	width:100%;
	height:auto;
	text-align:center;
	opacity:1;
	position:absolute;
	top:0;
	left:0;
}
#topmain-pc #up3 { 
	width:100%;
	height:auto;
	text-align:center;
	opacity:0;
	position:absolute;
	top:0;
	left:0;
}
#topmain-pc #up1 img ,
#topmain-pc #up2 img ,
#topmain-pc #up3 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}
#topmain-pc #msg-pc {
	width: 15%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 15%;
	left: 16.5%;
	opacity: 0;
}
#topmain-pc #msg-pc img {
	width: 100%;
}
#topmain-pc #msg-pc img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#topmain-pc ul#banner-pctop {
	width: 34%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 3%;
	left: 7%;
	opacity: 0;
}
#topmain-pc ul#banner-pctop li {
	width: 43%;
	height: auto;
	margin: 0 2%;
}
#topmain-pc ul#banner-pctop li img {
	width: 100%;
}
#topmain-pc ul#banner-pctop li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#topmain-pc .top-grad {
	width: 300%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(left, #6F0201 50%, transparent);
	background: -webkit-linear-gradient(left, #6F0201 50%, transparent);
	background: linear-gradient(to right, #6F0201 50%, transparent);
}
#topmain-pc .trailer {
	width:24%;
	height:auto;
	margin:0;
	padding:0;
	overflow-x: hidden;
	position: absolute;
	top: 65%;
	right:5%;
	z-index: 5;
	opacity: 0;
}

#topmain-pc .trailer .video-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#topmain-pc .trailer .video-wrap video {
	width:90%;
	height: auto;
	margin: 2vw 5% 0;
	padding: 0;
}




/* 以下タブレット・スマホ */
@media (max-width: 800px) {
#topmain-pc {
	display:none !important;
}
#topmain-sp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	background:#6F0201;
	position:relative;
	overflow-x: hidden;
}
#topmain-sp #up1sp {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}
#topmain-sp #up2sp { 
	width:100%;
	height:auto;
	position:absolute;
	top:0;
	left:0;
	opacity:1;
}
#topmain-sp #up3sp { 
	width:100%;
	height:auto;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}
#topmain-sp #up1sp img ,
#topmain-sp #up2sp img ,
#topmain-sp #up3sp img { 
	width:100%;
	height:auto;
	vertical-align:bottom;
}
#topmain-sp .top-grad {
	width: 300%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(left, #6F0201 50%, transparent);
	background: -webkit-linear-gradient(left, #6F0201 50%, transparent);
	background: linear-gradient(to right, #6F0201 50%, transparent);
}
#topmain-sp .trailer {
	width:90%;
	height:auto;
	margin:0;
	padding:2vw 5%;
	overflow-x: hidden;
	opacity: 0;
	background-color: #170908;
}

#topmain-sp .trailer .video-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#topmain-sp .trailer .video-wrap video {
	width:90%;
	height: auto;
	margin: 2vw 5% 0;
	padding: 0;
}


}





/* ========================================
ブリッジ
========================================== */
#bridge {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0 3vw;
	background-color: #170908;
}
#bridge #catch-pc {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
}
#bridge #catch-pc img {
	width: 60%;
}
#bridge #billing-pc {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
}
#bridge #billing-pc img {
	width: 50%;
}
#bridge ul#theater-banners {
	display: block;
	width:100%;
	height:auto;
	list-style-type: none;
	padding:2vw 0;
	margin:0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge ul#theater-banners li {
	width: 100%;
	text-align: center;
	margin: 1vw 0;
}
#bridge ul#theater-banners li img {
	width: 15%;
}
#bridge ul#theater-banners li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#bridge ul#ticket-banner {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge ul#ticket-banner li {
	width: 15%;
	height: auto;
	margin: 0 2%;
}
#bridge ul#ticket-banner li img {
	width: 100%;
}
#bridge ul#ticket-banner li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}

#bridge ul.sns-link {
	display: block;
	width:100%;
	height:auto;
	list-style-type: none;
	padding:1vw 0;
	margin:0;
	display: flex;
	justify-content: center;
	opacity: 1;
}
#bridge ul.sns-link li {
	width: 3%;
	height: auto;
	padding: 0;
	margin: 0 1%;
}
#bridge ul.sns-link li img {
	width:100%;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#bridge ul.sns-link li img:hover {
opacity: 1;
-webkit-animation: flash 1.5s;
animation: flash 1.5s;
}
#bridge #msg-sp ,
#bridge ul#banner-sptop ,
#bridge #date-sp {
	display: none;
}



/* 以下スマホ */
@media (max-width: 800px) {
	#bridge {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 10vw;
	}
	#bridge #catch-pc {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0;
		text-align: center;
	}
	#bridge #catch-pc img {
		width: 100%;
	}
	#bridge #billing-pc {
		display: none;
	}
	#bridge #msg-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#bridge #msg-sp img {
		width: 63%;
	}	
	#bridge ul#banner-sptop {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge ul#banner-sptop li {
		width: 63%;
		height: auto;
		margin: 2vw 0;
	}
	#bridge ul#banner-sptop li img {
		width: 100%;
	}
	#bridge #date-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0;
		text-align: center;
	}
	#bridge #date-sp img {
		width: 82%;
	}
	#bridge ul#theater-banners {
		display: block;
		width:100%;
		height:auto;
		list-style-type: none;
		padding:0 0 2vw;
		margin:0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge ul#theater-banners li {
		width: 100%;
		text-align: center;
		margin: 2vw 0;
	}
	#bridge ul#theater-banners li img {
		width: 63%;
	}
	#bridge ul#ticket-banner li {
		width: 63%;
		height: auto;
		margin: 2vw 2%;
	}

	#bridge ul.sns-link {
		display: block;
		width:100%;
		height:auto;
		list-style-type: none;
		padding:15vw 0 8vw;
		margin:0;
		display: flex;
		justify-content: center;
		opacity: 1;
		order: 1;
	}
	#bridge ul.sns-link li {
		width: 12%;
		height: auto;
		padding: 0;
		margin: 0 3%;
	}
	#bridge ul.sns-link li img {
		width:100%;
		opacity: 1;
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
	}
	#bridge ul.sns-link li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
	}
	#bridge #billing-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0;
		text-align: center;
		order: 2;
	}
	#bridge #billing-sp img {
		width: 95%;
	}

}


/* ========================================
ストーリー＆イントロダクション
========================================== */
#story {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#story #bg-slider-wrap {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#story #bg-slider-wrap .bg-slider {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
#story #bg-slider-wrap .bg-slider .slide-img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
#story #bg-slider-wrap .bg-slider .slide-img img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#story #bg-slider-wrap #bg-slider-futa {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}
#story #story-up-bg ,
#story #story-low-bg {
	display: none;
}
#story #story-contents {
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 5%;
	left: 45%;
}
#story #story-contents h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	text-align: center;
}
#story #story-contents h2 img {
	width: 50%;
}
#story #story-contents h3 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 1vw;
	text-align: left;
}
#story #story-contents h3 img {
	height: 1.6vw;
}
#story #story-contents h3.nigyo img {
	height: 3.2vw;
}
#story #story-contents p {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	color: #fff;
	font-size: 1.3vw;
}


/* 以下スマホ */
@media (max-width: 800px) {
	#story #bg-slider-wrap {
		display: none;
	}
	#story #story-contents {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	#story #story-contents #story-upper {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
	}
	#story #story-contents #story-upper #story-up-bg {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#story #story-contents #story-upper #story-up-bg img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#story #story-contents #story-upper #story-up-contents {
		width: 90%;
		height: auto;
		margin: 0;
		padding: 0 5%;
		position: absolute;
		top: 30%;
		left: 0;
	}
	#story #story-contents #story-upper #story-up-contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#story #story-contents #story-upper #story-up-contents h2 img {
		width: 80%;
	}
	#story #story-contents #story-upper #story-up-contents h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: left;
	}
	#story #story-contents #story-upper #story-up-contents h3 img {
		width: 100%;
		height: auto;
	}
	#story #story-contents #story-upper #story-up-contents p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 4vw;
		line-height: 5.8vw;
	}
	#story #story-contents #story-lower {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
	}
	#story #story-contents #story-lower #story-low-bg {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 70vw;
		background-color: #170908;
	}
	#story #story-contents #story-lower #story-low-bg img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#story #story-contents #story-lower #story-low-contents {
		width: 90%;
		height: auto;
		margin: 0;
		padding: 0 5%;
		position: absolute;
		top: 32%;
		left: 0;
	}
	#story #story-contents #story-lower #story-low-contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#story #story-contents #story-lower #story-low-contents h2 img {
		width: 80%;
	}
	#story #story-contents #story-lower #story-low-contents h3 {
		width: 100%;
		height: auto;
		margin: 10vw 0 5vw;
		text-align: left;
	}
	#story #story-contents #story-lower #story-low-contents h3 img {
		width: 100%;
		height: auto;
	}
	#story #story-contents #story-lower #story-low-contents p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 4vw;
		line-height: 5.8vw;
	}







}


/* ========================================
固定背景
========================================== */
#fixed-area {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 20vw 0;
}
#fixed-area #tate-catch {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
#fixed-area #tate-catch img {
	width: 2%;
}

/* 以下スマホ */
@media (max-width: 800px) {
	#fixed-area {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 100vw 0;
	}
	#fixed-area #tate-catch {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	#fixed-area #tate-catch img {
		width: 8%;
	}


}


/* ========================================
スライダー
========================================== */
#slider-area {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#slider-area .slider-wrap {
	width: 100%;
	height: auto;
	margin: 0;
}
#slider-area #red-slider-area {
	background-color: #AA0003;
	padding: 5vw 0 2.9vw;
}
#slider-area #green-slider-area {
	background-color: #064A01;
	padding: 2.9vw 0 5vw;
}
#slider-area .slider-wrap .red-slider-sp ,
#slider-area .slider-wrap .green-slider-sp {
	display: none;
}
#slider-area .slider-wrap .red-slider ,
#slider-area .slider-wrap .green-slider {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
#slider-area .slider-wrap .red-slider .slide-img ,
#slider-area .slider-wrap .green-slider .slide-img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
#slider-area .slider-wrap .red-slider .slide-img img ,
#slider-area .slider-wrap .green-slider .slide-img img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#slider-area #slider-logo {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
}
#slider-area #slider-logo img {
	width: 20%;
}


/* 以下スマホ */
@media (max-width: 800px) {
	#slider-area #red-slider-area {
		background-color: #AA0003;
		padding: 20vw 0 20vw;
	}
	#slider-area #green-slider-area {
		background-color: #064A01;
		padding: 20vw 0 20vw;
	}
	#slider-area .slider-wrap .red-slider ,
	#slider-area .slider-wrap .green-slider {
		display: none;
	}
	#slider-area .slider-wrap .red-slider-sp ,
	#slider-area .slider-wrap .green-slider-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#slider-area .slider-wrap .red-slider-sp .slide-img ,
	#slider-area .slider-wrap .green-slider-sp .slide-img {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#slider-area .slider-wrap .red-slider-sp .slide-img img ,
	#slider-area .slider-wrap .green-slider-sp .slide-img img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#slider-area #slider-logo img {
		width: 85%;
	}

}

/* ========================================
書籍
========================================== */
#books {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#books #sp-bookh2 {
	display: none;
}
#books #pc-bookh2 {
	display: block;
}
#books #book-bg {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#books #book-bg img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#books #book-contents {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}
#books #book-contents h2 {
	width: 100%;
	height: auto;
	margin: 4vw 0 3vw;
	padding: 0;
	text-align: center;
}
#books #book-contents h2 img {
	width: 20%;
}
#books #book-contents ul {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#books #book-contents ul li {
	width: 35%;
	height: auto;
	margin: 0 1%;
	padding: 0;
	display: flex;
	justify-content: center;
}
#books #book-contents ul li .book-img {
	width: 30%;
}
#books #book-contents ul li .iwanami {
	width: 40%;
}
#books #book-contents ul li .book-img img {
	width: 100%;
}
#books #book-contents ul li .book-title {
	width: 60%;
	margin-left: 2%;
	color: #fff;
	font-size: 1.3vw;
}
#books #book-contents ul li .book-title span {
	color: #F5C881;
	font-size: 1.1vw;
}
#books #book-contents #comics {
	width: 100%;
	height: auto;
	margin: 5vw 0 0;
	padding: 0;
	display: flex;
	justify-content: center;
}
#books #book-contents #comics .comic-img {
	width: 10%;
	height: auto;
	margin: 0 1%;
}
#books #book-contents #comics .comic-img img {
	width: 100%;
}
#books #book-contents #comics .comic-title {
	width: 50%;
	height: auto;
	margin: 0 1%;
	color: #fff;
	font-size: 1.3vw;
}
#books #book-contents #comics .comic-title .comic-auther {
	color: #F5C881;
	font-size: 1.1vw;
}
#books #book-contents #comics .comic-title .comic-copy {
	display: inline-block;
	color: #F5C881;
	font-size: 0.8vw;
	line-height: 1vw;
}


/* 以下スマホ */
@media (max-width: 800px) {
	#books {
		background-color: #7E2E0E;
	}
	#books #pc-bookh2 {
		display: none;
	}
	#books #sp-bookh2 {
		display: block;
	}
	#books #book-bg h2 {
		width: 40%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 40%;
		left: 5%;
	}
	#books #book-bg h2 img {
		width: 100%;
	}
	#books #book-contents {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0 0 10vw;
		position: static;
		background-color: #7E2E0E;
	}
	#books #book-contents ul {
		padding: 10vw 0 0;
	}
	#books #book-contents ul li {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#books #book-contents ul li .book-img {
		width: 100%;
		text-align: center;
	}
	#books #book-contents ul li .book-img img {
		width: 40%;
	}
	#books #book-contents ul li .iwanami img {
		width: 50%;
	}
	#books #book-contents ul li .book-title {
		width: 100%;
		margin-left: 0;
		color: #fff;
		font-size: 4.5vw;
		text-align: center;
	}
	#books #book-contents ul li .book-title span {
		color: #F5C881;
		font-size: 4vw;
	}
	#books #book-contents #comics {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#books #book-contents #comics .comic-img {
		width: 30%;
		height: auto;
		margin: 0 1%;
		padding: 0;
		text-align: center;
	}
	#books #book-contents #comics .comic-img img {
		width: 100%;
	}
	#books #book-contents #comics .comic-title {
		width: 98%;
		height: auto;
		margin: 0 1%;
		color: #fff;
		font-size: 4.5vw;
		text-align: center;
	}
	#books #book-contents #comics .comic-title .comic-auther {
		color: #F5C881;
		font-size: 4vw;
		text-align: center;
	}
	#books #book-contents #comics .comic-title .comic-copy {
		display: inline-block;
		color: #F5C881;
		font-size: 3.2vw;
		line-height: 3.5vw;
		text-align: left;
	}
	
}


/* ========================================
受賞歴
========================================== */
#award {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}
#award #award-bg {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
#award #award-bg img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#award #award-contents {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 5%;
	left: 0;
}
#award #award-contents h2 {
	width: 100%;
	height: auto;
	margin: 2vw 0 5vw;
	padding: 0;
	text-align: center;
}
#award #award-contents h2 img {
	width: 12%;
}
#award #award-contents ul.award-list {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#award #award-contents ul.award-list li {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
	color: #F5C881;
}
#award #award-contents ul.award-list li img {
	width: 25%;
}
#award #award-contents h3 {
	width: 100%;
	height: auto;
	margin: 3vw 0 0;
	text-align: center;
	color: #F5C881;
}


/* 以下スマホ */
@media (max-width: 800px) {
	#award #award-contents h2 {
		width: 100%;
		height: auto;
		margin: 2vw 0 5vw;
		padding: 0;
		text-align: center;
	}
	#award #award-contents {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 3%;
		left: 0;
	}
	#award #award-contents h2 img {
		width: 40%;
	}
	#award #award-contents ul.award-list li {
		width: 96%;
		height: auto;
		margin: 1vw 2%;
		text-align: center;
		color: #F5C881;
		font-size: 3.3vw;
	}
	#award #award-contents ul.award-list li img {
		width: 80%;
	}
	#award #award-contents h3 {
		width: 100%;
		height: auto;
		margin: 10vw 0 0;
		text-align: center;
		color: #F5C881;
	}
	
}

/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background:url(../img/cast-bg-pc.jpg) center no-repeat;
	background-size: cover;
	background-position: right bottom;
	overflow-x: hidden;
	position: relative;
}
#cast ul {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#cast ul li {
	width: 50%;
	height: auto;
	margin: 0;
	padding: 3vw 0 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#cast ul li .cast-img {
	width: 30%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
#cast ul li .cast-img img {
	width: 100%;
}
#cast ul li .cast-txt {
	width: 60%;
	height: auto;
	margin: 0 0 0 2%;
}
#cast ul li .cast-txt .cast-name {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 1vw;
	text-align: left;
}
#cast ul li .cast-name img {
	width: 80%;
}
#cast ul li p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
}
#cast ul li#cast1 ,
#cast ul li#cast2 {
	padding-top: 8vw;
}

#cast ul li#cast1 ,
#cast ul li#cast4 ,
#cast ul li#cast5  {
	background-color: rgba( 170,0,3 , 0.7 );
}
#cast ul li#cast2 ,
#cast ul li#cast3 ,
#cast ul li#cast6  {
	background-color: rgba( 6,74,1 , 0.7 );
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 0;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
#cast h2 img {
	width: 9%;
}


/* 以下スマホ */
@media (max-width: 800px) {
	#cast {
		width: 100%;
		height: auto;
		min-height: 100%;
		margin: 0;
		padding: 0;
		background:url(../img/cast-bg-sp.jpg) center no-repeat;
		background-size: cover;
		background-position: right bottom;
		overflow-x: hidden;
		position: relative;
	}
	#cast ul li {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 2vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#cast ul li .cast-img {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	#cast ul li .cast-img img {
		width: 70%;
	}
	#cast ul li .cast-txt {
		width: 90%;
		height: auto;
		margin: 3vw 5%;
	}
	#cast ul li .cast-txt .cast-name {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 1vw;
		text-align: center;
	}
	#cast ul li .cast-name img {
		width: 80%;
	}
	#cast ul li p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 4vw;
	}
	#cast ul li#cast3 {
		background-color: rgba( 170,0,3 , 0.7 );
	}
	#cast ul li#cast4 {
		background-color: rgba( 6,74,1 , 0.7 );
	}
	#cast ul li#cast1 {
		padding-top: 30vw;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0 0;
		text-align: center;
		position: absolute;
		top: 0;
		left: 0;
	}
	#cast h2 img {
		width: 20%;
	}

}

/* ========================================
スタッフ
========================================== */
#staff {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: -moz-linear-gradient(top, #170908 40%, transparent);
	background: -webkit-linear-gradient(top, #170908 40%, transparent);
	background: linear-gradient(to bottom, #170908 40%, transparent);
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5vw 0 3vw;
	text-align: center;
}
#staff h2 img {
	width: 9%;
}
#staff .staff-unit {
	width: 60%;
	height: auto;
	margin: 3vw 20% 8vw;
	padding: 0;
}
#staff .staff-unit .staff-name {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	text-align: center;
}
#staff .staff-unit .staff-name img {
	width: 50%;
}
#staff .staff-unit .staff-img {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	padding: 0;
	text-align: center;
}
#staff .staff-unit .staff-img img {
	width: 40%;
}
#staff .staff-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.3vw;
}


/* 以下スマホ */
@media (max-width: 800px) {
	#staff {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		background: -moz-linear-gradient(top, #170908 70%, transparent);
		background: -webkit-linear-gradient(top, #170908 70%, transparent);
		background: linear-gradient(to bottom, #170908 70%, transparent);
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 15vw 0 10vw;
		text-align: center;
	}
	#staff h2 img {
		width: 20%;
	}
	#staff .staff-unit {
		width: 90%;
		height: auto;
		margin: 3vw 5% 20vw;
		padding: 0;
	}
	#staff .staff-unit .staff-name {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		text-align: center;
	}
	#staff .staff-unit .staff-name img {
		width: 75%;
	}
	#staff .staff-unit .staff-img {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		padding: 0;
		text-align: center;
	}
	#staff .staff-unit .staff-img img {
		width: 80%;
	}
	#staff .staff-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 4vw;
	}
	


}


/* ========================================
SNSボタンアリア
========================================== */

#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:30px 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 5px;
}

#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:30vw 0 0;
	margin:0;
	position: relative;
}
footer #foot-logo {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align: center;
}
footer #foot-logo img {
	width: 30%;
}
footer ul.sns-link {
	display: block;
	width:100%;
	height:auto;
	list-style-type: none;
	padding:1vw 0 10vw;
	margin:0;
	display: flex;
	justify-content: center;
	opacity: 1;
}
footer ul.sns-link li {
	width: 3%;
	height: auto;
	padding: 0;
	margin: 0 1%;
}
footer ul.sns-link li img {
	width:100%;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
footer ul.sns-link li img:hover {
opacity: 1;
-webkit-animation: flash 1.5s;
animation: flash 1.5s;
}
footer .copyright {
	width:100%;
	height:auto;
	padding:10px 0;
	color:#fff;
	text-align:center;
	font-size:0.9vw;
}

@media (max-width: 800px) {

	footer {
		width:100%;
		height:auto;
		padding:60vw 0 0;
		margin:0;
		position: relative;
	}
	footer #foot-logo {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		text-align: center;
	}
	footer #foot-logo img {
		width: 70%;
	}
	footer ul.sns-link {
		display: block;
		width:100%;
		height:auto;
		list-style-type: none;
		padding:40vw 0 10vw;
		margin:0;
		display: flex;
		justify-content: center;
		opacity: 1;
	}
	footer ul.sns-link li {
	width: 12%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}
footer #button-area {
	position: static;
}
footer .copyright {
	width:90%;
	height:auto;
	padding:10px 5%;
	color:#fff;
	text-align:center;
	font-size:0.7em;
}

}

@media (max-width: 515px) {
	footer ul.sns-link-btn {
		top: 50%;
	}
}
@media (max-width: 380px) {
	footer ul.sns-link-btn {
		top: 53%;
	}
}

/* ========================================
コメント
========================================== */
body#com-body {
	width: 100%;
	height: auto;
}
body#com-body > footer {
	position: static;
}	
body#com-body::before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(../img/message_bg_pc.jpg) center no-repeat;
	background-size: cover;
	background-position: center center;
	min-width: 100%;
	min-height: 100%;
	animation: xxx ease-in 6s;
}
body#com-body::after{
	background:url(../img/xxxx.jpg) center no-repeat;
	animation: xxx ease-in 6s;
}
body#com-body #pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:10px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, rgb(52, 177, 117), transparent);
	background: -webkit-linear-gradient(top, rgb(52, 177, 117), transparent);
	background: linear-gradient(to bottom, rgb(52, 177, 117), transparent);
	z-index:1001;
	transition-duration: 0.6s;
	opacity: 1;
}
body#com-body footer {
	width:100%;
	height:30px;
	padding:0 !important;
	margin:0;
	position: relative;
}
#comment {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 7vw 0 0;
}
@keyframes comfade1 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	15% {opacity: 1;}
	60% {opacity: 1;}
	65% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes comfade2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	55% {opacity: 0;}
	60% {opacity: 1;}
	90% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}
.comimg1-active {
	animation: comfade1 ease-in 15s;
	animation-iteration-count: infinite;
}
.comimg2-active {
	animation: comfade2 ease-in 15s;
	animation-iteration-count: infinite;
}
.comimg3-active {
	animation: comfade1 ease-in 20s;
	animation-iteration-count: infinite;
}
.comimg4-active {
	animation: comfade2 ease-in 17s;
	animation-iteration-count: infinite;
}
.comimg5-active {
	animation: comfade2 ease-in 20s;
	animation-iteration-count: infinite;
}
.comimg6-active {
	animation: comfade1 ease-in 14s;
	animation-iteration-count: infinite;
}
.comimg7-active {
	animation: comfade1 ease-in 22s;
	animation-iteration-count: infinite;
}
.comimg8-active {
	animation: comfade2 ease-in 19s;
	animation-iteration-count: infinite;
}
#comment #comimg1 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 2%;
	left: 5%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg2 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 30%;
	left: 0%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg3 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 50%;
	left: 8%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg4 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 75%;
	left: 1%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg5 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 5%;
	right: 1%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg6 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 30%;
	right: 10%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg7 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 50%;
	right: 5%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg8 {
	width: 20%;
	height: auto;
	position: fixed;
	top: 70%;
	right: 3%;
	opacity: 0;
	z-index: -8;
}
#comment #comimg1 img ,
#comment #comimg2 img ,
#comment #comimg3 img ,
#comment #comimg4 img ,
#comment #comimg5 img ,
#comment #comimg6 img ,
#comment #comimg7 img ,
#comment #comimg8 img {
	width: 100%;
}
#comment h1 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	text-align: center;
}
#comment h1 img {
	width: 15%;
}
#comment #keisho {
	width: 50%;
	height: auto;
	margin: 1vw 25% 4vw;
	padding: 0;
	text-align: right;
	font-size: 1.1vw;
	color: #fff;
}
#comment .com-sp-img {
	display: none;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	margin: 2vw 25% 8vw;
	padding: 0;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
}
#comment .com-unit .com-name {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: rgb(235, 217, 17);
	font-size: 1.5vw;
	font-weight: bold;
}
#comment .copyright {
	width: 100%;
	height: auto;
	padding: 5vw 0 0.5vw;
	margin: 0;
	text-align: center;
	font-size: 1vw;
	color: #fff;
}

@media (max-width: 800px) {
	body#com-body::before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(../img/comment-bg-1.jpg) center no-repeat;
		background-size: cover;
		background-position: center center;
		min-width: 100%;
		min-height: 100%;
		animation: xxx ease-in 6s;
	}
	body#com-body #pcheader {
		display: none;
	}
	body#com-body .hamburger {
		opacity:1;
	}
	#comment #comimg1 ,
	#comment #comimg2 ,
	#comment #comimg3 ,
	#comment #comimg4 ,
	#comment #comimg5 ,
	#comment #comimg6 ,
	#comment #comimg7 ,
	#comment #comimg8 {
		display: none;
	}
	#comment h1 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		text-align: center;
	}
	#comment h1 img {
		width: 50%;
	}
	#comment #keisho {
		width: 90%;
		height: auto;
		margin: 3vw 5% 2vw;
		padding: 0;
		text-align: right;
		font-size: 3.5vw;
		color: #fff;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		margin: 17vw 5%;
		padding: 0;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 4vw;
	}
	#comment .com-unit .com-name {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: rgb(235, 217, 17);
		font-size: 4.5vw;
		font-weight: bold;
	}
	#comment .com-sp-img {
		display: block;
		width: 100%;
		height: auto;
		margin: 5vw 0;
		padding: 10vw 0 50vw;
		position: relative;
	}
	#comment .com-sp-img .comspimg1 {
		width: 70%;
		height: auto;
		margin-left: 30%;
		padding: 0;
	}
	#comment .com-sp-img .comspimg2 {
		width: 70%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 40%;
		left: 0;
	}
	#comment .com-sp-img .comspimg3 {
		width: 70%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	#comment .com-sp-img .comspimg4 {
		width: 70%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 40%;
		left: 30%;
	}
	#comment .com-sp-img .yoko-migi {
		width: 85%;
		left: 15%;
	}
	#comment .com-sp-img .yoko-hida {
		width: 85%;
		left: 0;
	}
	#comment .com-sp-img .comspimg1 img ,
	#comment .com-sp-img .comspimg2 img ,
	#comment .com-sp-img .comspimg3 img ,
	#comment .com-sp-img .comspimg4 img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}	
	#comment .copyright {
		width: 100%;
		height: auto;
		padding: 5vw 0 0.5vw;
		margin: 0;
		text-align: center;
		font-size: 3.2vw;
		color: #fff;
	}
	

}


/* ========================================
イベント
========================================== */
body#eve-body {
	width: 100%;
	height: 100vh;
}	
body#eve-body::before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(../img/event-bg-pc.jpg) center no-repeat;
	background-size: cover;
	background-position: center center;
	min-width: 100%;
	min-height: 100%;
	animation: xxx ease-in 6s;
}
body#eve-body::after{
	background:url(../img/xxxx.jpg) center no-repeat;
	animation: xxx ease-in 6s;
}
body#eve-body #pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:10px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, rgb(75, 54, 39), transparent);
	background: -webkit-linear-gradient(top, rgb(75, 54, 39), transparent);
	background: linear-gradient(to bottom, rgb(75, 54, 39), transparent);
	z-index:1001;
	transition-duration: 0.6s;
	opacity: 1;
}
#event {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 6vw 0 0;
}
#event h1 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0 0;
	text-align: center;
}
#event h1 img {
	width: 11%;
}
#event .event-unit {
	width: 50%;
	height: auto;
	margin: 5vw 25%;
	padding: 3vw 0;
	background-color: rgba( 170,0,3 , 0.7 );
}
#event .event-unit h3 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
}
#event .event-unit h3 img {
	width: 40%;
}
#event .event-unit p {
	width: 70%;
	height: auto;
	margin: 0 10% 0 20%;
	padding: 0;
	color: #fff;
	font-size: 1.3vw;
}
#event .event-unit p a {
	color: #fff;
}
body#eve-body .copyright {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
	position: sticky;
	top: 100vh;
}


@media (max-width: 800px) {
	body#eve-body::before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(../img/event-bg-sp.jpg) center no-repeat;
		background-size: cover;
		background-position: center center;
		min-width: 100%;
		min-height: 100%;
		animation: xxx ease-in 6s;
	}
	body#eve-body #pcheader {
		display: none;
	}
	body#eve-body .hamburger {
		opacity:1;
	}
	#event h1 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0 0;
		text-align: center;
	}
	#event h1 img {
		width: 25%;
	}
	#event .event-unit {
		width: 86%;
		height: auto;
		margin: 10vw 5%;
		padding: 6vw 2%;
		background-color: rgba( 170,0,3 , 0.7 );
	}
	#event .event-unit h3 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 1vw 0;
		text-align: center;
	}
	#event .event-unit h3 img {
		width: 60%;
	}
	#event .event-unit p {
		width: 100%;
		height: auto;
		margin: 0 ;
		padding: 0;
		color: #fff;
		font-size: 3.8vw;
	}
	body#eve-body .copyright {
		font-size: 3.5vw;
	}


}