.contact .inner {
	gap: 50px;
}

.contact .list_table th {
	background: var(--base2);
	padding: 16px 0;
	font-size: 20px;
	font-weight: 400;
}
.contact .list_table th:first-child {
	border-radius: 10px 0 0 10px;
}
.contact .list_table th:last-child {
	border-radius: 0 10px 10px 0;
	padding-left: 20px;
}
.contact .list_table input[type=checkbox] {
	display: none;
}
.contact .list_table input[type=checkbox] + label {
	position: relative;
}
.contact .list_table input[type=checkbox] + label:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 26px;
	height: 26px;
	border: 0.5px solid rgba(35, 35, 35, 0.5);
	background: var(--white);
	margin: 0 auto;
}
.contact .list_table input[type=checkbox]:checked + label:before {
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50%;
	border: 1px solid var(--key-color);
}
.contact .list_table td {
	padding: 16px 0;
	font-size: 24px;
	text-align: center;
	border-bottom: 1px solid var(--gray);
}
.contact .list_table td .box {
	gap: 16px;
}
.contact .list_table td .thumb {
	width: 120px;
	padding: 10px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--base2);
	box-sizing: border-box;
}
.contact .list_table td .thumb img {
	width: 100%;
}

.contact .form {
	gap: 16px;
}
.contact .form .box {
	gap: 16px 20px;
}
.contact .form .box .item {
	width: calc(33.333% - 14px);
}
.contact .form .box .item.w100 {
	width: 100%;
}
.contact .form .box .item input {
	width: 100%;
	height: 60px;
	padding: 0 20px;
	border-radius: 10px;
	background: var(--base);
	font-size: 20px;
	font-family: 'SUIT';
	box-sizing: border-box;
}
.contact .form .box .item textarea {
	width: 100%;
	height: 222px;
	resize: none;
	border: 0;
	padding: 16px 20px;
	border-radius: 10px;
	font-size: 20px;
	background: var(--base);
	font-family: 'SUIT';
	box-sizing: border-box;
}


.contact .btn_area {
	justify-content: end;
}
.contact .btn_area button {
	height: 52px;
	line-height: 52px;
	letter-spacing: 0.32px;
	font-family: 'SUIT';
	padding: 0 30px;
	border-radius: 5px;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	box-sizing: border-box;
}



@media screen and (max-width: 1560px) {
}
@media screen and (max-width: 1024px) {
	.contact .list_table th {
		font-size: 18px;
	}
	.contact .list_table td {
		font-size: 20px;
	}


	.contact .form .box .item input {
		height: 50px;
		padding: 0 15px;
		font-size: 18px;
	}
	.contact .form .box .item textarea {
		padding: 15px;
		font-size: 18px;
	}

	.contact .btn_area button {
		height: 46px;
    	line-height: 46px;
		font-size: 14px;
		padding: 0 20px;
	}
}
@media screen and (max-width: 768px) {
	.contact .inner {
		gap: 30px;
	}

	
	.contact .list_table input[type=checkbox] + label:before {
		width: 20px;
		height: 20px;
	}
	.contact .list_table td {
        font-size: 16px;
    }
	.contact .list_table td .thumb {
		width: 110px;
	}


	.contact .form .box .item {
		width: 100%;
	}
	.contact .form .box .item input,
	.contact .form .box .item textarea {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}