@charset "utf-8";

.txtwrap .h-box {
	font-size: 20px !important;
}

.txtwrap p {
	font-size: 17px !important;
}

/* 이용절차 */
.use-step {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0 50px;
	flex-wrap: wrap;
	gap: 15px;
}

.use-step .step {
	flex: 1;
	min-width: 150px;
	background: #fff;
	border: 1px solid #dfe8e3;
	border-top: 4px solid #18a36d;
	border-radius: 12px;
	padding: 22px 15px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
	height:180px;
}

.use-step .step span {
	display: inline-block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-radius: 50%;
	background: #18a36d;
	color: #fff;
	font-weight: 700;
	margin-bottom: 12px;
}

.use-step .step strong {
	display: block;
	font-size: 17px;
	color: #184f39;
	margin-bottom: 10px;
}

.use-step .step p {
	margin: 0;
	font-size: 15px;
	color: #666;
	line-height: 1.6;
}

.use-step .arrow {
	width: 18px;
	height: 18px;
	border-top: 2px solid #8cbba5;
	border-right: 2px solid #8cbba5;
	transform: rotate(45deg);
}

/* 안내박스 */
.guide-box {
	padding: 30px;
	border: 1px solid #e3ece7;
	background: #f8fbf9;
	border-radius: 12px;
	margin-bottom: 45px;
}

.guide-box h3 {
	margin: 0 0 18px;
	color: #006940;
	font-size: 22px;
}

/* 문의 */
.info-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 45px;
}

.info-item {
	padding: 24px;
	border-radius: 12px;
	border: 1px solid #e3ece7;
	background: #fff;
}

.info-item strong {
	display: block;
	color: #006940;
	font-size: 18px;
	margin-bottom: 12px;
}

.info-item p {
	margin: 0;
	line-height: 1.8;
}

.info-item small {
	color: #777;
}

/* 위치 */
.location-box {
	display: flex;
	gap: 20px;
}

.location-item {
	flex: 1;
	padding: 28px;
	background: #f5faf7;
	border-left: 5px solid #18a36d;
	border-radius: 10px;
}

.location-item strong {
	display: block;
	font-size: 20px;
	color: #006940;
	margin-bottom: 12px;
}

.location-item p {
	margin: 0;
	line-height: 1.8;
}

/* 반응형 */
@media ( max-width :1024px) {
	.use-step {
		justify-content: center;
	}
	.use-step .step {
		flex: none;
		width: 45%;
	}
	.use-step .arrow {
		display: none;
	}
	.info-wrap {
		grid-template-columns: 1fr;
	}
	.location-box {
		flex-direction: column;
	}
}

@media ( max-width :768px) {
	.use-step .step {
		width: 100%;
	}
}