@charset "UTF-8";

.wrap {
	padding-top: 90px;
	background: #FAF8F5;
}

.fade-up {
	opacity: 0;
	transform: translateY(60px);
	transition: all 1s ease;
}

.fade-up.show {
	opacity: 1;
	transform: translateY(0);
}

.facilityHeader {
	padding: 40px 0 160px;
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
}

.facilityHeader .breadcrumb {
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 80px;
}

.facilityHeader .selectNone {
	user-select: none;
}

.facilityHeader .title {
	font-size: 56px;
	margin-bottom: 80px;
	text-align: center;
}

.facilityHeader .desc {
	max-width: 900px;
	text-align: center;
	width: 90%;
	margin: 0 auto;
	line-height: 1.5;
	color: #666;
	white-space: pre-line;
	width: 90%;
	font-size: 18px;
}

section.bgImg {
	padding: 200px 0;
	position: relative;
	clip-path: inset(0);
	overflow: clip;
}

.hotelInfo {
	max-width: 900px;
	margin: 120px auto;
	padding: 0 20px;
}

.facilityInfoTable {
	width: 100%;
	border-collapse: collapse;
	font-family: "Pretendard", sans-serif;
}

.facilityInfoTable tr {
	border-bottom: 1px solid #e5e5e5;
}

.facilityInfoTable th {
	position: relative;
	width: 180px;
	text-align: left;
	padding: 20px 20px 20px 30px;
	font-weight: 600;
	color: #222;
	font-size: 16px;
}

.facilityInfoTable th:before {
	content: '|';
	font-size: 40px;
	color: var(--point2);
	position: absolute;
	left: 0;
	top: 5px;
}

.facilityInfoTable td {
	padding: 20px 0;
	color: #555;
	font-size: 16px;
}

.facilityHero img {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.Gallery {
	width: 100%;
	padding: 0 20px 120px;
}

.facilityGallery, .roomGallery {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.galleryItem {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	cursor: pointer;
	border: 3px solid #ddddddcf;
}

.galleryItem img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.galleryItem:hover img {
	transform: scale(1.08);
}

.galleryModal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.galleryModal.active {
	display: flex;
}

.galleryModalInner {
	width: 90%;
	max-width: 1200px;
	position: relative;
}

.galleryModal img {
	width: 100%;
	height: 80vh;
	object-fit: contain;
}

.galleryClose {
	position: absolute;
	top: -40px;
	right: 0;
	color: white;
	font-size: 28px;
	cursor: pointer;
}

/* 반응형 */
@media ( max-width :1024px) {
	.facilityGallery, .roomGallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.galleryItem img {
		height: 280px;
	}
}

@media ( max-width :640px) {
	.facilityGallery {
		grid-template-columns: 1fr;
	}
	.galleryItem img {
		height: 260px;
	}
}