.top-banner {
	margin: 0px 0px calc(30px + 10px) 0px;
}
.content-text + .page__content .top-banner {
	margin-top: calc(30px + 10px - (22px - 15px));
}
.top-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url('../../images/top-banner/bg.jpg');
	padding: 30px 35px 30px 35px;
	border-radius: 16px;
	position: relative;
}
.top-banner__inner::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: 157px;
	background-position-x: 39%;
	background-position-y: 100%;
	background-image: url('../../images/top-banner/person.png');
	z-index: 10;
}
.top-banner__inner-content {
	flex: 0 1 390px;
	font-size: 22px;
	line-height: 28px;
	font-weight: 500;
	color: var(--color-white);
	text-align: right;
	position: relative;
	margin-top: calc(((28px - 22px) / 2) * -1);
	z-index: 20;
}
.top-banner__inner-form .form {
	flex-direction: row;
	align-items: center;
	position: relative;
	z-index: 20;
}
.top-banner__inner-form .form input[type="text"] {
	width: 220px;
	background: var(--color-white);
	border-color: var(--color-white);
}
.top-banner__inner-form .form .form__submit-wrapper {
	flex-direction: row;
	align-items: center;
	gap: 25px;
}
.top-banner__inner-form .form input[type="submit"] {
	flex: 0 0 184px;
	width: 184px;
}
.top-banner__inner-form .form .form__agree {
	flex: 0 0 184px;
	width: 184px;
}
@media (max-width: 1500px) {
	.top-banner__inner::after {
		background-position-x: 320px;
	}
	.top-banner__inner-content {
		flex: 0 1 300px;
	}
}
@media (max-width: 1240px) {
	.top-banner {
		display: none;
	}
	.top-banner__inner {
		align-items: flex-start;
		gap: 30px;
		background-image: url('../../images/top-banner/bg-mobile.jpg');
	}
	.top-banner__inner::after {
		background-position-x: 20%;
	}
	.top-banner__inner-content {
		flex: 0 1 calc(50% - 15px);
		font-size: 20px;
		line-height: 26px;
		margin-top: calc(((26px - 20px) / 2) * -1);
		text-align: left;
	}
	.top-banner__inner-form {
		flex: 0 1 calc(50% - 15px);
	}
	.top-banner__inner-form .form {
		flex-direction: column;
	}
	.top-banner__inner-form .form .form__fields-wrapper {
		width: 100%;
	}
	.top-banner__inner-form .form input[type="text"] {
		width: 100%;
	}
	.top-banner__inner-form .form .form__submit-wrapper {
		flex-direction: column;
		gap: 15px;
	}
	.top-banner__inner-form .form input[type="submit"] {
		flex: 1 1 auto;
		width: 100%;
	}
	.top-banner__inner-form .form .form__agree {
		flex: 1 1 auto;
		width: 100%;
	}
}
@media (max-width: 768px) {
	.top-banner {
		margin-bottom: calc(25px + 10px);
	}
	.content-text + .page__content .top-banner {
		margin-top: calc(25px + 10px - (22px - 15px));
	}
	.top-banner__inner {
		padding: 30px;
		flex-direction: column;
		gap: 25px;
	}
	.top-banner__inner::after {
		display: none;
	}
	.top-banner__inner-content {
		margin-top: calc((26px - 20px) * -1);
	}
	.top-banner__inner-content br {
		display: none;
	}
}
@media (max-width: 549px) {
	.top-banner {
		margin-bottom: 30px;
	}
	.content-text + .page__content .top-banner {
		margin-top: calc(30px - (22px - 15px));
	}
}