@charset "UTF-8";

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

:root {
	--color-drawer: #0d3548;
	--drawer-duration-open: 0.6s;
	--drawer-duration-close: 0.72s;
}

.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-closing {
	background: transparent;
}

.drawer__page {
	height: 100%;
	min-height: 100%;
	background: var(--color-drawer);
}

.drawer.is-closing .drawer__page {
	will-change: clip-path;
}

.drawer__panel {
	height: 100%;
	min-height: 100%;
	overflow-y: auto;
	color: #fff;
	background: transparent;
	transform: translate3d(0, -100%, 0);
	-webkit-overflow-scrolling: touch;
}

.drawer.is-open .drawer__panel {
	will-change: transform;
	animation: drawer-noren-open var(--drawer-duration-open) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.drawer.is-closing .drawer__panel {
	transform: translate3d(0, 0, 0);
	will-change: auto;
}

.drawer:not(.is-open):not(.is-closing) .drawer__panel {
	transform: translate3d(0, -100%, 0);
	will-change: auto;
}

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

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

	to {
		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(220px, 1.1fr) minmax(220px, 1.2fr) minmax(200px, 0.9fr);
	gap: 48px 64px;
	align-items: start;
}

.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 {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px 48px;
	align-items: center;
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.drawer__contact-title {
	margin: 0 0 16px;
	font-family: var(--font-en);
	font-size: clamp(3.6rem, 5vw, 5.6rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

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

.drawer__contact-button {
	display: inline-flex;
	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;
}

.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__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.5rem;
	}

	.drawer__heading {
		margin-bottom: 14px;
		font-size: 1.5rem;
	}

	.drawer__links--main {
		margin-bottom: 24px;
		font-size: 1.4rem;
	}

	.drawer__links--sub {
		font-size: 1.25rem;
		line-height: 1.7;
	}

	.drawer__privacy {
		margin-bottom: 0;
		font-size: 1.2rem;
	}

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

	.drawer__contact {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 36px;
		padding-top: 32px;
	}

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

	.drawer__contact-lead {
		font-size: 1.3rem;
		line-height: 1.9;
	}

	.drawer__contact-button {
		width: 100%;
		min-width: 0;
	}

	.drawer__bottom {
		display: grid;
		gap: 24px;
		justify-items: center;
		margin-top: 28px;
	}

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