@charset "utf-8";

:root {
	--content-center-width: 39.0rem;
	--content-right-width: 37.0rem;
}

/* 左右コンテンツ
----------------------------------------------------------------------------- */
.pc_content_left {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - var(--content-center-width) - var(--content-right-width));
	height: 100%;
}
.pc_content_left-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc_content_left-logo {
	position: absolute;
	top: 6.90rem;
	left: 6.10rem;
	width: 33.6rem;
}
.pc_content_left-txt {
	position: absolute;
	top: 8.00rem;
	right: 8.80rem;
	width: 2.0rem;
}

.pc_content_right {
	position: fixed;
	top: 0;
	right: 0;
	width: var(--content-right-width);
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.pc_content_right-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pc_content_right-box {
	position: relative;
	display: flex;
	flex-direction: column;
}

.pc_content_right-line {
	width: 100%;
}

.pc_content_right-linkbox {
	display: flex;
	flex-direction: column;
	margin-top: 8.4rem;
}

.pc_content_right-pagelink {
}
@media(hover) {
	.pc_content_right-pagelink {
		transition: opacity 0.2s;
	}
	.pc_content_right-pagelink:hover {
		opacity: 0.7;
	}
}

.pc_content_right-pagelink-img {
	display: block;
	width: 39.1rem;
}

.pc_content_right-fairlink {
	margin-top: 6.2rem;
}
@media(hover) {
	.pc_content_right-fairlink {
		transition: opacity 0.2s;
	}
	.pc_content_right-fairlink:hover {
		opacity: 0.7;
	}
}

.pc_content_right-fairlink-img {
	display: block;
	width: 39.1rem;
}

video {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* メインコンテンツ
----------------------------------------------------------------------------- */
.maincontent {
	@media (width > 767px) {/* PC */
		position: relative;
		box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px;
		width: var(--content-center-width);
		margin-left: calc(100% - var(--content-center-width) - var(--content-right-width));
	}
	@media (width <= 767px) {/* SP */
		padding-bottom: 60rem;
	}
	.map {
		width: 80%;
		margin: auto;
		@media (width > 767px) {/* PC */
			padding-bottom: 5rem;
		}
		@media (width <= 767px) {/* SP */
			padding-bottom: 0;
		}
		iframe {
			width: 100%;
			@media (width > 767px) {/* PC */
				height: 25rem;
			}
			@media (width <= 767px) {/* SP */
				height: 90rem;
			}
		}
	}
}
.flowtingbnr {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	transition: transform 0.6s;
	transform: translateY(100%);
}
.state_fewscroll .flowtingbnr {
	transform: none;
}

/* スライダー
----------------------------------------------------------------------------- */
.slider {
	position: relative;
	.front {
		position: relative;
		z-index: 20;
	}
	[data-slider] {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 30%;
	}
}
[data-slider-target] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
[data-slider-pager] {
	position: absolute;
	right: 0;
	top: 19%;
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 8px;
	button {
		position: relative;
		width: 30px;
		height: 33px;
		border-radius: 2px;
		&:after {
			content: "";
			display: block;
			width: 2px;
			height: 100%;
			position: absolute;
			inset: 0px;
			margin: auto;
			background-color: #fff;
		}
		&.active {
			&:after {
				background-color: #0D3A56;
			}
		}
		@media(hover) {
			&:after {
				transition: width 0.2s;
			}
			&:hover:after {
				width: 4px;
			}
		}
	}
}

/* ループイメージ
----------------------------------------------------------------------------- */
.loopimgwrapper {
	position: relative;
}
[data-loopimg] {
	position: absolute;
	top: 1%;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	white-space: pre;
	--dist: 10rem;
	img {
		display: block;
		position: relative;
		max-width: none;
		width: auto;
		height: 3%;
		animation: loopimganime 50s linear infinite;
		margin-right: var(--dist);
	}
}
@keyframes loopimganime {
	0% {
		transform: translateX(0%);
		left: 0%;
	}
	100% {
		transform: translateX(-100%);
		left: calc(var(--dist) * -1);
	}
}
