@font-face {
	font-family: 'MazdaTypeTT-Regular';
	src: url('MazdaTypeTT-Regular.woff2') format('woff2'),
	     url('MazdaTypeTT-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-text: #041428;
	--color-accent: #8b693e;
	--color-border: #ccd5df;
	--color-surface: #ffffff;
	--color-surface-alt: #f4f7fa;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	height: 100%;
	min-width: 1280px;
	background: #ffffff;
	color: var(--color-text);
	font-family: "MazdaTypeTT-Regular", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	letter-spacing: 0.06em;
	line-height: 2;
}

.page {
	flex: 1;
	padding: 32px 0;
}

.frame {
	width: 1120px;
	margin: 0 auto;
}

.intro {
	padding: 0 0 18px;
	text-align: center;
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	margin: 0 0 12px;
}

.intro .brand-logo {
	display: flex;
	margin: 0 auto 12px;
}

.brand-logo img {
	display: block;
	width: 80px;
	height: 60px;
	object-fit: contain;
}

.intro .logo-desktop {
	display: block;
}

.intro .logo-mobile {
	display: none !important;
}

.title {
	margin: 80px 0 0;
	font-size: 28pt;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

.content {
	width: 1120px;
	margin: 40px auto 0;
	padding: 56px 64px 64px;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
}

.lead {
	margin: 0;
	font-size: 18px;
	text-align: center;
}

.lead + .lead {
	margin-top: 14px;
}

.schedule {
	margin-top: 42px;
	padding: 28px 32px;
	background-color: var(--color-surface-alt);
	border-left: 4px solid var(--color-accent);
}

.schedule-title {
	margin: 0 0 12px;
	font-size: 18pt;
	font-weight: 700;
	line-height: 1.7;
}

.schedule-time {
	margin: 0;
	font-size: 18pt;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

.note {
	margin: 12px 0 0;
	font-size: 14pt;
	line-height: 1.9;
}

.footer {
	position: relative;
	padding: 18px 0 20px;
	border-top: 1px solid rgba(4, 20, 40, 0.12);
	background-color: rgb(79, 91, 105);
}

.footer-inner {
	/* width: 1100px;
	margin: 0 auto; */
	width: 100%;
	padding: 0 80px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.footer-logo {
	display: inline-block;
	grid-column: 2;
	text-decoration: none;
}

.footer-logo img {
	display: block;
	width: 134px;
	height: 19px;
}

.footer-logo .logo-desktop {
	display: block;
}

.footer-logo .logo-mobile {
	display: none;
}

.footer-copy {
	grid-column: 3;
	justify-self: end;
	margin: 0;
	color: #ffffff;
	font-family: "MazdaTypeTT-Regular", sans-serif;
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

@media (max-width: 1023px) {
	html,
	body {
		min-width: 0;
	}

	.page {
		padding: 20px 0 40px;
	}

	.frame {
		width: 100%;
		padding: 0 16px;
	}

	.intro {
		padding: 0 0 12px;
	}

	.intro .logo-desktop {
		display: none !important;
	}

	.intro .logo-mobile {
		display: block !important;
	}

	.brand-logo .logo-mobile {
		width: 112px;
		height: auto;
		filter: brightness(0) saturate(100%);
	}

	.title {
		margin-top: 40px;
		font-size: 22px;
		line-height: 1.4;
		letter-spacing: 0.04em;
	}

	.content {
		width: 100%;
		margin-top: 24px;
		padding: 22px 14px 26px;
		border: none;
	}

	.lead {
		font-size: 13px;
		text-align: left;
		letter-spacing: 0.03em;
		overflow-wrap: anywhere;
	}

	.schedule {
		margin-top: 28px;
		padding: 18px 16px;
	}

	.schedule-title {
		font-size: 15px;
	}

	.schedule-time {
		font-size: 15px;
		line-height: 1.6;
		letter-spacing: 0.03em;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.note {
		font-size: 12px;
	}

	.footer {
		padding: 14px 16px 16px;
	}

	.footer-inner {
		width: 100%;
		padding: 0;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		row-gap: 8px;
	}

	.footer-logo {
		grid-column: 1;
		grid-row: 1;
		justify-self: end;
	}

	.footer-logo .logo-desktop {
		display: none !important;
	}

	.footer-logo .logo-mobile {
		display: block !important;
	}

	.footer-logo .logo-mobile {
		height: 42px;
		width: auto;
		filter: brightness(0) invert(1);
	}

	.footer-copy {
		grid-column: 1;
		grid-row: 2;
		justify-self: start;
		margin: 0;
		font-size: 10px;
	}
}
