@charset "UTF-8";

/* ドロワーメニュー */

:root {
	--drawer-duration-open: 0.5s;
	--drawer-duration-open-item: 0.42s;
	--drawer-duration-close: 0.9s;
	--drawer-ease-drop: cubic-bezier(0.22, 1.12, 0.36, 1);
}

.drawer {
	position: fixed;
	inset: 0;
	z-index: 400;
	overflow: hidden;
	pointer-events: none;
	visibility: hidden;
}

.drawer.is-open,
.drawer.is-closing {
	visibility: visible;
	pointer-events: auto;
}

.drawer.is-open {
	overflow-y: auto;
	overscroll-behavior: none;
	-webkit-overflow-scrolling: touch;
	background: var(--color-drawer);
	scrollbar-color: rgba(255, 255, 255, 0.45) var(--color-drawer);
}

/* PC: 開く／閉じるアニメ中は overflow なし。開き切り後のみドロワー全体スクロール */
@media screen and (min-width: 768px) {
	.drawer.is-open {
		overflow-y: hidden;
	}

	body.is-menu-open:not(.is-drawer-animating):not(.is-drawer-closing) .drawer.is-open {
		overflow-y: auto;
	}

	.drawer.is-closing {
		overflow: hidden !important;
	}
}

.drawer.is-open::-webkit-scrollbar {
	width: 12px;
}

.drawer.is-open::-webkit-scrollbar-track {
	background: var(--color-drawer);
}

.drawer.is-open::-webkit-scrollbar-thumb {
	border: 3px solid var(--color-drawer);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
}

.drawer.is-closing {
	inset: 0;
	z-index: 490;
	overflow: hidden;
	background: transparent;
	pointer-events: none;
}

.drawer.is-closing .drawer__page {
	animation: none;
	transform: none;
	position: relative;
	min-height: 100vh;
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	background: transparent;
}

.drawer.is-closing .drawer__surface {
	position: absolute;
	inset: 0;
	height: 100vh;
	min-height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	background: transparent;
	pointer-events: none;
}

.drawer.is-closing .drawer__peel {
	position: absolute;
	inset: 0;
	z-index: 0;
	height: 100vh;
	min-height: 100vh;
	max-height: 100vh;
	background: var(--color-drawer);
	will-change: clip-path;
}

.drawer.is-closing .drawer__panel {
	position: absolute;
	inset: 0;
	z-index: 1;
	height: 100%;
	min-height: 100vh;
	background: transparent;
	pointer-events: none;
	will-change: clip-path;
}

.drawer__peel {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--color-drawer);
	pointer-events: none;
}

.drawer__surface {
	position: relative;
	min-height: 100%;
}

.drawer__panel {
	position: relative;
	z-index: 1;
	min-height: 100%;
	overflow: visible;
	color: #fff;
	background: transparent;
}

.drawer__fold {
	display: none;
}

.drawer__page {
	position: relative;
	min-height: 100%;
	background: var(--color-drawer);
	transform: translate3d(0, -100%, 0);
}

.drawer.is-open .drawer__page {
	will-change: transform;
	animation: drawer-bg-drop var(--drawer-duration-open) var(--drawer-ease-drop) forwards;
}

.drawer:not(.is-open):not(.is-closing) .drawer__page {
	clip-path: none;
	filter: none;
	will-change: auto;
}

.drawer:not(.is-open):not(.is-closing) .drawer__surface {
	clip-path: none;
	filter: none;
}

.drawer:not(.is-open):not(.is-closing) .drawer__inner > * {
	opacity: 0;
	transform: translate3d(0, -56px, 0);
}

.drawer.is-closing .drawer__inner > * {
	opacity: 1;
	transform: none;
	animation: none;
}

.drawer.is-open .drawer__inner > * {
	will-change: transform, opacity;
	/* both: 遅延中も from を維持し、お問い合わせ付近の点滅を防ぐ */
	animation: drawer-item-drop var(--drawer-duration-open-item) var(--drawer-ease-drop) both;
}

.drawer.is-open .drawer__inner > :nth-child(1) {
	animation-delay: 0.1s;
}

.drawer.is-open .drawer__inner > :nth-child(2) {
	animation-delay: 0.18s;
}

.drawer.is-open .drawer__inner > :nth-child(3) {
	animation-delay: 0.26s;
}

