/* al/48-notfound.css — 404ページ
 * 移植: al固有（トーン・コピーがaL専用）
 */

.lr-notfound {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: var(--lr-space-lg) var(--lr-space-md);
	text-align: center;
}

.lr-notfound__code {
	font-family: var(--lr-font-serif);
	font-weight: 700;
	font-size: clamp(72px, 18vw, 160px);
	line-height: 1;
	margin: 0 0 var(--lr-space-md);
}

.lr-notfound__lead {
	margin: 0 0 var(--lr-space-lg);
}

.lr-notfound__lead p {
	margin: 0 0 var(--lr-space-sm);
	line-height: 1.9;
}

.lr-notfound__lead p:last-child {
	margin-bottom: 0;
}

.lr-notfound__nav {
	display: inline-flex;
	flex-direction: column;
	gap: var(--lr-space-sm);
}

@media (min-width: 600px) {
	.lr-notfound__nav {
		flex-direction: row;
		gap: var(--lr-space-lg);
	}
}

.lr-notfound__link {
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}