/* Promotion. */

.promotion {

}

.promotion_img {
	overflow: hidden;
	position: relative;

	margin: 0 20px;
	border-radius: 20px;
	min-height: 104px;
}

.promotion_img:after {
	content: '';
	display: block;
	padding-bottom: min(28.5%, 540px);
}

.promotion_img img {
	position: absolute;
	top: 0;
	left: 0;

	height: 100%;
	object-fit: cover;
	object-position: center;
}

.promotion_info {
	max-width: 1200px;
	margin: 40px auto;
}

.promotion_name {
	font-size: 24px;
}

.promotion_desc {
	margin-top: 22px;
	font-size: 16px;
	line-height: 1.7;
}

.promotion_time {
	--color: #666666;

	font-size: 15px;
	margin-top: 30px;
}

.promotion_content {
	border-top: 1px solid #EEEEEE;
	padding-top: 20px;
}

/* Promotion. */

@media only screen and (max-width: 600px) {

	/* Promotion. */

	.promotion_img {
		margin: 0;
	}

	.promotion_name {
		font-size: 19px;
	}

	.promotion_info {
		margin: 22px 0 30px;
	}

	.promotion_desc {
		margin-top: 14px;
		font-size: 17px;
	}

	.promotion_time {
		margin-top: 15px;
	}

	.promotion_content {
		padding-top: 15px;
	}

	/* Promotion. */

}