@charset "UTF-8";

.master .back-decor,
.twin .back-decor,
.main-living .back-decor,
.japanese .back-decor,
.garden .back-decor {
	width: 240px;
	opacity: 0.3;
	position: absolute;
	top: 40px;
	right: -80px;
}

/* sub-section
 ------------------------------------------------------ */
.sub-section .img-row {
	margin: 40px auto 0;
	display: grid;
	gap: 24px;
}

.sub-section .img-row img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
	object-fit: cover;
	aspect-ratio: 1.618 / 1;
}

.sub-section .container {
	margin: 64px auto 0;
}

.sub-section__text {
	padding: 0 40px 0 0;
	flex: 1 1 0;
}

.sub-section__tag {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.sub-section__ttl {
	margin: 18px 0 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.50);
	letter-spacing: 0.02em;
}

.sub-section__lead {
	margin: 28px 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 2.4;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.50);
	letter-spacing: 0.04em;
}

.sub-section__media {
	margin: 40px 0 0;
}

.sub-section__media .sub-section__media-img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
	object-fit: cover;
	aspect-ratio: 1.618 / 1;
}

/*================================================================
# hero
================================================================ */
.hero {
	text-align: center;
}

.hero__grid {
	max-width: 1440px;
	margin: 40px auto 0;
	padding: 0 40px;
	display: grid;
	gap: 64px;
}

.hero__grid .text-area {
	position: relative;
}

.hero__grid .hero__blueprints {
	margin: 0;
}

.hero__grid .text-area .decor03 {
	width: 72px;
	position: absolute;
	top: -180px;
	left: -0px;
	z-index: 1;
	transform: rotate(-34deg);
}

/* ======================================================================
   master
====================================================================== */
.scene__bg img {
	aspect-ratio: 2 / 1;
	object-position: center bottom;
}

/* ======================================================================
   twin
====================================================================== */
.twin {
	margin: 0;
}

.twin .twin-room .container {
	width: 88%;
	margin: 64px auto 0;
	display: flex;
	align-items: center;
}

.twin .twin-room__text {
	padding: 0 40px 0 0;
	flex: 1 1 0;
}

.twin .twin-room__media {
	width: 56%;
	flex: 0 0 auto;
}

.twin .twin-room__media-img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
	display: block;
	object-fit: cover;
	aspect-ratio: 1.618 / 1;
}

/*================================================================
# japanese
================================================================ */
.japanese {
	padding: 160px 0;
}

.japanese .scene__bg img {
	object-position: center 72%;
}

/*================================================================
# garden
================================================================ */
.garden {
	width: 100%;
	position: relative;
}

.garden__sticky {
	width: 100%;
	height: 64vh;
	position: relative;
	z-index: 1;
}

.garden__splide {
	width: 100%;
	height: 100%;
}

.garden__splide .splide__track,
.garden__splide .splide__list,
.garden__splide .splide__slide {
	height: 100%;
}

.garden__slide-bg {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	will-change: transform;
	transform: scale(1);
}

.garden__shade {
	width: 100%;
	height: 100%;
	opacity: 0;
	background: radial-gradient(90% 90% at 50% 30%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.88));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.garden__content {
	padding: 80px 0 0;
	position: relative;
}

.garden__text {
	text-align: center;
}

.garden__catch {
	margin: 0;
	filter: blur(10px);
	font-size: 32px;
	font-weight: 600;
	color: var(--white);
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.50);
	letter-spacing: 0.02em;
	transform: translateY(22px);
}

.garden__lead {
	margin: 2.4vh 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 2.4;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.50);
	letter-spacing: 0.04em;
	transform: translateY(18px);
}

@keyframes facilityDiningZoomIn {
	0% {
		transform: scale(1.06);
	}

	100% {
		transform: scale(1.16);
	}
}

@keyframes facilityDiningPanLR {
	0% {
		transform: scale(1.14) translateX(-2%);
	}

	100% {
		transform: scale(1.14) translateX(2%);
	}
}

@keyframes facilityDiningPanRL {
	0% {
		transform: scale(1.14) translateX(2%);
	}

	100% {
		transform: scale(1.14) translateX(-2%);
	}
}

@keyframes facilityDiningZoomOut {
	0% {
		transform: scale(1.18);
	}

	100% {
		transform: scale(1.08);
	}
}