@charset "utf-8";

/** OP Anime **/
#op-intro {
	position: fixed;
	inset: 0;
	z-index: 99999;
	width: 100vw;
	height: 100svh;
	background: #000;
	overflow: hidden;
}

#op-animation {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#op-animation svg {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.op-white {
	position: absolute;
	inset: 0;
	background: #fff;
	opacity: 0;
	pointer-events: none;
}

html.hero-lock,
body.hero-lock {
	overflow: hidden;
}

#op-skip {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 999999;
	display: block;
	padding: 10px 20px;
	border: 1px solid #000;
	background: rgba(255,255,255,.8);
	color: #000;
	cursor: pointer;
	pointer-events: auto;
}


/** Hero > History **/
#timeline .hero-stage {
	background: #fff;
	width: 100%;
	height: 100svh;
	text-align: center;
	display: grid;
	place-items: center;
	position: relative;
	z-index: 999;
}
#timeline .hero-detail {
	width: 90%;
	margin: 0 auto;
}


/*
#header {
	transform: translateY(-100%);
	transition: transform 0.6s ease;
}

#header.is-scroll-header {
	transform: translateY(0);
}

.fixed-nav.is-hero-hidden {
	opacity: 0;
	pointer-events: none;
}

.fixed-nav.is-scroll-nav {
	opacity: 1;
	pointer-events: auto;
}
*/


/** Hero**/
#timeline .hero-stage h3::before,
#timeline .hero-stage h3::after {
	display: inline-block;
	content: '';
	background: #000033;
	height: 1px;
	margin: 0 0 0.3em;
}

#timeline .hero-stage .scroll-btn {
	display: block;
	background: none;
	width: 40px;
	height: 50px;
	border: 0;
	padding: 0;
	margin: 20px auto 48px;
	cursor: pointer;
	position: relative;
}
@media only screen and (max-width: 640px) {
	#timeline .hero-stage .scroll-btn {
		height: 60px;
		margin-bottom: 7.2vw;
	}
}
#timeline .hero-stage .scroll-btn__arrow {
	background: #000033;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transform-origin: top;
	animation: scrollArrow 2.5s ease-in-out infinite;
}
#timeline .hero-stage .scroll-btn__arrow::before {
	content: "";
	background: #000033;
	width: 8px;
	height: 1px;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%);
}
#timeline .hero-stage .scroll-btn__arrow::after {
	content: "";
	width: 0;
	height: 0;
	margin: auto;
	border-width: 5px 4px 0 4px;
	border-style: solid;
	border-color: #000033 transparent transparent transparent;
	position: absolute;
	bottom: 0;
	left: -3px;
}
@keyframes scrollArrow {
	0% {
		top: -30px;
		transform: translateX(-50%) scaleY(0);
		opacity: 0;
	}
	40% {
		transform: translateX(-50%) scaleY(1);
		opacity: 1;
	}
	100% {
		top: 30px;
		transform: translateX(-50%) scaleY(1);
		opacity: 0;
	}
}

#timeline .hero-stage #startBtn {
	background: #000033;
	line-height: 1.0;
	color: #fff;
	text-align: center;
	border-radius: 2.0em;
}

@media only screen and (max-width: 640px) {
	#timeline .hero-stage {
		padding: 0 0 20px;
	}

	#timeline .hero-stage h1 {
		width: calc(110 / 375 * 100vw);
		margin: 0 auto 10.4vw;
	}
	#timeline .hero-stage h2 {
		font-size: calc(16 / 375 * 100vw);
		line-height: 1.6;
		margin: 0 0 7.2vw;
	}
	#timeline .hero-stage h3 {
		font-size: calc(15 / 375 * 100vw);
		margin: 0 0 5.8vw;
	}
	#timeline .hero-stage h3::before,
	#timeline .hero-stage h3::after {
		width: 46px;
	}
	#timeline .hero-stage h3::before {
		margin-right: 18px;
	}
	#timeline .hero-stage h3::after {
		margin-left: 18px;
	}
	#timeline .hero-stage p {
		font-size: calc(13 / 375 * 100vw);
		line-height: 2.1;
		margin: 0 0 5.4vw;
	}
	#timeline .hero-stage #startBtn {
		font-size: calc(12 / 375 * 100vw);
		padding: 0.6em 3.0em;
	}
}
@media print, screen and (min-width: 641px) {
	#timeline .hero-stage {
		padding: 0 0 20px;
	}
	#timeline .hero-stage h1 {
		width: 130px;
		margin: 0 auto 32px;
	}
	#timeline .hero-stage h2 {
		font-size: 3.2rem;
		margin: 0 0 36px;
	}
	#timeline .hero-stage h3 {
		font-size: 2.4rem;
		margin: 0 0 32px;
	}
	#timeline .hero-stage h3::before,
	#timeline .hero-stage h3::after {
		width: 120px;
	}
	#timeline .hero-stage h3::before {
		margin-right: 32px;
	}
	#timeline .hero-stage h3::after {
		margin-left: 32px;
	}
	#timeline .hero-stage p {
		font-size: 1.8rem;
		line-height: 1.7;
		margin: 0 0 32px;
	}
	#timeline .hero-stage #startBtn {
		font-size: 1.2rem;
		transition: 0.3s ease-in-out;
		padding: 9px 3.0em 11px;
	}
	#timeline .hero-stage #startBtn:hover {
		opacity: .6;
	}
}
