html{
  height:100%; 
}
body { 
	margin: 0; 
	padding:0;
	font-family: 'Shippori Mincho', serif;
	width:100%; 
	height:100%;
	overflow-x:hidden;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

@-webkit-keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop-slide-rev {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}
@keyframes fadeIn {
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
} 
.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}

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

	to {
	opacity: 0;
	}
}
@keyframes blurIn {
	from {
	opacity: 0;
	filter: blur(10px);
	transform: scale(4);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes zoomIn {
	from {
	transform: scale(0);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}
.fadeInZero {
	animation-name:fadeIn;
	animation-duration:0s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
} 
.fadeOutZero {
	animation-name:fadeOut;
	animation-duration:0s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
} 



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		width:100%; 
		height:100vh;
		overflow-x:hidden;
	}
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:none;}
}
@media (max-width: 610px) {
	br.sponly2 {display:inline;}
}




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

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #7facbd;
    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;
}
#loader #load1 img {
	width:100%;
	height:auto;
}
@keyframes anime1 {
	0% {	opacity:0;	}
	15% {	opacity:1;	}
	85% {	opacity:1;	}
	100% {	opacity:0;	}
}
#loader #load2 {
	width:100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: top-blood 0.3s ease 0.2s forwards;
}
#loader #load2 img {
	width:100%;
	height:auto;
}


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

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

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


}

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

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:8px 0 10px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #000 20%, transparent);
	background: -webkit-linear-gradient(top, #000 20%, transparent);
	background: linear-gradient(to bottom, #000 20%, transparent);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1.5%;
	padding:0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.5vw;
	line-height:1.5vw;
	text-align: center;
	color: #fff;
	font-family: 'EB Garamond', serif;
	font-style:italic;
	letter-spacing: 1px;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(-2px);
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 2.5vw;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.7vw;
	line-height:0.7vw;
	text-align: center;
	color: #fff;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;
	transform: translateY(-1.5vw);
}
#pcheader ul#pcmenu li a:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
.navigation {
	display: none;
	position: absolute;
	left: 5px;
	top: 5px ;
	width: 100%;
	height: 100%;
}  
.global-nav {
	position: fixed;
	right: 0;
	top: -2000px;
	width: 100%;
	height: 100%;
	min-height: 100%;
	padding-top: 100px;
	background: url(../img/GL-menu-bg-sp.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 200000;
	overflow-y: scroll;
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 300000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:90%;
	height:auto;
	margin:1vw 5% 8vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 60%;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0.1vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #000;
	transition: all .6s;
	letter-spacing: 1px;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
	transform: translateY(-10px);
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #000 !important;
	box-shadow: 0.5px 0.5px 1px 0.5px rgba(255, 255, 255, 0.6);
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#000;
	text-shadow: 0.5px 0.5px 1.5px rgba(255, 255, 255, 0.6);
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 4%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#000;
}

.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
#menu-inu {
	width: 50%;
	margin-left: 49%;
	transform: translateY(-50%);
}

  .hamburger__line--1 {
	top: 12px;
  }
  .hamburger__line--2 {
	top: 27px;
  }
  .hamburger__line--3 {
	top: 42px;
  }
  .black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
	top: 0;
  }
  .nav-open .black-bg {
	opacity: .8;
	visibility: visible;
  }
  .nav-open .hamburger__line--1 {
	transform: rotate(45deg);
	top: 30px;
  
  }
  .nav-open .hamburger__line--2 {
	width: 0;
	left: 50%;
	opacity: 0;
  
  }
  .nav-open .hamburger__line--3 {
	transform: rotate(-45deg);
	top: 30px;
  
  }
  


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
	#pcheader {
		display: none;
	}

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 80%;
	background:none;
	opacity: 1;
  }  
  .hamburger {
	width: 52px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 54px; /* クリックしやすいようにちゃんと高さを指定する */
	  display:block !important;
  }  
  .hamburger__line {
	  position: absolute;
	  left: -2px;
	  width: 40px;
	  height: 4px;
	  transition: all .6s;
	}	
	.hamburger #menu {
	  position: absolute;
	  top: 38px;
	  left: -3px;
	  font-weight:bold;
	  font-size:0.9em;
	}
  
  .hamburger__line--1 {
	top: 8px;
  }
  .hamburger__line--2 {
	top: 21px;
  }
  .hamburger__line--3 {
	top: 34px;
  }
  
  .global-nav {
	position: fixed;
	top: -1600px; /* これで隠れる */
	left: 0;
	width: 100%; /* スマホに収まるくらい */
	height: 95%;
	min-height: 95%;
	padding: 50px 0 10px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 50px 0 30px;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:3.5em;
	line-height: 1.5em;
	font-family: 'EB Garamond', serif;
	font-style:italic;
	letter-spacing: 1px;	
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 2vw 2% 0;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
}
.global-nav #tw-menu {
	width:100%;
	height:auto;
	padding:20px 0;
	margin:0;
	text-align: center;
	opacity: 1;
	position: relative;
	color: #fff;
	font-size: 10vw;
}
.global-nav #tw-menu a {
	color: #fff;
}
  
	/* 表示された時用のCSS */
	.nav-open .global-nav {
	  top: 0;
	}
	.nav-open .black-bg {
	  opacity: .8;
	  visibility: visible;
	}
	.nav-open .hamburger__line--1 {
	  transform: rotate(45deg);
	  top: 20px;
	
	}
	.nav-open .hamburger__line--2 {
	  width: 0;
	  left: 50%;
	
	}
	.nav-open .hamburger__line--3 {
	  transform: rotate(-45deg);
	  top: 20px;
	
	}
  
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 550px) {
	.global-nav__item {
		margin: 10px 0 !important;
	}
	.global-nav__item a {
		display: block;
		padding: 1px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:1.8rem;
		line-height: 2.3rem;
		letter-spacing: 1px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 2vw 2% 0;
		text-align: center;
	}
	
}




