@charset "utf-8";


.facility-kv {
	position: relative;
	height: calc(100vh - 100px);
	overflow: hidden;
}
.facility-kv .inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	max-width: 1400px;
	height: 100%;
	left: 50%;
	z-index: 10;
	padding: 0 100px;
	transform: translateX(-50%);
}
.facility-kv h1 {
	position: absolute !important;
	margin: 0 !important;
	left: 100px;
	bottom: 110px;
	bottom: 150px;
	z-index: 10;
	color: #fff;
	line-height: 1.2;
}
.facility-kv h1.hidden {
	visibility: hidden;
}
.facility-kv figure {
	overflow: hidden;
}
.facility-kv figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


.facility-kv .arrow {
	position: absolute;
	width: 68px;
	height: 36px;
	left: calc(50% - 34px);
	bottom: 30px;
	z-index: 10;
	background: url(../img/arrow_down_white.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}



.facility-intro {
	margin: 140px 0 0;
}

.facility-intro .text {
	max-width: 794px;
}
.facility-intro .text .copy {
	font-size: 2rem;
	font-weight: 400;
}
.facility-intro .text .copy .en {
	font-size: 2.125rem;
	font-family: "UniversLTPro-55Roman", sans-serif;
}
.facility-intro p {
	max-width: 464px;
	margin: 40px 0 0 50px;
	line-height: 2;
}



.facility-detail {
	margin: 80px 0 0;
}
.facility-detail + .facility-detail {
	margin-top: 95px;
}
.facility-detail .header {
	margin: 0 0 30px;
	padding: 0 0 10px;
	border-bottom: 1px solid #c8c8c8;
}
.facility-detail .header h2 {
	margin: 10px 0 0;
	line-height: 1.9;
	font-size: 1.125rem;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}

.facility-detail .text dt {
	line-height: 2;
	font-family: "FP-ヒラギノ角ゴ ProN W6", sans-serif;
}
.facility-detail .text dd {
	margin: 4px 0 0;
	line-height: 2;
}



.facility-detail .text nav {
	margin: 30px 0 0;
}
.facility-detail .text nav a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	width: 390px;
	height: 60px;
	padding: 0 50px;
	font-size: 1.125rem;
	color: #fff;
	background: #000;
	transition: all 300ms ease-out;
}
.facility-detail .text nav em {
	position: absolute;
	display: block;
	width: 32px;
	height: 12px;
	right: 40px;
	top: calc(50% - 6px);
	background: url(../img/icon_pdf.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
.facility-detail .text nav a:hover {
	background: #444;
}







.facility-detail .slide {
	position: relative;
	overflow: hidden;
}
.facility-detail .slide-container,
.facility-detail .slide-item {
	width: 1200px;
	height: 600px;
}
.facility-detail .slide-container img {
	width: 100%;
	height: auto;
}

.facility-detail button {
	position: absolute;
	display: block;
	width: 50px;
	height: 80px;
	top: calc(50% - 40px);
	z-index: 100;
	font-size: 0;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 42px auto;
	border: none;
	cursor: pointer;
	transition: all 300ms ease-out;
}
.facility-detail button:hover {
	opacity: 0.7;
}
.facility-detail button.prev {
	left: 30px;
	background-image: url(../img/arrow_slide_prev.svg);
}
.facility-detail button.next {
	right: 30px;
	background-image: url(../img/arrow_slide_next.svg);
}


@media screen and (max-width:1399px) {
	.facility-detail .slide-container,
	.facility-detail .slide-item {
		width: calc(100vw - 200px);
		height: calc((100vw - 200px) * 0.5);
	}
}



.facility-kv figure img {
	opacity: 0;
	transform: scale(1.1);
	transition: all 1500ms ease-out;
}
.facility-kv h1 {
	opacity: 0;
	transform: translateY(30px);
	transition: all 800ms ease-out;
}
.facility-kv .arrow {
	opacity: 0;
	transform: translateY(-20px);
	transition: all 800ms ease-out 1500ms;
}

html.loaded .facility-kv figure img {
	opacity: 1;
	transform: scale(1);
}
html.loaded .facility-kv h1 {
	opacity: 1;
	transform: translateY(0);
}
html.loaded .facility-kv .arrow {
	opacity: 1;
	transform: translateY(0);
}



.facility-intro .copy {
	opacity: 0;
	transform: translateY(30px);
	transition: all 800ms ease-out;
}
.facility-intro p {
	opacity: 0;
	transform: translateY(30px);
	transition: all 800ms ease-out 500ms;
}
.facility-intro.show .copy,
.facility-intro.show p {
	opacity: 1;
	transform: translateY(0);
}



.facility-detail .header {
	opacity: 0;
	transform: translateY(30px);
	transition: all 800ms ease-out;
}
.facility-detail .slide,
.facility-detail .text {
	opacity: 0;
	transform: translateY(30px);
	transition: all 800ms ease-out 500ms;
}
.facility-detail.show .header,
.facility-detail.show .slide,
.facility-detail.show .text {
	opacity: 1;
	transform: translateY(0);
}