@keyframes drawer-bg-drop {
	from {
		transform: translate3d(0, -100%, 0);
	}

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

@keyframes drawer-item-drop {
	from {
		opacity: 0;
		transform: translate3d(0, -56px, 0);
	}

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

.drawer__inner {
	width: min(calc(100% - 80px), 1400px);
	margin-inline: auto;
	padding: calc(48px + var(--header-height)) 0 40px;
}

.drawer__nav--pc {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(160px, 0.95fr);
	gap: 24px 12px;
	align-items: start;
}

.drawer__nav--pc .drawer__home {
	margin-bottom: 24px;
	font-size: 2rem;
	line-height: 1.45;
}

.drawer__nav--pc .drawer__heading {
	margin-bottom: 14px;
	font-size: 2rem;
	line-height: 1.4;
}

.drawer__nav--pc .drawer__heading a:hover {
	opacity: 0.75;
}

.drawer__nav--pc .drawer__links--main {
	margin-bottom: 24px;
	font-size: 1.8rem;
	line-height: 1.45;
}

.drawer__nav--pc .drawer__links--sub {
	font-size: 1.7rem;
	line-height: 1.4;
}

.drawer__nav--pc .drawer__links {
	gap: 6px;
}

.drawer__nav--pc .drawer__privacy {
	margin-bottom: 20px;
	font-size: 1.5rem;
	line-height: 1.45;
}

.drawer__nav--pc .drawer__location-group + .drawer__location-group {
	margin-top: 24px;
}

.drawer__nav--pc .drawer__instagram img {
	width: 40px;
	height: 40px;
}

.drawer__home {
	margin: 0 0 28px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.drawer__home a:hover {
	opacity: 0.75;
}

.drawer__heading {
	margin: 0 0 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.drawer__links {
	display: grid;
	gap: 10px;
}

.drawer__links--main {
	margin-bottom: 36px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
}

.drawer__links--sub {
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.75;
}

.drawer__links a:hover {
	opacity: 0.75;
}

.drawer__privacy {
	margin: 0 0 28px;
	font-size: 1.3rem;
	line-height: 1.7;
}

.drawer__privacy a:hover {
	opacity: 0.75;
}

.drawer__instagram {
	display: inline-block;
}

.drawer__instagram img {
	width: 28px;
	height: 28px;
	filter: brightness(0) invert(1);
}

.drawer__location-group + .drawer__location-group {
	margin-top: 36px;
}

.drawer__contact {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.drawer__contact-title {
	display: none;
}

.drawer__contact-row {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 32px;
}

.drawer__contact-lead {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

.drawer__contact-button {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	min-height: 64px;
	padding: 16px 48px;
	border-radius: 999px;
	color: var(--color-drawer);
	background: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.drawer__contact-button:hover {
	opacity: 0.88;
}

@media screen and (min-width: 768px) {
	.drawer__contact-button {
		position: relative;
		overflow: hidden;
		isolation: isolate;
		border: 1px solid #fff;
		/* 展開アニメ中の白ボタン合成チラつきを抑える */
		transform: translateZ(0);
		backface-visibility: hidden;
		transition:
			color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
			border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.drawer__contact-button::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: -1;
		background: var(--color-drawer);
		transform: scaleY(0);
		transform-origin: bottom center;
		transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
		will-change: transform;
	}

	body.is-drawer-animating .drawer__contact-button::before {
		transition: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.drawer__contact-button:hover,
		.drawer__contact-button:focus-visible {
			color: #fff;
			border-color: #fff;
			opacity: 1;
		}

		.drawer__contact-button:hover::before,
		.drawer__contact-button:focus-visible::before {
			transform: scaleY(1);
		}
	}
}

.drawer__bottom {
	margin-top: 32px;
}

.drawer__copyright {
	margin: 0;
	opacity: 0.85;
}

.drawer__copyright small {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.04em;
}

/* スマートフォン */

@media screen and (max-width: 767px) {

	.drawer.is-open {
		background: transparent;
		overscroll-behavior: none;
	}

	body.is-menu-open .drawer.is-open {
		background: var(--color-drawer);
	}

	.drawer.is-open .drawer__page {
		min-height: 100vh;
		min-height: 100dvh;
	}

	.drawer__inner {
		width: calc(100% - 40px);
		padding: calc(28px + var(--header-height)) 0 32px;
	}

	.drawer__sp-columns {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px 20px;
	}

	.drawer__sp-main {
		margin-top: 32px;
	}

	.drawer__home {
		margin-bottom: 20px;
		font-size: 1.7rem;
		line-height: 1.3;
	}

	.drawer__heading {
		margin-bottom: 14px;
		font-size: 1.7rem;
		line-height: 1.2;
	}

	.drawer__links--main {
		margin-bottom: 24px;
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.drawer__links--sub {
		font-size: 1.45rem;
		line-height: 1.4;
	}

	.drawer__privacy {
		margin-bottom: 0;
		font-size: 1.4rem;
		line-height: 1.4;
	}

	.drawer__location-group + .drawer__location-group {
		margin-top: 28px;
	}

	.drawer__contact {
		margin-top: 36px;
		padding-top: 32px;
	}

	.drawer__contact-row {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

	.drawer__contact-title {
		font-size: 3.2rem;
	}

	.drawer__contact-lead {
		font-size: 1.4rem;
		line-height: 1.7;
	}

	.drawer__contact-button {
		width: 100%;
		min-width: 0;
		font-size: 1.7rem;
	}

	.drawer__contact-social {
		margin-top: 28px;
		text-align: center;
	}

	.drawer__instagram--sp img {
		width: 52px;
		height: 52px;
	}

	.drawer__bottom {
		margin-top: 20px;
	}

	.drawer__copyright--sp {
		text-align: center;
	}
}