/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align: center;
	position:relative;
	overflow: hidden;
}
#topmain #top-bg {
	width: 100%;
	height: 100%;
}
#topmain #top-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
#topmain #mist {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30%;
	left: -20%;
}
.ag-smoke-block {
	width: 100%;
	height: auto;
	z-index: 1;
	position: relative;
}
.ag-smoke-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	animation: an-smoke-1 1.0s ease-in-out infinite;
	height: 25vw;
	width: 50vw;
}
.ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 25%;
	animation: an-smoke-1 1.4s ease-in-out infinite;
	height: 25vw;
	width: 50vw;
}
.ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -25%;
	animation: an-smoke-1 1.8s ease-in-out infinite;
	height: 25vw;
	width: 50vw;
}
.ag-smoke__delay-1 {
	animation-delay: 0.4s;
}  
.ag-smoke__delay-2 {
	animation-delay: 0.8s;
}
.ag-smoke__delay-3 {
	animation-delay: 1.2s;
}
.ag-smoke__delay-4 {
	animation-delay: 0.1s;
}  
.ag-smoke__delay-5 {
	animation-delay: 0.5s;
}
.ag-smoke__delay-6 {
	animation-delay: 0.9s;
}
.ag-smoke-1 img ,
.ag-smoke-2 img ,
.ag-smoke-3 img {
	width: auto;
	height: 100%;
}
@keyframes an-smoke-1 {
0% {
	opacity: 0;

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

	-webkit-transform: translateX(0) rotate(.01deg);
	transform: translateX(0) rotate(.01deg);
	}
}
#topmain #top-logo {
	width: 32%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 4%;
	left: 34%;
	opacity: 0;
}
#topmain #top-blood {
	width: 32%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 4%;
	left: 34%;
	opacity: 0;
}
#topmain #top-date {
	width: 28%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 42.6%;
	left: 5%;
	opacity: 0;
}
#topmain #top-prize {
	width: 52%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 5%;
	left: 24%;
	opacity: 0;
}
#topmain #lead-tate {
	width: 3.2%;
	height: auto;
	position: absolute;
	top: 35%;
	right: 17%;
	opacity: 0;
}
.top-logo {
	animation: fadeIn 1.2s ease 1.2s forwards;
}
@keyframes top-blood {
	0% {
		opacity: 0;
		transform: scale(3);
	}
	16% {
		transform: scale(0.78);
	}
	28% {
		transform: scale(1.13);
	}
	44% {
		transform: scale(0.95);
	}
	59% {
		transform: scale(1.02);
	}
	73% {
		transform: scale(0.99);
	}
	88% {
		transform: scale(1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.top-blood {
	animation: top-blood 0.15s ease 2.4s forwards;
}
.top-others-anime {
	animation: fadeIn 1.5s ease-in 2.9s forwards;
}
#topmain #lead-sp ,
#topmain #billing-sp {
	display: none;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	@keyframes an-smoke-1 {
		0% {
			opacity: 0;
		
			-webkit-transform: translateX(-15%) rotate(.01deg);
			transform: translateX(-15%) rotate(.01deg);
			}
			50% {
			opacity: .4;
			}
			to {
			opacity: 0;
		
			-webkit-transform: translateX(0) rotate(.01deg);
			transform: translateX(0) rotate(.01deg);
			}
	}
	#topmain #mist {
		width: 200%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 30%;
		left: -80%;
	}
	.ag-smoke-1 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 0;
		animation: an-smoke-1 1.0s ease-in-out infinite;
		height: 65vw;
		width: 100vw;
	}
	.ag-smoke-2 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 30%;
		animation: an-smoke-1 1.4s ease-in-out infinite;
		height: 65vw;
		width: 100vw;
	}
	.ag-smoke-3 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: -30%;
		animation: an-smoke-1 1.8s ease-in-out infinite;
		height: 65vw;
		width: 100vw;
	}	
	#topmain #top-logo {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 5%;
		left: 0%;
		opacity: 0;
	}
	#topmain #top-blood {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 5%;
		left: 0%;
		opacity: 0;
	}
	#topmain #lead-tate {
		width: 8%;
		height: auto;
		position: absolute;
		top: 34%;
		right: 15%;
		opacity: 0;
	}
	#topmain #top-prize {
		width: 96%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: 24%;
		left: 2%;
		opacity: 0;
	}
	#topmain #lead-sp {
		display: block;
		width: 96%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: 21%;
		left: 2%;
		opacity: 0;
	}
	#topmain #billing-sp {
		display: block;
		width: 96%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: 16%;
		left: 2%;
		opacity: 0;
	}
	#topmain #top-date {
		width: 80%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: auto;
		bottom: 3%;
		left: 10%;
	}

}

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




