/*------------------------------------------
  Key Visual Top
------------------------------------------*/
.top-key-visual {
	max-width: 390px;
	width: 100%;
	height: 844px;
	position: fixed;
	top: 0;
	overflow: hidden;
	background: url(../images/top/keyV_pc.png) no-repeat center / cover;
}
.top-key-visual .video {
	display: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 600px) {
	.top-key-visual {
		background: url(../images/top/keyV_sp.png) no-repeat center / cover;
	}
	.top-key-visual .video {
		display: block;
	}
}

/*------------------------------------------
	Main Content
------------------------------------------*/
/* Common */
.top-content {
	position: relative;
	z-index: 2;
	padding-top: 844px;
}
.top-content .top-section {
	overflow: hidden;
}

/* Concept */
.top-concept {
	background: url(../images/top/concept_bg.png) no-repeat center / cover;
	width: 100%;
	height: 844px;
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
}
.top-concept .title {
	writing-mode: vertical-rl;
	font-size: 24px;
	letter-spacing: 5px;
	text-align: end;
	font-weight: 500;
	position: absolute;
	top: 180px;
	right: 40px;
}
.top-concept .text {
	writing-mode: vertical-rl;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 5px;
	line-height: 2.5;
	position: relative;
	z-index: 2;
}
.top-concept > img {
	position: absolute;
	left: 0;
	bottom: 100px;
}

/* Gallery */
.top-gallery {
	background: var(--background-main);
	height: 844px;
	position: relative;
}
.top-gallery > img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	margin: auto;
}
.top-gallery .title {
	writing-mode: vertical-rl;
	font-size: 24px;
	letter-spacing: 5px;
	font-weight: 400;
	position: absolute;
	top: 120px;
	right: 25px;
}
.top-gallery .text {
	writing-mode: vertical-rl;
	font-weight: 500;
	letter-spacing: 5px;
	line-height: 2.5;
	text-align: end;
	position: relative;
	z-index: 2;
	position: absolute;
}
.top-gallery .text01 {
	right: 58px;
	top: 160px;
}
.top-gallery .text02 {
	left: 70px;
	bottom: 50px;
}

/* Information */
.top-information {
	padding: 5rem 0;
	background: #fff;
}
.top-information .inner {
	width: 90%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
.top-information h2 {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
.top-information .more {
	text-align: right;
	font-size: 14px;
}

/* Contact */
.top-contact {
	background: #fff;
	padding: 10rem 0;
	text-align: center;
}
.top-contact a {
	font-size: 18px;
	padding: 5px 30px;
	border: 1px solid #000;
	transition: .3s;
}
.top-contact a:hover {
	color: #fff;
	background: #000;
}

/*------------------------------------------
	Animation
------------------------------------------*/
/* 背景色が伸びてからテキスト出現 */
/* 共通 */
.bgLRextendTrigger {
	position: relative;
	/*overflow: hidden;*/
	opacity: 0;
}
.bgLRextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	/*overflow: hidden;*//*　はみ出た色要素を隠す　*/
	opacity:0;
}
@keyframes bgextendAnimeBase {
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}