:root {
	--color-bg: #ffffff;
	--color-surface: #ffffff;
	--color-text: #1d2a35;
	--color-subtext: #2b4f5e;
	--color-border: #d4dee8;
	--color-accent: #0f6c82;
	--color-accent-dark: #0b5668;
	--radius-md: 12px;
	--radius-lg: 18px;
	--fluid-gutter: clamp(1.25rem, 2.5vw, 2rem);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.8;
}

/* Keep front-page wrappers edge-to-edge without runtime JS overrides. */
body.home #page,
body.home .container.grid-container,
body.home .grid-container,
body.home .site-content,
body.home .content-area,
body.home .inside-article,
body.home .site-main.p-home {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
}

body.home .site-content,
body.home .content-area,
body.home .inside-article {
	padding: 0 !important;
}

body.home {
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.l-container {
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
}

.page-header,
.sidebar .widget,
.site-main > * {
	margin-bottom: 0;
}

.separate-containers .site-main {
	margin: 0;
}

.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	background-color: var(--color-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-btn:hover,
.c-btn:focus-visible {
	background-color: var(--color-accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(24, 24, 24, 0.2);
}

.c-btn--ghost {
	border-color: var(--color-accent);
	background-color: transparent;
	color: var(--color-accent);
}

.c-btn--ghost:hover,
.c-btn--ghost:focus-visible {
	background-color: var(--color-accent);
	color: #fff;
}

.c-section-title {
	margin: 0 0 12px;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.c-heading {
	margin: 0;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.35;
	letter-spacing: 0.02em;
}

.c-card {
	padding: 24px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background-color: var(--color-surface);
}

.u-text-center {
	text-align: center;
}

.l-site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 120;
	width: 100%;
	isolation: isolate;
	--mobile-menu-gap: 0px;
	background-color: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.l-site-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: calc(100% + 14px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}

.l-site-header.is-scrolled::before {
	background-color: rgba(255, 255, 255, 0.32);
	-webkit-backdrop-filter: blur(2px) saturate(140%);
	backdrop-filter: blur(2px) saturate(140%);
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.28) 82%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.28) 82%, rgba(0, 0, 0, 0) 100%);
	opacity: 1;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
	.l-site-header.is-scrolled::before {
		background-color: transparent;
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.56) 54%, rgba(255, 255, 255, 0.18) 82%, rgba(255, 255, 255, 0) 100%);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		-webkit-mask-image: none;
		mask-image: none;
	}
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) and not ((-webkit-mask-image: linear-gradient(#000, transparent)) or (mask-image: linear-gradient(#000, transparent))) {
	.l-site-header.is-scrolled::before {
		background-color: transparent;
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.24) 64%, rgba(255, 255, 255, 0) 100%);
		-webkit-mask-image: none;
		mask-image: none;
	}
}

.l-site-header__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-top: 40px;
}

.l-site-header__brand {
	flex-shrink: 0;
}

.l-site-header__logo {
	display: grid;
	width: min(216px, 32.4vw);
}

.l-site-header__logo-img {
	display: block;
	grid-area: 1 / 1;
	width: 100%;
	height: auto;
	transition: opacity 0.28s ease;
}

.l-site-header__logo-img--white {
	opacity: 0;
}

.l-site-header__logo-img--color {
	opacity: 1;
}

body.home .l-site-header:not(.is-scrolled) .l-site-header__logo-img--white {
	opacity: 1;
}

body.home .l-site-header:not(.is-scrolled) .l-site-header__logo-img--color {
	opacity: 0;
}

@media (min-width: 769px) {
	body.home .l-site-header:not(.is-scrolled) .l-site-header__logo {
		width: min(180px, 27vw);
	}
}

.l-site-header__nav {
	flex-shrink: 0;
}

.l-site-header__nav-frame {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 11px 24px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 24px;
	text-align: center;
	font-size: 14.4px;
	color: #fff;
	font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.l-site-header__menu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.l-site-header__menu a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	color: inherit;
	font-size: inherit;
	font-weight: 500;
	letter-spacing: 0.29px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.l-site-header__menu a:hover,
.l-site-header__menu a:focus-visible {
	opacity: 0.78;
}

.l-site-header__menu .current-menu-item > a,
.l-site-header__menu .current_page_item > a {
	opacity: 0.78;
}

.l-site-header,
.l-site-header__inner,
.l-site-header__logo,
.l-site-header__nav-frame,
.l-site-header__menu a,
.l-site-header__toggle,
.l-site-header__toggle-line {
	transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, padding 0.28s ease, width 0.28s ease, opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
	.l-site-header__inner {
		animation: l-site-header-intro 0.48s ease-out both;
	}

	body.home .l-site-header__inner {
		animation-delay: 3.5s;
	}
}

@keyframes l-site-header-intro {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.l-site-header__toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	background-color: rgba(24, 24, 24, 0.12);
	cursor: pointer;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.l-site-header__toggle-line {
	display: block;
	width: 18px;
	height: 1.5px;
	background-color: #fff;
	transform-origin: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.l-site-header__toggle-line + .l-site-header__toggle-line {
	margin-top: 4px;
}

.l-site-header.is-menu-open .l-site-header__toggle-line:nth-child(1) {
	transform: translateY(5.5px) rotate(45deg);
}

.l-site-header.is-menu-open .l-site-header__toggle-line:nth-child(2) {
	opacity: 0;
}

.l-site-header.is-menu-open .l-site-header__toggle-line:nth-child(3) {
	transform: translateY(-5.5px) rotate(-45deg);
}

.l-site-header__mobile[hidden] {
	display: none !important;
}

.l-site-header__mobile {
	position: fixed;
	inset: 0;
	z-index: 140;
	pointer-events: none;
}

.l-site-header__mobile::before {
	content: "";
	position: absolute;
	top: var(--mobile-menu-offset, 0px);
	right: 0;
	left: 0;
	height: var(--mobile-menu-gap, 0px);
	background-color: #f7f8f9;
	pointer-events: none;
}

.l-site-header__mobile-overlay {
	position: absolute;
	top: calc(var(--mobile-menu-offset, 0px) + var(--mobile-menu-gap, 0px));
	right: 0;
	bottom: 0;
	left: 0;
	padding: 0;
	border: 0;
	background-color: transparent;
	pointer-events: auto;
}

.l-site-header__mobile-panel {
	position: absolute;
	top: calc(var(--mobile-menu-offset, 0px) + var(--mobile-menu-gap, 0px));
	right: 0;
	width: min(92vw, 420px);
	height: calc(100% - var(--mobile-menu-offset, 0px) - var(--mobile-menu-gap, 0px));
	padding: 0;
	background-color: #f7f8f9;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	pointer-events: auto;
}

.l-site-header.is-menu-open .l-site-header__mobile-panel {
	transform: translateX(0);
}

.l-site-header__mobile-head {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 82px;
	padding: 18px 20px 16px;
	background-color: #f7f8f9;
}

.l-site-header__mobile-title {
	display: none;
}

.l-site-header__mobile-close {
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

.l-site-header__mobile-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background-color: #6b847d;
}

.l-site-header__mobile-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.l-site-header__mobile-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.l-site-header__mobile-menu {
	margin: 0;
	padding: 0 20px;
	list-style: none;
	background-color: #f7f8f9;
}

.l-site-header__mobile-menu > li {
	border-bottom: 1px solid rgba(43, 79, 94, 0.44);
}

.l-site-header__mobile-menu > li:first-child {
	border-top: 1px solid rgba(43, 79, 94, 0.44);
}

.l-site-header__mobile-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
	min-height: 68px;
	padding: 14px 2px;
	color: #2b4f5e;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
	background-color: transparent;
	-webkit-tap-highlight-color: transparent;
}

.l-site-header__mobile-menu > li > a::before {
	content: none;
}

.l-site-header__mobile-menu > li:nth-child(-n + 4) > a {
	min-height: 64px;
	font-size: 16px;
}

.l-site-header__mobile-menu > li:nth-child(-n + 4) > a::before {
	content: none;
}

.l-site-header__mobile-menu > li:nth-child(1) > a::before {
	content: none;
}

.l-site-header__mobile-menu > li:nth-child(2) > a::before {
	content: none;
}

.l-site-header__mobile-menu > li:nth-child(3) > a::before {
	content: none;
}

.l-site-header__mobile-menu > li:nth-child(4) > a::before {
	content: none;
}

.l-site-header__mobile-menu > li:nth-child(n + 5) > a {
	min-height: 84px;
	padding-left: 8px;
	gap: 18px;
	color: #2b4f5e;
	font-size: 16px;
}

.l-site-header__mobile-menu > li:nth-child(n + 5) > a::before {
	content: "";
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border-radius: 999px;
	background: #5f7b74;
	transform: scale(0.6);
}

.l-site-header__mobile-menu > li:nth-child(n + 5) {
	border-bottom: 0;
}

.l-site-header__mobile-menu > li:nth-child(5) {
	margin-top: 6px;
	border-top: 1px solid rgba(43, 79, 94, 0.44);
}

/* Keep mobile menu primary rows to top 4, and render info links in a fixed group. */
.l-site-header__mobile-menu > li:nth-child(n + 5) {
	display: none;
}

.l-site-header__mobile-info-links {
	margin: 6px 0 0;
	padding: 0 20px;
	list-style: none;
}

.l-site-header__mobile-info-links li + li {
	border-top: 0;
}

.l-site-header__mobile-info-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding: 0 8px;
	color: #2b4f5e;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.5;
	background-color: transparent;
	-webkit-tap-highlight-color: transparent;
}

.l-site-header__mobile-menu > li > a:hover,
.l-site-header__mobile-menu > li > a:focus-visible,
.l-site-header__mobile-menu > li > a:active,
.l-site-header__mobile-info-links a:hover,
.l-site-header__mobile-info-links a:focus-visible,
.l-site-header__mobile-info-links a:active {
	background-color: transparent;
}

.l-site-header__mobile-info-links a::before {
	content: "";
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border-radius: 999px;
	background: #2b4f5e;
	transform: scale(0.6);
}

.l-site-header__mobile-menu .current-menu-item > a,
.l-site-header__mobile-menu .current_page_item > a {
	opacity: 0.84;
}

.l-site-header__mobile-actions {
	display: none;
}

.l-site-header__mobile-btn {
	width: 100%;
}

.l-site-header__mobile-info {
	margin-top: 16px;
	padding: 30px 20px 30px;
	border-top: 1px solid rgba(43, 79, 94, 0.44);
	color: #2b4f5e;
}

.l-site-header__mobile-info-brand-en {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.l-site-header__mobile-info-brand-ja {
	margin: 0px 0 0;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.35;
}

.l-site-header__mobile-info-brand-sub {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.3;
}

.l-site-header__mobile-info-row {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin-top: 16px;
	color: #2b4f5e;
}

.l-site-header__mobile-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #6b847d;
	line-height: 0;
}

.l-site-header__mobile-info-icon svg,
.l-site-header__mobile-info-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.l-site-header__mobile-info-icon--pin svg {
	width: 24px;
	height: 24px;
}

.l-site-header__mobile-info-icon--phone svg {
	width: 23px;
	height: 23px;
}

.l-site-header__mobile-info-text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.7;
}

.l-site-header__mobile-info-text small {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	letter-spacing: 0.03em;
}

.l-site-header__mobile-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(43, 79, 94, 0.44);
}

.l-site-header__mobile-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	color: #111;
}

.l-site-header__mobile-social-link--instagram img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	filter: brightness(0) saturate(100%);
}

.l-site-header__mobile-social-glyph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	line-height: 1;
}

body.is-menu-open {
	overflow: hidden;
}

.l-site-header.is-menu-open {
	--mobile-menu-gap: 30px;
	background-color: #f7f8f9;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

.l-site-header.is-menu-open::before {
	opacity: 0;
}

@media (max-width: 768px) {
	/* Hide 1px seam between header and mobile menu when open. */
	.l-site-header.is-menu-open .l-site-header__mobile::before {
		top: calc(var(--mobile-menu-offset, 0px) - 1px);
		height: calc(var(--mobile-menu-gap, 0px) + 2px);
	}

	.l-site-header.is-menu-open .l-site-header__mobile-panel,
	.l-site-header.is-menu-open .l-site-header__mobile-overlay {
		top: calc(var(--mobile-menu-offset, 0px) + var(--mobile-menu-gap, 0px) - 1px);
	}
}

.l-site-header.is-menu-open .l-site-header__toggle {
	border-color: var(--color-border);
	background-color: #f7f8f9;
}

.l-site-header.is-menu-open .l-site-header__toggle-line {
	background-color: #1d2a35;
}

body.home .l-site-header.is-menu-open .l-site-header__logo-img--white {
	opacity: 0;
}

body.home .l-site-header.is-menu-open .l-site-header__logo-img--color {
	opacity: 1;
}

@media (max-width: 768px) {
	body.home .l-site-header:not(.is-scrolled) .l-site-header__toggle {
		background-color: transparent !important;
		-webkit-backdrop-filter: none !important;
		backdrop-filter: none !important;
	}
}

.l-site-header.is-scrolled .l-site-header__inner {
	align-items: center;
	padding-top: 14px;
	padding-bottom: 14px;
}

.l-site-header.is-scrolled .l-site-header__logo {
	width: min(170px, 18.9vw);
}

.l-site-header.is-scrolled .l-site-header__nav-frame {
	border: 1px solid rgba(43, 79, 94, 0.24);
	border-radius: 24px;
	background: #fff;
	color: #2b4f5e;
}

.l-site-header.is-scrolled .l-site-header__menu a {
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	letter-spacing: 0.29px;
}

.l-site-header.is-scrolled .l-site-header__menu .current-menu-item > a,
.l-site-header.is-scrolled .l-site-header__menu .current_page_item > a {
	color: #2b4f5e;
	opacity: 1;
}

/* Keep sticky-style menu on non-home pages */
body:not(.home) .l-site-header__nav-frame {
	border: 1px solid rgba(43, 79, 94, 0.24);
	border-radius: 24px;
	background: #fff;
	color: #2b4f5e;
}

body:not(.home) .l-site-header__logo {
	width: min(180px, 27vw);
}

body:not(.home) .l-site-header__menu a {
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	letter-spacing: 0.29px;
}

body:not(.home) .l-site-header__menu .current-menu-item > a,
body:not(.home) .l-site-header__menu .current_page_item > a {
	color: #2b4f5e;
	opacity: 1;
}

.c-page-title__title {
	margin-bottom: 20px;
}

.c-breadcrumb {
	font-size: 13px;
}

.c-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-subtext);
}

.c-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.c-breadcrumb__item:not(:last-child)::after {
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--color-subtext);
	border-right: 1px solid var(--color-subtext);
	content: "";
	transform: rotate(45deg);
}

.c-breadcrumb a:hover,
.c-breadcrumb a:focus-visible {
	color: var(--color-accent);
}

.c-common-cta {
	padding-block: 92px;
	background-color: #123042;
	color: #fff;
}

.c-common-cta .c-section-title {
	color: #c3d8ea;
}

.c-common-cta__inner {
	display: grid;
	gap: 18px;
	text-align: center;
}

.c-common-cta__title {
	margin-bottom: 0;
}

.c-common-cta__text {
	margin: 0;
}

.c-common-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.c-common-cta .c-btn--ghost {
	border-color: #fff;
	background-color: #fff;
	color: #123042;
}

.c-common-cta .c-btn--ghost:hover,
.c-common-cta .c-btn--ghost:focus-visible {
	background-color: #e8eef3;
}

.l-site-footer {
	background: #fff;
	color: #2b4f5e;
	overflow: hidden;
}

.l-site-footer__top {
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	padding: 76px 0px 96px max(24px, -648px + 50vw);
}

.l-site-footer__top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 100px;
}

.l-site-footer__summary {
	flex: 0 0 336px;
	width: 336px;
	display: flex;
	flex-direction: column;
	gap: 38px;
}

.l-site-footer__summary-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.l-site-footer__summary-label-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.l-site-footer__summary-label {
	margin: 0;
	padding: 0 8px;
	color: #2b4f5e;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.02em;
	text-align: center;
	margin-bottom: -9px;
}

.l-site-footer__summary-label-frame {
	position: relative;
	left: auto;
	bottom: auto;
	display: block;
	width: 192px;
	height: 44px;
	background: url("../img/icons/bubble-frame-dark.svg") center center / 100% 100% no-repeat;
	transform: none;
}

.l-site-footer__summary-label-frame::after {
	content: none;
}

.l-site-footer__summary-title {
	margin: 0;
	width: 100%;
	color: #2b4f5e;
	font-size: 48px;
	font-weight: 700;
	line-height: 65.28px;
	letter-spacing: 0.01em;
	text-align: center;
}