/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 1vw 0;
	background-color: #7facbd;
}
#bridge #lead {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	opacity: 0;
}
#bridge #lead img {
	width: 60%;
}
#bridge #billing {
	display: block;
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #billing img {
	width: 60%;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 2vw 0 1vw;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 17%;
}
#bridge #mj-banner {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #mj-banner img {
	width: 17%;
}
#bridge #banners {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #banners div {
	width: 18%;
	height: auto;
	margin: 0 1% 1vw;
	opacity: 0;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi img {
	width: 17%;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 1;
}
#bridge #sns-link li {
	width: 4%;
	height: auto;
	margin: 0 1%;
}
#bridge #theater a:hover ,
#bridge #mj-banner a:hover ,
#bridge #banners div a:hover ,
#bridge #mubi a:hover ,
#bridge #sns-link a:hover {
	animation: flash 1.2s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 6vw 0;
	}
	#bridge #lead {
		display: none;
	}	
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 5vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #mj-banner {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #mj-banner img {
		width: 60%;
	}
	#bridge #banners {
		width: 100%;
		height: auto;
		margin: 7vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #banners div {
		width: 80%;
		height: auto;
		margin: 0 0 3vw;
		opacity: 0;
	}
	
	#bridge #mubi {
		width: 100%;
		height: auto;
		margin: 2vw 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #mubi img {
		width: 60%;
	}
	#bridge #sns-link {
		opacity: 1;
	}
	#bridge #sns-link li {
		width: 12%;
		margin: 0 1.5%;
	}
	#bridge #lead ,
	#bridge #billing {
		display: none;
	}
}


/* ========================================
ニュース
========================================== */
#news {
	width: 100%;
	height: auto;
	padding: 3vw 0;
	background-color: #7facbd;
	position: relative;
}
#news h2 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#news h2 img {
	width: 8%;
}
#news #news-bg {
	width: 46%;
	height: auto;
	margin: 1vw 27%;
}
#news #news-area {
	width: 46%;
	height: auto;
	margin: 1vw 0;
	position: absolute;
	top: 40%;
	left: 27%;
	font-family: YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	opacity: 0;
}
#news #news-area ul {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#news #news-area ul li {
	width: 100%;
	height: auto;
	margin: 0.6vw 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#news #news-area ul li .news-date {
	width: 20%;
	height: 1.5vw;
	padding: 3px 1%;
	color: #000;
	font-size: 1vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: center;
}
#news #news-area ul li .news-headline {
	width: 70%;
	height: auto;
	padding: 3px 0;
	margin-left: 3%;
	color: #000;
	font-size: 1.1vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	font-weight: bold;
}
#news #news-area ul li .news-headline a {
	color: #000;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#news {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #7facbd;
		position: relative;
	}
	#news h2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#news h2 img {
		width: 25%;
	}
	#news #news-bg {
		width: 90%;
		height: auto;
		margin: 3vw 5%;
	}
	#news #news-area {
		width: 85%;
		height: auto;
		margin: 1vw 0;
		position: absolute;
		top: 25%;
		left: 7.5%;
		opacity: 0;
	}
	#news #news-area ul li {
		width: 100%;
		height: auto;
		margin: 6vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#news #news-area ul li .news-date {
		width: 100%;
		height: 1.5rem;
		padding: 3px 0;
		color: #000;
		font-size: 1.1rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		text-align: left;
	}
	#news #news-area ul li .news-headline {
		width: 100%;
		height: auto;
		padding: 3px 0;
		margin-left: 0%;
		color: #000;
		font-size: 1.1rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		font-weight: bold;
	}
	
}


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

}


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
}
.modal__bg{
	background:url(../img/GL-news-box-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: left center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.8;
}
.movie__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content {
    width: 60%;
	height: 85%; /* スクロール時は80% */
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-size: cover;
	background-position: center center;
	overflow-y: scroll;
	background-color: #fff;
	border-radius: 15px;
	-ms-overflow-style: none;
	scrollbar-width: thin;
	scrollbar-color: rgb(104, 102, 104) #ccc;
}
.modal__content::-webkit-scrollbar {
	display: block;
	width: 5px;
}
.modal__content::-webkit-scrollbar-track{
	background-color: #ccc;
}
.modal__content::-webkit-scrollbar-thumb{
	background-color: rgb(104, 102, 104);
}	

.modal__content {
    scrollbar-width: none;
}
.modal__content .news-txt {
	width: 80%;
	height: auto;
	margin: 1vw 10%;
	text-align: left;
	color: #000;
	font-size: 1.2vw;
}
.modal__content .news-txt h2 {
	width: 100%;
	height: auto;
	font-size: 1.2rem;
	text-align: center;
}
.modal__content .news-txt .jacket {
	width: 100%;
	height: auto;
	margin: 1.5vw 0 0;
	text-align: center;
}
.modal__content .news-txt .jacket img {
	width: 40%;
}
.modal__content .news-txt p {
	width: 80%;
	height: auto;
	padding: 1vw 10%;
	margin: 0;
	font-size: 1rem;
	text-align: left;
}
.modal__content #event-cast {
	width: 80%;
	height: auto;
	margin: 0 10% 2vw;
	padding: 0;
	list-style-type: none;
}
.modal__content #event-cast li {
	width: 100%;
	height: auto;
	margin: 3vw 0 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.modal__content #event-cast li .cast-photo {
	width: 30%;
	height: auto;
	margin: 0 2%;
}
.modal__content #event-cast li .cast-photo img {
	width: 100%;
}
.modal__content #event-cast li .cast-txt {
	width: 60%;
	height: auto;
	margin: 0 2%;
	font-size: 1.15vw;
	line-height: 1.9vw;
	color: #000;
	letter-spacing: 1px;
}
.modal__content #event-cast li .cast-txt span {
	font-weight: bold;
}

