@charset "utf-8";

/*

http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

/* COMMON */

body {
	color: #FFFFFF;
	font-size: 12px;
	font-family: 'GeneralSans-Variable', 'Noto Sans JP', sans-serif;
  font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	background-color: #000000;
}

a { color: #00EF77; text-decoration: none; }
a:hover { color: #FF5A4B; text-decoration: none; }

img {
	width: 100%;
	height: auto;
	line-height: 0;
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {

}

b { font-weight: 600; }

input,
select,
textarea {

}

.fl { float: left; }
.fr { float: right; }

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.fadeinup {
  opacity: 0;
  transform: translate(0px, 30px);
}

.fadeindown {
  opacity: 0;
  transform: translate(0px, -30px);
}

.fadeinleft {
  opacity: 0;
  transform: translate(-30px, 0);
}

.fadeinright {
  opacity: 0;
  transform: translate(30px, 0);
}

.is-active .fadeinup,
.is-active .fadeindown,
.is-active .fadeinleft,
.is-active .fadeinright {
	opacity: 1;
	transform: translate(0px, 0px);
	transition: opacity 0.6s linear, transform 0.8s cubic-bezier(.1,1,.5,1);
}

.is-active .delay2000ms { transition-delay: 2s; }
.is-active .delay1800ms { transition-delay: 1.8s; }
.is-active .delay1600ms { transition-delay: 1.6s; }
.is-active .delay1400ms { transition-delay: 1.4s; }
.is-active .delay1200ms { transition-delay: 1.2s; }
.is-active .delay1000ms { transition-delay: 1s; }
.is-active .delay800ms { transition-delay: 0.8s; }
.is-active .delay600ms { transition-delay: 0.6s; }
.is-active .delay400ms { transition-delay: 0.4s; }
.is-active .delay200ms { transition-delay: 0.2s; }

.header-inner,
.article-inner,
.footer-inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

#loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0F0F14;
}

#loader .loader,
#loader .loader:after {
	border-radius: 50%;
	width: 100px;
	height: 100px;
}

#loader .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -50px;
 	font-size: 10px;
 	position: relative;
 	text-indent: -9999em;
 	border-top: 0.1em solid rgba(255, 255, 255, 0.2);
 	border-right: 0.1em solid rgba(255, 255, 255, 0.2);
 	border-bottom: 0.1em solid rgba(255, 255, 255, 0.2);
 	border-left: 0.1em solid #ffffff;
 	-webkit-transform: translateZ(0);
 	-ms-transform: translateZ(0);
 	transform: translateZ(0);
 	-webkit-animation: load 1.1s infinite linear;
 	animation: load 1.1s infinite linear;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.show-pc { display: inline-block; }
.show-sp { display: none; }

.green { color: #00EF77; }
.red { color: #C80000; }
.grey { color: #3C3C46; }
.white { color: #FFFFFF; }

.youtube {
  position: relative;
  width: 100%;
	margin: 15px 0 0 0;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* HEADER, NAV, FOOTER */

.header-inner,
.footer-inner {
	position: relative;
	max-width: 1366px;
	margin: 0 auto;
}

header h1 {
	padding: 80px;
	font-size: 45px;
	font-weight: 800;
	text-align: center;
}

header h2 {
		font-size: 54px;
		font-weight: 600;
		text-align: center;
}

header p {
	font-weight: 600;
	text-align: center;
}

header p.time { padding: 30px 0 0 0; font-size: 21px; }

footer {
	padding: 60px 0 30px 0;
	color: #FFFFFF;
	text-align: center;
}

.share ul {
	padding: 0 0 45px 0;
	text-align: center;
}

.share ul li {
	display: inline-block;
	padding: 0 10px;
}

.share ul li a img {
	width: 60px;
	height: 60px;
	transition: transform 0.3s cubic-bezier(.1,1,.5,1);
}

.share ul li a img:hover {
	transform: scale(0.9);
}

/* MAIN */

.section-inner {
	max-width: 1366px;
	margin: 0 auto;
	padding: 0 1px;
	border-left: 1px solid #111111;
	border-right: 1px solid #111111;
	background-color: #000000;
}

.article-inner {
	position: relative;
	max-width: 1366px;
	margin: 0 auto;
}

.fl { width: 50%; }
.fr { width: 50%; }

.movie_teaser {
	width: 75%;
	margin: 0 auto;
	padding: 110px 0 0 0;
	text-align: center;
}

.anthem {
	padding: 120px 0 0 0;
}

.anthem h3 {
	padding: 45px;
	font-size: 33px;
	font-weight: 500;
	text-align: center;
}

.anthem .fl {
	text-align: right;
}

.anthem ul {
	padding: 0 15px 45px;
	color: #3C3C46;
}

.anthem h4 {
	font-size: 33px;
	font-weight: 500;
	text-align: center;
}

.anthem p {
	padding: 45px 0 0 0;
	text-align: center;
}

.team {
	background: url(../images/bg_fire.jpg) no-repeat center top;
	background-size: contain;
}

.team h4 {
		padding: 110px 0 90px 0;
		font-size: 33px;
		font-weight: 900;
		text-align: center;
}

.team h5 {
	padding: 0 0 15px 0;
	font-size: 27px;
	font-weight: 600;
}

.days {
	position: absolute;
	top: 260px;
	width: 100%;
	font-size: 15px;
}

.days .fl,
.team ul.fl {
	text-align: right;
	padding: 0 15px;
}

.days .fr,
.team ul.fr {
	padding: 0 15px;
}

.team ul {
	margin: 75px 0 0 0;
	text-align: center !important;
}

.team ul li {
	display: inline-block;
	width: 180px;
	margin: 0 15px;
	padding: 0 0 30px 0;
	font-weight: bold;
	text-align: center;
}

.team ul li img {
	display: block;
	width: 180px;
	height: auto;
	margin: 0 0 15px 0;
	border-radius: 50%;
}

.team ul.red li img {
	border: 3px solid #C80000;
}

.team ul.green li img {
	border: 3px solid #00EF77;
}

.team .vj {
	padding: 90px 0 0 0;
	text-align: center;
}

.ranyu img {
	display: block;
	width: 50%;
	margin: 0 0 60px 0;
	padding: 0;
	border-bottom: 1px solid #111111;
}

.ranyu p {
	font-size: 21px;
	font-weight: bold;
	text-align: center;
}

.movie_versus {
	width: 75%;
	margin: 90px auto 0;
	text-align: center;
}

.attention {
	margin: 120px 0 0 0;
	padding: 60px 0;
	color: #000000;
	background: #FFFFFF;
}

.attention .clearfix {
	width: 75%;
	margin: 0 auto;
	text-align: justify;
}

.attention h6 {
	padding: 0 0 30px 0;
	font-size: 18px;
	font-weight: 800;
}

.attention .fl { width: 66.6%; }
.attention .fr { width: 33.3%; }

.attention li {
	list-style-type: disc;
	list-style-position: inside;
}

.attention .fr li { padding: 0 0 15px 0; }

.goods {
	padding: 110px 0;
}

.goods h4 {
	font-size: 33px;
	font-weight: 500;
	text-align: center;
}

/* MEDIA QUERIES */

@media screen and (max-width:980px) {

	.show-pc { display: none; }
	.show-sp { display: block; }

	/* HEADER, NAV, FOOTER */

	header h1 {
		padding: 0 15px;
		padding: 45px;
		font-size: 24px;
	}

	header h2 {
		padding: 0 15px;
		font-size: 30px;
	}

	header p {
		padding: 12px 0 0 0;
	}

	footer {
		padding: 60px 0 30px 0;
		color: #FFFFFF;
		text-align: center;
	}

	/* MAIN */

	.section-inner {
		padding: 0;
		border-left: none;
		border-right: none;
	}

	.article-inner {
		margin: 0 auto;
	}

	.fl { width: 50%; }
	.fr { width: 50%; }

	.movie_teaser {
		width: 100%;
		padding: 65px 0 0 0;
	}

	.anthem {
		padding: 60px 0 0 0;
	}

	.anthem h3 {
		font-size: 21px;
	}

	.anthem ul {
		padding: 0 15px 45px;
		color: #3C3C46;
	}

	.anthem h4 {
		font-size: 21px;
	}

	.anthem p {
		padding: 45px 15px 0;
		text-align: justify;
	}

	.team {
		background-size: 120%;
	}

	.team h4 {
			padding: 55px 0 45px 0;
			font-size: 21px;
	}

	.team h5 {
		padding: 0 0 15px 0;
		font-size: 18px;
	}

	.days {
		top: 375px;
		font-size: 12px;
	}

	.days .fl,
	.team ul.fl {
		text-align: right;
		padding: 0 15px;
	}

	.days .fr,
	.team ul.fr {
		padding: 0 15px;
	}

	.team ul {
		margin: 75px 0 0 0;
		text-align: center !important;
	}

	.team ul li {
		display: block;
		width: 120px;
		margin: 0 auto;
	}

	.team ul li img {
		width: 120px;
		margin: 0 0 15px 0;
	}

	.team .vj {
		padding: 30px 0 0 0;
	}

	.ranyu img { width: 100%; border: 0; }

	.ranyu img.fr { margin: -20px 0 30px 0; border-bottom: 1px solid #111111; }

	.ranyu p { padding: 0 30px; font-size: 15px; }

	.movie_versus {
		width: 100%;
		margin: 60px auto 0;
	}

	.attention {
		margin: 60px 0 0 0;
		padding: 45px 0 0 0;
	}

	.attention .clearfix {
		width: 100%;
		margin: 0 auto;
		padding: 0 15px;
	}

	.attention h6 {
		padding: 0 0 15px 0;
		font-size: 18px;
		text-align: center;
	}

	.attention .fl { width: 100%; }
	.attention .fr { width: 100%; }

	.attention ul { padding: 0 15px 30px 15px; }

	.attention li {
		font-size: 11px;
		list-style-type: disc;
		list-style-position: inside;
	}

	.attention .fr li { padding: 0 0 15px 0; }

	.goods {
		padding: 55px 15px;
	}

	.goods h4 {
		font-size: 24px;
		font-weight: 500;
		text-align: center;
	}

}

#container { opacity: 0; }
