/* Golf Central Residence — Figma 26:120, 1920 baseline, 1rem = 100px */

html {
	font-size: 26.66667vw;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 0.2rem;
}

@media (min-width: 768px) {
	html {
		font-size: 13.02083vw;
	}
}

@media (min-width: 1200px) {
	html {
		font-size: 5.20833vw;
	}
}

@media (min-width: 1920px) {
	html {
		font-size: 100px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.unit-chevron {
		-webkit-transition: none;
		transition: none;
	}
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
	font-size: 0.16rem;
	line-height: 1.2;
	color: #000;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

ul {
	list-style: none;
}

h1,
h2,
h3,
p {
	font-weight: inherit;
}

/* ---------- Header ---------- */

.site-header {
	background: #fff;
}

.header-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 19.2rem;
	margin: 0 auto;
	min-height: 0.98rem;
	padding: 0.24rem 0.16rem;
}

.logo {
	font-size: 0.28rem;
	font-weight: 400;
	line-height: 1.3;
	color: #853c0c;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.nav {
	display: none;
}

.nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.nav-link {
	font-size: 0.18rem;
	line-height: 0.22rem;
	color: #000;
	white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
	color: #843c0c;
}

.btn-reserve {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 1.2rem;
	height: 0.31rem;
	padding: 0 0.12rem;
	border-radius: 0.02rem;
	background: #843c0c;
	font-size: 0.12rem;
	font-weight: 400;
	line-height: 0.21rem;
	color: #fff;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.btn-reserve:hover {
	opacity: 0.92;
}

.nav-toggle {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 0.36rem;
	height: 0.36rem;
	margin-left: 0.08rem;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.nav-toggle-bar {
	display: block;
	width: 0.22rem;
	height: 0.02rem;
	margin: 0.025rem 0;
	background: #843c0c;
	border-radius: 0.01rem;
}

.nav.is-open {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0.98rem;
	z-index: 20;
	background: #fff;
	-webkit-box-shadow: 0 0.08rem 0.16rem rgba(132, 60, 12, 0.12);
	box-shadow: 0 0.08rem 0.16rem rgba(132, 60, 12, 0.12);
}

.nav.is-open .nav-list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 0.12rem 0.16rem 0.2rem;
}

.nav.is-open .nav-link {
	display: block;
	padding: 0.12rem 0;
	border-bottom: 1px solid #e3dfdb;
}

.site-header {
	position: relative;
	z-index: 30;
}

/* ---------- Hero ---------- */

.hero {
	width: 100%;
	overflow: hidden;
}

.hero-media {
	width: 100%;
}

.hero-media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

/* ---------- Sections ---------- */

.content-stack {
	position: relative;
}

.timeline-line {
	display: none;
}

.section {
	background: #fff;
}

.section-alt {
	background: #f5f3f0;
}

.section-inner {
	width: 100%;
	max-width: 19.2rem;
	margin: 0 auto;
	padding: 0.28rem 0.16rem 0.32rem;
}

.section-head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-dot {
	display: none;
	width: 0.44rem;
	height: 0.44rem;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.section-title {
	font-size: 0.32rem;
	font-weight: 700;
	line-height: 1.15;
	color: #853c0c;
	text-transform: uppercase;
}

.section-title-unit,
.section-title-contact {
	color: #843c0c;
}

.section-lead {
	margin: 0.12rem auto 0.2rem;
	font-size: 0.18rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #000;
}

.media-card {
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.location-slider {
	position: relative;
	width: 100%;
}

.location-swiper {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.location-swiper .swiper-slide {
	height: auto;
	background: #fff;
}

.location-card {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #fff;
}

.location-card img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: contain;
}

.location-caption {
	margin-top: 0;
	padding: 0.12rem 0.16rem 0.18rem;
	background: #fff;
}

.location-slider .slider-btn {
	display: block;
	position: absolute;
	top: 50%;
	width: 0.4rem;
	height: 0.4rem;
	margin-top: -0.2rem;
	z-index: 3;
}

.location-slider .slider-btn-prev {
	left: 0.08rem;
}

.location-slider .slider-btn-next {
	right: 0.08rem;
}

.location-slider .slider-btn-prev img {
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
}

.view-slider {
	position: relative;
	width: 100%;
}

.view-swiper {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.view-swiper .swiper-slide {
	height: auto;
	background: #fff;
}

.view-card {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #fff;
}

.view-card img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: contain;
}

.view-caption {
	margin-top: 0;
	padding: 0.12rem 0.16rem 0.18rem;
	background: #fff;
}

.view-slider .slider-btn {
	display: block;
	position: absolute;
	top: 50%;
	width: 0.4rem;
	height: 0.4rem;
	margin-top: -0.2rem;
	z-index: 3;
}

.view-slider .slider-btn-prev {
	left: 0.08rem;
}

.view-slider .slider-btn-next {
	right: 0.08rem;
}

.view-slider .slider-btn-prev img {
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
}

/* ---------- Gallery Swiper ---------- */

.gallery-slider {
	position: relative;
}

.gallery-swiper {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.gallery-swiper .swiper-slide {
	height: auto;
}

.gallery-photo {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 749 / 516;
	overflow: hidden;
	background: #fff;
	cursor: zoom-in;
}

.gallery-photo img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gallery-caption,
.location-caption,
.view-caption {
	font-size: 0.18rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	color: #000;
}

.gallery-caption {
	margin-top: 0.12rem;
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 200;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0.48rem 0.32rem;
	background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.lightbox-dismiss {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	cursor: zoom-out;
}

.lightbox-frame {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 100%;
	max-height: 100%;
}

.lightbox-image-btn {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 1.2rem);
	cursor: pointer;
}

.lightbox-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100vh - 1.2rem);
	object-fit: contain;
}

.lightbox-caption {
	margin-top: 0.16rem;
	font-size: 0.16rem;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	color: #fff;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 0.56rem;
	height: 0.56rem;
	margin-top: -0.28rem;
}

.lightbox-nav img {
	width: 100%;
	height: 100%;
}

.lightbox-prev {
	left: 0.16rem;
}

.lightbox-prev img {
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
}

.lightbox-next {
	right: 0.16rem;
}

.lightbox-close {
	position: absolute;
	top: 0.16rem;
	right: 0.16rem;
	z-index: 2;
	width: 0.4rem;
	height: 0.4rem;
	font-size: 0.36rem;
	line-height: 0.4rem;
	color: #fff;
}

.slider-btn {
	display: none;
	width: 0.56rem;
	height: 0.56rem;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	z-index: 2;
}

.slider-btn img {
	width: 100%;
	height: 100%;
}

/* ---------- Unit card ---------- */

.unit-card {
	width: 100%;
	overflow: hidden;
	background: #f5f3f0;
	border: 1px solid #e3dfdb;
	border-radius: 0.03rem;
}

.unit-item + .unit-item {
	border-top: 1px solid #d9d9d9;
}

.unit-toggle {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	min-height: 0.64rem;
	padding: 0.16rem;
	background: transparent;
	color: #000;
	font-size: 0.18rem;
	line-height: 0.23rem;
	text-align: left;
}

.unit-toggle.is-open {
	height: 0.64rem;
	min-height: 0.64rem;
	padding: 0 0.16rem;
	background: #853c0c;
	color: #fff;
}

.unit-item:first-child .unit-toggle.is-open {
	border-radius: 0.03rem 0.03rem 0 0;
}

.unit-chevron {
	display: none;
	width: 0.11rem;
	height: 0.06rem;
	margin-right: 0.08rem;
}

.unit-toggle.is-open .unit-chevron {
	display: block;
}

.unit-toggle.is-open .unit-type-arrow {
	display: none;
}

.unit-panel {
	display: none;
	padding: 0.16rem 0.08rem 0.2rem;
}

.unit-panel.is-open {
	display: block;
}

.unit-slider {
	position: relative;
}

.unit-swiper {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.unit-swiper .swiper-slide {
	height: auto;
}

.unit-arrow {
	display: none;
	width: 0.56rem;
	height: 0.56rem;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	z-index: 5;
}

.unit-arrow img {
	width: 100%;
	height: 100%;
}

.unit-photo {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 395 / 280;
	overflow: hidden;
	background: #fff;
	cursor: zoom-in;
}

.unit-photo img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.unit-caption {
	margin-top: 0.08rem;
	font-size: 0.12rem;
	font-weight: 400;
	line-height: 1.25;
	text-align: center;
	color: #000;
	word-break: break-word;
}

.unit-item-single .unit-arrow {
	display: none;
}

.unit-photo-plan {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.unit-photo-plan img {
	width: 2.91rem;
	height: 4.25rem;
	max-width: none;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	object-fit: cover;
}

.unit-type-arrow {
	width: 0.11rem;
	height: 0.06rem;
	margin-right: 0.06rem;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* ---------- Contact ---------- */

.contact-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	background: #fff;
	border-radius: 0.15rem;
	-webkit-box-shadow: 0 0 0.2rem 0 rgba(132, 60, 12, 0.32);
	box-shadow: 0 0 0.2rem 0 rgba(132, 60, 12, 0.32);
}

.contact-info {
	padding: 0.32rem 0.24rem 0.28rem;
}

.contact-name {
	font-size: 0.28rem;
	font-weight: 400;
	line-height: 1.4;
	color: #843c0c;
}

.contact-line {
	margin-top: 0.16rem;
	font-size: 0.2rem;
	line-height: 1.5;
	color: #424242;
}

.contact-line strong {
	font-weight: 400;
	color: #000;
}

.contact-line a:hover {
	text-decoration: underline;
}

.contact-line-break {
	display: block;
}

.contact-map {
	width: 100%;
	aspect-ratio: 801 / 462;
	overflow: hidden;
}

.contact-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Footer ---------- */

.site-footer {
	background: #fff;
}

.footer-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.12rem;
	width: 100%;
	max-width: 19.2rem;
	margin: 0 auto;
	padding: 0.28rem 0.16rem 0.4rem;
}

.footer-copy,
.footer-link {
	font-size: 0.14rem;
	line-height: 0.18rem;
	color: #000;
}

.footer-link:hover {
	color: #843c0c;
}

/* ---------- Tablet ---------- */

@media (min-width: 768px) {
	.header-inner {
		padding: 0.28rem 0.32rem;
	}

	.logo {
		font-size: 0.32rem;
	}

	.btn-reserve {
		min-width: 1.37rem;
		font-size: 0.14rem;
	}

	.section-inner {
		padding: 0.28rem 0.32rem 0.32rem;
	}

	.section-title {
		font-size: 0.36rem;
	}

	.section-lead {
		margin: 0.14rem auto 0.22rem;
		font-size: 0.2rem;
		line-height: 1.4;
	}

	.location-card,
	.view-card {
		max-height: calc(100vh - 2.4rem);
	}

	.gallery-caption {
		margin-top: 0.14rem;
		font-size: 0.22rem;
	}

	.location-caption {
		font-size: 0.22rem;
	}

	.view-caption {
		font-size: 0.22rem;
	}

	.unit-toggle {
		font-size: 0.18rem;
	}

	.contact-name {
		font-size: 0.28rem;
		line-height: 1.3;
	}

	.contact-line {
		font-size: 0.2rem;
		line-height: 1.4;
	}

	.footer-inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0.32rem;
	}

	.footer-copy,
	.footer-link {
		font-size: 0.16rem;
	}
}

/* ---------- PC ---------- */

@media (min-width: 1200px) {
	.header-inner {
		min-height: 0.98rem;
		padding: 0.25rem 1.28rem 0.16rem 1.29rem;
	}

	.logo {
		font-size: 0.36rem;
		line-height: 0.47rem;
		width: 3.2rem;
	}

	.nav {
		display: block;
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		max-width: 6.43rem;
		margin-left: 0.81rem;
	}

	.nav-list {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
	}

	.nav-toggle {
		display: none;
	}

	.btn-reserve {
		margin-left: auto;
		min-width: 1.37rem;
		height: 0.31rem;
	}

	.timeline-line {
		display: block;
		position: absolute;
		left: 50%;
		top: 0.48rem;
		bottom: 0.28rem;
		width: 0.03rem;
		margin-left: calc(-9.6rem + 0.66rem);
		background: #853c0c;
		pointer-events: none;
	}

	.section-inner {
		padding: 0.28rem 1.28rem 0.32rem 1.29rem;
	}

	.section-dot {
		display: block;
		width: 0.36rem;
		height: 0.36rem;
		margin-left: -0.79rem;
		margin-right: 0.3rem;
	}

	.section-title {
		font-size: 0.4rem;
		line-height: 0.46rem;
	}

	.section-lead {
		margin-top: 0.14rem;
		margin-bottom: 0.24rem;
		font-size: 0.22rem;
		line-height: 1.4;
	}

	.location-slider {
		max-width: 16.63rem;
		padding: 0 0.84rem;
	}

	.location-card {
		height: 7rem;
		min-height: 0;
		max-height: calc(100vh - 3.2rem);
		aspect-ratio: auto;
	}

	.location-slider .slider-btn {
		top: 3.5rem;
		width: 0.72rem;
		height: 0.72rem;
		margin-top: -0.36rem;
	}

	.location-slider .slider-btn-prev {
		left: 0;
	}

	.location-slider .slider-btn-next {
		right: 0;
	}

	.location-caption {
		padding: 0.14rem 0.24rem 0.2rem;
	}

	.view-slider {
		max-width: 16.63rem;
		padding: 0 0.84rem;
	}

	.view-card {
		height: 7rem;
		max-height: calc(100vh - 3.2rem);
		aspect-ratio: auto;
	}

	.view-slider .slider-btn {
		top: 3.5rem;
		width: 0.72rem;
		height: 0.72rem;
		margin-top: -0.36rem;
	}

	.view-slider .slider-btn-prev {
		left: 0;
	}

	.view-slider .slider-btn-next {
		right: 0;
	}

	.view-caption {
		padding: 0.14rem 0.24rem 0.2rem;
	}

	.gallery-slider {
		padding: 0 0.59rem 0 0.68rem;
	}

	.slider-btn {
		display: block;
		position: absolute;
		top: 1.84rem;
		width: 0.72rem;
		height: 0.72rem;
	}

	.slider-btn-prev {
		left: 0;
	}

	.slider-btn-prev img {
		-webkit-transform: scaleX(-1);
		-ms-transform: scaleX(-1);
		transform: scaleX(-1);
	}

	.slider-btn-next {
		right: 0;
	}

	.lightbox-nav {
		width: 0.96875rem;
		height: 0.96875rem;
		margin-top: -0.484375rem;
	}

	.lightbox-prev {
		left: 0.24rem;
	}

	.lightbox-next {
		right: 0.24rem;
	}

	.gallery-photo {
		height: 4.4rem;
		max-height: calc(100vh - 3.2rem);
		aspect-ratio: auto;
	}

	.gallery-caption {
		margin-top: 0.16rem;
		font-size: 0.22rem;
		line-height: 1.2;
	}

	.location-caption {
		font-size: 0.22rem;
		line-height: 1.2;
	}

	.view-caption {
		font-size: 0.22rem;
		line-height: 1.2;
	}

	.unit-card {
		max-width: 16.64rem;
	}

	.unit-toggle {
		min-height: 0.52rem;
		padding: 0.1rem 0.16rem 0.1rem 0.24rem;
		font-size: 0.18rem;
		line-height: 0.24rem;
	}

	.unit-toggle.is-open {
		height: 0.52rem;
		min-height: 0.52rem;
		padding-left: 0.24rem;
	}

	.unit-panel {
		padding: 0.14rem 0 0.16rem;
	}

	.unit-slider {
		padding: 0 0.23rem;
	}

	.unit-arrow {
		display: block;
		position: absolute;
		top: 1.2rem;
		margin-top: -0.28rem;
	}

	.unit-prev {
		left: 0;
	}

	.unit-prev img {
		-webkit-transform: scaleX(-1);
		-ms-transform: scaleX(-1);
		transform: scaleX(-1);
	}

	.unit-next {
		right: 0.02rem;
	}

	.unit-photo {
		height: 2.4rem;
		aspect-ratio: auto;
	}

	.unit-caption {
		margin-top: 0.1rem;
		font-size: 0.16rem;
		line-height: 1.25;
	}

	.contact-card {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		max-width: 15.99rem;
		height: 3.6rem;
	}

	.contact-info {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		min-width: 0;
		padding: 0.36rem 0.36rem 0.32rem 0.4rem;
	}

	.contact-name {
		height: auto;
		font-size: 0.32rem;
		line-height: 1.3;
	}

	.contact-line {
		margin-top: 0.18rem;
		font-size: 0.22rem;
		line-height: 1.4;
	}

	.contact-line + .contact-line {
		margin-top: 0.1rem;
	}

	.contact-map {
		width: 6.4rem;
		height: 3.6rem;
		aspect-ratio: auto;
		-webkit-flex-shrink: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}

	.footer-inner {
		padding: 0.33rem 1.28rem 0.49rem 1.28rem;
	}
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
	.site-header {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}

	.header-inner {
		min-height: 0.56rem;
		padding: 0.1rem 0.16rem;
		gap: 0.08rem;
	}

	.logo {
		font-size: 0.22rem;
		min-width: 0;
	}

	.btn-reserve {
		min-width: 0;
		height: 0.28rem;
		padding: 0 0.1rem;
		font-size: 0.12rem;
	}

	.nav-toggle {
		width: 0.32rem;
		height: 0.32rem;
		margin-left: 0;
	}

	.nav.is-open {
		top: 100%;
		max-height: calc(100vh - 0.56rem);
		overflow-y: auto;
	}

	html {
		scroll-padding-top: 0.56rem;
	}

	.section-inner {
		padding: 0.22rem 0.16rem 0.24rem;
	}

	.section-title {
		font-size: 0.26rem;
	}

	.section-lead {
		margin: 0.1rem 0 0.16rem;
		font-size: 0.15rem;
		line-height: 1.4;
		text-align: left;
	}

	.section-lead br {
		display: none;
	}

	.location-swiper .swiper-slide {
		border-radius: 0.08rem;
		overflow: hidden;
	}

	.location-card {
		border-radius: 0;
		background: #fff;
		overflow: hidden;
	}

	.location-slider .slider-btn {
		top: calc((100vw - 0.32rem) * 9 / 16 / 2);
		margin-top: -0.2rem;
	}

	.location-slider .slider-btn-prev {
		left: 0.04rem;
	}

	.location-slider .slider-btn-next {
		right: 0.04rem;
	}

	.view-swiper .swiper-slide {
		border-radius: 0.08rem;
		overflow: hidden;
	}

	.view-card {
		aspect-ratio: 16 / 9;
		border-radius: 0;
		overflow: hidden;
	}

	.view-slider .slider-btn {
		top: calc((100vw - 0.32rem) * 9 / 16 / 2);
		margin-top: -0.2rem;
	}

	.view-slider .slider-btn-prev {
		left: 0.04rem;
	}

	.view-slider .slider-btn-next {
		right: 0.04rem;
	}

	.gallery-slider {
		padding: 0;
	}

	.slider-btn {
		display: block;
		position: absolute;
		top: calc((100vw - 0.32rem) * 516 / 749 / 2 - 0.2rem);
		width: 0.4rem;
		height: 0.4rem;
		z-index: 3;
	}

	.slider-btn-prev {
		left: 0.08rem;
	}

	.slider-btn-prev img {
		-webkit-transform: scaleX(-1);
		-ms-transform: scaleX(-1);
		transform: scaleX(-1);
	}

	.slider-btn-next {
		right: 0.08rem;
	}

	.lightbox-nav {
		width: 0.4rem;
		height: 0.4rem;
		margin-top: -0.2rem;
	}

	.lightbox-prev {
		left: 0.08rem;
	}

	.lightbox-next {
		right: 0.08rem;
	}

	.gallery-photo {
		border-radius: 0.06rem;
	}

	.gallery-caption {
		margin-top: 0.1rem;
		font-size: 0.15rem;
	}

	.location-caption {
		font-size: 0.15rem;
		padding: 0.1rem 0.12rem 0.14rem;
	}

	.view-caption {
		font-size: 0.15rem;
		padding: 0.1rem 0.12rem 0.14rem;
	}

	.unit-toggle {
		min-height: 0.4rem;
		font-size: 0.16rem;
	}

	.unit-toggle.is-open {
		height: 0.4rem;
		min-height: 0.4rem;
	}

	.unit-panel {
		padding: 0.08rem 0.1rem 0.12rem;
	}

	.unit-arrow {
		display: block;
		position: absolute;
		top: calc((100vw - 0.56rem) * 280 / 395 / 2);
		width: 0.4rem;
		height: 0.4rem;
		margin-top: -0.2rem;
	}

	.unit-prev {
		left: 0.04rem;
	}

	.unit-prev img {
		-webkit-transform: scaleX(-1);
		-ms-transform: scaleX(-1);
		transform: scaleX(-1);
	}

	.unit-next {
		right: 0.04rem;
	}

	.unit-photo {
		border-radius: 0.04rem;
	}

	.unit-photo-plan img {
		width: auto;
		height: 145%;
		max-width: none;
	}

	.contact-card {
		border-radius: 0.12rem;
	}

	.contact-info {
		padding: 0.18rem 0.16rem 0.16rem;
	}

	.contact-name {
		font-size: 0.22rem;
		line-height: 1.3;
	}

	.contact-line {
		margin-top: 0.1rem;
		font-size: 0.15rem;
		line-height: 1.4;
		word-break: break-word;
	}

	.contact-map {
		aspect-ratio: 16 / 9;
	}

	.footer-inner {
		padding: 0.24rem 0.16rem 0.32rem;
	}

	.footer-copy,
	.footer-link {
		font-size: 0.12rem;
		line-height: 1.4;
	}
}