.movie__content .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.movie__content .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie__content ul#movie-changer {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.movie__content .movie-btn {
	width: 30%;
	height: auto;
	margin: 0 0.5%;
	padding: 3px 0;
	text-align: center;
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
	font-size: 1.1vw;
}
.movie__content .movie-btn i {
	display: none;
}
.movie__content .activee {
	background-color: #E5ABB8;
	border: 1px solid #E5ABB8;
	color: #000;
}
.movie__content .activee i {
	display: inline;
}
.movie__content .movie-btn:hover {
	background-color: #E5ABB8;
	border: 1px solid #E5ABB8;
	color: #000;
	cursor: pointer;
	transition-duration: 0.6s;
}
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.modal__bg{
		background:url(../img/GL-news-box-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: left center;
		height: 100%;
		position: absolute;
		width: 100%;
	}
	
	.movie__content {
		width: 100%;
		height: auto;
		padding: 1% 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content {
		width: 90%;
		height: 70%;
		padding: 20px 0;
		background-color: #fff;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
	}
	.modal__content .news-txt {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		text-align: left;
		color: #000;
		font-size: 1rem;
	}
	.modal__content .news-txt h2 {
		width: 100%;
		height: auto;
		font-size: 1.2rem;
		text-align: center;
	}
	.modal__content .news-txt .jacket {
		width: 100%;
		height: auto;
		margin: 1.5vw 0 0;
		text-align: center;
	}
	.modal__content .news-txt .jacket img {
		width: 60%;
	}
	.modal__content .news-txt p {
		width: 100%;
		height: auto;
		padding: 1vw 0;
		margin: 0;
		font-size: 1rem;
		text-align: left;
	}
	.modal__content #event-cast {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		list-style-type: none;
	}
	.modal__content #event-cast li {
		width: 100%;
		height: auto;
		margin: 10vw 0 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.modal__content #event-cast li .cast-photo {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
	}
	.modal__content #event-cast li .cast-photo img {
		width: 60%;
	}
	.modal__content #event-cast li .cast-txt {
		width: 90%;
		height: auto;
		margin: 0 5%;
		font-size: 1rem;
		line-height: 1.8rem;
		color: #000;
		letter-spacing: 1px;
	}
	
	
}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:7vw 0 10vw;
	overflow: hidden;
	position: relative;
	background-color: #7facbd;
}
.trailer h2 {
	width:12%;
	height:auto;
	padding:0;
	margin:0 44% 3vw;
	position: relative;
	opacity: 0;
}
#video-wrap {
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0 25%;
	opacity: 0;
	position: relative;
	z-index: 1;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.trailer ul#movie-changer {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.movie-btn {
	width: 30%;
	height: auto;
	margin: 0 1%;
	padding: 3px 0;
	text-align: center;
	background-color: #fff;
	border: 1px solid #C8010C;
	color: #C8010C;
	font-size: 1.1vw;
}
.activee {
	background: #C8010C;
	border: 1px solid #C8010C;
	color: #fff;
}
.movie-btn:hover {
	background: #c8353c;
	border: 1px solid #c8353c;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}
.trailer .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: absolute;
	z-index: 0;
	pointer-events: none;
}
.trailer #logo-slide1 {
	bottom: 40%;
}
.trailer #logo-slide2 {
	bottom: 19%;
}
.trailer #logo-slide1 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 80s infinite linear 0s both;
}
.trailer #logo-slide2 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 80s infinite linear 0s both;
}

.trailer .top-slide-wrap .top-slide .content {
	width: 30vw;
	height: auto;
	margin: 0;
}
.trailer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 40vw;
	}
	.trailer h2 {
		width:34%;
		height:auto;
		padding:0;
		margin:0 33% 5vw;
		position: relative;
	}	
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	.video {
		width:90%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 5% 10px;
		display:block;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
	.trailer .top-slide-wrap {
		position: static;
	}
	.trailer .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 30s infinite linear 0s both;
	}	
	.trailer .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
	}
	.trailer #logo-slide1 {
		bottom: 29%;
	}
	.trailer #logo-slide2 {
		bottom: 14%;
	}
	
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:20vw 0 40vw;
	}
	.trailer h2 {
		width:38%;
		height:auto;
		padding:0;
		margin:0 31% 5vw;
		position: relative;
	}	

	.trailer .top-slide-wrap {
		bottom: 36%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}
	.trailer #logo-slide1 {
		bottom: 24%;
	}
	.trailer #logo-slide2 {
		bottom: 11%;
	}
	
}


