
@charset "utf-8";


div.service_cont {
	margin-bottom: 50px;
}

div.service_wrap {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
	img {
		width: 48%;
		object-fit: cover;
	}
	div.service_detail {
		width: 48%;
		h2 {
			margin-bottom: 25px;
		}
		div.info {
			width: 100%;
			border: 1px solid var(--main-d-yellow);
			padding: 1rem;
			margin: 1rem auto;
			ul {
				margin: 0.5rem auto;
				padding-left: 1rem;
			}
		}
	}
}

a.news_link {
	width: fit-content;
	font-weight: bold;
	border: 1px solid var(--main-d-yellow);
	padding: 7px 40px;
	margin: 1rem 0 1rem auto;
}
a.news_link::after {
	content: '>';
	width: 1rem;
	height: 1rem;
	padding-left: 1rem;
}


@media screen and (max-width: 867px) {
	div.service_wrap {
		img {
			width: 100%;
			margin-bottom: 30px;
		}
		div.service_detail {
			width: 100%;
		}
	}
}