.board .inner {
	gap: 50px;
	padding-bottom: 100px;
}
.board .filter {
	gap: 10px;
}
.board .filter h3 {
	flex: 1;
	color: var(--key-color);
	font-weight: 600;
	text-align: left;
}
.board .filter .box {
	gap: 20px;
}
.board .filter .box select {
	width: 130px;
	height: 56px;
	border-radius: 10px;
	background-image: url("../images/arrow-down-gray.svg");
	border: 1px solid #D2D2D2;
	padding: 0 30px;
	font-size: 20px;
	font-weight: 500;
}
.board .filter .box .input_form {
	width: 400px;
	border-radius: 10px;
	border: 1px solid #D2D2D2;
	padding: 14px 30px;
	box-sizing: border-box;
}
.board .filter .box .input_form input {
	flex: 1;
	width: 100%;
	font-size: 20px;
	font-weight: 500;
}
.board .filter .box .input_form .search_btn {
	width: 26px;
	height: 26px;
	background: url("../images/ic_search.svg")no-repeat 50% 50%;
}

.board table th {
    background: #F9F9F9;
    font-size: 18px;
    padding: 0 5px;
    height: 70px;
	font-weight: 500;
}
.board table td {
	text-align: center;
	height: 70px;
	border-bottom: 1px solid #D2D2D2;
	padding: 0 5px;
	font-size: 18px;
	box-sizing: border-box;
}

.board_read .top {
	background: var(--key-color);
	color: var(--white);
	padding: 18px 20px;
	font-weight: 500;
	font-size: 16px;
	gap: 10px;
}
.board_read .top .title {
	flex: 1;
}
.board_read .conts {
	margin: 50px auto;
	line-height: 1.5;
}
.board_read .conts h3 {
	font-weight: 400;
	font-size: 30px;
	margin-bottom: 50px;
}
.board_read .conts .img {
	text-align: center;
	margin-bottom: 40px;
}
.board_read .conts img {
	max-width: 100%;
}
.board_read .conts > div {
	line-height: 1.5;
}
.board_read .btn_area {
	justify-content: end;
}
.board_read .btn_area a {
    background: var(--key-color);
    color: var(--white);
    display: block;
    padding: 10px 25px;
	border-radius: 5px;
}



.form {
	gap: 50px;
	max-width: 1040px;
	margin: 0 auto;
}
.form > div > p {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}
.form input {
	width: 100%;
	height: 56px;
	border-radius: 10px;
	border: 1px solid #E0E0E0;
	font-size: 16px;
	padding: 0 20px;
	box-sizing: border-box;
}
.form textarea {
	width: 100%;
	height: 330px;
	border-radius: 10px;
	border: 1px solid #E0E0E0;
	font-size: 16px;
	padding: 20px;
	resize: none;
	box-sizing: border-box;
}
.form .btn_blue {
	display: block;
	width: 283px;
	height: 64px;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 600;
	box-sizing: border-box;
	margin: 50px auto 0;
}


@media screen and (max-width: 1480px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
	.board .inner {
		gap: 35px;
		padding-bottom: 75px;
	}
	.board .filter .box {
		gap: 10px;
	}
	.board .filter .box select {
		height: 48px;
		padding: 0 20px;
		font-size: 16px;
	}
	.board .filter .box .input_form {
		width: 370px;
		border-radius: 10px;
		padding: 10px 20px;
	}
	.board .filter .box .input_form input {
		font-size: 16px;
	}
	.board table th {
		height: 52px;
		font-size: 16px;
	}
	.board table td {
		height: 52px;
		font-size: 16px;
	}

	.form {
		gap: 30px;
	}
	.form > div > p {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.form input {
		height: 44px;
		font-size: 14px;
		padding: 0 15px;
	}
	.form .btn_blue {
		width: 185px;
		height: 52px;
		font-size: 18px;
		margin: 25px auto 0;
	}
}
@media screen and (max-width: 768px) {
	.board .filter h3 {
		flex: none;
		width: 100%;
	}
	.board .filter .box {
		width: 100%;
	}
	.board .filter .box select {
		width: 100px;
		height: 40px;
		font-size: 14px;
	}
	.board .filter .box .input_form {
		flex: 1;
		padding: 6px 20px;
	}
	.board .filter .box .input_form input {
		font-size: 14px;
	}
	
	.board table thead,
	.board table colgroup {
		display: none;
	}
	.board table tr {
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px solid #D2D2D2;
		padding: 15px 0;
		gap: 5px 0;
		box-sizing: border-box;
	}
	.board table td {
		height: auto;
		border-bottom: 0;
		font-size: 14px;
	}
	.board table td.subject {
		flex: 1;
	}
	.board table td.view > div:before {
		content: '조회수 ';
	}


	
}
@media screen and (max-width: 480px) {
	.board table td.subject {
		flex: none;
		width: calc(100% - 35px);
	}
}
@media screen and (max-width: 380px) {
}