@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: 14px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	line-height: 1.8;
	letter-spacing: 0.1em;
	font-feature-settings : "palt" 1;
	background: #000000 url(../images/bg_line.svg) no-repeat center center;
	background-size: cover;
}

a { color: #000000; text-decoration: none; }
a:hover { color: #000000; text-decoration: none; }

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

h1, h2, h3, h4, h5, h6 {
 color: #008700;
}

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;
}

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

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

#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);
  }
}

/* HEADER, NAV, FOOTER */

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

header {
	padding: 0 0 20vw 0;
	background: url(../images/bg_a.png) no-repeat center bottom;
	background-size: 100%;
	background-color: #B7AA00;
	clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
}

.header-inner img {
	position: relative;
	z-index: 9999;
	display: block;
}

.header-inner img.logo {
	width: 33.3%;
	margin: 0 auto;
	padding: 120px 0 100px 0;
}

.header-inner img.title {
 width: 75%;
	margin: 0 auto;
}

.header-inner img.date {
	width: 75%;
	margin: 0 auto;
	padding: 120px 0;
}

.header-inner img.time {
 width: 75%;
	margin: 0 auto;
}

footer {
	padding: 60px 0;
	text-align: center;
}

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

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

.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 */

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

article h4 {
	padding: 0 0 120px 0;
	text-align: center;
}

article h4 img {
	width: auto;
	height: 75px;
}

article h5 {
	padding: 0 0 30px 0;
	text-align: center;
}

article h5 img {
	width: auto;
	height: 20px;
}

.lineup, .lineup .article-inner { z-index: 9999; position: relative; }

.lineup ul {
	padding: 0 0 60px 0;
	text-align: center;
}

.lineup ul li {
	display: inline-block;
	width: 24.5%;
	padding: 0 0 45px;
	text-align: center;
}

.lineup ul li img {
	padding: 0 0 10px;
}

.lineup .more {
	display: block;
	width: 200px;
	height: 75px;
	margin: 30px auto;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	line-height: 75px;
	text-align: center;
	background: #3E4298;
	border-radius: 5px;
}

.second p,
.vjs p,
.opdj p,
.laser p {
	font-size: 30px;
	text-align: center;
}

.attention p {
	padding: 90px 0 0 0;
	text-align: center;
}

.vjs h5,
.opdj h5 { padding-top: 30px; }

.bg_b {
	position: absolute;
	z-index: 1;
	top: -30%;
	right: 0;
	width: 35%;
	height: auto;
}

.bg_c {
	position: absolute;
	z-index: 1;
	bottom: -70%;
	right: 0;
	width: 20%;
	height: auto;
}

.bg_d {
	padding: 25vw 0 0 0;
	background: url(../images/bg_d.svg) no-repeat center bottom;
	background-size: cover;
	background-color: #B7AA00;
	clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
}

.goods {
	text-align: center;
}

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

	.goods a { cursor: pointer; }

.goods a.store {
	font-size: 36px;
	color: #ffffff;
	text-decoration: underline;
}

.goods a:hover { text-decoration: none; }

.goods a img {
	transition: transform 0.3s cubic-bezier(.1,1,.5,1);
}

.goods a img:hover {
	transform: scale(0.975);
}

/* MEDIA QUERIES */

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

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

	/* HEADER, NAV, FOOTER */

	header {
		padding: 0 0 35vw 0;
	}

	.header-inner img.logo {
		padding: 60px 0 50px 0;
	}

	.header-inner img.date {
		padding: 60px 0;
		width: 90%;
	}

	footer {
		padding: 30px 0;
	}

	/* MAIN */

	article h4 {
		padding: 0 0 45px 0;
		text-align: center;
	}

	article h4 img {
		height: 36px;
	}

	article h5 {
		padding: 0 0 15px 0;
	}

	article h5 img {
		height: 15px;
	}

	.lineup ul {
		padding: 0 0 30px 0;
	}

	.lineup ul li {
		width: 40%;
		padding: 0 0 30px;
	}

	.second p,
	.vjs p,
	.opdj p,
	.laser p {
		padding: 0 15px;
		font-size: 15px;
		text-align: center;
	}

	.attention p {
		padding: 45px 15px 15px;
		font-size: 10px;
		text-align: justify;
	}

	.bg_b {
		position: absolute;
		z-index: 1;
		top: -10%;
		right: 0;
		width: 35%;
		height: auto;
	}

	.bg_c {
		position: absolute;
		z-index: 1;
		bottom: -10%;
		right: 0;
		width: 33%;
		height: auto;
	}

	.bg_d {
		padding: 45vw 0 0 0;
		background: url(../images/bg_d.svg) no-repeat center bottom;
		background-size: cover;
		background-color: #B7AA00;
		clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
	}

	.goods {
		text-align: center;
	}

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

	.goods a.store {
		font-size: 36px;
		color: #ffffff;
		text-decoration: underline;
	}

	.goods a:hover { text-decoration: none; }

}

#container { opacity: 0; }
