@charset "utf-8";

.biz_sec:first-child {
	padding-top: var(--sub_pd);
	margin-top: -140px;
}

.biz_tb {}

.bz {
	width: 100%;
	text-align: center;
}

.bz tbody {
	position: relative;
}

.bz tbody:before {
	content: "";
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 1rem
}

.bz td {
	padding: 20px 10px;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	font-size: 17px;
	word-break: keep-all;
}

.bz td:first-child,
.bz td:first-child[rowspan]+td {
	border-left: 0;
	color: var(--color-main);
	font-weight: 600;
}

.bz td span {
	font-size: .9em;
	color: #333
}

.bz thead tr {
	position: relative;
}

.bz thead tr:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #f2e8dd;
	z-index: -1;
	border-radius: 1rem;
	left: 0;
	top: 0;
}

.bz thead th {
	padding: 1.5rem;
	border-left: 1px solid #fff;
	font-weight: 600;
	color: #414141;
}

.bz thead th:first-child {
	border-left: 0
}

.bz tbody tr:first-of-type td {
	border-top: 0
}

.bz td:first-child[rowspan] {
	border-right: 1px solid #eee
}

.bz.sp1 tbody {}

.bz.sp1 tbody td {}

.bz.sp1 tbody td:nth-last-of-type(5) {
	color: var(--color-main);
	border-left: 1px solid #eee;
}

.biz_sec:nth-of-type(even) .bz thead tr:after {
	background-color: #e3e6d1;
}

.biz_sec:nth-of-type(even) .bz td {
	color: var(--color-main2)
}

.biz_sec:nth-of-type(even) .bz td:nth-last-of-type(1),
.biz_sec:nth-of-type(even) .bz td:nth-last-of-type(2),
.biz_sec:nth-of-type(even) .bz td:nth-last-of-type(3),
.biz_sec:nth-of-type(even) .bz td:nth-last-of-type(4),
.biz_sec:nth-of-type(even) .bz td:nth-last-of-type(5) {
	color: #222;
}

.biz_sec:nth-of-type(even) .bz td:first-child {
	color: var(--color-main2)
}

.wbox {
	/* background-color:#fff; */
	padding: 3rem;
	/* border-radius: 2rem; */
	border-top: 2px solid var(--color-main);
}

/* PC */
@media only screen and (min-width:1024px) and (max-width: 1500px) {}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/
@media (max-width: 1023px) {
	.bz thead th {
		padding: 1rem 10px
	}

	.wbox {
		padding: 2rem 1rem
	}
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width:767px) {
	.biz_sec:first-child {
		margin-top: -80px;
	}

	.biz_tb {
		overflow: auto;
	}

	.biz_tb table {
		width: 700px
	}

	.bz td {
		font-size: clamp(.9rem, 4vw, 1rem);
	}

	.bz td br {
		display: none
	}

	.wbox {
		padding: 2rem .5rem
	}


}