@charset "utf-8";

.photo_list {
	margin-bottom: 100px;
}

.photo_list>ul {
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(32%, auto));
	gap: 20px;
	row-gap: 48px;
}

.photo_list>ul>li {
	position: relative;
	box-sizing: border-box;
}

.photo_list>ul>li:hover .item_photo img{
	transform: scale(1.05);
	transition: transform .3s ease-in-out;
}

.photo_list>ul>li.no_data {
	width: 100%;
}

.photo_list>ul>li a {
	display: inline-block;
}

.photo_list>ul>li .item_check {
	width: 100%;
	height: 15px;
}

.photo_list>ul>li .item_photo {
	width: 100%;
	height: 240px;
}

.photo_list>ul>li .item_photo a {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #cecece;
  box-sizing: border-box;
}

.photo_list>ul>li .item_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo_list>ul>li .item_cont {
	margin-top: 32px;
}

.photo_list>ul>li .item_cont .tit {
	width: 100%;
	height: 60px;
}

.photo_list>ul>li .item_cont .tit a {
	width: 100%;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 500;
	font-size: 20px;
	word-break: keep-all;
}

.photo_list>ul>li .item_cont .writer {

}

.photo_list>ul>li .item_cont .date {
	color: #717171;
	margin-top: 16px;
}


/** view */
.detail_table{
	border-top: 2px solid #222;
}

.detail_table tr + tr{
	border: 0;
}

.detail_table th{
	display: none;
}

.detail_table th + th, .detail_table th + td, .detail_table td + td{
	border: none;
}

.detail_table td.title{
	font-size: 32px;
	font-weight: 600;
}

/** view */
.board-view{
	width: 100%;
	height: 100%;
	border-top: 2px solid #222;
}

.board-title-wrap{
	padding: 32px 16px;
	border-bottom: 1px solid #cecece;

}

.board-title h5{
	font-size: 32px;
	font-weight: 600;
}

.board-title span{
	color: #717171;
	margin-top: 16px;
	display: block;
}

.board-info{
	display: flex;    
	align-items: center;
  gap: 56px;
	margin-top: 16px;
}

.board-info dl{
	display: flex;
	font-size: 18px;
	position: relative;
}

.board-info dl dt, .board-info dl dd{
	padding: 0 20px;
	color: #717171;
}

.board-info dl dt{
	position: relative;
	padding-left: 0;
}

.board-info dl dt::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 13px;
	background: #ccc;
}

.board-cont-wrap{
	padding: 32px 0;
}

.file-wrap{
	width: 100%;
	background: var(--light-gray);
	border-radius: 8px;
	margin-bottom: 40px;
}

.file-wrap .file-list{
	padding: 14px 16px;
}

.file-wrap .file-list li{
	position: relative;
}

.file-wrap .file-list li::before{
	content: '';
	background: url('/images/notice_file.svg') no-repeat;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
  margin-right: 8px;
}


.board-cont{
	border-bottom: 1px solid #cecece;
	padding-bottom: 40px;
}

.notice-btn{
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 24px 0 60px;
}

.notice-btn .list-btn{
	background: var(--navy);
	color: #fff;
	border-radius: 8px;
	padding: 16px 80px;
	font-size: 18px;
	display: inline-block;
}

.board-link{
	margin-top: 80px;
}

.board-link span{
	color: var(--darkblue);
	font-weight: 500;
}

.board-link a{
	color: var(--darkblue);
}

.board-link a:hover{
	text-decoration: underline;
}


@media (max-width: 680px) {
	.photo_list>ul>li .item_photo{
		height: 180px;
	}
	.photo_list>ul{
		grid-template-columns: repeat(auto-fill, minmax(48%, auto));
	}

	.board-title h5{
		font-size: 24px;
	}
}