.replacement {
	display: flex;
	flex-direction: row-reverse;
	gap: 50px;
}
.replacement__main {
	flex: 1 1 auto;
	min-width: 0;
}
.replacement__img {
	flex: 0 0 400px;
}
.replacement__img-inner {
	width: 100%;
	padding-top: 100%;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--color-gray-05);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.replacement__main-footer {
	display: flex;
	justify-content: flex-start;
	margin-top: calc(22px + 8px);
}
.replacement__main-footer-price {
	border-radius: 6px;
	padding: 15px 15px 15px 30px;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	gap: 30px;
}
.replacement__main-footer-price::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	pointer-events: none;
	z-index: 1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect width='100%25' height='100%25' rx='10' ry='10' fill='none' stroke='rgba(198,198,198,1)' stroke-width='4' stroke-dasharray='7 4' vector-effect='non-scaling-stroke' /%3E%3C/svg%3E");    background-repeat: no-repeat;
	background-size: 100% 100%;
}
.replacement__main-footer-price-text {
	font-size: 18px;
	line-height: 22px;
	margin-top: calc(((22px - 18px) / 2) * -1);
}
.replacement__main-footer-price-value {
	color: var(--color-red);
	font-weight: 600;
	white-space: nowrap;
}
.btn.replacement__main-footer-price-btn {
	padding: 14px 24px 15px 24px;
}
@media (max-width: 1240px) {
	.replacement {
		flex-direction: column;
		gap: 40px;
		margin-top: 40px;
	}
}
@media (min-width: 550px) and (max-width: 1240px) {
	.replacement__img {
		flex-basis: auto;
	}
	.replacement__img-inner {
		padding-top: 300px;
	}
}
@media (max-width: 768px) {
	.replacement__img {
		flex: 1 1 auto;
	}
	.replacement__main-footer {
		width: 100%;
	}
	.replacement__main-footer-price {
		width: 100%;
		padding: 25px;
		gap: 25px;
		justify-content: space-between;
	}
	.replacement__main-footer-price-text {
		line-height: 24px;
		margin-top: calc(((24px - 18px) / 2) * -1);
	}
	.replacement__main-footer-price-text-text {
		display: block;
	}
}
@media (max-width: 549px) {
	.replacement__main-footer-price {
		flex-wrap: wrap;
		gap: 15px;
		text-align: center;
	}
	.replacement__main-footer-price-text {
		width: 100%;
		margin-top: calc((24px - 18px) * -1);
	}
	.btn.replacement__main-footer-price-btn {
		width: 100%;
	}
}