/* ========================================
アバウト・ザ・ムービー
========================================== */
#about-bgbk {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
}
#about-bg {
	width: 100%;
	height: auto;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
}
#about-bg h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5vw 0 0;
	background-color: #000;
	text-align: center;
}
#about-bg h2 img {
	width: auto;
	height: 2vw;
	vertical-align: bottom;
}
#about-bg ul {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#about-bg ul li {
	width: 40%;
	height: auto;
	margin: 0 3%;
}
#about-bg ul li#about-bg-bottom {
	width: 100%;
	height: 10vw;
	background-color: #000;
}
#about-photo-black {
	display: none;
}
.about-photo {
	width: 40%;
	height: auto;
	position: fixed;
	top: 7vw;
	left: 7%;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.64, 0, 0.78, 0) 0.05s;
}
#about-photo1 {
	z-index: -19;
}
#about-photo2 {
	z-index: -18;
}
#about-photo3 {
	z-index: -17;
}
#about-photo4 {
	z-index: -16;
}
#about-photo5 {
	z-index: -15;
}
@keyframes about-image {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}
.about-image {
	animation: about-image 0.7s cubic-bezier(0.64, 0, 0.78, 0) 0.1s forwards;
}
#about {
	width: 40%;
	height: auto;
	margin:3vw 0 0 53%;
	position: relative;
	z-index: -11;
}
#about #about1 {
	width: 90%;
	height: auto;
	margin: 0;
	padding: 30vw 5% 5vw;
	background-color: #7facbd;
}
#about #about1 #about1-1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#about #about1 #about1-1 img {
	width: 70%;
}
#about #about1 #about1-2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#about #about1 #about1-2 img {
	width: 75%;
}
#about .about p {
	width: 90%;
	height: auto;
	margin: 1vw 5%;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
}
#about #about2 {
	width: 90%;
	height: auto;
	margin: 0;
	padding: 5vw 5% 5vw;
	background-color: #8f7ebd;
}
#about #about2 #about2-1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#about #about2 #about2-1 img {
	width: 80%;
}
#about #about2 #about2-2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#about #about2 #about2-2 img {
	width: 70%;
}
#about #about3 {
	width: 90%;
	height: auto;
	margin: 0;
	padding: 5vw 5% 20vw;
	background-color: #7ebd8f;
}
#about #about3 #about3-1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#about #about3 #about3-1 img {
	width: 70%;
}
#about #about3 #about3-2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#about #about3 #about3-2 img {
	width: 60%;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#about-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		padding: 0;
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		z-index: -20;
	}	
	#about-bg h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0 40%;
		background-color: #000;
		text-align: center;
	}
	#about-bg h2 img {
		width: auto;
		height: 5vw;
		vertical-align: bottom;
	}
	#about-bg ul {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		align-content: center;
		flex-wrap: wrap;
	}
	#about-bg ul li {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#about-bg ul li#photo-frame {
		display: none;
	}
	#about-bg ul li#about-bg-bottom {
		display: none;
	}
	#about-photo-black {
		display: none;
		width: 100%;
		height: 48%;
		background-color: #000;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: -21;
	}
	.about-photo {
		width: 50%;
		height: auto;
		position: fixed;
		top: 5%;
		left: 25%;
		opacity: 0;
		transition: all 0.5s cubic-bezier(0.64, 0, 0.78, 0) 0.05s;
	}
	#about-photo1 {
		z-index: -19;
	}
	#about-photo2 {
		z-index: -19;
	}
	#about-photo3 {
		z-index: -19;
	}
	#about-photo4 {
		z-index: -19;
	}
	#about-photo5 {
		z-index: -19;
	}	
	#about {
		width: 90%;
		height: auto;
		margin:3vw 5% 0;
		padding: 15vw 0 25vw;
		position: relative;
		z-index: -22;
	}
	#about .about p {
		width: 90%;
		height: auto;
		margin: 5vw 5%;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.0rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
	}
	
}


/* 以下スマホ */
@media (max-width: 610px) {
	#about-bg h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0 75%;
		background-color: #000;
		text-align: center;
	}
	#about-bg h2 img {
		width: auto;
		height: 5vw;
		vertical-align: bottom;
	}
	#about-bg ul {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		align-content: center;
		flex-wrap: wrap;
	}
	#about-bg ul li {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#about-bg ul li#about-bg-bottom {
		display: block;
		width: 100%;
		height: 30vw;
		background-color: #000;	
	}
	#about-photo-black {
		display: none;
		width: 100%;
		height: 48%;
		background-color: #000;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: -20;
	}
	.about-photo {
		width: 96%;
		height: auto;
		position: fixed;
		top: 12%;
		left: 2%;
		opacity: 0;
		transition: all 0.5s cubic-bezier(0.64, 0, 0.78, 0) 0.05s;
	}
	#about {
		width: 100%;
		height: auto;
		margin:150vw 0 0;
		padding: 80vw 0;
		position: relative;
		z-index: -21;
	}


}

/* ========================================
固定画像+スライダー
========================================== */
#slider-ue {
	width: 100%;
	height: auto;
	position: relative;
	background-color: #61757E;
}
#slider-ue #slider-uebg {
	width: 100%;
	height: auto;
}
#slider-ue #slider-ue-catch {
	width: 4%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 68%;
	opacity: 0;
}
#slider .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 3vw 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	background-color: #61757E;
}
#slider .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 80s infinite linear 0s both;
}
#slider .top-slide-wrap .top-slide .content {
	width: 20vw;
	height: auto;
	margin: 0 1vw;
}
#slider .top-slide-wrap .top-slide .content:nth-child(even) {
	margin-top: 2vw;
}
#slider .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#slider-ue {
		width: 100%;
		height: auto;
		position: relative;
		background-color: #637883;
	}
	
	#slider-ue #slider-ue-catch {
		width: 8%;
		height: auto;
		position: absolute;
		top: 15%;
		left: 75%;
		opacity: 0;
	}
	#slider .top-slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
		background-color: #637883;
	}
	#slider .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0 5vw;
	}
	#slider .top-slide-wrap .top-slide .content:nth-child(even) {
		margin-top: 5vw;
	}
	

}


