@charset "utf-8";


#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #3e2058;
	text-align: center;
	color: #fff;
}

#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash_logo svg {
	width: 1000px;
}

@media screen and (max-width:990px) {
	#splash_logo svg {
		width: 100vw;
	}
}

.splashbg {
	display: none;
}

body.appear .splashbg {
	display: block;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	transform: scaleX(0);
	background-color: #3e2058;
	animation-name: PageAnime;
	animation-duration: 2.0s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;

}

@keyframes PageAnime {
	0% {
		transform-origin: right;
		transform: scaleX(0);
	}

	50% {
		transform-origin: right;
		transform: scaleX(1);
	}

	50.001% {
		transform-origin: left;
	}

	100% {
		transform-origin: left;
		transform: scaleX(0);
	}
}


#container {
	opacity: 0;
}

body.appear #container {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#mask path {
	fill-opacity: 0;
	transition: fill-opacity .5s;
	stroke: #fff;
}

#mask.done path {
	fill: #fff;
	fill-opacity: 1;
	stroke: none;
}



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

	#g-nav.panelactive {
		position: fixed;
		z-index: 999;
		top: 0;
		width: 100%;
		height: 100vh;
	}

	.circle-bg {
		position: fixed;
		z-index: 3;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: #3e2058;
		transform: scale(0);
		bottom: -50px;
		left: calc(50% - 50px);
		transition: all .6s;
	}

	.circle-bg.circleactive {
		transform: scale(50);
	}

	#g-nav-list {
		display: none;
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	#g-nav.panelactive #g-nav-list {
		display: block;
	}

	#g-nav ul {
		opacity: 0;
		position: absolute;
		z-index: 999;
		top: 40%;
		left: 50%;
		transform: translate(-50%, -40%);
	}

	#g-nav.panelactive ul {
		opacity: 1;
	}

	#g-nav.panelactive ul li {
		animation-name: gnaviAnime;
		animation-duration: 1s;
		animation-delay: .2s;
		animation-fill-mode: forwards;
		opacity: 0;
	}

}

@keyframes gnaviAnime {
	0% {
		opacity: 0;
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


.openbtn {
	display: none;
}

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

	.openbtn {
		display: block;
		position: fixed;
		z-index: 9999;
		cursor: pointer;
		top: 10px;
		right: 10px;
		width: 55px;
		height: 55px;
		border: 1px solid #fff;
	}

	.openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
	}

	.openbtn span:nth-of-type(1),
	.openbtn span:nth-of-type(3) {
		height: 1px;
		background: #fff;
		width: 62%;
		left: 10px;
	}

	.openbtn span:nth-of-type(1) {
		top: 13px;
	}

	.openbtn span:nth-of-type(2) {
		top: 19px;
		left: 9px;
		font-size: 0.55rem;
		text-transform: uppercase;
		color: #fff;
	}

	.openbtn span:nth-of-type(3) {
		top: 41px;
	}

	.openbtn.active span:nth-of-type(1) {
		top: 22px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3) {
		top: 34px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}

}

.scrolldown1 {
	position: absolute;
	left: 50%;
	top: 36vh;
	height: 100px;
}

.scrolldown1::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 100px;
	background: #000;
	animation: pathmove 2.4s ease-in-out infinite;
	opacity: 0;
}

@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 100px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 150px;
		opacity: 0;
	}
}


.btnarrow5 {
	position: relative;
	border: 1px solid #555;
	padding: 8px 30px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #333;
	outline: none;
	transition: all .2s linear;
	font-size: 0.9rem;
}

.btnarrow5:hover {
	background: #333;
	color: #fff;
}

.btnarrow5::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -26px;
	width: 40px;
	height: 1px;
	background: #333;
	transition: all .2s linear;
}

.btnarrow5::after {
	content: "";
	position: absolute;
	top: 20%;
	right: -21px;
	width: 1px;
	height: 12px;
	background: #333;
	transform: skewX(45deg);
	transition: all .2s linear;
}

.btnarrow5:hover::before {
	right: -30px;
}

.btnarrow5:hover::after {
	right: -25px;
}

#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	color: #6C6C6C;
	border: 1px solid #6C6C6C;
	transition: all 0.3s;
}

@media screen and (min-width:769px) {
	#page-top a:hover {
		background: #777;
	}
}

#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
	transform: translateY(100px);
}


#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
	animation-delay: 0s;
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 1;
		transform: translateY(100px);
	}
}



.slider {
	position: relative;
	z-index: 1;
	height: 90vh;
}


.slider-item01 {
	background: url(../img/main_01.jpg);
}

.slider-item02 {
	background: url(../img/main_02.jpg);
}

.slider-item03 {
	background: url(../img/main_03.jpg);
}

.slider-item {
	width: 100%;
	height: 90vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.slick-prev,
.slick-next {
	position: absolute;
	z-index: 3;
	top: 42%;
	cursor: pointer;
	outline: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	height: 25px;
	width: 25px;
}

.slick-prev {
	left: 2.5%;
	transform: rotate(-135deg);
}

.slick-next {
	right: 2.5%;
	transform: rotate(45deg);
}


.slick-dots {
	position: relative;
	z-index: 3;
	text-align: center;
	margin: -50px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background: #fff;
}

.slick-dots .slick-active button {
	background: #333;
}


.blur {
	animation-name: blurAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes blurAnime {
	from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}

	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}


.blurTrigger {
	opacity: 0;
}



.lineTrigger {
	position: relative;
	opacity: 0;
}

.lineTrigger.lineanime {
	animation-name: lineAnimeBase;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

@keyframes lineAnimeBase {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.lineTrigger::before,
.lineTrigger::after {
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background: #333;
}

.line2::before,
.line2::after {
	position: absolute;
	content: '';
	width: 1px;
	height: 0;
	background: #333;
}

.lineTrigger::before {
	top: 0;
	left: 0;
}

.lineTrigger.lineanime::before {
	animation: lineAnime .5s linear 0s forwards;
}

.line2::before {
	top: 0;
	right: 0;
}

.lineTrigger.lineanime .line2::before {
	animation: lineAnime2 .5s linear .5s forwards;
}

.lineTrigger::after {
	bottom: 0;
	right: 0;
}

.lineTrigger.lineanime::after {
	animation: lineAnime .5s linear 1s forwards;
}

.line2::after {
	bottom: 0;
	left: 0;
}

.lineTrigger.lineanime .line2::after {
	animation: lineAnime2 .5s linear 1.5s forwards;
}

@keyframes lineAnime {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

@keyframes lineAnime2 {
	0% {
		height: 0%;
	}

	100% {
		height: 100%;
	}
}


.lineTrigger.lineanime .lineinappear {
	animation: lineInnerAnime .5s linear 1.5s forwards;
	opacity: 0;
}

@keyframes lineInnerAnime {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


.svganimeblock svg {
	width: 100%;
}

.svganimeblock svg path {
	fill-opacity: 0;
	transition: fill-opacity .5s;
	fill: none;
	stroke: #ccc;
}

.svganimeblock svg.done path {
	fill: #efefef;
	fill-opacity: 1;
	stroke: none;
}