.content {
	margin-top: 0;
}

#main.main {
	border: 0;
	padding-top: 0;
}

.front-hero {
	--front-hero-inline: max(24px, calc((100vw - 1120px) / 2));

	position: relative;
	display: grid;
	align-items: end;
	justify-items: end;
	min-height: 620px;
	height: clamp(620px, calc(100vh - 80px), 860px);
	margin: 0;
	padding: clamp(96px, 18vh, 180px) var(--front-hero-inline) clamp(44px, 9vh, 96px);
	overflow: hidden;
	background-image:
		linear-gradient(90deg, rgba(42, 0, 0, 0) 0%, rgba(42, 0, 0, 0.08) 48%, rgba(42, 0, 0, 0.66) 100%),
		url("images/hero_pc.webp");
	background-position: 34% 32%;
	background-size: cover;
	color: #fff;
}

.front-hero__content {
	width: min(560px, 100%);
	padding: 28px 0;
	text-align: right;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.front-hero__label {
	margin: 0 0 12px;
	color: #ffdd83;
	font-family: "Mochiy Pop P One", sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.front-hero__title {
	margin: 0;
	font-size: clamp(40px, 7vw, 88px);
	font-weight: 700;
	line-height: 1;
}

.front-hero__title-space {
	display: none;
}

.front-hero__lead {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.8;
}

.front-hero__credit {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.38);
}

@media screen and (max-width: 767px) {
	.front-hero {
		align-items: end;
		justify-items: start;
		--front-hero-inline: 24px;

		min-height: 560px;
		height: auto;
		padding-right: 24px;
		padding-left: 24px;
		background-image:
			linear-gradient(180deg, rgba(42, 0, 0, 0) 0%, rgba(42, 0, 0, 0.18) 46%, rgba(42, 0, 0, 0.78) 100%),
			url("images/hero_sp.webp");
		background-position: center top;
	}

	.front-hero__content {
		padding: 0;
		text-align: left;
	}

	.front-hero__title {
		font-size: 32px;
	}

	.front-hero__title br {
		display: none;
	}

	.front-hero__title-space {
		display: inline-block;
		width: 0.5em;
	}

	.front-hero__lead br {
		display: none;
	}
}
