.notice .inner {
	gap: 50px;
}
.notice_list {
	gap: 20px;
}
.notice .filter {
	gap: 10px;
}
.notice .filter .tab {
	flex: 1; 
	gap: 10px;
}
.notice .filter .tab button {
	width: 110px;
	height: 44px;
	border-radius: 10px;
	background: #F5F5F5;
	color: var(--sub);
	font-size: 16px;
}
.notice .filter .box {
	gap: 20px;
}
.notice .filter .box .input_form {
	width: 350px;
	border-radius: 5px;
	border: 0.5px solid var(--border-tertiary);
	padding: 8px 16px;
	box-sizing: border-box;
}
.notice .filter .box .input_form input {
	flex: 1;
	width: 100%;
	font-size: 16px;
}
.notice .filter .box .input_form .search_btn {
	width: 26px;
	height: 26px;
	background: url("../images/ic_search.svg")no-repeat 50% 50%;
}
.notice table tr:first-child td {
	border-top: 1px solid #D2D2D2;
}
.notice table td {
	text-align: center;
	height: 56px;
	border-bottom: 1px solid #D2D2D2;
	padding: 0 10px;
	font-size: 16px;
	font-weight: 500;
	box-sizing: border-box;
}
.notice table td a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.notice table td.date {
	color: var(--sub);
}
.notice table .end td {
	background: var(--bg-off-white);
}
.notice table td.status {
	width: 60px;
}
.notice table td.status span {
	display: block;
	width: 48px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 5px;
	font-weight: 500;
	color: var(--white);
	margin: 0 auto;
}
.notice table td.status span.ing {
	background: var(--key-color);
}
.notice table td.status span.end {
	background: var(--text-secondary);
}

.board_read .top {
	border-bottom: 1px dashed var(--key-color);
	padding: 18px 20px;
	font-weight: 500;
	font-size: 16px;
	gap: 10px;
}
.board_read .top .title {
	flex: 1;
}
.board_read .top > span {
	width: 48px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 5px;
	font-weight: 500;
	color: var(--white);
	margin: 0 auto;
}
.board_read .top > span.ing {
	background: var(--key-color);
}
.board_read .top > span.end {
	background: var(--text-secondary);
}
.board_read .conts {
	margin: 50px auto;
	line-height: 1.5;
	word-break: break-all;
}
.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) {
	#header {
		display: none;
	}
	#fixHeader {
		opacity: 1;
		z-index: 13;
		background: transparent;
		box-shadow: none;
	}
	#fixHeader.fixed {
		background: var(--white);
    	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	}
	.sub_tit {
		display: none;
	}

	.notice .inner {
		gap: 35px;
	}
	.notice .filter .box {
		gap: 10px;
	}
	.notice .filter .box .input_form {
		width: 370px;
		border-radius: 10px;
		padding: 10px 20px;
	}
	.notice .filter .box .input_form input {
		font-size: 16px;
	}
	.notice table th {
		height: 52px;
		font-size: 16px;
	}
	.notice table td {
		height: 52px;
		font-size: 16px;
	}
	.notice table td.date {
		display: none;
	}

	.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) {
	.notice .filter .box {
		width: 100%;
	}
	.notice .filter .box .input_form {
		flex: 1;
		padding: 6px 20px;
	}
	.notice .filter .box .input_form input {
		font-size: 14px;
	}
	.notice .filter .tab button {
		width: 85px;
		height: 34px;
		border-radius: 5px;
		font-size: 14px;
	}
	.notice table colgroup {
		display: none;
	}


	
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}