.c-page-hero {
	display: flex;
	justify-content: space-between;
	gap: 2vw;
	height: 22vw;
	padding-inline: 10% 0;
}

.c-page-hero__title {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.c-page-hero__title-en {
	width: fit-content;
	font-family: var(--font-family-sans);
	font-size: clamp(3em, 5vw, 10em);
	font-weight: 700;
	line-height: 1;
	color: var(--color-main-orange);
}

.c-page-hero__title-ja {
	width: fit-content;
	font-size: 3vw;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-main-navy);
}

.c-page-hero__mv {
	overflow: hidden;
	flex-basis: 60%;
	border-radius: 0 0 0 48px;
}

.c-page-hero__mv img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

@media screen and (max-width: 767px) {
	.c-page-hero {
		flex-direction: column-reverse;
		gap: 24px;
		height: auto;
		padding-inline: 5% 0;
	}

	.c-page-hero:not(:has(.c-page-hero__mv)) {
		padding-top: 24px;
	}

	.c-page-hero__title {
		flex: 1;
		gap: 12px;
	}

	.c-page-hero__title-en {
		font-size: 32px;
	}

	.c-page-hero__title-ja {
		font-size: 16px;
	}

	.c-page-hero__mv {
		flex-basis: 100%;
		border-radius: 0 0 0 24px;
		aspect-ratio: 7/4;
	}
}