@charset "utf-8";

/* --------------------------------------------------------- */
/* KV */
.kv {
	position: relative;
	width: 100%;
	height: 100vh;
}

.kv-elms {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	line-height: 1.5;
	z-index: 10;
}

.kv-elms::before {
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	content: none;
	height: 80px;
	width: 1px;
	background-color: currentColor;
	opacity: 0.5;
}

.kv-logo {
	margin: 0 auto 30px;
	width: calc(100% - 60px);
	text-align: center;
}

.kv-logo img {
	display: block;
	height: auto;
}

.kv-logo__type {
	width: calc(100% - 40px);
	max-width: 420px;
	margin: auto;
}

@media screen and (min-width: 768px) {
	.kv-logo__type {
		max-width: 150px;
	}
}

@media screen and (min-width: 1280px) {
	.kv {
		margin-bottom: 120px;
		height: 95vh
	}

	.kv-logo__type {
		max-width: 480px;
	}
}

/* Image reel -------------------------------------------------------------- */
.image-reel {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: auto;
	padding: 0;
	font-size: 0;
	line-height: 0;
	list-style: none;
	overflow: hidden;
	position: absolute;
	top: 0;
}

.image-reel:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
}

.image-reel:before {
	z-index: 9;
}

.image-reel-item {
	position: absolute;
	opacity: 0;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	top: 0;
	height: 100%;
	width: 100%;
	transition: all 3.5s cubic-bezier(.44,.07,.05,.69);
	transform-origin: center center;
}

.image-reel-item .img {
	width: 100%;
}

.image-reel .kv-fit-img {
	position: absolute;
}

.image-reel-item.current {
	opacity: 1;
	overflow: hidden;
	transform: scale(1);
}

/* ------------------------------------------------- */
