@keyframes zoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
@keyframes pop {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.serviceSell__box {
	background-color: var(--color-bg);
	padding: 30px;
	display: flex;
	gap: 50px;
}
.serviceSell__box_title {
	text-align: center;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-txt-caption-v2);
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.serviceSell__box {
		flex-direction: column;
	}
}
@media (min-width: 768px), print {
	.serviceSell__box {
		display: flex;
		padding: 40px 50px;
	}
	.serviceSell__box_item {
		width: 50%;
	}
	.serviceSell__box_list {
		display: flex;
		flex-wrap: wrap;
	}
	.serviceSell__box_list li {
		width: 50%;
	}
	.serviceSell__box_list li:nth-child(2) {
		margin-top: 0;
	}
}
.serviceSell__modal_title {
	text-align: center;
	font-weight: 700;
	font-size: 1.8rem;
	margin-bottom: 20px;
	line-height: var(--line-height-s);
}
@media (min-width: 768px), print {
	.serviceSell__modal {
		display: flex;
		flex-direction: column;
	}
	.serviceSell__modal_title {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
/*# sourceMappingURL=service_sell.css.map */
