.board {
	position: relative;
}
.board_list table {
	table-layout: fixed;
}
.board_list table th {
	background: var(--base);
	font-size: 24px;
	font-weight: 700;
	padding: 24px 0;
}
.board_list table td {
	text-align: center;
	font-size: 24px;
	border-bottom: 0.5px solid rgba(0,0,0,0.2);
	padding: 24px 0;
}
.board_list table td a {
	display: block;
	text-align: left;
	overflow: hidden; 
	text-overflow: ellipsis; 
	white-space: nowrap;
}



.board_read .top {
	padding: 24px 60px;
	background: var(--base);
	gap: 20px;
}
.board_read .top div {
	font-size: 32px;
}
.board_read .top .date {
	font-size: 24px;
}
.board_read .conts {
    line-height: 1.2;
	font-size: 24px;
	padding: 60px 60px 0;
}
.board_read .conts img {
	display: block;
	max-width: 100%;
	margin-bottom: 20px;
}
.board_read .btn_area {
	margin-top: 40px;
	justify-content: end;
	padding: 0 60px 60px;
}
.board_read .btn_area a {
	width: 176px;
	height: 62px;
	line-height: 62px;
	text-align: center;
	background: var(--yellow);
	font-size: 24px;
	color: var(--white);
	border-radius: 7px;
}






@media screen and (max-width: 1440px) {
	.board_list table th {
		font-size: 20px;
	}
	.board_list table td {
		font-size: 20px;
	}
	
	.board_read .top div {
		font-size: 28px;
	}
	.board_read .top .date {
		font-size: 20px;
	}
	.board_read .conts {
		font-size: 20px;
		padding: 40px 40px 0;
	}
	.board_read .btn_area {
		margin-top: 20px;
		padding: 0 40px 40px;
	}
	.board_read .btn_area a {
		font-size: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.board_list table th {
		font-size: 18px;
		padding: 20px 0;
	}
	.board_list table td {
		font-size: 18px;
		padding: 20px 0;
	}
	
	.board_read .top {
		font-size: 18px;
		padding: 15px 30px;
	}
	.board_read .top div {
		font-size: 16px;
	}
	.board_read .top .date {
		font-size: 14px;
	}
	.board_read .conts {
		font-size: 14px;
		padding: 20px 20px 0;
	}
	.board_read .btn_area {
		padding: 0 20px 20px;
	}
	.board_read .btn_area a {
		width: 120px;
		height: 45px;
		line-height: 45px;
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.board_list table colgroup {
		display: none;
	}
	.board_list table th {
		font-size: 14px;
		padding: 20px 0;
	}
	.board_list table td {
		font-size: 14px;
		padding: 20px 0;
	}
	.board_list table th:nth-child(1),
	.board_list table td:nth-child(1) {
		width: 60px;
	}
	.board_list table th:nth-child(2),
	.board_list table td:nth-child(2) {
		width: auto;
	}
	.board_list table th:nth-child(3),
	.board_list table td:nth-child(3) {
		width: 110px;
	}
	
	.board_read .top {
		justify-content: end;
		gap: 5px 0;
	}
	.board_read .top div {
		flex: 1;
	}
	.board_read .top .date {
		flex: none;
		width: 100%;
		text-align: right;
	}
}
@media screen and (max-width: 380px) {
}