.l-site-footer__summary-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.l-site-footer__summary-action {
	position: relative;
	height: 144px;
	padding: 16px 52px;
	border-radius: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #181818;
	transition:
		transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-site-footer__summary-action--faq {
	background: #a8d8e0;
}

.l-site-footer__summary-action--reserve {
	background: #ff904c;
}

.l-site-footer__summary-action-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l-site-footer__summary-action-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.l-site-footer__summary-action-text {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.l-site-footer__summary-action-jp {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-shadow: 0 0 53px rgba(24, 24, 24, 0.6);
}

.l-site-footer__summary-action-en {
	font-size: 12.8px;
	font-family: "Overpass", sans-serif;
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: 0.02em;
}

.l-site-footer__summary-action-arrow {
	flex: 0 0 auto;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 18px;
	height: 6px;
	background: url("data:image/svg+xml,%3Csvg%20width='18'%20height='6'%20viewBox='0%200%2018%206'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cline%20y1='3'%20x2='12'%20y2='3'%20stroke='%23181818'%20stroke-width='1.5'/%3E%3Cpath%20d='M18%203L12%206V-2.62268e-07L18%203Z'%20fill='%23181818'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
	transform: translateY(-50%);
	transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-site-footer__summary-action-arrow::before {
	content: none;
}

.l-site-footer__summary-action-arrow::after {
	content: none;
}

.l-site-footer__summary-action:hover,
.l-site-footer__summary-action:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(24, 24, 24, 0.2);
}

.l-site-footer__summary-action:hover .l-site-footer__summary-action-arrow,
.l-site-footer__summary-action:focus-visible .l-site-footer__summary-action-arrow {
	transform: translate(4px, -50%);
}

.l-site-footer__visual {
	flex: 0 0 888px;
	position: relative;
	width: 888px;
	height: 666px;
	border-radius: 16px 0 0 16px;
}

.l-site-footer__visual-main {
	width: 100%;
	height: 100%;
	border-radius: 12px 0 0 12px;
	overflow: hidden;
}

.l-site-footer__visual-main img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.l-site-footer__visual-sub {
	position: absolute;
	border-radius: 12px;
	overflow: hidden;
}

.l-site-footer__visual-sub img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.l-site-footer__visual-sub--top {
	top: -48px;
	left: 144px;
	width: 192px;
	height: 144px;
}

.l-site-footer__visual-sub--bottom {
	top: 438px;
	left: -48px;
	width: 240px;
	height: 180px;
}

.l-site-footer .l-site-footer__headline-marquee {
	--marquee-item-width: 1772px;
	--marquee-gap: 64px;
	position: relative;
	margin-top: 0;
	overflow: visible;
	z-index: 0;
}

.l-site-footer__headline-marquee .p-home-hero-marquee__track {
	animation-name: p-home-hero-marquee-tight;
	overflow: visible;
}

.l-site-footer__headline-marquee .seaside-accommodation-villa {
	color: #d3e0e6;
	opacity: 1;
	width: max-content;
	text-align: left;
	display: block;
	padding-inline: 0.14em;
	line-height: 1.12;
	transform: translateY(-10px);
}

.l-site-footer__bottom-edge {
	position: relative;
	margin-top: -60px;
	height: 16px;
	line-height: 0;
	background: transparent;
	overflow: hidden;
	z-index: 1;
}

.l-site-footer__bottom-edge svg {
	display: block;
	width: 100%;
	height: 100%;
	vertical-align: top;
}

.l-site-footer__bottom {
	position: relative;
	margin-top: -1px;
	background: #2b4f5e;
	padding: 96px 72px 64px;
}

.l-site-footer__to-top {
	position: absolute;
	top: 64px;
	right: 72px;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.l-site-footer__to-top-arrow {
	display: block;
	width: 6px;
	height: 18px;
	background: url("data:image/svg+xml,%3Csvg%20width='6'%20height='18'%20viewBox='0%200%206%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cline%20x1='3'%20y1='18'%20x2='3'%20y2='6'%20stroke='white'%20stroke-width='1.5'/%3E%3Cpath%20d='M3%200L6%206H0L3%200Z'%20fill='white'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.l-site-footer__to-top-arrow::before,
.l-site-footer__to-top-arrow::after {
	content: none;
}

.l-site-footer__bottom-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.l-site-footer__catch {
	margin: 0;
	display: flex;
	flex-direction: row-reverse;
	gap: 32px;
	color: #fff;
	text-shadow: 0 0 80px rgba(24, 24, 24, 0.4);
}

.l-site-footer__catch span {
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.l-site-footer__brand-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	color: #fff;
	text-align: center;
}

.l-site-footer__brand-top {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.l-site-footer__brand-label-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.l-site-footer__brand-label {
	margin: 0;
	font-size: 11.2px;
	font-weight: 500;
	line-height: 17.92px;
	letter-spacing: 0.12em;
}

.l-site-footer__brand-label-frame {
	display: block;
	width: 240px;
	height: 55px;
	background: url("../img/icons/bubble-frame-light.svg") center / 100% 100% no-repeat;
	margin-top: -12px;
	margin-bottom: -12px;
}

.l-site-footer__brand-name {
	margin: 0;
	font-size: 20px;
	font-family: "Overpass", sans-serif;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.l-site-footer__brand-name span {
	font-size: 11.2px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: 0;
}

.l-site-footer__brand-info {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 84px;
	width: 100%;
	margin-top: -19px;
	margin-bottom: 10px;
}

.l-site-footer__brand-info > p {
	margin: 0;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 26.5px;
	letter-spacing: 0.02em;
}

.l-site-footer__brand-phone {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}

.l-site-footer__brand-phone-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.l-site-footer__brand-phone-number {
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 30px;
	font-family: "Overpass", sans-serif;
	font-weight: 500;
	line-height: 1;
}

.l-site-footer__brand-phone-icon {
	width: 15px;
	height: 15px;
	margin-top: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.l-site-footer__brand-phone-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.l-site-footer__brand-phone-note {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}

.l-site-footer__nav {
	width: 100%;
}

.l-site-footer__menu {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	max-width: 880px;
}

.l-site-footer__menu a {
	color: #fff;
	font-size: 14.4px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.l-site-footer__menu a:hover,
.l-site-footer__menu a:focus-visible {
	opacity: 0.72;
}

.l-site-footer__logo-link {
	width: min(100%, 250px);
	padding: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.l-site-footer__logo-image {
	width: 100%;
	max-width: 336px;
	height: auto;
	display: block;
}

.l-site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 28px;
}

.l-site-footer__legal a,
.l-site-footer__legal p {
	margin: 0;
	color: #fff;
	font-size: 11.2px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.l-site-footer__legal p {
	font-family: "Overpass", sans-serif;
	font-size: 12px;
	letter-spacing: 0.04em;
}

.l-site-footer__legal-dot {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.l-site-footer__legal-dot img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.l-site-footer__top {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
		margin-inline: auto;
		padding: 84px 0;
	}

	.l-site-footer__top-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 56px;
	}

	.l-site-footer__summary {
		width: min(100%, 560px);
		flex-basis: auto;
		margin: 0 auto;
	}

	.l-site-footer__visual {
		width: min(100%, 888px);
		flex-basis: auto;
		margin: 0 auto;
	}

	.l-site-footer__headline-marquee {
		--marquee-item-width: 1420px;
		--marquee-gap: 52px;
	}

	.l-site-footer__headline-marquee .seaside-accommodation-villa {
		font-size: 104px;
	}

	.l-site-footer__bottom {
		padding: 84px 16px 56px;
	}

	.l-site-footer__to-top {
		top: 24px;
		right: 24px;
	}
}

@media (max-width: 768px) {
	:root {
		--fluid-gutter: 20px;
	}

	.l-site-footer__bottom-edge {
		margin-top: -32px;
	}

	.l-site-footer__top {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 560px);
		padding: 40px 0 72px;
	}

	.l-site-footer__top-inner {
		gap: 85px;
	}

	.l-site-footer__summary-label {
		padding-bottom: 0;
	}

	.l-site-footer__summary-title {
		font-size: 40px;
		line-height: 1.35;
		text-align: center;
	}

	.l-site-footer__summary-action {
		position: relative;
		width: calc(100% - 0px);
		height: 110px;
		padding: 14px 34px 14px 34px;
		border-radius: 88px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 14px;
	}

	.l-site-footer__summary-actions {
		align-items: center;
		gap: 15px;
	}

	.l-site-footer__summary-action-jp {
		font-size: 22px;
		white-space: nowrap;
		line-height: 1.2;
	}

	.l-site-footer__summary-action-text {
		flex: 0 0 auto;
		gap: 4px;
		align-items: flex-start;
		text-align: left;
	}

	.l-site-footer__summary-action-icon {
		width: 48px;
		height: 48px;
	}

	.l-site-footer__summary-action-arrow {
		position: absolute;
		top: 50%;
		right: 34px;
		transform: translateY(-50%);
	}

		.l-site-footer__visual {
			width: calc(100% + var(--fluid-gutter));
			margin-right: calc(var(--fluid-gutter) * -1);
			margin-left: 0;
			height: auto;
			padding-bottom: 34px;
		}

	.l-site-footer__visual-main {
		width: 90%;
		margin-left: auto;
	}

	.l-site-footer__visual-main img {
		height: auto;
		aspect-ratio: 888 / 666;
	}

	.l-site-footer__visual-sub--top {
		top: -29px;
		left: 22%;
		width: 30%;
		min-width: 84px;
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.l-site-footer__visual-sub--bottom {
		top: 62%;
		left: 0;
		width: 38%;
		min-width: 100px;
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.l-site-footer__headline-marquee .seaside-accommodation-villa {
		font-size: 72px;
	}

	.l-site-footer__bottom {
		padding: 76px 12px 48px;
	}

	.l-site-footer__catch {
		gap: 20px;
	}

	.l-site-footer__catch span {
		font-size: clamp(32px, 6.5vw, 48px);
	}

	.l-site-footer__brand-info {
		flex-wrap: wrap;
		gap: 24px;
	}

	.l-site-footer__menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 24px;
	}

	.l-site-footer__logo-link {
		width: min(100%, 170px);
	}

	.l-site-footer__logo-image {
		max-width: 170px;
	}

	.l-site-footer__brand-phone-number {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.l-site-footer__top {
		padding: 40px 0 64px;
	}

	.l-site-footer__top-inner {
		gap: 85px;
	}

	.l-site-footer__summary-label {
		padding-bottom: 0;
	}

	.l-site-footer__summary-title {
		font-size: 34px;
		line-height: 1.32;
	}

	.l-site-footer__summary-action {
		width: calc(100% - 0px);
		height: 110px;
		padding: 14px 34px 14px 34px;
		gap: 14px;
	}

	.l-site-footer__summary-actions {
		gap: 15px;
	}

	.l-site-footer__summary-action-jp {
		font-size: 19px;
	}

	.l-site-footer__summary-action-icon {
		width: 44px;
		height: 44px;
	}

	.l-site-footer__summary-action-en {
		font-size: 13.6px;
	}

	.l-site-footer__summary-action-arrow {
		right: 34px;
	}

		.l-site-footer__visual {
			width: calc(100% + var(--fluid-gutter));
			margin-right: calc(var(--fluid-gutter) * -1);
			margin-left: 0;
			height: auto;
			padding-bottom: 28px;
		}

	.l-site-footer__visual-sub--top {
		left: 22%;
		width: 30%;
		min-width: 84px;
		height: auto;
	}

	.l-site-footer__visual-sub--bottom {
		top: 62%;
		left: 0;
		width: 38%;
		min-width: 100px;
		height: auto;
	}

	.l-site-footer__headline-marquee {
		--marquee-item-width: 760px;
		--marquee-gap: 28px;
	}

	.l-site-footer__headline-marquee .seaside-accommodation-villa {
		font-size: 52px;
	}

	.l-site-footer__to-top {
		width: 42px;
		height: 42px;
	}

	.l-site-footer__brand-name {
		font-size: 18px;
	}

	.l-site-footer__brand-info > p {
		font-size: 13.6px;
		line-height: 1.72;
	}

	.l-site-footer__brand-phone-number {
		font-size: 22px;
	}

	.l-site-footer__menu {
		gap: 8px 14px;
	}

	.l-site-footer__menu a {
		font-size: 13px;
	}

	.l-site-footer__legal {
		gap: 12px;
	}
}

.p-home > section {
	padding-block: 100px;
}

.p-home-hero {
	position: relative;
	display: block;
	padding: 0;
	color: #fff;
	background-color: #2b4f5e;
	overflow: hidden;
	/* Hero overlay tuning: adjust these values only. */
	--home-hero-overlay-dark-soft-rgb: 40 40 40;
	--home-hero-overlay-cyan-soft-rgb: 88 240 255;
	--home-hero-overlay-cyan-hard-rgb: 24 232 255;
	--home-hero-overlay-dark-deep-rgb: 40 40 40;
	--home-hero-overlay-dark-soft-opacity: 0.07;
	--home-hero-overlay-cyan-soft-opacity: 0.015;
	--home-hero-overlay-cyan-hard-opacity: 0.035;
	--home-hero-overlay-dark-deep-opacity: 0.08;
	isolation: isolate;
}

.p-home-hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-color: #2b4f5e;
	opacity: 0;
	content: "";
}

.p-home-hero::after {
	content: none;
}

.p-home-hero__bg {
	display: block;
	width: 100%;
	height: auto;
	visibility: visible;
	opacity: 1;
	transition: opacity 0.48s ease;
}

.p-home-hero.is-mainvisual-ready .p-home-hero__bg {
	opacity: 0;
}

.p-home-hero__split-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.p-home-hero__split-slider::after {
	content: none;
}

.p-home-hero__split-slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	opacity: 0;
	visibility: hidden;
}

.p-home-hero__split-slide.is-current,
.p-home-hero__split-slide.is-prev {
	opacity: 1;
	visibility: visible;
}

.p-home-hero__split-slide.is-current {
	z-index: 3;
}

.p-home-hero__split-slide.is-prev {
	z-index: 2;
}

.p-home-hero__split-half {
	position: relative;
	flex: 0 0 50%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	clip-path: inset(100% 0 0 0);
	transition: clip-path 1.02s cubic-bezier(0.7, 0, 0.3, 1);
}

.p-home-hero__split-half::after {
	content: none;
}

.p-home-hero__split-slide.is-current .p-home-hero__split-half,
.p-home-hero__split-slide.is-prev .p-home-hero__split-half {
	clip-path: inset(0 0 0 0);
}

.p-home-hero__split-slide.is-current .p-home-hero__split-half--right {
	transition-delay: 0.3s;
}

.p-home-hero__split-slide.is-current .p-home-hero__split-half--left {
	transition-delay: 0s;
}

.p-home-hero__split-half img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* transform: scale(1.06); */
	/* transition: transform 6.2s linear; */
}

.p-home-hero__split-slide.is-current .p-home-hero__split-half img {
	transform: scale(1);
}

.p-home-hero__container {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.p-home-hero__vertical-copy {
	--home-hero-maincopy-final-top: 42%;
	--home-hero-maincopy-shift-y: 8svh;
	position: absolute;
	top: var(--home-hero-maincopy-final-top);
	left: 50%;
	display: flex;
	flex-direction: row-reverse;
	gap: 40px;
	margin: 0;
	align-items: flex-start;
	text-shadow: 0 0 80px rgba(24, 24, 24, 0.48);
	transform: translate(-50%, -50%);
}

.p-home-hero__vertical-line {
	display: inline-block;
	width: 1em;
	font-size: 72px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
	font-variant-east-asian: full-width;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

@media (prefers-reduced-motion: no-preference) {
	.p-home-hero::before {
		opacity: 0.72;
		animation: p-home-hero-intro-tint-fade 1.4s ease-out 0s forwards;
	}

	.p-home-hero__split-slider {
		opacity: 0;
		transform: scale(1.08);
		animation: p-home-hero-mainvisual-reveal 1.7s cubic-bezier(0.16, 1, 0.3, 1) 2.08s forwards;
		will-change: transform, opacity;
	}

	.p-home-hero__vertical-copy {
		animation: p-home-hero-maincopy-shift-transform 1.02s cubic-bezier(0.16, 1, 0.3, 1) 2.08s both;
		will-change: transform;
	}

	.p-home-hero__vertical-line {
		opacity: 0;
		animation: p-home-hero-copy-reveal 0.78s ease-out both;
		will-change: opacity;
	}

	.p-home-hero__vertical-line:nth-child(1) {
		animation-delay: 0.9s;
	}

	.p-home-hero__vertical-line:nth-child(2) {
		animation-delay: 1.08s;
	}

	.p-home-hero__vertical-line:nth-child(3) {
		animation-delay: 1.26s;
	}

		.p-home-hero__cta-group {
			opacity: 0;
			animation: p-home-hero-cta-reveal 0.82s ease-out 4.12s forwards;
			will-change: transform, opacity;
		}

		.p-home-hero__catchcopy {
			opacity: 0;
			animation: p-home-hero-catchcopy-reveal 0.88s ease-out 2.34s forwards;
			will-change: transform, opacity;
		}

	.p-home-hero__speech {
		transform-origin: center bottom;
		animation: p-home-hero-speech-tide 5.6s cubic-bezier(0.42, 0, 0.25, 1) 3.1s infinite;
		will-change: transform;
	}

	.p-home-hero__reservation-ring {
		transform-origin: center;
		animation: p-home-hero-reservation-ring-spin 24s linear 3.1s infinite;
		will-change: transform;
	}
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
	.p-home-hero__vertical-copy {
		animation-name: p-home-hero-maincopy-shift-top;
		will-change: top, transform;
	}
}

.p-home-hero__cta-group {
	position: absolute;
	right: 0px;
	bottom: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 29px;
}

.p-home-hero__speech {
	position: relative;
	margin: 0;
	padding: 0 8px 46px;
	font-size: 15.2px;
	font-weight: 500;
	letter-spacing: 0.3px;
	line-height: 1.44;
	text-align: center;
	text-shadow: 0 0 22px rgba(24, 24, 24, 0.5);
}

.p-home-hero__speech::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 240px;
	height: 55px;
	background: url("../img/icons/bubble-frame-light.svg") center / 100% 100% no-repeat;
	content: "";
	transform: translateX(-50%);
}

.p-home-hero__speech::after {
	content: none;
}

.p-home-hero__reservation {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 192px;
	height: 192px;
	border-radius: 50%;
	background-color: #ff904c;
	color: #181818;
	text-align: center;
	transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-home-hero__reservation--fixed {
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 110;
	display: flex;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px) scale(0.96);
	transition:
		opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 0.42s;
}

/* Keep the floating CTA slightly smaller than the in-hero CTA. */
.p-home-hero__reservation.p-home-hero__reservation--fixed {
	width: 130px;
	height: 130px;
	gap: 10px;
}

.p-home-hero__reservation.p-home-hero__reservation--fixed .p-home-hero__reservation-icon {
	width: 34px;
	height: 34px;
}

.p-home-hero__reservation.p-home-hero__reservation--fixed .p-home-hero__reservation-label {
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 1.24;
}

body.p-home-reservation-fixed-visible .p-home-hero__reservation--fixed {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	transition-delay: 0s, 0s, 0s;
}

@media (prefers-reduced-motion: reduce) {
	.p-home-hero__reservation--fixed {
		transition: none;
	}
}

.p-home-hero__reservation:hover,
.p-home-hero__reservation:focus-visible {
	transform: translateY(-3px);
}

.p-home-hero__reservation-ring {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

.p-home-hero__reservation-icon {
	position: relative;
	z-index: 1;
	width: 48px;
	height: 48px;
}

.p-home-hero__reservation-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-home-hero__reservation-label {
	position: relative;
	z-index: 1;
	font-size: 18.4px;
	font-weight: 500;
	letter-spacing: 1.84px;
	line-height: 1.28;
}

.p-home-hero__catchcopy {
	position: absolute;
	left: 50%;
	bottom: 200px;
	display: flex;
	align-items: baseline;
	gap: 26px;
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-shadow: 0 0 40px rgba(24, 24, 24, 0.68);
	white-space: nowrap;
	transform: translateX(-50%);
}

.p-home-hero__catchcopy-main {
	font-size: 1em;
}

.p-home-hero__catchcopy-sub {
	font-size: 14.4px;
}

.p-home-hero__catchcopy-main,
.p-home-hero__catchcopy-sub {
	display: inline-block;
}

.p-home > .p-home-hero {
	padding: 0;
}

.p-home-hero-marquee {
	--marquee-item-width: 1772px;
	--marquee-gap: 64px;
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	margin-top: -41px;
	overflow: hidden;
	pointer-events: none;
	position: relative;
	z-index: -1;
}

.p-home-hero-marquee__track {
	display: flex;
	width: max-content;
	gap: var(--marquee-gap);
	animation: p-home-hero-marquee 48s linear infinite;
	will-change: transform;
}

.p-home-hero-marquee.p-home-hero-marquee--hero {
	--marquee-gap: 22px;
}

.p-home-hero-marquee--hero .p-home-hero-marquee__track {
	animation-name: p-home-hero-marquee-tight;
	overflow: visible;
}

.seaside-accommodation-villa {
	flex: 0 0 auto;
	width: var(--marquee-item-width);
	font-size: 128px;
	font-family: "Caveat Brush", cursive;
	color: #5fa8b5;
	text-align: center;
	display: inline-block;
	line-height: 1.12;
	padding-bottom: 0.08em;
	white-space: nowrap;
	opacity: 0.24;
}

.p-home-hero-marquee--hero .seaside-accommodation-villa {
	width: max-content;
	text-align: left;
	display: block;
	padding-inline: 0.14em;
	overflow: visible;
}

@keyframes p-home-hero-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(calc((var(--marquee-item-width) + var(--marquee-gap)) * -1), 0, 0);
	}
}

@keyframes p-home-hero-marquee-tight {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(calc(-50% - (var(--marquee-gap) * 0.5)), 0, 0);
	}
}

@keyframes p-home-hero-copy-reveal {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes p-home-hero-intro-tint-fade {
	from {
		opacity: 0.72;
	}

	to {
		opacity: 0;
	}
}

@keyframes p-home-hero-mainvisual-reveal {
	from {
		opacity: 0;
		transform: scale(1.085);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes p-home-hero-maincopy-shift-transform {
	from {
		transform: translate(-50%, calc(-50% + var(--home-hero-maincopy-shift-y, 8svh)));
	}

	to {
		transform: translate(-50%, -50%);
	}
}

@keyframes p-home-hero-maincopy-shift-top {
	from {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	to {
		top: var(--home-hero-maincopy-final-top, 42%);
		transform: translate(-50%, -50%);
	}
}

@keyframes p-home-hero-catchcopy-reveal {
	from {
		opacity: 0;
		transform: translate(-50%, 8px);
	}

	to {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

@keyframes p-home-hero-cta-reveal {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes p-home-hero-speech-tide {
	0% {
		transform: translate3d(0, 0, 0);
	}

	20% {
		transform: translate3d(0.9px, -3px, 0);
	}

	45% {
		transform: translate3d(-1px, -8px, 0);
	}

	70% {
		transform: translate3d(0.8px, -4px, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes p-home-hero-reservation-ring-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.p-home-about {
	position: relative;
	min-height: 1051px;
	overflow: hidden;
}

.p-home > .p-home-about {
	padding-block: 96px;
}

.p-home-about__decor {
	position: absolute;
	inset: 0;
	max-width: 1440px;
	margin-inline: auto;
	pointer-events: none;
}

.p-home-about__photo {
	position: absolute;
	margin: 0;
	overflow: hidden;
	--about-photo-opacity: 1;
	--about-photo-in-x: 0px;
	--about-photo-in-y: 14px;
}

.p-home-about__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-home-about__photo--01 {
	top: 419px;
	left: calc(50% + 378px);
	width: 202.5px;
	height: 270px;
	border-radius: 12px;
	--about-photo-in-x: 10px;
	--about-photo-in-y: 16px;
}

.p-home-about__photo--02 {
	top: 200px;
	left: calc(50% + 300px);
	width: 135px;
	height: 180px;
	border-radius: 8px;
	--about-photo-in-x: 8px;
	--about-photo-in-y: 14px;
}

.p-home-about__photo--03 {
	top: 658px;
	left: calc(50% - 409.75px);
	width: 135px;
	height: 180px;
	border-radius: 8px;
	--about-photo-in-x: -8px;
	--about-photo-in-y: 14px;
}

.p-home-about__photo--04 {
	top: 601.25px;
	left: calc(50% - 549.5px);
	width: 81px;
	height: 108px;
	border-radius: 6px;
	--about-photo-in-x: -12px;
	--about-photo-in-y: 12px;
}

.p-home-about__photo--05 {
	top: 716px;
	left: calc(50% + 291px);
	width: 68px;
	height: 90.67px;
	border-radius: 6px;
	--about-photo-in-x: 10px;
	--about-photo-in-y: 12px;
}

.p-home-about__photo--06 {
	top: 312px;
	left: calc(50% - 592px);
	width: 180px;
	height: 240px;
	border-radius: 12px;
	--about-photo-in-x: -14px;
	--about-photo-in-y: 16px;
}

.p-home-about__photo--07 {
	top: 200px;
	left: calc(50% - 369.25px);
	width: 90px;
	height: 120px;
	border-radius: 6px;
	--about-photo-in-x: -8px;
	--about-photo-in-y: 12px;
}

@media (prefers-reduced-motion: no-preference) {
	.p-home-about__decor {
		opacity: 0;
		transform: scale(0.8);
		transform-origin: 50% 50%;
		will-change: transform, opacity;
	}

	.p-home-about__decor.is-visible {
		animation: p-home-about-decor-in 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.p-home-about__photo {
		opacity: 0;
		transform: scale(0.8);
		will-change: transform, opacity;
	}

	.p-home-about__decor.is-visible .p-home-about__photo {
		animation: p-home-about-photo-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.p-home-about__decor.is-visible .p-home-about__photo--01 { animation-delay: 0.08s; }
	.p-home-about__decor.is-visible .p-home-about__photo--02 { animation-delay: 0.2s; }
	.p-home-about__decor.is-visible .p-home-about__photo--03 { animation-delay: 0.32s; }
	.p-home-about__decor.is-visible .p-home-about__photo--04 { animation-delay: 0.44s; }
	.p-home-about__decor.is-visible .p-home-about__photo--05 { animation-delay: 0.56s; }
	.p-home-about__decor.is-visible .p-home-about__photo--06 { animation-delay: 0.68s; }
	.p-home-about__decor.is-visible .p-home-about__photo--07 { animation-delay: 0.8s; }

	.p-home-about__inner.is-animated .p-home-about__header,
	.p-home-about__inner.is-animated .p-home-about__main-copy,
	.p-home-about__inner.is-animated .p-home-about__columns {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
		will-change: transform, opacity;
	}

	.p-home-about__inner.is-visible .p-home-about__header {
		animation: p-home-about-text-reveal 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s forwards;
	}

	.p-home-about__inner.is-visible .p-home-about__main-copy {
		animation: p-home-about-text-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.34s forwards;
	}

	.p-home-about__inner.is-visible .p-home-about__columns {
		animation: p-home-about-text-reveal 1.02s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
	}

	.p-home-about__inner.is-visible .p-home-about__label,
	.p-home-enjoy__content.is-visible .p-home-enjoy__label,
	.p-home-features__header.p-home-section-reveal.is-visible .p-home-features__label,
	.p-home-outdoor__header.p-home-section-reveal.is-visible .p-home-outdoor__label,
	.p-home-plan__header.p-home-section-reveal.is-visible .p-home-plan__label,
	.p-home-explore__content.p-home-section-reveal.is-visible .p-home-explore__label,
	.p-home-access__header.p-home-section-reveal.is-visible .p-home-access__label,
	.l-site-footer__summary-label-wrap {
		transform: rotate(-1.8deg);
		animation: p-home-about-label-float 1.7s linear 1s infinite alternate;
		transform-origin: 50% 100%;
		will-change: transform;
	}
}

@keyframes p-home-about-photo-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: var(--about-photo-opacity);
		transform: scale(1);
	}
}

@keyframes p-home-about-decor-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes p-home-about-text-reveal {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes p-home-about-label-float {
	from {
		transform: rotate(-1.8deg);
	}

	to {
		transform: rotate(1.8deg);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.p-home-section-reveal.is-animated {
		opacity: 0;
		transform: translate3d(var(--home-reveal-x, 0px), var(--home-reveal-y, 20px), 0)
			scale(var(--home-reveal-scale, 1));
		will-change: transform, opacity;
	}

	.p-home-section-reveal.is-visible {
		animation: p-home-section-reveal-in var(--home-reveal-duration, 0.92s)
			cubic-bezier(0.22, 0.61, 0.36, 1) var(--home-reveal-delay, 0ms) forwards;
	}
}

@keyframes p-home-section-reveal-in {
	from {
		opacity: 0;
		transform: translate3d(var(--home-reveal-x, 0px), var(--home-reveal-y, 20px), 0)
			scale(var(--home-reveal-scale, 1));
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.p-home-about__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
	width: min(100% - 40px, 394px);
}

.p-home-about__header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-home-about__label {
	position: relative;
	margin: 0;
	padding: 0 26px 30px;
	color: #2b4f5e;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.27px;
	text-align: center;
}

.p-home-about__label::before {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	background: url("../img/icons/bubble-frame-dark.svg") center / 100% 100% no-repeat;
	content: "";
	transform: translateX(-50%);
}

.p-home-about__label::after {
	content: none;
}

.p-home-about__script {
	margin: 0;
	color: #2b4f5e;
	font-family: "Caveat Brush", cursive;
	font-size: 64px;
	font-weight: 400;
	line-height: 1.04;
}

.p-home-about__main-copy {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 24px;
	margin: 0;
	color: #2b4f5e;
}

.p-home-about__main-copy span {
	display: inline-block;
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.p-home-about__columns {
	--about-columns-gap: 24px;
	--about-columns-group-gap: 48px;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: center;
	gap: var(--about-columns-gap);
	margin: 0;
	margin-top: 10px;
}

.p-home-about__columns p {
	width: 16px;
	margin: 0;
	color: #2b4f5e;
	font-size: 16.8px;
	font-weight: 500;
	line-height: 20.16px;
	letter-spacing: 1.68px;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.p-home-about__columns p:nth-child(3),
.p-home-about__columns p:nth-child(7) {
	margin-right: calc(var(--about-columns-group-gap) - var(--about-columns-gap));
}

.p-home-enjoy {
	overflow: hidden;
}

.p-home > .p-home-enjoy {
	padding-top: 86px;
	padding-bottom: 95px;
}

.p-home-enjoy__layout {
	--enjoy-shell-width: min(calc(100vw - (2 * var(--fluid-gutter))), 1296px);
	--enjoy-right-bleed: max(0px, calc((100vw - var(--enjoy-shell-width)) / 2));
	display: grid;
	grid-template-columns: minmax(300px, 432px) minmax(0, 1fr);
	align-items: start;
	gap: 56px;
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
}

.p-home-enjoy__content {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding-top: 90px;
}

.p-home-enjoy__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: fit-content;
}

.p-home-enjoy__label {
	position: relative;
	margin: 0;
	align-self: center;
	padding: 0 26px 30px;
	color: #2b4f5e;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.27px;
	text-align: center;
}

.p-home-enjoy__label::before {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	background: url("../img/icons/bubble-frame-dark.svg") center / 100% 100% no-repeat;
	content: "";
	transform: translateX(-50%);
}

.p-home-enjoy__label::after {
	content: none;
}

.p-home-enjoy__script {
	margin: 0;
	color: #2b4f5e;
	font-family: "Caveat Brush", cursive;
	font-size: 64px;
	font-weight: 400;
	line-height: 66.56px;
}

.p-home-enjoy__lead {
	margin: 0;
	color: #2b4f5e;
	font-size: 48px;
	font-weight: 700;
	line-height: 65.28px;
	letter-spacing: 0.02em;
}

.p-home-enjoy__text {
	display: grid;
	gap: 13px;
	max-width: 432px;
	margin-top: -6px;
}

.p-home-enjoy__text p {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 30.4px;
	letter-spacing: 1.52px;
}

@media (prefers-reduced-motion: no-preference) {
	.p-home-enjoy__content.is-animated .p-home-enjoy__header,
	.p-home-enjoy__content.is-animated .p-home-enjoy__lead,
	.p-home-enjoy__content.is-animated .p-home-enjoy__text {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
		will-change: transform, opacity;
	}

	.p-home-enjoy__content.is-visible .p-home-enjoy__header {
		animation: p-home-about-text-reveal 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s forwards;
	}

	.p-home-enjoy__content.is-visible .p-home-enjoy__lead {
		animation: p-home-about-text-reveal 0.92s cubic-bezier(0.22, 0.61, 0.36, 1) 0.28s forwards;
	}

	.p-home-enjoy__content.is-visible .p-home-enjoy__text {
		animation: p-home-about-text-reveal 1.02s cubic-bezier(0.22, 0.61, 0.36, 1) 0.44s forwards;
	}

	.p-home-enjoy__visual.is-animated .p-home-enjoy__photo-stage {
		opacity: 0;
		transform: translate3d(30px, 14px, 0) scale(0.98);
		will-change: transform, opacity;
	}

	.p-home-enjoy__visual.is-visible .p-home-enjoy__photo-stage {
		animation: p-home-enjoy-visual-reveal 1.02s cubic-bezier(0.22, 0.61, 0.36, 1) 0.32s forwards;
	}

	.p-home-enjoy__visual.is-animated .p-home-enjoy__activities {
		opacity: 0;
		transform: translate3d(18px, 20px, 0);
		will-change: transform, opacity;
	}

	.p-home-enjoy__visual.is-visible .p-home-enjoy__activities {
		animation: p-home-enjoy-visual-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
	}

	.p-home-enjoy__visual.is-animated .p-home-enjoy__active-caption {
		opacity: 0;
		transform: translate3d(18px, 20px, 0);
		will-change: transform, opacity;
	}

	.p-home-enjoy__visual.is-visible .p-home-enjoy__active-caption {
		animation: p-home-enjoy-visual-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
	}
}

@keyframes p-home-enjoy-visual-reveal {
	from {
		opacity: 0;
		transform: translate3d(24px, 16px, 0) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.p-home-enjoy__visual {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: calc(100% + var(--enjoy-right-bleed));
	margin-right: calc(var(--enjoy-right-bleed) * -1);
}

.p-home-enjoy__photo-stage {
	position: relative;
	width: 100%;
	margin-left: auto;
}

.p-home-enjoy__photo {
	position: relative;
	z-index: 1;
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	isolation: isolate;
}

.p-home-enjoy__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-home-enjoy__photo--main {
	position: relative;
	aspect-ratio: 888 / 666;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.p-home-enjoy__main-image,
.p-home-enjoy__main-ghost {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-home-enjoy__main-image {
	z-index: 1;
	opacity: 1;
	border-radius: 12px 0 0 12px;
	transition: opacity 0.38s ease;
	will-change: opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.p-home-enjoy__main-image.is-fading-in {
	opacity: 1;
}

.p-home-enjoy__main-ghost {
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	will-change: opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.p-home-enjoy__main-ghost.is-visible {
	visibility: visible;
	opacity: 1;
}

.p-home-enjoy__main-ghost.is-fading-out {
	opacity: 0;
	transition: opacity 0.82s ease;
}

.p-home-enjoy__sub-image,
.p-home-enjoy__sub-ghost {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-home-enjoy__sub-image {
	z-index: 1;
	opacity: 1;
	transition: opacity 0.26s ease;
	will-change: opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.p-home-enjoy__sub-image.is-fading-in {
	opacity: 1;
}

.p-home-enjoy__sub-ghost {
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	will-change: opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.p-home-enjoy__sub-ghost.is-visible {
	visibility: visible;
	opacity: 1;
}

.p-home-enjoy__sub-ghost.is-fading-out {
	opacity: 0;
	transition: opacity 0.6s ease;
}

.p-home-enjoy__photo--top,
.p-home-enjoy__photo--bottom {
	position: absolute;
	z-index: 2;
	aspect-ratio: 4 / 3;
}

.p-home-enjoy__photo--top {
	top: -48px;
	left: 16.21%;
	width: 21.62%;
	max-width: 192px;
	min-width: 120px;
}

.p-home-enjoy__photo--bottom {
	top: 65.77%;
	left: -5.41%;
	width: 27.03%;
	max-width: 240px;
	min-width: 148px;
}

.p-home-enjoy__active-caption {
	display: none;
}

.p-home-enjoy__activities {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 48px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-home-enjoy__activity {
	width: 96px;
}

.p-home-enjoy__activity-btn {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 0;
	border: 0;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	text-align: center;
}

.p-home-enjoy__activity-btn:hover,
.p-home-enjoy__activity-btn:focus,
.p-home-enjoy__activity-btn:active,
.p-home-enjoy__activity-btn:focus-visible,
.p-home-enjoy__activity-btn {
	background-color: transparent !important;
	background: none !important;
	box-shadow: none !important;
}

.p-home-enjoy__activity-btn:focus-visible {
	outline: 2px solid rgba(43, 79, 94, 0.42);
	outline-offset: 4px;
	border-radius: 10px;
}

.p-home-enjoy__activity-thumb {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	--enjoy-progress: 0turn;
}

.p-home-enjoy__activity-thumb::before,
.p-home-enjoy__activity-thumb::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	transform: translate(-50%, -50%);
}

.p-home-enjoy__activity-thumb::before {
	border: 1px solid #c7d1d8;
}

.p-home-enjoy__activity-thumb::after {
	background: conic-gradient(#2b4f5e 0turn var(--enjoy-progress), transparent var(--enjoy-progress) 1turn);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.p-home-enjoy__activity-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	object-fit: cover;
	transition: width 0.2s ease, height 0.2s ease;
}

.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb {
	border-color: #2b4f5e;
}

.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb::before {
	opacity: 1;
}

.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb::after {
	opacity: 1;
}

.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb img {
	width: 40px;
	height: 40px;
}

.p-home-enjoy__activity-label {
	color: #2b4f5e;
	font-size: 12.8px;
	font-weight: 500;
	line-height: 18.43px;
	letter-spacing: 0.77px;
}

.p-home-enjoy__activity-label br {
	display: none;
}

@media (min-width: 769px) {
	.p-home-enjoy__activity {
		width: 112px;
	}

	.p-home-enjoy__activity-label {
		white-space: nowrap;
	}
}

.p-home-svg-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.p-section-wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: 24px;
	line-height: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 2;
}

.p-section-wave svg {
	display: block;
	width: 100%;
	height: 100%;
	vertical-align: top;
}

.p-section-wave use {
	fill: #fff;
}

.p-section-wave--top {
	top: 0;
}

.p-section-wave--bottom {
	bottom: 0;
	transform: rotate(180deg);
	transform-origin: center;
}

.p-home-features {
	position: relative;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.p-home-features.is-bg-ready {
	background-image: url("../img/home/features/features-section-bg.webp");
}

.p-home > .p-home-features {
	margin-top: -1px;
	padding-top: 118px;
	padding-bottom: 118px;
}

.p-home-features > .p-section-wave--top {
	top: -1px;
}

.p-home-features__inner {
	position: relative;
	z-index: 1;
	padding-inline: 72px;
}

.p-home-features__header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-home-features__label {
	position: relative;
	margin: 0;
	padding: 0 26px 30px;
	color: #fff;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.27px;
	text-align: center;
}

.p-home-features__label::before {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	background: url("../img/icons/bubble-frame-light.svg") center / 100% 100% no-repeat;
	content: "";
	transform: translateX(-50%);
}

.p-home-features__label::after {
	content: none;
}

.p-home-features__script {
	margin: 0;
	color: #fff;
	font-family: "Caveat Brush", cursive;
	font-size: 64px;
	font-weight: 400;
	line-height: 66.56px;
}

.p-home-features__grid {
	margin-top: -10px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 576px));
	gap: 45px;
	align-items: start;
	justify-content: start;
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
}

.p-home-features__column {
	display: grid;
	gap: 64px;
}

.p-home-features__column--right {
	padding-top: 200px;
}

.p-home-features__item {
	display: flex;
	align-items: center;
	width: min(100%, 576px);
}

.p-home-features__card {
	width: 336px;
	overflow: hidden;
	border-radius: 12px;
	background-color: #5fa8b5;
}

.p-home-features__card-image {
	margin: 0;
}

.p-home-features__card-image img {
	display: block;
	width: 100%;
	height: 336px;
	object-fit: cover;
}

.p-home-features__card-band {
	height: 8px;
	margin-top: -6px;
	position: relative;
	z-index: 1;
	background: url("../img/home/features/features-card-divider.svg") center/100% 100% no-repeat;
}

.p-home-features__card-body {
	padding: 32px;
	background-color: #5fa8b5;
}

.p-home-features__card-body p {
	margin: 0;
	color: #fff;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 27.97px;
	letter-spacing: 1.22px;
}

.p-home-features__line {
	width: 96px;
	border-top: 1px solid rgba(255, 255, 255, 0.85);
	margin-left: -48px;
	position: relative;
	z-index: 1;
}

.p-home-features__headline {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 24px;
	margin: 0;
	padding-left: 8px;
	color: #fff;
}

.p-home-features__headline > span {
	display: inline-block;
	width: 40px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.p-home-features__headline-tcy {
	display: inline-block;
	letter-spacing: 0;
	text-combine-upright: all;
	-webkit-text-combine: horizontal;
	-ms-text-combine-horizontal: all;
}

.p-home-features__badge {
	position: absolute;
	top: 112px;
	right: max(var(--fluid-gutter), calc((100vw - 1296px) / 2));
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 240px;
	height: 240px;
	padding-left: 10px;
	border-radius: 50%;
	background-color: #f1e7d7;
	color: #2b4f5e;
}

.p-home-features__badge-ring,
.p-home-explore__badge-ring {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.p-home-features__badge-ring img,
.p-home-explore__badge-ring img {
	display: block;
	width: 100%;
	height: 100%;
}

.p-home-features__badge-copy,
.p-home-explore__badge-copy {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 6px;
}

@media (prefers-reduced-motion: no-preference) {
	.p-home-features__badge-ring,
	.p-home-explore__badge-ring {
		transform-origin: center;
		animation: p-home-hero-reservation-ring-spin 24s linear 2.2s infinite;
		will-change: transform;
	}

	.p-home-features__badge-copy span,
	.p-home-explore__badge-copy span {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
		will-change: clip-path, opacity;
	}

	.p-home-features__badge.is-visible .p-home-features__badge-copy span:nth-child(1) {
		animation: p-home-features-badge-type-line-1 10.2s steps(6, end) 0.82s infinite;
	}

	.p-home-explore__badge.is-visible .p-home-explore__badge-copy span:nth-child(1) {
		animation: p-home-features-badge-type-line-1 10.2s steps(5, end) 0.48s infinite;
	}

	.p-home-features__badge.is-visible .p-home-features__badge-copy span:nth-child(2) {
		animation: p-home-features-badge-type-line-2 10.2s steps(6, end) 0.82s infinite;
	}

	.p-home-explore__badge.is-visible .p-home-explore__badge-copy span:nth-child(2) {
		animation: p-home-features-badge-type-line-2 10.2s steps(8, end) 0.48s infinite;
	}

	.p-home-features__badge.is-visible .p-home-features__badge-copy span:nth-child(3) {
		animation: p-home-features-badge-type-line-3 10.2s steps(7, end) 0.82s infinite;
	}

	.p-home-explore__badge.is-visible .p-home-explore__badge-copy span:nth-child(3) {
		animation: p-home-features-badge-type-line-3 10.2s steps(5, end) 0.48s infinite;
	}

	.p-home-features__badge.is-visible .p-home-features__badge-icon,
	.p-home-explore__badge.is-visible .p-home-explore__badge-icon {
		transform-origin: 58% 84%;
		animation: p-home-badge-speaker-bob 3.35s ease-in-out 1.24s infinite;
		will-change: transform;
	}
}

@keyframes p-home-features-badge-type-line-1 {
	0%,
	29.99% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
	}

	30% {
		opacity: 1;
		clip-path: inset(0 0 100% 0);
	}

	42% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}

	61.99% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}

	70%,
	100% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
	}
}

@keyframes p-home-features-badge-type-line-2 {
	0%,
	17.99% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
	}

	18% {
		opacity: 1;
		clip-path: inset(0 0 100% 0);
	}

	30% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}

	69.99% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}

	78%,
	100% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
	}
}

@keyframes p-home-features-badge-type-line-3 {
	0%,
	5.99% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
	}

	6% {
		opacity: 1;
		clip-path: inset(0 0 100% 0);
	}

	18% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}

	77.99% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}

	86%,
	100% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
	}
}

@keyframes p-home-badge-speaker-bob {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}

	25% {
		transform: translate3d(-0.58px, -0.74px, 0) rotate(-0.56deg);
	}

	50% {
		transform: translate3d(0.62px, -0.82px, 0) rotate(0.61deg);
	}

	75% {
		transform: translate3d(-0.54px, -0.68px, 0) rotate(-0.49deg);
	}
}

.p-home-features__badge-copy span,
.p-home-explore__badge-copy span {
	display: inline-block;
	color: #2b4f5e;
	font-size: 16px;
	font-weight: 700;
	line-height: 16.64px;
	letter-spacing: 0.32px;
	text-align: center;
	white-space: nowrap;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.p-home-features__badge-icon,
.p-home-explore__badge-icon {
	position: relative;
	z-index: 1;
	width: 78px;
	height: 120px;
}

.p-home-features__badge-icon img,
.p-home-explore__badge-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-home-plan__title,
.p-home-faq__title,
.p-home-news__title,
.p-home-cta__title {
	margin-bottom: 20px;
}

.p-home > .p-home-outdoor {
	padding-block: 40px;
}

.p-home-outdoor__inner {
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.p-home-outdoor__header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.p-home-outdoor__title-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-home-outdoor__label {
	position: relative;
	margin: 0;
	padding: 0 26px 36px;
	color: #2b4f5e;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.27px;
	text-align: center;
}

.p-home-outdoor__label::before {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	background: url("../img/icons/bubble-frame-dark.svg") center / 100% 100% no-repeat;
	content: "";
	transform: translateX(-50%);
}

.p-home-outdoor__label::after {
	content: none;
}

.p-home-outdoor__script {
	margin: 0;
	color: #2b4f5e;
	font-family: "Caveat Brush", cursive;
	font-size: 64px;
	font-weight: 400;
	line-height: 66.56px;
	text-align: center;
}

.p-home-outdoor__lead {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 30.4px;
	letter-spacing: 1.22px;
	text-align: center;
}

.p-home-outdoor__features {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 144px));
	justify-content: center;
	gap: 48px;
}

.p-home-outdoor__feature {
	display: grid;
	justify-items: center;
	gap: 20px;
}

.p-home-outdoor__feature-icon {
	width: 128px;
	height: 128px;
	display: block;
	border-radius: 0;
	background-color: transparent;
	color: inherit;
}

.p-home-outdoor__feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-home-outdoor__feature p {
	margin: 0;
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 20.74px;
	letter-spacing: 0.29px;
	text-align: center;
}

.p-home-outdoor__map-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.p-home-outdoor__map {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	background-color: #8f856f;
}

.p-home-outdoor__map picture {
	display: block;
}

.p-home-outdoor__map img {
	width: 100%;
	height: 100%;
	display: block;
	aspect-ratio: 1296 / 648;
	object-fit: cover;
}

.p-home-outdoor__cta {
	min-height: 64px;
	padding: 0 24px 0 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: 999px;
	background-color: #a8d8e0;
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 20.74px;
	letter-spacing: 0.04em;
}

.p-home-outdoor__cta-arrow {
	width: 11px;
	height: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.p-home-outdoor__cta-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.p-home > .p-home-plan {
	padding-block: 64px;
}

.p-home-plan__inner {
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 55px;
}

.p-home-plan__header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.p-home-plan__title-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.p-home-plan__label {
	position: relative;
	margin: 0;
	padding: 0 26px 30px;
	color: #2b4f5e;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.02em;
	text-align: center;
}

.p-home-plan__label::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	transform: translateX(-50%);
	background: url("../img/icons/bubble-frame-dark.svg") center / 100% 100% no-repeat;
}

.p-home-plan__label::after {
	content: none;
}

.p-home-plan__script {
	margin: 0;
	color: #2b4f5e;
	font-size: 64px;
	font-family: "Caveat Brush", cursive;
	font-weight: 400;
	line-height: 66.56px;
}

.p-home-plan__lead {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 30.4px;
	letter-spacing: 1.22px;
	text-align: center;
}

.p-home-plan__cards {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 38px 48px;
}

.p-home-plan__card {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
}

.p-home-plan__card > :not(.p-home-plan__card-link) {
	position: relative;
	z-index: 1;
}

.p-home-plan__card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 12px;
}

.p-home-plan__card-link:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.p-home-plan__image {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
}

.p-home-plan__image img {
	display: block;
	width: 100%;
	aspect-ratio: 624 / 351;
	object-fit: cover;
}

.p-home-plan__content {
	padding-inline: 16px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-home-plan__meta-row {
	display: flex;
	align-items: center;
	gap: 24px;
}

.p-home-plan__name {
	flex: 1;
	margin: 0;
	color: #2b4f5e;
	font-size: 44px;
	font-weight: 700;
	line-height: 59.84px;
	letter-spacing: 0.08em;
}

.p-home-plan__meta {
	display: inline-flex;
	align-items: flex-end;
	gap: 16px;
}

.p-home-plan__tag {
	height: 28px;
	padding: 0 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #2b4f5e;
	border-radius: 999px;
	color: #2b4f5e;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
}

.p-home-plan__tag--filled {
	background-color: #2b4f5e;
	color: #fff;
}

.p-home-plan__people {
	color: #2b4f5e;
	font-size: 18.4px;
	font-family: "Overpass", sans-serif;
	font-weight: 500;
	line-height: 26.5px;
	letter-spacing: 0.02em;
}

.p-home-plan__price {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	white-space: nowrap;
}

.p-home-plan__price-value {
	font-size: 24px;
	font-family: "Overpass", sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
}

.p-home-plan__content p {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 30.4px;
	letter-spacing: 0.08em;
}

.p-home-plan__info {
	width: 100%;
	border-top: 1px solid rgba(43, 79, 94, 0.2);
	border-bottom: 1px solid rgba(43, 79, 94, 0.2);
	padding-block: 32px;
}

.p-home-plan__info-list {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1fr);
	gap: 24px;
}

.p-home-plan__info-item {
	display: flex;
	align-items: center;
	gap: 24px;
}

.p-home-plan__info-item dt {
	flex: 0 0 112px;
	height: 56px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background-color: rgba(43, 79, 94, 0.04);
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 700;
	line-height: 19.58px;
	letter-spacing: 0.1em;
}

.p-home-plan__info-item dd {
	display: flex;
	align-items: center;
	margin: 0;
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 23.04px;
	letter-spacing: 0.04em;
}

.p-home-plan__cta {
	min-height: 64px;
	padding: 0 24px 0 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: 999px;
	background-color: #a8d8e0;
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 20.74px;
	letter-spacing: 0.04em;
	margin-top: -20px;
}

.p-home-plan__cta-arrow {
	width: 11px;
	height: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.p-home-plan__cta-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.p-home > .p-home-explore {
	position: relative;
	padding-block: 96px;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 30px;
}

.p-home > .p-home-explore.is-bg-ready {
	background-image: url("../img/home/explore/explore-section-bg.webp");
}

.p-home-explore__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 528px;
	align-items: center;
	gap: 96px;
}

.p-home-explore__scroller {
	min-width: 0;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 24px;
}

.p-home-explore__controls {
	display: inline-flex;
	flex-direction: column;
	gap: 16px;
}

.p-home-explore__control {
	--explore-progress-idle: 0turn;
	--explore-progress-transition: 0turn;
	position: relative;
	-webkit-appearance: none;
	appearance: none;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.p-home-explore__control:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: transparent;
	color: #fff;
}

.p-home-explore__control::before,
.p-home-explore__control::after {
	position: absolute;
	inset: -1px;
	border-radius: 999px;
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.p-home-explore__control::before {
	background: conic-gradient(#fff 0turn var(--explore-progress-idle), transparent var(--explore-progress-idle) 1turn);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 1px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 1px));
}

.p-home-explore__control--phase-transition::before {
	background: conic-gradient(
		transparent 0turn var(--explore-progress-transition),
		#fff var(--explore-progress-transition) 1turn
	);
}

.p-home-explore__control::after {
	background: conic-gradient(
		rgba(255, 255, 255, 0.4) 0turn var(--explore-progress-transition),
		transparent var(--explore-progress-transition) 1turn
	);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 1px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 1px));
}

.p-home-explore__control--timing::before,
.p-home-explore__control--timing::after {
	opacity: 1;
}

.p-home-explore__control:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.p-home-explore__control-arrow {
	display: block;
	width: 6px;
	height: 18px;
}

.p-home-explore__control-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.p-home-explore__viewport {
	height: 1008px;
	mask-image: none;
	cursor: grab;
	user-select: none;
}

.p-home-explore__viewport.is-dragging {
	cursor: grabbing;
}

.p-home-explore__track {
	display: flex;
	flex-direction: column;
	gap: 48px;
	will-change: transform;
}

.p-home-explore__item {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}

.p-home-explore__item-card {
	width: 336px;
	border-radius: 12px;
	overflow: hidden;
}

.p-home-explore__item-image {
	margin: 0;
	line-height: 0;
	position: relative;
	z-index: 0;
}

.p-home-explore__item-image-link {
	display: block;
}

.p-home-explore__item-image-link:focus-visible {
	outline: 2px solid #2b4f5e;
	outline-offset: 2px;
}

.p-home-explore__item-image img {
	display: block;
	width: 100%;
	height: 336px;
	object-fit: cover;
}

.p-home-explore__item-band {
	height: 9px;
	margin-top: -9px;
	margin-bottom: -2px;
	position: relative;
	z-index: 2;
	background-color: #b78c65;
	background: url("../img/home/explore/explore-card-divider.svg") center/100% 100% no-repeat;
}

.p-home-explore__item-body {
	padding: 32px;
	background-color: #b78c65;
	position: relative;
	z-index: 1;
}

.p-home-explore__item-body p {
	margin: 0;
	color: #fff;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 27.97px;
	letter-spacing: 0.08em;
}

.p-home-explore__item-line {
	width: 96px;
	border-top: 1px solid rgba(255, 255, 255, 0.85);
	position: relative;
	left: -70px;
	z-index: 1;
}

.p-home-explore__item-title {
	margin: 0;
	position: relative;
	left: -88px;
	padding-left: 8px;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.p-home-explore__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	color: #fff;
}

.p-home-explore__title-wrap {
	display: inline-flex;
	flex-direction: column;
	align-self: flex-start;
}

.p-home-explore__label {
	position: relative;
	margin: 0;
	align-self: center;
	padding: 0 26px 36px;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.02em;
	text-align: center;
}

.p-home-explore__label::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	transform: translateX(-50%);
	background: url("../img/icons/bubble-frame-light.svg") center / 100% 100% no-repeat;
}

.p-home-explore__label::after {
	content: none;
}

.p-home-explore__script {
	margin: 0;
	font-size: 64px;
	font-family: "Caveat Brush", cursive;
	font-weight: 400;
	line-height: 66.56px;
}

.p-home-explore__lead {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 65.28px;
	letter-spacing: 0.02em;
}

.p-home-explore__text {
	margin: 0;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 30.4px;
	letter-spacing: 0.1em;
}

.p-home-explore__badge {
	position: absolute;
	top: 96px;
	right: max(var(--fluid-gutter), calc((100vw - 1296px) / 2));
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 240px;
	height: 240px;
	padding-left: 10px;
	border-radius: 50%;
	background-color: #f1e7d7;
	color: #2b4f5e;
}

.p-home > .p-home-access {
	padding-block: 64px;
}

.p-home-access__inner {
	width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.p-home-access__header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.p-home-access__title-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-home-access__label {
	position: relative;
	margin: 0;
	padding: 0 26px 30px;
	color: #2b4f5e;
	font-size: 13.6px;
	font-weight: 500;
	line-height: 19.58px;
	letter-spacing: 0.27px;
	text-align: center;
}

.p-home-access__label::before {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 192px;
	height: 44px;
	background: url("../img/icons/bubble-frame-dark.svg") center / 100% 100% no-repeat;
	content: "";
	transform: translateX(-50%);
}

.p-home-access__label::after {
	content: none;
}

.p-home-access__script {
	margin: 0;
	color: #2b4f5e;
	font-family: "Caveat Brush", cursive;
	font-size: 64px;
	font-weight: 400;
	line-height: 66.56px;
}

.p-home-access__lead {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 30.4px;
	letter-spacing: 1.22px;
	text-align: center;
}

.p-home-access__info {
	width: min(100%, 912px);
	display: flex;
	flex-direction: column;
	gap: 32px;
	order: 2;
}

.p-home-access__list {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 48px;
	position: relative;
	border-top: 1px solid rgba(43, 79, 94, 0.2);
	border-bottom: 1px solid rgba(43, 79, 94, 0.2);
}

.p-home-access__list::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	border-top: 1px solid rgba(43, 79, 94, 0.2);
}

.p-home-access__row {
	margin: 0;
	padding: 15px 0;
	display: flex;
	align-items: center;
	gap: 24px;
}

.p-home-access__term {
	flex: 0 0 112px;
	margin: 0;
	padding: 0;
}

.p-home-access__term span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
	padding: 4px;
	border-radius: 4px;
	background-color: rgba(43, 79, 94, 0.04);
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 700;
	line-height: 19.58px;
	letter-spacing: 0.16em;
	text-align: center;
}

.p-home-access__desc {
	display: flex;
	align-items: center;
	flex: 1;
	margin: 0;
	color: #2b4f5e;
	font-size: 18.4px;
	font-weight: 500;
	line-height: 29.44px;
	letter-spacing: 0.08em;
}

.p-home-access__desc--tel {
	font-family: "Overpass", "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	line-height: 32px;
	letter-spacing: 0.04em;
}

.p-home-access__desc--time {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 4px 8px;
	white-space: nowrap;
}

.p-home-access__time-label {
	font-size: 16px;
	line-height: 25.6px;
	letter-spacing: 0.02em;
}

.p-home-access__time-sep {
	font-size: 16px;
	line-height: 25.6px;
	letter-spacing: 0.04em;
}

.p-home-access__time-value {
	font-family: "Overpass", "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	line-height: 32px;
	letter-spacing: 0.04em;
}

.p-home-access__routes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 48px;
}

.p-home-access__route {
	display: flex;
	align-items: center;
	gap: 20px;
}

.p-home-access__route-icon {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-home-access__route-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-home-access__route-text {
	display: grid;
	gap: 24px;
}

.p-home-access__route-title {
	margin: 0;
	color: #2b4f5e;
	font-size: 16px;
	font-weight: 700;
	line-height: 23.04px;
	letter-spacing: 0.06em;
}

.p-home-access__route-text p {
	margin: 0;
	color: #2b4f5e;
	font-size: 15.2px;
	font-weight: 500;
	line-height: 21.89px;
	letter-spacing: 0.06em;
}

.p-home-access__map-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	order: 3;
}

.p-home-access__map {
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
}

.p-home-access__map iframe {
	width: 100%;
	display: block;
	aspect-ratio: 1296 / 648;
	min-height: 520px;
	border: 0;
}

.p-home-access__map-link {
	min-height: 64px;
	padding: 0 24px 0 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: 999px;
	background-color: #a8d8e0;
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 20.74px;
	letter-spacing: 0.04em;
}

.p-home-access__cta {
	order: 4;
	min-height: 64px;
	padding: 0 24px 0 32px;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: 999px;
	background-color: #a8d8e0;
	color: #2b4f5e;
	font-size: 14.4px;
	font-weight: 500;
	line-height: 20.74px;
	letter-spacing: 0.04em;
}

:is(.p-home-outdoor__cta, .p-home-plan__cta, .p-home-access__map-link, .p-home-access__cta) {
	transition:
		transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.26s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.22s ease,
		color 0.22s ease,
		border-color 0.22s ease;
}

:is(.p-home-outdoor__cta, .p-home-plan__cta, .p-home-access__map-link, .p-home-access__cta):hover,
:is(.p-home-outdoor__cta, .p-home-plan__cta, .p-home-access__map-link, .p-home-access__cta):focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(43, 79, 94, 0.24);
}

.p-home-access__map-link-arrow {
	width: 11px;
	height: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.p-home-access__cta-arrow {
	width: 11px;
	height: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.p-home-access__map-link-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.p-home-access__cta-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

:is(.p-home-outdoor__cta-arrow, .p-home-plan__cta-arrow, .p-home-access__map-link-arrow, .p-home-access__cta-arrow) {
	transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

:is(.p-home-outdoor__cta, .p-home-plan__cta, .p-home-access__map-link, .p-home-access__cta):hover :is(.p-home-outdoor__cta-arrow, .p-home-plan__cta-arrow, .p-home-access__map-link-arrow, .p-home-access__cta-arrow),
:is(.p-home-outdoor__cta, .p-home-plan__cta, .p-home-access__map-link, .p-home-access__cta):focus-visible :is(.p-home-outdoor__cta-arrow, .p-home-plan__cta-arrow, .p-home-access__map-link-arrow, .p-home-access__cta-arrow) {
	transform: translateX(4px);
}

.p-home-faq__items {
	display: grid;
	gap: 14px;
}

.p-home-faq__item,
.c-faq {
	padding: 0;
	overflow: hidden;
}

.p-home-faq__question,
.c-faq__question {
	position: relative;
	padding: 20px 56px 20px 24px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.p-home-faq__question::-webkit-details-marker,
.c-faq__question::-webkit-details-marker {
	display: none;
}

.p-home-faq__question::before,
.p-home-faq__question::after,
.c-faq__question::before,
.c-faq__question::after {
	position: absolute;
	top: 50%;
	right: 24px;
	width: 14px;
	height: 2px;
	background-color: var(--color-accent);
	content: "";
	transform: translateY(-50%);
}

.p-home-faq__question::after,
.c-faq__question::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.2s ease;
}

.p-home-faq__item[open] .p-home-faq__question::after,
.c-faq[open] .c-faq__question::after {
	transform: translateY(-50%) rotate(0deg);
}

.p-home-faq__answer,
.c-faq__answer {
	margin: 0;
	padding: 0 24px 20px;
	color: var(--color-subtext);
}

.p-home-news__items {
	display: grid;
	gap: 14px;
}

.p-home-news__item {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
}

.p-home-news__date {
	margin: 0;
	color: var(--color-subtext);
	font-size: 14px;
}

.p-home-news__item-title {
	margin: 0;
	font-size: 19px;
	line-height: 1.5;
}

.p-home-news__item-title a:hover,
.p-home-news__item-title a:focus-visible {
	color: var(--color-accent);
}

.p-home-news__action {
	margin-top: 28px;
}

.p-home-cta {
	background-color: #123042;
	color: #fff;
}

.p-home-cta__inner {
	display: grid;
	gap: 18px;
	text-align: center;
}

.p-home-cta .c-section-title {
	color: #c3d8ea;
}

.p-home-cta__text {
	margin: 0;
}

.p-home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.p-home-cta .c-btn--ghost {
	border-color: #fff;
	background-color: #fff;
	color: #123042;
}

.p-home-cta .c-btn--ghost:hover,
.p-home-cta .c-btn--ghost:focus-visible {
	background-color: #e8eef3;
}

.p-page-layout__header,
.p-news-list__header,
.p-news-single__header {
	padding-block: 76px 40px;
}

.p-news-single__content {
	max-width: 920px;
}

.p-page-layout__content > *:first-child,
.p-news-single__content > *:first-child {
	margin-top: 0;
}

.p-page-layout__content > *:last-child,
.p-news-single__content > *:last-child {
	margin-bottom: 140px;
}

.p-page-layout__content p,
.p-page-layout__content li,
.p-news-single__content p,
.p-news-single__content li {
	color: var(--color-subtext);
}

.p-news-list__items {
	display: grid;
	gap: 14px;
}

.p-news-list__item {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	position: relative;
}

.p-news-list__date,
.p-news-single__meta {
	margin: 0;
	color: var(--color-subtext);
	font-size: 14px;
}

.p-news-list__item-title {
	margin: 0;
	font-size: 19px;
	line-height: 1.5;
}

.p-news-list__item > :not(.p-news-list__card-link) {
	position: relative;
	z-index: 1;
}

.p-news-list__card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
}

.p-news-list__card-link:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.p-news-list__item:hover .p-news-list__item-title,
.p-news-list__item:focus-within .p-news-list__item-title {
	color: var(--color-accent);
}

.p-news-list__pagination {
	margin-top: 34px;
}

.p-news-list__pagination .nav-links {
	display: flex;
	gap: 10px;
}

.p-news-list__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background-color: #fff;
	font-weight: 700;
}

.p-news-list__pagination .page-numbers.current {
	border-color: var(--color-accent);
	background-color: var(--color-accent);
	color: #fff;
}

.p-page-contact__content .wpcf7 {
	max-width: 760px;
}

.p-page-contact__content .wpcf7-form p {
	margin-bottom: 18px;
}

.p-page-contact__content .wpcf7-form input[type="text"],
.p-page-contact__content .wpcf7-form input[type="email"],
.p-page-contact__content .wpcf7-form input[type="tel"],
.p-page-contact__content .wpcf7-form textarea,
.p-page-contact__content .wpcf7-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	font-size: 16px;
}

.p-page-contact__content .wpcf7-form textarea {
	min-height: 180px;
	resize: vertical;
}

.p-page-contact__content .wpcf7-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 28px;
	border: none;
	border-radius: 999px;
	background-color: var(--color-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.p-page-contact__content .wpcf7-form input[type="submit"]:hover,
.p-page-contact__content .wpcf7-form input[type="submit"]:focus-visible {
	background-color: var(--color-accent-dark);
}

.p-page-reservation__note {
	padding: 18px 20px;
	border: 1px dashed #aebfd0;
	border-radius: 10px;
	background-color: #edf3f9;
	color: #3d5367;
}

.p-page-reservation__content iframe {
	display: block;
	width: 100%;
	min-height: 2300px;
	overflow: hidden;
	border: 0;
}

.p-page-reservation__notice {
	width: min(100%, 1060px);
	margin: 0 0 32px;
	margin-inline: auto;
	padding: 24px;
	border: 1px solid rgba(43, 79, 94, 0.18);
	border-radius: 12px;
	background: rgba(241, 231, 215, 0.4);
	color: #2b4f5e;
}

.p-page-reservation__notice-title {
	margin: 0 0 12px;
	color: #2b4f5e;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.p-page-reservation__notice-list {
	margin: 0;
	padding-left: 1.2em;
	display: grid;
	gap: 8px;
}

.p-page-reservation__notice-list li {
	color: #2b4f5e;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

@media (max-width: 1295px) {
	.p-home-hero__vertical-line {
		font-size: clamp(56px, calc(32.7px + 3.03vw), 72px);
	}

	.p-home-hero__cta-group {
		right: clamp(0px, 0.46vw, 6px);
		bottom: clamp(50px, calc(-308px + 35.06vw), 145px);
	}

	.p-home-hero__speech {
		padding-bottom: clamp(36px, calc(8.2px + 2.9vw), 46px);
		font-size: clamp(14px, 1.17vw, 15.2px);
	}

	.p-home-hero__speech::before {
		width: clamp(184px, calc(-28.1px + 20.6vw), 240px);
		height: clamp(44px, calc(2.4px + 4.06vw), 55px);
	}

	.p-home-hero__catchcopy {
		bottom: clamp(44px, calc(-134.3px + 23.2vw), 200px);
		font-size: clamp(20px, 1.7vw, 22px);
	}

	.p-home-hero__catchcopy-sub {
		font-size: clamp(13px, 1.05vw, 14.4px);
	}
}

@media (min-width: 1025px) and (max-width: 1280px) {
	.p-home-explore__inner {
		grid-template-columns: minmax(0, 1fr) 400px;
		gap: 40px;
	}

	.p-home-explore__scroller {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 18px;
	}

	.p-home-explore__control {
		width: 42px;
		height: 42px;
	}

	.p-home-explore__item {
		gap: 16px;
	}

	.p-home-explore__item-line {
		width: 80px;
		left: -48px;
	}

	.p-home-explore__item-title {
		left: -60px;
		font-size: 36px;
	}

	.p-home-explore__item-card {
		width: 320px;
		flex: 0 0 320px;
	}

	.p-home-explore__item-image img {
		height: 320px;
	}
}

@media (max-width: 1024px) {
	.l-site-header__inner {
		flex-wrap: wrap;
		gap: 12px 16px;
		padding-top: 24px;
	}

	.l-site-header__nav {
		flex-basis: auto;
		margin-left: auto;
	}

	.l-site-header__nav-frame {
		width: auto;
		padding: 12px 18px;
	}

	.l-site-header__menu {
		gap: 8px 16px;
	}

	.l-site-header.is-scrolled .l-site-header__inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.p-home > section {
		padding-block: 84px;
	}

	.p-home-about {
		min-height: 960px;
	}

	.p-home > .p-home-about {
		padding-block: 84px;
	}

	.p-home-about__photo--01 {
		left: calc(50% + 300px);
	}

	.p-home-about__photo--02 {
		left: calc(50% + 226px);
	}

	.p-home-about__photo--03 {
		left: calc(50% - 336px);
	}

	.p-home-about__photo--04 {
		left: calc(50% - 456px);
	}

	.p-home-about__photo--05 {
		left: calc(50% + 212px);
	}

	.p-home-about__photo--06 {
		left: calc(50% - 500px);
	}

	.p-home-about__photo--07 {
		left: calc(50% - 304px);
	}

	.p-home-about__main-copy {
		gap: 18px;
	}

	.p-home-about__main-copy span {
		font-size: 48px;
	}

	.p-home-about__columns {
		--about-columns-gap: 18px;
		--about-columns-group-gap: 36px;
		gap: var(--about-columns-gap);
	}

	.p-home-about__columns p {
		width: 14px;
		font-size: 15px;
		line-height: 18px;
		letter-spacing: 1.3px;
	}

	.p-home > .p-home-enjoy {
		padding-top: 84px;
		padding-bottom: 56px;
	}

	.p-home-enjoy__layout {
		--enjoy-right-bleed: 0px;
		width: min(100% - 32px, 980px);
		margin-inline: auto;
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.p-home-enjoy__content {
		max-width: 640px;
		gap: 44px;
	}

	.p-home-enjoy__script {
		font-size: 56px;
		line-height: 1.04;
	}

	.p-home-enjoy__lead {
		font-size: 44px;
		line-height: 1.32;
	}

	.p-home-enjoy__text {
		max-width: 100%;
	}

	.p-home-enjoy__visual {
		width: calc(100% + 16px);
		margin-right: -16px;
		margin-left: 0;
	}

	.p-home-enjoy__photo-stage {
		margin-inline: auto;
	}

	.p-home-enjoy__active-caption {
		padding-right: 0;
		font-size: clamp(22px, 4.4vw, 34px);
	}

	.p-home-enjoy__main-image {
		border-radius: 12px 0 0 12px;
	}

	.p-home-enjoy__activities {
		gap: 28px;
	}

	.p-home > .p-home-features {
		padding-top: 84px;
		padding-bottom: 100px;
	}

	.p-home-features__inner {
		width: min(100% - 24px, 1296px);
		margin-inline: auto;
		padding-inline: 0;
	}

	.p-home-features__grid {
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
	}

	.p-home-features__column--right {
		padding-top: 36px;
	}

	.p-home-features__item {
		justify-content: flex-start;
		width: 100%;
	}

	.p-home-features__badge {
		top: 92px;
		width: 196px;
		height: 196px;
	}

	.p-home-features__badge-copy span {
		font-size: 13px;
		line-height: 14px;
	}

		.p-home-features__badge-icon,
		.p-home-explore__badge-icon {
			width: 62px;
			height: 96px;
		}

	.p-home > .p-home-outdoor {
		padding-block: 40px;
	}

	.p-home-outdoor__inner {
		gap: 40px;
	}

	.p-home-outdoor__header {
		gap: 44px;
	}

	.p-home-outdoor__lead {
		font-size: 14.4px;
		line-height: 1.9;
		letter-spacing: 1.1px;
	}

	.p-home-outdoor__features {
		gap: 24px;
	}

	.p-home-outdoor__feature-icon {
		width: 112px;
		height: 112px;
	}

	.p-home-outdoor__feature-icon img {
		width: 100%;
		height: 100%;
	}

	.p-home-outdoor__map img {
		aspect-ratio: 16 / 9;
	}

	.p-home > .p-home-plan {
		padding-block: 84px;
	}

	.p-home-plan__inner {
		gap: 56px;
	}

	.p-home-plan__header {
		gap: 44px;
	}

	.p-home-plan__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-plan__script {
		font-size: 56px;
		line-height: 1.04;
	}

	.p-home-plan__cards {
		gap: 48px 32px;
	}

	.p-home-plan__card {
		gap: 36px;
	}

	.p-home-plan__content {
		gap: 32px;
	}

	.p-home-plan__meta-row {
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.p-home-plan__name {
		font-size: 38px;
		line-height: 1.3;
	}

	.p-home-plan__tag {
		height: 30px;
		font-size: 14.4px;
	}

	.p-home-plan__people {
		font-size: 17px;
	}

	.p-home-plan__price-value {
		font-size: 22px;
	}

	.p-home-plan__info-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.p-home-plan__info-item {
		align-items: flex-start;
	}

	.p-home-plan__cta {
		min-height: 56px;
		padding: 0 20px 0 28px;
	}

	.p-home > .p-home-explore {
		padding-block: 84px;
	}

	.p-home-explore__inner {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 36px;
	}

	.p-home-explore__scroller {
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 16px;
	}

	.p-home-explore__control {
		width: 40px;
		height: 40px;
	}

	.p-home-explore__viewport {
		height: clamp(760px, 84vw, 900px);
	}

	.p-home-explore__item-card {
		width: 320px;
		flex: 0 0 320px;
	}

	.p-home-explore__item-image img {
		height: 320px;
	}

	.p-home-explore__item-line {
		width: 84px;
		left: -56px;
	}

	.p-home-explore__item-title {
		left: -72px;
		font-size: 36px;
	}

	.p-home-explore__item-body {
		padding: 24px;
	}

	.p-home-explore__item-title {
		font-size: 36px;
	}

	.p-home-explore__script {
		font-size: 56px;
		line-height: 1.04;
	}

	.p-home-explore__lead {
		font-size: 40px;
		line-height: 1.36;
	}

	.p-home-explore__text {
		font-size: 14.4px;
		line-height: 1.9;
		letter-spacing: 1.1px;
	}

	.p-home-explore__badge {
		top: 84px;
		width: 196px;
		height: 196px;
	}

	.p-home-explore__badge-copy span {
		font-size: 13px;
		line-height: 14px;
	}

	.p-home > .p-home-access {
		padding-block: 84px;
	}

	.p-home-access__inner {
		gap: 40px;
	}

	.p-home-access__header {
		gap: 44px;
	}

	.p-home-access__lead {
		font-size: 14.4px;
		line-height: 1.9;
		letter-spacing: 1.1px;
	}

	.p-home-access__info {
		width: 100%;
		max-width: 912px;
	}

	.p-home-access__list {
		gap: 0 32px;
	}

	.p-home-access__desc {
		font-size: 17px;
		line-height: 1.65;
	}

	.p-home-access__routes {
		gap: 24px;
	}

	.p-home-hero-marquee {
		--marquee-item-width: 1420px;
		--marquee-gap: 52px;
		margin-top: -28px;
	}

	.seaside-accommodation-villa {
		font-size: 104px;
	}

	.p-home-hero__vertical-copy {
		gap: 24px;
	}

	.p-home-hero__cta-group {
		right: 0;
		bottom: 24px;
	}

	.p-home-hero__reservation {
		width: 160px;
		height: 160px;
	}

	.p-home-hero__reservation.p-home-hero__reservation--fixed {
		width: 130px;
		height: 130px;
		gap: 10px;
	}

	.p-home-hero__reservation-icon {
		width: 40px;
		height: 40px;
	}

	.p-home-hero__reservation-label {
		font-size: 16px;
	}

	.p-home-hero__catchcopy {
		gap: 18px;
		font-size: 20px;
	}

	.p-page-layout__header,
	.p-news-list__header,
	.p-news-single__header {
		padding-top: 68px;
	}
}

/* Tablet landscape and small desktop: use mobile layout for Enjoy/Features. */
@media (min-width: 769px) and (max-width: 1025px) {
	.p-home > .p-home-enjoy {
		padding-top: 72px;
		padding-bottom: 48px;
	}

	.p-home-enjoy__layout {
		--enjoy-right-bleed: 0px;
		width: min(calc(100% - (2 * var(--fluid-gutter))), 700px);
		margin-inline: auto;
		grid-template-columns: 1fr;
		gap: 68px;
	}

	.p-home-enjoy__visual {
		width: calc(100% + var(--fluid-gutter));
		margin-right: calc(var(--fluid-gutter) * -1);
		margin-left: 0;
	}

	.p-home-enjoy__content {
		max-width: 640px;
		gap: 36px;
		padding-top: 25px;
	}

	.p-home-enjoy__header {
		align-items: center;
		width: 100%;
	}

	.p-home-enjoy__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-enjoy__script {
		font-size: 52px;
	}

		.p-home-enjoy__lead {
			font-size: 32px;
			line-height: 1.35;
			text-align: center;
		}

	.p-home-enjoy__text {
		gap: 24px;
		max-width: 100%;
		margin-inline: auto;
		text-align: center;
		justify-items: center;
	}

	.p-home-enjoy__photo-stage {
		margin-inline: auto;
	}

	.p-home-enjoy__text p {
		font-size: 14.4px;
		line-height: 1.95;
		letter-spacing: 1.15px;
		text-align: center;
	}

	.p-home-enjoy__photo--main {
		width: 90%;
		margin-left: auto;
		margin-right: 0;
	}

	.p-home-enjoy__photo--top {
		top: -28px;
		left: 9%;
		width: 24%;
		min-width: 100px;
	}

		.p-home-enjoy__photo--bottom {
			top: 67%;
			left: -3%;
			width: 32%;
			min-width: 122px;
		}

		.p-home-enjoy__active-caption {
			display: block;
			align-self: flex-end;
		margin: 0;
		width: 90%;
		margin-inline: auto 0;
		margin-top: -44px;
		padding-right: 11px;
		color: #2b4f5e;
		font-size: 12px;
		font-weight: 500;
		line-height: 1.35;
		letter-spacing: 0.05em;
		text-align: right;
		white-space: nowrap;
	}

	.p-home-enjoy__activities {
		flex-wrap: wrap;
		gap: 22px 18px;
		justify-content: center;
		margin-top: 16px;
	}

	.p-home-enjoy__activity {
		width: 88px;
	}

	.p-home-enjoy__activity-btn {
		gap: 14px;
	}

	.p-home-enjoy__activity-thumb {
		width: 62px;
		height: 62px;
	}

	.p-home-enjoy__activity-thumb::before,
	.p-home-enjoy__activity-thumb::after {
		width: 62px;
		height: 62px;
	}

	.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb img {
		width: 48px;
		height: 48px;
	}

	.p-home-enjoy__activity-label {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.p-home-enjoy__activity-label br {
		display: none;
	}

	.p-home > .p-home-features {
		padding-top: 72px;
		padding-bottom: 88px;
	}

	.p-home-features__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
		margin-inline: auto;
		padding-inline: 0;
	}

	.p-home-features__grid {
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
	}

	.p-home-features__column--right {
		padding-top: 36px;
	}

	.p-home-features__header {
		margin-bottom: 60px;
	}

	.p-home-features__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-features__script {
		font-size: 52px;
		line-height: 1.04;
	}

	.p-home-features__item {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		margin-inline: 0;
	}

	.p-home-features__card {
		width: clamp(210px, 52vw, 336px);
	}

	.p-home-features__line {
		display: block;
		width: clamp(68px, 14vw, 120px);
		border-top: 1px solid rgba(255, 255, 255, 0.85);
		margin-left: 0;
		transform: translateX(-50%);
	}

	.p-home-features__headline {
		flex-direction: row-reverse;
		align-items: flex-start;
		justify-content: flex-start;
		width: auto;
		padding-left: 0;
		gap: clamp(8px, 1.6vw, 14px);
		margin-top: 0;
		transform: translateX(-22px);
	}

	.p-home-features__headline > span {
		display: inline-block;
		width: 1em;
		font-size: clamp(24px, 4.8vw, 36px);
		line-height: 1;
		writing-mode: vertical-rl;
		text-orientation: upright;
		flex-shrink: 0;
		white-space: nowrap;
	}

	.p-home-features__card-image img {
		height: auto;
		aspect-ratio: 6 / 5;
		border-radius: 16px;
	}

	.p-home-features__card-body {
		padding: 22px;
	}

	.p-home-features__card-body p {
		font-size: 14.4px;
		line-height: 1.8;
		letter-spacing: 0.06em;
	}

	.p-home-features__item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.p-home-features__item:nth-child(even) .p-home-features__line {
		transform: translateX(50%);
	}

	.p-home-features__item:nth-child(even) .p-home-features__headline {
		transform: translateX(22px);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(odd) {
		flex-direction: row-reverse;
	}

	.p-home-features__column--right .p-home-features__item:nth-child(odd) .p-home-features__line {
		transform: translateX(50%);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(odd) .p-home-features__headline {
		transform: translateX(22px);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) {
		flex-direction: row;
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) .p-home-features__line {
		transform: translateX(-50%);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) .p-home-features__headline {
		transform: translateX(-22px);
	}

	.p-home-features__badge,
	.p-home-explore__badge {
		top: 84px;
		right: 18px;
		width: 136px;
		height: 136px;
		padding-left: 0;
		gap: 8px;
	}

	.p-home-features__badge-copy,
	.p-home-explore__badge-copy {
		gap: 4px;
	}

	.p-home-features__badge-copy span,
	.p-home-explore__badge-copy span {
		width: 12px;
		font-size: 10px;
		line-height: 11px;
		letter-spacing: 0.14px;
	}

	.p-home-features__badge-icon,
	.p-home-explore__badge-icon {
		width: 42px;
		height: 64px;
	}

	.p-home > .p-home-plan {
		padding-block: 84px;
	}

	.p-home-plan__inner {
		gap: 56px;
	}

	.p-home-plan__header {
		gap: 44px;
	}

	.p-home-plan__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-plan__script {
		font-size: 56px;
		line-height: 1.04;
	}

	.p-home-plan__cards {
		gap: 48px 32px;
	}

	.p-home-plan__card {
		gap: 36px;
	}

	.p-home-plan__content {
		gap: 32px;
	}

	.p-home-plan__meta-row {
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.p-home-plan__name {
		font-size: 38px;
		line-height: 1.3;
	}

	.p-home-plan__tag {
		height: 30px;
		font-size: 14.4px;
	}

	.p-home-plan__people {
		font-size: 17px;
	}

	.p-home-plan__price-value {
		font-size: 22px;
	}

	.p-home-plan__info-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.p-home-plan__info-item {
		align-items: flex-start;
	}

	.p-home-plan__cta {
		min-height: 56px;
		padding: 0 20px 0 28px;
	}
}

@media (max-width: 768px) {
	.l-site-header__inner {
		align-items: center;
		padding-top: 20px;
	}

	.l-site-header__logo {
		width: min(170px, 45vw);
	}

	body.home .l-site-header:not(.is-scrolled) .l-site-header__logo {
		width: min(180px, 27vw);
	}

	.l-site-header__nav {
		display: none;
	}

	.l-site-header__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.l-site-header.is-scrolled .l-site-header__logo {
		width: min(160px, 25.2vw);
	}

	.l-site-header.is-scrolled .l-site-header__toggle {
		border-color: var(--color-border);
		background-color: #fff;
	}

	.l-site-header.is-scrolled .l-site-header__toggle-line {
		background-color: #1d2a35;
	}

	body:not(.home) .l-site-header__toggle {
		border-color: var(--color-border);
		background-color: #f7f8f9;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	body:not(.home) .l-site-header__toggle-line {
		background-color: #1d2a35;
	}

	body:not(.home) .l-site-header.is-menu-open .l-site-header__toggle {
		border-color: var(--color-border);
		background-color: #f7f8f9;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.p-home-about {
		min-height: auto;
	}

	.p-home > .p-home-about {
		padding: 40px 0 240px;
	}

	.p-home-about__decor {
		display: block;
		z-index: 0;
	}

	.p-home-about__photo {
		--about-photo-opacity: 0.92;
	}

	.p-home-about__photo--01 {
		top: 660px;
		right: 8%;
		left: auto;
		width: 146px;
		height: 195px;
	}

	.p-home-about__photo--02 {
		top: 224px;
		right: 10%;
		left: auto;
		width: 120px;
		height: 160px;
	}

	.p-home-about__photo--03 {
		top: 1290px;
		left: 14%;
		width: 124px;
		height: 166px;
	}

	.p-home-about__photo--04 {
		top: 1170px;
		left: 24%;
		width: 82px;
		height: 110px;
	}

	.p-home-about__photo--05 {
		top: 1456px;
		right: 12%;
		left: auto;
		width: 68px;
		height: 90px;
	}

	.p-home-about__photo--06 {
		top: 446px;
		left: 8%;
		width: 146px;
		height: 195px;
	}

	.p-home-about__photo--07 {
		top: 230px;
		left: 14%;
		width: 96px;
		height: 128px;
	}

	.p-home-about__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 420px);
		gap: 40px;
	}

	.p-home-about__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-about__script {
		font-size: 52px;
	}

	.p-home-about__main-copy {
		gap: 12px;
	}

	.p-home-about__main-copy span {
		font-size: 40px;
	}

	.p-home-about__columns {
		--about-columns-gap: 12px;
		--about-columns-group-gap: 24px;
		gap: var(--about-columns-gap);
	}

	.p-home-about__columns p {
		width: 14px;
		font-size: 14px;
		line-height: 16.8px;
		letter-spacing: 1.2px;
	}

	.p-home > .p-home-enjoy {
		padding-top: 72px;
		padding-bottom: 48px;
	}

	.p-home-enjoy__layout {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 700px);
		gap: 68px;
	}

	.p-home-enjoy__visual {
		width: calc(100% + var(--fluid-gutter));
		margin-right: calc(var(--fluid-gutter) * -1);
		margin-left: 0;
	}

	.p-home-enjoy__content {
		gap: 36px;
		padding-top: 25px;
	}

	.p-home-enjoy__header {
		align-items: center;
		width: 100%;
	}

	.p-home-enjoy__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-enjoy__script {
		font-size: 52px;
	}

	.p-home-enjoy__lead {
		font-size: 32px;
		line-height: 1.35;
		text-align: center;
		margin-top: -8px;
	}

	.p-home-enjoy__text {
		gap: 24px;
		margin-inline: auto;
		text-align: center;
		justify-items: center;
	}

	.p-home-enjoy__text p {
		font-size: 14.4px;
		line-height: 1.95;
		letter-spacing: 1.15px;
		text-align: center;
	}

	.p-home-enjoy__photo--main {
		width: 90%;
		margin-left: auto;
		margin-right: 0;
	}

	.p-home-enjoy__photo--top {
		top: -28px;
		left: 9%;
		width: 24%;
		min-width: 100px;
	}

	.p-home-enjoy__photo--bottom {
		top: 67%;
		left: -3%;
		width: 32%;
		min-width: 122px;
	}

		.p-home-enjoy__active-caption {
			display: block;
			align-self: flex-end;
			margin: 0;
			width: 90%;
			margin-inline: auto 0;
			margin-top: -44px;
			padding-right: 11px;
			color: #2b4f5e;
			font-size: 12px;
			font-weight: 500;
			line-height: 1.35;
			letter-spacing: 0.05em;
			text-align: right;
			white-space: nowrap;
		}

	.p-home-enjoy__activities {
		flex-wrap: wrap;
		gap: 22px 18px;
		justify-content: center;
		margin-top: 16px;
	}

	.p-home-enjoy__activity {
		width: 88px;
	}

	.p-home-enjoy__activity-btn {
		gap: 14px;
	}

	.p-home-enjoy__activity-thumb {
		width: 62px;
		height: 62px;
	}

	.p-home-enjoy__activity-thumb::before,
	.p-home-enjoy__activity-thumb::after {
		width: 62px;
		height: 62px;
	}

	.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb img {
		width: 48px;
		height: 48px;
	}

	.p-home-enjoy__activity-label {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.p-home-enjoy__activity-label br {
		display: none;
	}

	.p-home > .p-home-features {
		padding-top: 72px;
		padding-bottom: 88px;
	}

	.p-section-wave {
		height: 16px;
	}

	.p-home-features__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
		margin-inline: auto;
		padding-inline: 0;
	}

	.p-home-features__header {
		margin-bottom: 60px;
	}

	.p-home-features__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-features__script {
		font-size: 52px;
		line-height: 1.04;
	}

	.p-home-features__item {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		margin-inline: 0;
	}

	.p-home-features__card {
		width: clamp(210px, 52vw, 336px);
	}

	.p-home-features__line {
		display: block;
		width: clamp(68px, 14vw, 120px);
		border-top: 1px solid rgba(255, 255, 255, 0.85);
		margin-left: 0;
		transform: translateX(-50%);
	}

	.p-home-features__headline {
		flex-direction: row-reverse;
		align-items: flex-start;
		justify-content: flex-start;
		width: auto;
		padding-left: 0;
		gap: clamp(8px, 1.6vw, 14px);
		margin-top: 0;
		transform: translateX(-22px);
	}

	.p-home-features__headline > span {
		display: inline-block;
		width: 1em;
		font-size: clamp(24px, 4.8vw, 36px);
		line-height: 1;
		writing-mode: vertical-rl;
		text-orientation: upright;
		flex-shrink: 0;
		white-space: nowrap;
	}

	.p-home-features__card-image img {
		height: auto;
		aspect-ratio: 6 / 5;
		border-radius: 16px;
	}

	.p-home-features__card-body {
		padding: 22px;
	}

	.p-home-features__card-body p {
		font-size: 14.4px;
		line-height: 1.8;
		letter-spacing: 0.06em;
	}

	.p-home-features__item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.p-home-features__item:nth-child(even) .p-home-features__line {
		transform: translateX(50%);
	}

	.p-home-features__item:nth-child(even) .p-home-features__headline {
		transform: translateX(22px);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(odd) {
		flex-direction: row-reverse;
	}

	.p-home-features__column--right .p-home-features__item:nth-child(odd) .p-home-features__line {
		transform: translateX(50%);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(odd) .p-home-features__headline {
		transform: translateX(22px);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) {
		flex-direction: row;
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) .p-home-features__line {
		transform: translateX(-50%);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) .p-home-features__headline {
		transform: translateX(-22px);
	}

	.p-home-features__badge,
	.p-home-explore__badge {
		top: 84px;
		right: 18px;
		width: 136px;
		height: 136px;
		padding-left: 0;
		gap: 8px;
	}

	.p-home-features__badge-copy,
	.p-home-explore__badge-copy {
		gap: 4px;
	}

	.p-home-features__badge-copy span,
	.p-home-explore__badge-copy span {
		width: 12px;
		font-size: 10px;
		line-height: 11px;
		letter-spacing: 0.14px;
	}

		.p-home-features__badge-icon,
		.p-home-explore__badge-icon {
			width: 42px;
			height: 64px;
		}

	.p-home > .p-home-outdoor {
		padding-block: 40px;
	}

	.p-home-outdoor__inner {
		gap: 36px;
	}

	.p-home-outdoor__header {
		gap: 32px;
	}

	.p-home-outdoor__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-outdoor__script {
		font-size: 52px;
		line-height: 1.04;
	}

	.p-home-outdoor__lead {
		font-size: 14px;
		line-height: 1.8;
		letter-spacing: 0.08em;
	}

	.p-home-outdoor__features {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 20px 16px;
	}

	.p-home-outdoor__feature {
		grid-column: span 2;
	}

	.p-home-outdoor__feature:nth-child(4) {
		grid-column: 2 / span 2;
	}

	.p-home-outdoor__feature:nth-child(5) {
		grid-column: 4 / span 2;
	}

	.p-home-outdoor__feature-icon {
		width: 96px;
		height: 96px;
	}

	.p-home-outdoor__feature-icon img {
		width: 100%;
		height: 100%;
	}

	.p-home-outdoor__feature p {
		font-size: 13.6px;
		line-height: 1.6;
	}

	.p-home-outdoor__map img {
		aspect-ratio: 4 / 3;
	}

	.p-home-outdoor__cta {
		min-height: 56px;
		padding: 0 20px 0 28px;
	}

	.p-home > .p-home-plan {
		padding: 40px 0 72px;
	}

	.p-home-plan__inner {
		gap: 48px;
	}

	.p-home-plan__header {
		gap: 32px;
	}

	.p-home-plan__script {
		font-size: 52px;
		line-height: 1.04;
	}

	.p-home-plan__lead {
		font-size: 14px;
		line-height: 1.8;
		letter-spacing: 0.08em;
	}

	.p-home-plan__cards {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.p-home-plan__card {
		gap: 32px;
	}

	.p-home-plan__content {
		padding-inline: 8px;
		gap: 24px;
	}

	.p-home-plan__meta-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.p-home-plan__name {
		font-size: 36px;
		line-height: 1.24;
	}

	.p-home-plan__meta {
		gap: 14px;
		flex-wrap: wrap;
		align-items: center;
	}

	.p-home-plan__content p {
		font-size: 14.4px;
		line-height: 1.8;
	}

	.p-home-plan__info {
		padding-block: 20px;
	}

	.p-home-plan__info-list {
		gap: 16px;
	}

	.p-home-plan__info-item {
		flex-direction: column;
		gap: 10px;
	}

	.p-home-plan__info-item dt {
		flex-basis: auto;
		width: 100%;
		height: 44px;
	}

	.p-home-plan__cta {
		width: 100%;
	}

	.p-home > .p-home-explore {
		padding: 110px 0 72px;
	}

	.p-home-explore__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.p-home-explore__content {
		order: 1;
		gap: 36px;
		align-items: center;
		text-align: center;
	}

	.p-home-explore__title-wrap {
		align-self: center;
	}

	.p-home-explore__lead,
	.p-home-explore__text {
		margin-inline: auto;
	}

	.p-home-explore__scroller {
		order: 2;
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 20px;
	}

	.p-home-explore__controls {
		display: inline-flex;
		flex-direction: row;
		justify-content: center;
		gap: 14px;
		order: 2;
	}

	.p-home-explore__control {
		width: 52px;
		height: 52px;
	}

	.p-home-explore__control-arrow--up {
		transform: rotate(-90deg);
	}

	.p-home-explore__control-arrow--down {
		transform: rotate(-90deg);
	}

	.p-home-explore__control-arrow {
		width: 8px;
		height: 24px;
	}

	.p-home-explore__viewport {
		order: 1;
		width: 100vw;
		margin-inline: calc(50% - 50vw);
		height: auto;
		overflow: hidden;
		touch-action: pan-y;
	}

	.p-home-explore__viewport::-webkit-scrollbar {
		display: none;
	}

	.p-home-explore__track {
		flex-direction: row;
		gap: 16px;
		width: max-content;
	}

	.p-home-explore__item {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
		flex: 0 0 min(82vw, 560px);
		scroll-snap-align: start;
	}

	.p-home-explore__item-card {
		width: clamp(210px, 52vw, 336px);
		flex: 0 0 auto;
	}

	.p-home-explore__item-image img {
		height: auto;
		aspect-ratio: 6 / 5;
		border-radius: 16px;
	}

	.p-home-explore__item-body {
		padding: 22px;
	}

	.p-home-explore__item-body p {
		font-size: 14.4px;
		line-height: 1.8;
		letter-spacing: 0.06em;
	}

	.p-home-explore__item-line {
		display: block;
		width: clamp(68px, 14vw, 120px);
		flex-shrink: 0;
		margin-left: 0;
		left: auto;
		transform: translateX(-50%);
	}

	.p-home-explore__item-title {
		position: static;
		left: auto;
		margin-top: 0;
		padding-left: 0;
		font-size: clamp(24px, 4.8vw, 36px);
		line-height: 1;
		writing-mode: vertical-rl;
		text-orientation: upright;
		white-space: nowrap;
		flex: 0 0 auto;
		transform: translateX(-22px);
	}

	.p-home-explore__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-explore__script {
		font-size: 52px;
	}

	.p-home-explore__lead {
		font-size: 32px;
	}

	.p-home-explore__text br {
		display: none;
	}

	.p-home-explore__badge {
		display: flex;
		top: 30px;
		bottom: auto;
		right: max(12px, env(safe-area-inset-right));
	}

	.p-home > .p-home-access {
		padding: 40px 0 72px;
	}

	.p-home-access__inner {
		gap: 36px;
	}

	.p-home-access__header {
		gap: 32px;
	}

	.p-home-access__label::before {
		width: 170px;
		height: 39px;
	}

	.p-home-access__script {
		font-size: 52px;
		line-height: 1.04;
	}

	.p-home-access__lead {
		font-size: 14px;
		line-height: 1.8;
		letter-spacing: 0.08em;
	}

	.p-home-access__info {
		gap: 30px;
		order: 3;
	}

	.p-home-access__list {
		grid-template-columns: 1fr;
		gap: 14px;
		padding-block: 20px;
	}

	.p-home-access__row {
		padding: 0;
	}

	.p-home-access__list::before {
		display: none;
	}

	.p-home-access__term {
		flex-basis: 96px;
	}

	.p-home-access__term span {
		height: 44px;
		font-size: 13.6px;
	}

	.p-home-access__desc {
		font-size: 16px;
		line-height: 1.6;
		letter-spacing: 0.04em;
	}

	.p-home-access__desc--tel,
	.p-home-access__time-value {
		letter-spacing: 0.02em;
	}

	.p-home-access__routes {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.p-home-access__route-text {
		gap: 16px;
	}

	.p-home-access__route-title {
		font-size: 15.2px;
	}

	.p-home-access__route-text p {
		font-size: 14.4px;
		line-height: 1.7;
	}

	.p-home-access__map-link {
		min-height: 48px;
		padding: 0 16px 0 18px;
		gap: 10px;
		border: 0;
		background-color: #a8d8e0;
		font-size: 12.8px;
		line-height: 1;
		letter-spacing: 0.03em;
	}

	.p-home-access__cta {
		display: inline-flex;
		min-height: 56px;
		padding: 0 20px 0 28px;
		width: 100%;
	}

	.p-home-access__cta-arrow {
		width: 9px;
		height: 3px;
	}

	.p-home-access__map-link-arrow {
		width: 9px;
		height: 3px;
	}

	.p-home-access__map-wrap {
		order: 2;
	}

	.p-home-hero {
		min-height: max(620px, 96vh);
		min-height: max(620px, 96svh);
		overflow: visible;
	}

	.p-home-hero__bg {
		position: absolute;
		inset: 0;
		height: 100%;
		object-fit: cover;
		object-position: center 42%;
	}

	.p-home-hero__split-half {
		width: 100%;
		flex-basis: 50%;
		clip-path: inset(0 0 0 100%);
	}

	.p-home-hero__split-slide {
		flex-direction: column;
	}

	.p-home-hero__split-slider::after {
		inset: 50% 0 auto;
		width: 100%;
		height: 1px;
		transform: translateY(-50%);
	}

	.p-home-hero__split-slide.is-current .p-home-hero__split-half--right {
		transition-delay: 0.22s;
	}

	.p-home-hero__container {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 640px);
	}

	.p-home-hero__vertical-copy {
		--home-hero-maincopy-final-top: 42%;
		top: var(--home-hero-maincopy-final-top);
		gap: 14px;
	}

	.p-home-hero__vertical-line {
		font-size: clamp(36px, calc(18.9px + 5.36vw), 60px);
	}

	.p-home-hero__cta-group {
		right: 6px;
		bottom: -58px;
	}

	.p-home-hero__speech {
		font-size: 13.6px;
	}

	.p-home-hero__speech::before {
		width: 238px;
		height: 58px;
	}

		.p-home-hero__reservation {
			width: 140px;
			height: 140px;
			gap: 8px;
		}

	.p-home-hero__reservation-label {
		font-size: 15px;
	}

		.p-home-hero__reservation.p-home-hero__reservation--fixed {
			right: 16px;
			bottom: 16px;
			width: 140px;
			height: 140px;
			gap: 8px;
		}

		.p-home-hero__reservation.p-home-hero__reservation--fixed .p-home-hero__reservation-icon {
			width: 40px;
			height: 40px;
		}

		.p-home-hero__reservation.p-home-hero__reservation--fixed .p-home-hero__reservation-label {
			font-size: 15px;
			letter-spacing: 1.84px;
			line-height: 1.28;
		}

		.p-home-hero__catchcopy {
			top: 60%;
			left: 50%;
			right: auto;
			bottom: auto;
			display: grid;
			justify-items: center;
			gap: 4px;
			font-size: 14px;
			font-weight: 600;
			line-height: 1.4;
			white-space: normal;
			transform: translate(-50%, -50%);
		}

	.p-home-hero__catchcopy-main {
		font-size: 20px;
		line-height: 1.2;
	}

	.p-home-hero__catchcopy-sub {
		font-size: 12px;
		line-height: 1.3;
	}

	.p-home-hero-marquee {
		--marquee-item-width: 1120px;
		--marquee-gap: 40px;
		margin-top: -22px;
	}

	.seaside-accommodation-villa {
		font-size: 72px;
	}

	.p-home-plan__cards,
	.p-home-news__item,
	.p-news-list__item {
		grid-template-columns: 1fr;
	}

	.p-home-news__item,
	.p-news-list__item {
		gap: 8px;
	}

	.c-common-cta {
		padding-block: 72px;
	}

	.p-page-reservation__notice {
		margin-bottom: 28px;
		padding: 20px;
	}

	.p-page-reservation__notice-title {
		font-size: 20px;
	}

	.p-page-reservation__notice-list li {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.p-home > section {
		padding-block: 64px;
	}

	.p-home > .p-home-about {
		padding: 40px 0 100px;
	}

	.p-home-about__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 360px);
		gap: 32px;
	}

	.p-home-about__photo {
		--about-photo-opacity: 0.9;
	}

	.p-home-about__photo--01 {
		top: 311px;
		right: -12%;
		left: auto;
		width: 136px;
		height: 181px;
	}

	.p-home-about__photo--02 {
		top: 161px;
		right: 3%;
		left: auto;
		width: 68px;
		height: 94px;
	}

	.p-home-about__photo--03 {
		top: 614px;
		left: 14%;
		width: 78px;
		height: 108px;
	}

	.p-home-about__photo--04 {
		top: 470px;
		left: 2%;
		width: 47px;
		height: 68px;
	}

	.p-home-about__photo--05 {
		top: 535px;
		right: 8%;
		left: auto;
		width: 47px;
		height: 60px;
	}

	.p-home-about__photo--06 {
		top: 263px;
		left: -4%;
		width: 105px;
		height: 145px;
	}

	.p-home-about__photo--07 {
		top: 150px;
		left: 8%;
		width: 54px;
		height: 70px;
	}

	.p-home-about__label {
		padding-bottom: 30px;
		font-size: 12.8px;
	}

	.p-home-about__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-about__label::after {
		content: none;
	}

	.p-home-about__script {
		font-size: 42px;
	}

	.p-home-about__main-copy {
		gap: 8px;
	}

	.p-home-about__main-copy span {
		font-size: 32px;
	}

	.p-home-about__columns {
		--about-columns-gap: 8px;
		--about-columns-group-gap: 16px;
		gap: var(--about-columns-gap);
	}

	.p-home-about__columns p {
		width: 12px;
		font-size: 12.8px;
		line-height: 15.5px;
		letter-spacing: 1.1px;
	}

	.p-home > .p-home-enjoy {
		padding-top: 0px;
		padding-bottom: 48px;
	}

	.p-home-enjoy__layout {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 420px);
		gap: 64px;
	}

	.p-home-enjoy__visual {
		width: calc(100% + var(--fluid-gutter));
		margin-right: calc(var(--fluid-gutter) * -1);
		margin-left: 0;
	}

	.p-home-enjoy__content {
		gap: 30px;
	}

	.p-home-enjoy__label {
		padding-bottom: 30px;
		font-size: 12.8px;
	}

	.p-home-enjoy__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-enjoy__label::after {
		content: none;
	}

	.p-home-enjoy__script {
		font-size: 42px;
		line-height: 1.05;
	}

	.p-home-enjoy__lead {
		font-size: 32px;
		line-height: 1.3;
	}

	.p-home-enjoy__text {
		gap: 10px;
	}

	.p-home-enjoy__text p {
		font-size: 13.6px;
		line-height: 1.9;
		letter-spacing: 1.02px;
	}

	.p-home-enjoy__photo--top {
		top: -29px;
		left: 22%;
		width: 30%;
		min-width: 84px;
	}

	.p-home-enjoy__photo--bottom {
		top: 62%;
		left: 0%;
		width: 38%;
		min-width: 110px;
	}

	.p-home-enjoy__photo-stage {
		padding-bottom: 34px;
	}

		.p-home-enjoy__active-caption {
			margin-top: -44px;
			padding-right: 20px;
			font-size: 12px;
			line-height: 1.35;
		}

	.p-home-enjoy__activities {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0px;
		margin-top: 14px;
		padding-inline: 0;
		overflow: visible;
		margin-right: 10px;
	}

	.p-home-enjoy__activity {
		flex: none;
		width: auto;
		min-width: 0;
	}

	.p-home-enjoy__activity-btn {
		gap: 12px;
	}

	.p-home-enjoy__activity-thumb {
		width: 56px;
		height: 56px;
	}

	.p-home-enjoy__activity-thumb::before,
	.p-home-enjoy__activity-thumb::after {
		width: 56px;
		height: 56px;
	}

	.p-home-enjoy__activity--active .p-home-enjoy__activity-thumb img {
		width: 44px;
		height: 44px;
	}

	.p-home-enjoy__activity-label {
		font-size: 10.5px;
		line-height: 1.45;
		letter-spacing: 0.03em;
	}

	.p-home-enjoy__activity-label br {
		display: block;
	}

	.p-home > .p-home-features {
		padding-top: 64px;
		padding-bottom: 76px;
	}

	.p-home-features__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 1296px);
		margin-inline: auto;
		padding-inline: 0;
	}

	.p-home-features__label {
		padding-bottom: 24px;
		font-size: 12.8px;
	}

	.p-home-features__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-features__label::after {
		content: none;
	}

	.p-home-features__script {
		font-size: 42px;
	}

	.p-home-features__column {
		gap: 36px;
	}

	.p-home-features__item {
		width: 100%;
	}

	.p-home-features__card-image img {
		height: auto;
		aspect-ratio: 6 / 6.6;
		border-radius: 0px;
	}

	.p-home-features__card-body {
		padding: 18px;
	}

	.p-home-features__card-body p {
		font-size: 12.8px;
		line-height: 1.75;
		letter-spacing: 0.05em;
	}

	.p-home-features__line {
		width: clamp(46px, 12vw, 72px);
		transform: translateX(-50%);
	}

	.p-home-features__headline {
		gap: 8px;
		margin-top: 2px;
		transform: translateX(-16px);
	}

	.p-home-features__headline > span {
		font-size: clamp(20px, 6.4vw, 26px);
	}

	.p-home-features__item:nth-child(even) .p-home-features__line,
	.p-home-features__column--right .p-home-features__item:nth-child(odd) .p-home-features__line {
		transform: translateX(50%);
	}

	.p-home-features__item:nth-child(even) .p-home-features__headline,
	.p-home-features__column--right .p-home-features__item:nth-child(odd) .p-home-features__headline {
		transform: translateX(16px);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) .p-home-features__line {
		transform: translateX(-50%);
	}

	.p-home-features__column--right .p-home-features__item:nth-child(even) .p-home-features__headline {
		transform: translateX(-16px);
	}

	.p-home-features__badge,
	.p-home-explore__badge {
		width: 125px;
		height: 125px;
		gap: 6px;
	}

	.p-home-features__badge {
		position: absolute;
		top: 133px;
		right: 10px;
		margin: 0;
	}

	.p-home > .p-home-outdoor {
		padding-block: 40px;
	}

	.p-home-outdoor__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 420px);
		gap: 32px;
	}

	.p-home-outdoor__header {
		gap: 26px;
	}

	.p-home-outdoor__label {
		padding-bottom: 30px;
		font-size: 12.8px;
	}

	.p-home-outdoor__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-outdoor__label::after {
		content: none;
	}

	.p-home-outdoor__script {
		font-size: 42px;
	}

	.p-home-outdoor__lead {
		font-size: 13.6px;
		line-height: 1.8;
		letter-spacing: 0.06em;
	}

	.p-home-outdoor__features {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 18px 0px;
	}

	.p-home-outdoor__feature {
		grid-column: span 2;
		gap: 12px;
	}

	.p-home-outdoor__feature:nth-child(4) {
		grid-column: 2 / span 2;
	}

	.p-home-outdoor__feature:nth-child(5) {
		grid-column: 4 / span 2;
	}

	.p-home-outdoor__feature-icon {
		width: 88px;
		height: 88px;
	}

	.p-home-outdoor__feature-icon img {
		width: 100%;
		height: 100%;
	}

	.p-home-outdoor__feature p {
		font-size: 12px;
		line-height: 1.55;
	}

	.p-home-outdoor__map img {
		aspect-ratio: 4 / 3;
	}

	.p-home-outdoor__cta {
		width: 100%;
	}

	.p-home > .p-home-plan {
		padding: 40px 0 64px;
	}

	.p-home-plan__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 420px);
		gap: 40px;
	}

	.p-home-plan__header {
		gap: 26px;
	}

	.p-home-plan__label {
		padding-bottom: 30px;
		font-size: 12.8px;
	}

	.p-home-plan__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-plan__label::after {
		content: none;
	}

	.p-home-plan__script {
		font-size: 42px;
		line-height: 1.06;
	}

	.p-home-plan__lead {
		font-size: 13.6px;
		line-height: 1.8;
		letter-spacing: 0.06em;
	}

	.p-home-plan__cards {
		gap: 40px;
	}

	.p-home-plan__card {
		gap: 24px;
	}

	.p-home-plan__content {
		padding-inline: 0;
		gap: 20px;
	}

	.p-home-plan__name {
		font-size: 32px;
		line-height: 1.25;
	}

	.p-home-plan__meta {
		gap: 12px;
	}

	.p-home-plan__tag {
		height: 28px;
		padding-inline: 12px;
		font-size: 13.6px;
	}

	.p-home-plan__people {
		font-size: 16px;
	}

	.p-home-plan__price {
		font-size: 14.4px;
		line-height: 1.5;
	}

	.p-home-plan__price-value {
		font-size: 20px;
		line-height: 38px;
	}

	.p-home-plan__content p {
		font-size: 14.4px;
		line-height: 1.7;
		letter-spacing: 0.04em;
	}

	.p-home-plan__info {
		padding-block: 20px;
	}

	.p-home-plan__info-list {
		gap: 14px;
	}

	.p-home-plan__info-item {
		gap: 8px;
	}

	.p-home-plan__info-item dt {
		height: 42px;
	}

	.p-home-plan__info-item dd {
		font-size: 13.6px;
		line-height: 1.65;
		letter-spacing: 0.02em;
	}

	.p-home > .p-home-explore {
		padding: 110px 0 64px;
	}

	.p-home-explore__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 420px);
		gap: 32px;
	}

	.p-home-explore__scroller {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 14px;
	}

	.p-home-explore__viewport {
		height: auto;
		overflow: hidden;
	}

	.p-home-explore__track {
		gap: 10px;
	}

	.p-home-explore__item {
		flex: 0 0 min(80vw, 332px);
	}

	.p-home-explore__controls {
		gap: 10px;
	}

	.p-home-explore__control {
		width: 50px;
		height: 50px;
	}

	.p-home-explore__control-arrow {
		width: 8px;
		height: 22px;
	}

	.p-home-explore__item-image img {
		height: auto;
		aspect-ratio: 6 / 6.6;
		border-radius: 0px;
	}

	.p-home-explore__item-body {
		padding: 18px;
	}

	.p-home-explore__item-body p {
		font-size: 12.8px;
		line-height: 1.75;
		letter-spacing: 0.05em;
	}

	.p-home-explore__item-line {
		display: block;
		width: clamp(46px, 12vw, 72px);
		left: auto;
		transform: translateX(-50%);
	}

	.p-home-explore__item-title {
		font-size: clamp(20px, 6.4vw, 26px);
		line-height: 1;
		transform: translateX(-16px);
	}

	.p-home-explore__content {
		gap: 28px;
		align-items: center;
		text-align: center;
	}

	.p-home-explore__label {
		padding-bottom: 30px;
		font-size: 12.8px;
	}

	.p-home-explore__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-explore__label::after {
		content: none;
	}

	.p-home-explore__script {
		font-size: 42px;
		line-height: 1.06;
	}

	.p-home-explore__lead {
		font-size: 32px;
		line-height: 1.28;
	}

	.p-home-explore__text {
		font-size: 13.6px;
		line-height: 1.9;
		letter-spacing: 1.02px;
	}

	.p-home-explore__badge {
		top: 30px;
		bottom: auto;
		right: max(10px, env(safe-area-inset-right));
		width: 125px;
		height: 125px;
		gap: 6px;
	}

	.p-home > .p-home-access {
		padding: 40px 0 64px;
	}

	.p-home-access__inner {
		width: min(calc(100% - (2 * var(--fluid-gutter))), 420px);
		gap: 32px;
	}

	.p-home-access__header {
		gap: 26px;
	}

	.p-home-access__label {
		padding-bottom: 30px;
		font-size: 12.8px;
	}

	.p-home-access__label::before {
		width: 150px;
		height: 34px;
	}

	.p-home-access__label::after {
		content: none;
	}

	.p-home-access__script {
		font-size: 42px;
	}

	.p-home-access__lead {
		font-size: 13.6px;
		line-height: 1.8;
		letter-spacing: 0.06em;
	}

	.p-home-access__info {
		gap: 30px;
		order: 3;
	}

	.p-home-access__list {
		gap: 14px;
		padding-block: 20px;
	}

	.p-home-access__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 0;
	}

	.p-home-access__term {
		flex-basis: auto;
		width: 100%;
	}

	.p-home-access__term span {
		height: 42px;
	}

	.p-home-access__desc {
		width: 100%;
		font-size: 15.2px;
		line-height: 1.65;
		letter-spacing: 0.02em;
	}

	.p-home-access__desc--tel,
	.p-home-access__time-value {
		font-size: 18px;
		letter-spacing: 0.02em;
	}

	.p-home-access__desc--time {
		gap: 4px 8px;
	}

	.p-home-access__route {
		align-items: flex-start;
	}

	.p-home-access__map iframe {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.p-home-access__map-link {
		width: auto;
		align-self: flex-end;
		min-height: 44px;
		padding: 0 14px 0 16px;
		gap: 8px;
		font-size: 12px;
		letter-spacing: 0.02em;
	}

	.p-home-access__cta {
		min-height: 52px;
		padding: 0 18px 0 24px;
		font-size: 13.6px;
	}

	.p-home-access__cta-arrow {
		width: 8px;
		height: 3px;
	}

	.p-home-access__map-link-arrow {
		width: 8px;
		height: 3px;
	}

	.p-home-access__map-wrap {
		order: 2;
	}

	.p-home-news__action .c-btn,
	.p-home-cta__actions .c-btn,
	.c-common-cta__actions .c-btn {
		width: 100%;
	}

	.c-card {
		padding: 18px;
	}

	.p-home-hero {
		min-height: max(600px, 94vh);
		min-height: max(600px, 94svh);
	}

	.p-home-hero__bg {
		object-position: center 40%;
	}

	.p-home-hero-marquee {
		--marquee-item-width: 760px;
		--marquee-gap: 28px;
		margin-top: -14px;
	}

	.seaside-accommodation-villa {
		font-size: 52px;
	}

	.p-home-hero__vertical-copy {
		--home-hero-maincopy-final-top: 39%;
		--home-hero-maincopy-shift-y: 11svh;
		top: var(--home-hero-maincopy-final-top);
		gap: 10px;
	}

		.p-home-hero__cta-group {
			right: -6px;
			bottom: -46px;
			gap: 8px;
		}

	.p-home-hero__speech {
		max-width: 220px;
		padding-bottom: 34px;
		font-size: 12px;
	}

	.p-home-hero__speech::before {
		width: 164px;
		height: 40px;
	}

		.p-home-hero__reservation {
			width: 110px;
			height: 110px;
			gap: 8px;
		}

		.p-home-hero__reservation.p-home-hero__reservation--fixed {
			right: max(12px, env(safe-area-inset-right));
			bottom: max(12px, env(safe-area-inset-bottom));
			width: 110px;
			height: 110px;
			gap: 8px;
		}

		.p-home-hero__reservation.p-home-hero__reservation--fixed .p-home-hero__reservation-icon {
			width: 30px;
			height: 30px;
		}

		.p-home-hero__reservation.p-home-hero__reservation--fixed .p-home-hero__reservation-label {
			font-size: 13px;
			letter-spacing: 0.03em;
			line-height: 1.2;
		}

	.p-home-hero__reservation-icon {
		width: 30px;
		height: 30px;
	}

	.p-home-hero__reservation-label {
		font-size: 13px;
		letter-spacing: 0.03em;
		line-height: 1.2;
	}

	.p-home-hero__catchcopy {
		top: 58%;
		left: 50%;
		right: auto;
		bottom: auto;
		gap: 3px;
		font-size: 14px;
		line-height: 1.45;
		transform: translate(-50%, -50%);
	}

	.p-home-hero__catchcopy-main {
		font-size: 18px;
	}

	.p-home-hero__catchcopy-sub {
		font-size: 11.5px;
	}

	.p-page-layout__header,
	.p-news-list__header,
	.p-news-single__header {
		padding-block: 56px 32px;
	}

	.p-page-layout__body,
	.p-news-list__body,
	.p-news-single__body {
		padding-bottom: 40px;
	}

	.p-page-reservation__notice {
		margin-bottom: 24px;
		padding: 18px 16px;
	}

	.p-page-reservation__notice-title {
		font-size: 18px;
	}

	.p-page-reservation__notice-list li {
		font-size: 13px;
		line-height: 1.75;
	}

	.p-page-reservation__content iframe {
		width: calc(100% + 24px);
		max-width: none;
		margin-inline: -12px;
	}

	.l-site-header__inner {
		padding-top: 14px;
	}

	.l-site-header__toggle {
		width: 40px;
		height: 40px;
	}

	.l-site-header__mobile-panel {
		width: 100%;
		padding: 0;
	}

	.l-site-header.is-scrolled .l-site-header__inner {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}


/* How to enjoy speech bubble: force arc style */
body.home .p-home-enjoy__label::before {
	content: "" !important;
	position: absolute !important;
	left: 50% !important;
	bottom: 0 !important;
	width: 192px !important;
	height: 44px !important;
	background: url("../img/icons/bubble-frame-dark.svg") center / 100% 100% no-repeat !important;
	border: 0 !important;
	border-radius: 0 !important;
	transform: translateX(-50%) !important;
}

body.home .p-home-enjoy__label::after {
	content: none !important;
	display: none !important;
}

@media (max-width: 768px) {
	body.home .p-home-enjoy__label::before {
		width: 170px !important;
		height: 39px !important;
	}
}

@media (max-width: 480px) {
	body.home .p-home-enjoy__label {
		padding-bottom: 30px !important;
	}

	body.home .p-home-enjoy__label::before {
		width: 150px !important;
		height: 34px !important;
	}
}

/* Mobile global menu redesign */
@media (max-width: 768px) {
	.l-site-header__mobile-panel {
		width: 100%;
	}

	.l-site-header__mobile-head,
	.l-site-header__mobile-menu,
	.l-site-header__mobile-info-links,
	.l-site-header__mobile-info {
		padding-inline: 20px;
	}
}

@media (max-width: 480px) {
	.l-site-header__mobile-head {
		min-height: 78px;
		padding: 16px 20px 14px;
	}

	.l-site-header__mobile-menu > li > a {
		font-size: 16px;
	}

	.l-site-header__mobile-menu > li:nth-child(-n + 4) > a {
		min-height: 64px;
		font-size: 16px;
	}

	.l-site-header__mobile-menu > li:nth-child(n + 5) > a {
		min-height: 78px;
		font-size: 16px;
	}

	.l-site-header__mobile-info-links a {
		min-height: 45px;
		font-size: 15px;
	}

	.l-site-header__mobile-social {
		gap: 28px;
	}

	.l-site-header__mobile-social-link {
		width: 52px;
		height: 52px;
	}

	.l-site-header__mobile-social-link--instagram img {
		width: 46px;
		height: 46px;
	}
}