/* ========================================
キャスト
========================================== */
#castbg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -9;
	opacity: 0;
	pointer-events: none;
}
.cast-photo {
	width: 30%;
	height: auto;
	position: fixed;
	top: 50%;
	left: 18%;
	transform: translateY(-50%);
	z-index: -7;
	opacity: 0;
	pointer-events: none;
	transition: all 1.0s ease;
}
#cast {
	width: 45%;
	height: auto;
	padding: 10vw 0;
	margin-left: 45%;
	background-color: rgba( 127,172,189 , 0.8 );
	position: relative;
	z-index: -8;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#cast h2 img {
	width: 22%;
	height: auto;
	vertical-align: bottom;
}
#cast .cast-unit {
	width: 80%;
	height: auto;
	margin: 0 10% 15vw;
	opacity: 0;
}
#cast .cast-unit h3 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#cast .cast-unit h3 img {
	width: auto;
	height: 5vw;
	vertical-align: bottom;
}
#cast .cast-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.8vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}
#cast .cast-unit .cast-sp-photo {
	display: none;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#castbg {
		z-index: -19;
	}
	.cast-photo {
		width: 45%;
		height: auto;
		position: fixed;
		top: 50%;
		left: 3%;
		transform: translateY(-50%);
		z-index: -7;
		opacity: 0;
		pointer-events: none;
		transition: all 1.0s ease;
	}
	#cast {
		width: 50%;
		height: auto;
		padding: 20vw 0;
		margin-left: 45%;
		background-color: rgba( 127,172,189 , 0.8 );
		position: relative;
		z-index: -8;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#cast h2 img {
		width: 30%;
		height: auto;
		vertical-align: bottom;
	}
	#cast .cast-unit {
		width: 80%;
		height: auto;
		margin: 0 10% 25vw;
		opacity: 0;
	}
	#cast .cast-unit h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
	}
	#cast .cast-unit h3 img {
		width: auto;
		height: 8vw;
		vertical-align: bottom;
	}
	#cast .cast-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1rem;
		line-height: 1.8rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}
}


/* 以下スマホ */
@media (max-width: 610px) {
	#castbg {
		z-index: -19;
	}
	.cast-photo {
		width: 90%;
		height: auto;
		position: fixed;
		top: 0%;
		left: 5%;
		transform: translateY(0%);
		z-index: -17;
		opacity: 0;
		pointer-events: none;
		transition: all 0s;
	}
	#cast {
		width: 90%;
		height: auto;
		padding: 20vw 0;
		margin-left: 5%;
		background-color: #fff;
		position: relative;
		z-index: -18;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#cast h2 img {
		width: 30%;
		height: auto;
		vertical-align: bottom;
	}
	#cast .cast-unit {
		width: 100%;
		height: auto;
		margin: 0 0 70vw;
		opacity: 0;
	}
	#cast .cast-unit .cast-sp-photo {
		display: block;
		width: 100%;
		height: auto;
	}
	#cast .cast-unit h3 {
		width: 100%;
		height: auto;
		margin: 30vw 0 10vw;
		padding: 0;
		text-align: center;
	}
	#cast .cast-unit h3 img {
		width: auto;
		height: 18vw;
		vertical-align: bottom;
	}
	#cast .cast-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.9rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}


}






/* ========================================
スタッフ
========================================== */
#staff-spbg ,
#staff-head-sp {
	display: none;
}
#staff1 {
	width: 100%;
	height: auto;
	position: relative;
}
#staff1 #staff1bg {
	width: 100%;
	height: auto;
}
#staff1 h2 {
	width: 12%;
	height: auto;
	position: absolute;
	top: 20%;
	left: 44%;
}
#staff1 #director-images {
	width: 25%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 7%;
	transform: translateY(-50%);
	opacity: 0;
}
#staff1 #director-images #director-photo {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
}
#staff1 #director-images #director-name {
	width: 100%;
	height: auto;
}
#staff1 #director-txt {
	width: 30%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 64%;
	opacity: 0;
}
#staff1 #director-txt p {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	color: #fff;
	font-size: 1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}
#staff1 #director-txt p.filmo {
	width: 60%;
	height: auto;
	margin: 0 0 0 20%;
	padding: 0;
	color: #fff;
	font-size: 1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}
#staff2 {
	width: 100%;
	height: auto;
	padding: 3vw 0;
	background-color: #000;
	position: relative;
}
#staff2 .staff-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 7vw;
	opacity: 0;
}
#staff2 .staff-unit .staff-name {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#staff2 .staff-unit .staff-name img {
	width: auto;
	height: 5vw;
}
#staff2 .staff-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1vw;
	line-height: 1.9vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#staff-spbg {
		display: block;
		width: 100%;
		height: 100%;
		min-height: 100%;
		box-sizing: border-box;
		border-left: 5vw solid #000;
		border-right: 5vw solid #000;
		border-bottom: 3vw solid #000;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -9;
		opacity: 0;
		pointer-events: none;
		transition: all 0s;
	}
	#staff-head-sp {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		z-index: -11;
	}
	#staff-head-sp #staff-head-sp-bg {
		width: 100%;
		height: auto;
	}
	#staff-head-sp h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
		position: absolute;
		top: 25%;
	}
	#staff-head-sp h2 img {
		width: 50%;
	}
	#staff-head-sp #staff-head-sp-waku {
		width: 100%;
		height: 100%;
		min-height: 100%;
		box-sizing: border-box;
		border-left: 5vw solid #000;
		border-right: 5vw solid #000;
		border-bottom: 3vw solid #000;
		position: absolute;
		top: 0;
		left: 0;
	}
	#staff1 {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #000;
		position: relative;
		z-index: -10;
	}
	#staff1 #staff1bg {
		display: none;
	}
	#staff1 h2 {
		display: none;
	}
	#staff1 #director-images {
		width: 100%;
		height: auto;
		position: static;
		transform: translateY(0%);
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#staff1 #director-images #director-photo {
		width: 80%;
		height: auto;
		margin: 0 10% 5vw;
		order: 2;
	}
	#staff1 #director-images #director-name {
		width: 80%;
		height: auto;
		margin: 0 10% 5vw;
		order: 1;
	}
	#staff1 #director-txt {
		width: 90%;
		height: auto;
		margin: 0 5%;
		position: static;
		opacity: 0;
	}
	#staff1 #director-txt p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.0rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}
	#staff1 #director-txt p.filmo {
		width: 90%;
		height: auto;
		margin: 5vw 5% 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.0rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}
	#staff2 {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #000;
		position: relative;
	}
	#staff2 .staff-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 15vw;
		opacity: 0;
	}
	#staff2 .staff-unit .staff-name {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
	}
	#staff2 .staff-unit .staff-name img {
		width: auto;
		height: 15vw;
	}
	#staff2 .staff-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.0rem;
		font-feature-settings: "palt";
		letter-spacing: 1px;
	}
	
	
}




