.season-banner {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	position: relative;
	font-size: 22px;
	line-height: 26px;
	font-weight: 500;
	color: var(--color-gray-26);
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.season-banner.--winter {
	background-color: #def1fa;
	background-image: url('../../images/season-banner/winter.png');
}
.season-banner.--spring {
	background-color: #e5edd6;
	background-image: url('../../images/season-banner/spring.png');
}
.season-banner.--summer {
	background-color: #fae8b5;
	background-image: url('../../images/season-banner/summer.png');
}
.season-banner.--autumn {
	background-color: #f8c381;
	background-image: url('../../images/season-banner/autumn.png');
}
.season-banner__left-content, 
.season-banner__right-content {
	position: absolute;
	top: calc(50% - 1px);
	transform: translateY(-50%);
}
.season-banner__left-content {
	right: calc(50% + 190px);
	text-align: right;
}
.season-banner__right-content {
	left: calc(50% + 190px);
	text-align: left;
}
@media (max-width: 1240px) {
	.season-banner {
		height: 80px;
		font-size: 16px;
		line-height: 24px;
		background-position-x: calc(50% - 45px) !important;
	}
	.season-banner__left-content {
		right: auto;
		left: calc((100vw - var(--container-width)) / 2);
	}
	.season-banner__right-content {
		left: auto;
		right: calc((100vw - var(--container-width)) / 2);
	}
}
@media (max-width: 768px) {
	.season-banner {
		display: none !important;
	}
}