/* banner */
.banner-container {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}

.banner-container .img {
	display: block;
	width: 100%;
	min-height: 250px;
	object-fit: cover;
	object-position: center;
}

.banner-container .text-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	width: 1440px;
	max-width: 100%;
}

.banner-container .text-content .title {
	font-weight: bold;
	color: #FFFFFF;
	margin: 0;
}

.banner-container .text-content .label {
	color: #FFFFFF;
	letter-spacing: 2px;
	margin: 0.5em 0 0;
}

@media screen and (max-width: 1023px) {
	.banner-container .text-content {
		margin: 0 10px;
	}

	.banner-container .text-content .title {
		font-size: max(34px, 5vw);
	}
	
	.banner-container .text-content .label {
		font-size: max(14px, 3vw);
	}
}

@media screen and (min-width: 1024px) {
	.banner-container .text-content {
		margin: 0 20px;
	}

	.banner-container .text-content .title {
		font-size: 4.625rem;
	}

	.banner-container .text-content .label {
		font-size: 2.5rem;
	}
}