@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: #000000;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "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;
}

a { color: #2435ff; text-decoration: underline; }
a:hover { color: #ff0000; text-decoration: none; }

img {
	width: 100%;
	height: auto;
	line-height: 0;
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {

}

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: 1200px;
	margin: 0 auto;
}

span.red { color: #d20000; }
span.green { color: #82dc00; }
span.gray { color: #b4b4b5; }

.show-pc { display: 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);
  }
}

section {
}

/* HEADER, FOOTER */

header {
	position: relative;
	height: 95vh;
	color: #ffffff;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header .images {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 95vh;
}

header .images .slider {
	height: 95vh;
	overflow: hidden;
}

header .images img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.header-inner {
	z-index: 2;
	position: relative;
	margin: 0 auto;
}

h1 { padding: 0 0 40px 0; }

h1 img { width: 100%; height: auto; }

footer {
	padding: 0 0 20px 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 */

article { padding: 120px 0; }

.article-inner {
	margin: 0 auto;
}

h2 {
	width: 100%;
	padding: 0 0 60px 0;
}

h2 img {
	display: block;
	width: auto;
	height: 60px;
	margin: 0 auto;
}

.act { padding: 0 0 120px 0; }

.act li {
	float: left;
	width: 25%;
	color: #ffffff;
	text-align: center;
}

.act li img { padding: 0 0 20px 0; }

.detail { padding: 0 0 60px 0; }

.detail li {
	height: 90px;
	color: #000000;
	text-align: center;

	background: #ffffff;
}

.open {
	float: left;
	width: 50%;
	font-weight: bold;
	line-height: 80px;
	border-right: 5px solid #000000;
	border-bottom: 10px solid #000000;
}

.start {
	float: right;
	width: 50%;
	font-weight: bold;
	line-height: 80px;
	border-left: 5px solid #000000;
	border-bottom: 10px solid #000000;
}

.ticket {
	clear: both;
	height: auto !important;
	padding: 45px 0;
	border-bottom: 10px solid #000000;
}

.ticket h3 {
	padding: 0 0 20px 0;
	font-size: 24px;
	font-weight: bold;
}

.ticket b { font-weight: bold; }

.lawson, .place {
	font-weight: bold;
	line-height: 80px;
	border-bottom: 10px solid #000000;
}

.lawson a,
.place a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	background: #2435ff;
}

.place a span { font-weight: normal; }

.lawson a:hover,
.place a:hover {
	background: #ff0000;
}

.attention {
	color: #ffffff;
	text-align: center;
}
/* MEDIA QUERIES */

@media screen and (max-width:980px) {

	.show-pc { display: none; }
	.show-sp { display: block; }

	body { font-size: 12px; }

	.header-inner,
	.article-inner,
	.footer-inner {
		width: 100%;
		padding: 0 15px;
	}

	header {
		height: 75vh;
	}

	header .images .slider {
		height: 75vh;
	}

	header .images img {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: -90%;
		width: auto !important;
		height: 100%;
	}

	.header-inner p {
		text-align: justify;
	}

	article {
		padding: 60px 0;
	}

	.act, .detail { padding: 0 0 30px 0; }

	.act li {
		width: 50%;
		padding: 0 0 20px 0;
	}

	.act li img { padding: 0 0 10px 0; }

	h2 img { height: 45px; }

	.open, .start {
		width: 100%;
		border-left: none;
		border-right: none;
	}

	.ticket { padding: 30px 0; }

	.place span { display: none; }

}

#container { opacity: 0; }
