.sub_bg {
	background: #2C2E39;
	color: #fff;
	font-size: 22px;
	text-align: center;
	padding: 74px 0;
}

.board {
	padding: 50px 0 15%;
}
.board .top {
	align-items: center;
	margin-bottom: 16px;
}
.board .top select {
	width: 120px;
	height: 32px;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	font-size: 14px;
	color: #000;
	margin-right: 8px;
}
.board .top div {
	width: 305px;
}
.board .top div input {
	width: 100%;
	height: 32px;
	background: #FFFFFF url("../images/ico-search.svg")no-repeat 12px 50%;
	border: 1px solid #DDDDDD;
	box-shadow: inset 0px 1px 2px rgba(27, 31, 35, 0.075);
	border-radius: 4px;
	font-size: 14px;
	color: #000;
	padding: 0 10px 0 35px;
	box-sizing: border-box;
}
.board .top button {
	width: 90px;
	height: 32px;
	background: #EEE;
	border-radius: 2px;
	font-size: 14px;
	margin-left: 8px;
}

.board .scroll {
	overflow-x: auto;
}
.board table {
	min-width: 435px;
}
.board table th {
	background: #DDE2E8;
	height: 36px;
}
.board table td {
	text-align: center;
	height: 36px;
	border-bottom: 1px solid #DDE2E8;
}
.board table td a {
	text-align: left;
}



.board .read .subject {
	align-items: center;
	background: #DDE2E8;
	color: #402716;
	padding: 20px;
	line-height: 1.3;
	box-sizing: border-box;
}
.board .read .subject strong {
	flex: 1;
	font-size: 18px;
	font-weight: 700;
}
.board .read .subject span {
	font-size: 16px;
	padding-left: 10px;
}
.board .read .conts {
	line-height: 1.3;
	font-size: 14px;
	padding: 20px;
}
.board .read .btn_area {
	text-align: right;
	margin-top: 20px;
}
.board .read .btn_area a {
    background: #DDE2E8;
    text-align: center;
    display: inline-block;
    width: 70px;
    height: 37px;
    line-height: 37px;
    border-radius: 2px;
}




@media screen and (max-width: 768px) {
	.sub_bg {
		font-size: 18px;
		padding: 42px 0;
	}

	.board .top select {
		width: 100%;
		margin-bottom: 8px;
		margin-right: 0;
	}
	.board .top div {
		width: calc(100% - 98px);
	}
	
	.board .read .subject strong {
		flex: none;
		width: 100%;
		font-size: 16px;
	}
	.board .read .subject span {
		width: 100%;
		text-align: right;
		font-size: 14px;
		margin: 10px 0 0;
	}
	.board .read .btn_area a {
		font-size: 14px;
	}
}