.p-front-hero {
	overflow: hidden;
	position: relative;
	padding: 200px 20px 120px;
}

.p-front-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.p-front-hero__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 80%;
	font-size: 18px;
	color: #fff;
}

.p-front-hero-label {
	width: fit-content;
	margin-bottom: -14px;
	padding: 4px 8px;
	border: 1px solid #fff;
	font-size: 12px;
}

.p-front-hero__content>h1 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -2px;
}

.p-front-hero__content>.c-button {
	margin-top: 8px;
}

.p-front-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.p-front-hero__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.p-front-hero {
		padding-top: 120px;
		padding-bottom: 60px;
	}

	.p-front-hero__content {
		width: 100%;
		gap: 16px;
		font-size: 16px;
	}

	.p-front-hero__content>h1 {
		font-size: 32px;
	}
}

.p-front-main {
	padding: 140px 20px;
	background-color: #f5f5f5;
	border-top: 8px solid #f04e23;
	border-bottom: 8px solid #f04e23;
}

.p-front-main a {
	color: #cd421d;
	text-decoration: underline;
}

@media (any-hover: hover) {
	.p-front-main a:hover {
		text-decoration: none;
	}
}

.p-front-main__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
	max-width: 1000px;
	margin: 0 auto;
}

.p-front-main__overview {
	font-size: 18px;
	line-height: 1.8;
}

.p-front-main__agenda {
	display: flex;
	flex-direction: column;
	gap: 1em;
	font-size: 18px;
	line-height: 1.8;
}

.p-front-main__agenda h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #1a1b1d;
}

.p-front-main__agenda ul {
	display: flex;
	flex-direction: column;
	row-gap: 0.25em;
	padding-left: 1.5em;
	list-style: disc;
}

a.p-front-main__button {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.p-front-main {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.p-front-main__inner {
		gap: 40px;
	}
}