/* Util */
.util {
	margin-bottom:80px;
}

.util-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.util-counts {
	font-size: 1.6rem;
	font-weight:500;
	color:#a7a7a7;
}

.util-counts span {
	font-weight: 800;
	color:#000000;
}

.util-sch {
	max-width:480px;
	width:100%;
}

.util-sch .sch-inner {
	display: flex;
	gap:8px;
}

.util-sch .sch-select {
	width:150px;
}

.util-sch .sch-input {
	position: relative;
	width: calc(100% - 150px);
	padding-right:44px;
	border:1px solid #d8d8d8;
	border-radius: 5px;
}

.util-sch select {
	width:100%;
	height: 44px;
	padding:0px 20px;
	background-size:14px auto;
	background-image: url('/child/img/bbs/util_select.png');
	background-repeat: no-repeat;
	background-position:right 20px center;
	border:1px solid #d8d8d8;
	border-radius: 5px;
	font-size:1.6rem;
	font-weight: 500;
	color:#a7a7a7;
}

.util-sch input {
	width:100%;
	height: 44px;
	padding:0px 20px;
	background-color: transparent;
	font-size:1.6rem;
	font-weight: 500;
}

.util-sch button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top:-1px;
	right:-1px;
	width:44px;
	height:46px;
	background:#3b3b3b url('/child/img/bbs/util_search.png') no-repeat center;
	border-radius: 5px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.util {
		margin-bottom:60px;
	}
	
	.util-counts {
		font-size:1.5rem;
	}

	.util-sch {
		max-width:400px;
	}
	
	.util-sch .sch-input {
		padding-right:36px;
	}
	
	.util-sch select {
		height: 36px;
		padding:0px 16px;
		background-size:12px auto;
		background-position:right 16px center;
		font-size:1.5rem;
	}
	
	.util-sch input {
		height: 36px;
		padding:0px 16px;
		font-size:1.5rem;
	}
	
	.util-sch button {
		width:36px;
		height:38px;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.util {
		margin-bottom:40px;
	}

	.util-inner {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap:12px;
	}
	
	.util-counts {
		font-size:1.4rem;
	}

	.util-sch {
		max-width:100%;
	}

	.util-sch .sch-inner {
		flex-direction: column;
		gap:4px;
	}

	.util-sch .sch-select {
		width: 100%;
	}

	.util-sch .sch-input {
		width: 100%;
		padding-right:30px;
	}
	
	.util-sch select {
		height: 30px;
		padding:0px 12px;
		background-size:10px auto;
		background-position:right 12px center;
		font-size:1.4rem;
	}
	
	.util-sch input {
		height: 30px;
		padding:0px 12px;
		font-size:1.4rem;
	}
	
	.util-sch button {
		width:30px;
		height:32px;
	}
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top:80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:36px;
  height:36px;
	margin:0px 1px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:#fff;
  border:1px solid #d7d7d7;
  text-align: center;
  font-size:1.6rem;
	font-weight:500;
	color:#444444;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#fff;
  background-color: #3b3b3b;
	border-color: #3b3b3b;
}

.pagination a.pagination__backward {
  background-image: url('/child/img/bbs/pg_backward.png');
}

.pagination a.pagination__prev {
  background-image: url('/child/img/bbs/pg_prev.png');
}

.pagination a.pagination__forward {
  background-image: url('/child/img/bbs/pg_forward.png');
}

.pagination a.pagination__next {
  background-image: url('/child/img/bbs/pg_next.png');
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.pagination {
		margin-top:60px;
	}

	.pagination a {
		width: 30px;
		height:30px;
		font-size:1.5rem;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.pagination {
		margin-top:40px;
	}

	.pagination a {
		width: 26px;
		height:26px;
		font-size:1.4rem;
	}
}


/* Gallery List */
.bbs-gallery .list {
	display: flex;
	flex-wrap: wrap;
	margin:-20px;
}

.bbs-gallery .list li {
	width: 33.33%;
	padding:20px;
}

.bbs-gallery .list .thumb {
	position: relative;
	width:100%;
	height:0;
	padding-top: calc(330/400*100%);
	overflow: hidden;
}

.bbs-gallery .list .thumb img {
	display: block;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
}

.bbs-gallery .list .con {
	padding-top: 30px;
}

.bbs-gallery .list .subject {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:2.4rem;
	font-weight: 700;
	margin-bottom:20px;
}

.bbs-gallery .list .detail {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:1.8rem;
	line-height:1.3;
	color:#343434;
}


@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.bbs-gallery .list {
		margin:-16px -12px;
	}
	
	.bbs-gallery .list li {
		padding:16px 12px;
	}
	
	.bbs-gallery .list .con {
		padding-top:20px;
	}

	.bbs-gallery .list .subject {
		font-size: 2rem;
		margin-bottom:16px;
	}

	.bbs-gallery .list .detail {
		font-size:1.6rem;
	}
}
@media screen and (max-width:768px) {
	.bbs-gallery .list {
		margin:-12px -8px;
	}
	
	.bbs-gallery .list li {
		padding:12px 8px;
	}
}
@media screen and (max-width:576px) {	
	.bbs-gallery .list li {
		width: 100%;
	}

	.bbs-gallery .list .con {
		padding-top: 16px;
	}

	.bbs-gallery .list .subject {
		font-size:1.8rem;
		margin-bottom: 12px;
	}

	.bbs-gallery .list .detail {
		font-size:1.5rem;
	}
}


/* Gallery View */
.bbs-gallery .view {
	border-top: 2px solid #171717;
}

.bbs-gallery .view-head {
	padding:30px 40px;
	border-bottom: 1px solid #c7c7c7;
}

.bbs-gallery .view-head .subject {
	font-size:2.4rem;
	font-weight: 700;
	line-height:1.4;
}

.bbs-gallery .view-area {
	padding:40px;
	border-bottom: 1px solid #c7c7c7;
}

.bbs-gallery .view-area p {
	font-size:1.8rem;
	line-height:1.8;
}

.bbs-gallery .view-btns {
	display: flex;
	justify-content: center;
	margin-top:40px;
}

.bbs-gallery .view-btns .button {
	width: 220px;
	height: 48px;
	border-radius:5px;
	font-size:1.6rem;
	font-weight:700;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.bbs-gallery .view-head {
		padding:20px 30px;
	}
	
	.bbs-gallery .view-head .subject {
		font-size:2rem;
	}
	
	.bbs-gallery .view-area {
		padding:30px;
	}
	
	.bbs-gallery .view-area p {
		font-size:1.6rem;
	}

	.bbs-gallery .view-btns {
		margin-top:30px;
	}
	
	.bbs-gallery .view-btns .button {
		width: 160px;
		height: 40px;
		font-size:1.5rem;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.bbs-gallery .view-head {
		padding:16px;
	}
	
	.bbs-gallery .view-head .subject {
		font-size:1.8rem;
	}
	
	.bbs-gallery .view-area {
		padding:16px;
	}
	
	.bbs-gallery .view-area p {
		font-size:1.5rem;
		line-height: 1.6;
	}

	.bbs-gallery .view-btns {
		margin-top:20px;
	}
	
	.bbs-gallery .view-btns .button {
		width: 120px;
		height: 32px;
		font-size:1.4rem;
	}
}