/* ========================================
コメント
========================================== */
#com-bgblack {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -6;
	opacity: 0;
}
#com-bg1 {
	width: 130%;
	height: 100%;
	min-height: 100%;
	background: url(../img/GL-comment-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: left bottom;
	position: fixed;
	top: 0;
	left: 30%;
	z-index: -5;
	opacity: 0;
}
#com-bg2 {
	width: 130%;
	height: 100%;
	min-height: 100%;
	background: url(../img/GL-comment-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: left bottom;
	position: fixed;
	top: 0;
	left: 30%;
	z-index: -5;
	opacity: 0;
}
#com-bg3 {
	width: 130%;
	height: 100%;
	min-height: 100%;
	background: url(../img/GL-comment-bg-3-pc.jpg) no-repeat;
	background-size: cover;
	background-position: left bottom;
	position: fixed;
	top: 0;
	left: 30%;
	z-index: -5;
	opacity: 0;
}
#com-bgbk {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba( 0,0,0 , 0.5 );
	position: fixed;
	top: 0;
	left: 0;
	z-index: -4;
	opacity: 0;
	transition: all 0.6s;
}
@keyframes com-bg1 {
	0% {
		opacity: 1;
		left: -30%;
	}
	28% {
		opacity: 1;
		left: 0;
	}
	33% {
		opacity: 0;
	}
	95% {
		opacity: 0;
		left: -30%;
	}
	100% {
		opacity: 1;
		left: -30%;
	}
}
@keyframes com-bg2 {
	0% {
		opacity: 0;
		left: -30%;
	}
	28% {
		opacity: 0;
	}
	33% {
		opacity: 1;
		left: -30%;
	}
	61% {
		opacity: 1;
		left: 0;
	}
	66% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes com-bg3 {
	0% {
		opacity: 0;
		left: -30%;
	}
	61% {
		opacity: 0;
	}
	66% {
		opacity: 1;
		left: -30%;
	}
	95% {
		opacity: 1;
		left: 0;
	}
	100% {
		opacity: 0;
	}
}
.com-bg1 {
	animation: com-bg1 20s ease 0s infinite;
}
.com-bg2 {
	animation: com-bg2 20s ease 0s infinite;
}
.com-bg3 {
	animation: com-bg3 20s ease 0s infinite;
}
#comment {
	width: 100%;
	height: auto;
	padding: 20vw 0 30vw;
}
#comment #com-head {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#comment #com-head img {
	width: 20%;
}
#comment #keisho {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
	font-size: 1.1vw;
	color: #000;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 10vw 25%;
	opacity: 0;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1.2vw;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.1vw;
	font-feature-settings: "palt";
	letter-spacing: 2px;
	font-weight: bold;
}
#comment .com-unit p span {
	color: #F0C326;
	font-weight: bold;
}
#comment .com-unit .com-name {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #F0C326;
	font-size: 1.2vw;
	line-height: 2.1vw;
	font-feature-settings: "palt";
	letter-spacing: 2px;
	font-weight: bold;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#com-bgblack {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -15;
		opacity: 0;
	}
	#com-bg1 {
		width: 130%;
		height: 100%;
		min-height: 100%;
		background: url(../img/GL-comment-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: left bottom;
		position: fixed;
		top: 0;
		left: 30%;
		z-index: -14;
		opacity: 0;
	}
	#com-bg2 {
		width: 130%;
		height: 100%;
		min-height: 100%;
		background: url(../img/GL-comment-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: left bottom;
		position: fixed;
		top: 0;
		left: 30%;
		z-index: -14;
		opacity: 0;
	}
	#com-bg3 {
		width: 130%;
		height: 100%;
		min-height: 100%;
		background: url(../img/GL-comment-bg-3-sp.jpg) no-repeat;
		background-size: cover;
		background-position: left bottom;
		position: fixed;
		top: 0;
		left: 30%;
		z-index: -14;
		opacity: 0;
	}
	#comment {
		width: 100%;
		height: auto;
		padding: 40vw 0 50vw;
	}
	#comment #com-head {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
	}
	#comment #com-head img {
		width: 50%;
	}
	#comment #keisho {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		font-size: 1rem;
		color: #000;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
		opacity: 0;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 0.9rem;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.1rem;
		font-feature-settings: "palt";
		letter-spacing: 2px;
		font-weight: bold;
	}
	#comment .com-unit p span {
		color: #F0C326;
		font-weight: bold;
	}
	#comment .com-unit .com-name {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #F0C326;
		font-size: 1.1rem;
		line-height: 2.1rem;
		font-feature-settings: "palt";
		letter-spacing: 2px;
		font-weight: bold;
	}
	

}


/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:2vw 0;
	opacity: 1;
}
#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
#button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
#button-area ul.social_sq_buttons li.fb {
	background:#1877F2;
}
#button-area ul.social_sq_buttons li.tw {
	background:#000;
}
#button-area ul.social_sq_buttons li.line {
	background:#06C755;
}
#button-area ul.social_sq_buttons li.checkin {
	background:#10519D;
}
#button-area ul.social_sq_buttons li.filmarks {
	background:#FFE100;
	text-align: center;
}
#button-area ul.social_sq_buttons li.filmarks img {
	width: 60%;
}
#button-area ul.social_sq_buttons li.fb .fb_iframe_widget > span {
  vertical-align: baseline !important;
}




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

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

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

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


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	overflow: hidden;
	position: relative;
}
footer #foot-bg-wrap {
	width: 100%;
	height: auto;
	position: relative;
}
footer #foot-bg-wrap #foot-bg1 {
	width: 100%;
	height: auto;
	animation: foot-bg1 7.5s linear 0s infinite;
}
footer #foot-bg-wrap #foot-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: foot-bg2 7.5s linear 0s infinite;
}
footer #foot-bg-wrap #foot-bg3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: foot-bg3 7.5s linear 0s infinite;
}
@keyframes foot-bg1 {
	0% {opacity: 0;}
	3.33% {opacity: 0;}
	4.33% {opacity: 1;}
	36.67% {opacity: 1;}
	37.67% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes foot-bg2 {
	0% {opacity: 0;}
	36.67% {opacity: 0;}
	37.67% {opacity: 1;}
	70.00% {opacity: 1;}
	71.00% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes foot-bg3 {
	0% {opacity: 1;}
	3.33% {opacity: 1;}
	4.33% {opacity: 0;}
	70.00% {opacity: 0;}
	71.00% {opacity: 1;}
	100% {opacity: 1;}
}
footer #foot-bg-wrap #foot-logo {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
footer #spsvg {
	display: none;
}
footer #pcsvg {
	display: block;
	width: 150%;
	height: auto;
	position: absolute;
	top: -25%;
	left: -25%;
}
.hane {
	fill:#363636;
	stroke:#000;
	stroke-width:4;
	transform-origin:50% -50%;
	animation:hane 2.5s cubic-bezier(0.55, 0, 1, 0.45) 0s infinite;
}
@keyframes hane {
	0% {
		transform:rotate(-60deg);
	}
	10% {
		transform:rotate(0deg);
	}
	13% {
		transform:rotate(0deg);
	}
	25% {
		transform:rotate(-60deg);
	}
	100% {
		transform:rotate(-60deg);
	}
}


.soto {
	transform-origin:center;
}
#hane2 {
	transform:rotate(60deg);
}
#hane3 {
	transform:rotate(120deg);
}
#hane4 {
	transform:rotate(180deg);
}
#hane5 {
	transform:rotate(240deg);
}
#hane6 {
	transform:rotate(300deg);
}
#oosoto {
	clip-path:url(#clip);
}
footer #button-area {
	position: absolute;
	bottom: 0%;
}
footer #copyright {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5px 0;
	text-align: center;
	color: #000;
	font-size: 1em;
	position: absolute;
	bottom: 0;
	opacity: 0;
}



@media (max-width: 1024px) {
	footer #pcsvg {
		display: none;
		width: 150%;
		height: auto;
		position: absolute;
		top: 0%;
		left: -25%;
		}
	footer #spsvg {
		display: block;
		width: 100%;
		height: auto;
		position: absolute;
		top: 0%;
		left: 0%;
	}
	.soto {
		transform-origin:center;
	}
	#hane2sp {
		transform:rotate(60deg);
	}
	#hane3sp {
		transform:rotate(120deg);
	}
	#hane4sp {
		transform:rotate(180deg);
	}
	#hane5sp {
		transform:rotate(240deg);
	}
	#hane6sp {
		transform:rotate(300deg);
	}
	#oosoto-sp {
		clip-path:url(#clip-sp);
	}
	@keyframes hane {
		0% {
			transform:rotate(-60deg);
		}
		15% {
			transform:rotate(0deg);
		}
		18% {
			transform:rotate(0deg);
		}
		33% {
			transform:rotate(-60deg);
		}
		100% {
			transform:rotate(-60deg);
		}
	}
	@keyframes foot-bg1 {
		0% {opacity: 0;}
		5% {opacity: 0;}
		6% {opacity: 1;}
		38.333% {opacity: 1;}
		39.333% {opacity: 0;}
		100% {opacity: 0;}
	}
	@keyframes foot-bg2 {
		0% {opacity: 0;}
		38.333% {opacity: 0;}
		39.333% {opacity: 1;}
		71.667% {opacity: 1;}
		72.667% {opacity: 0;}
		100% {opacity: 0;}
	}
	@keyframes foot-bg3 {
		0% {opacity: 1;}
		5% {opacity: 1;}
		6% {opacity: 0;}
		71.667% {opacity: 0;}
		72.667% {opacity: 1;}
		100% {opacity: 1;}
	}
	
	
}
@media (max-width: 610px) {

}
