/* ==================================================
	갤러리 Slick
================================================== */
.galley_scon {
	width: 100%;
	padding: 50px 55px;
	background: #f7f7f7;
	font-family: 'Noto Sans KR';
	font-style: normal;
}

.gimg {
	position: relative;
	margin: 0 10px;
	padding: 0 2%;
	text-align: center;
}

.gimg a {
	display: block;
	position: relative;
	/*-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;*/
}

.gimg a .gallery-thum-box {
	position: relative;
	padding-top: 67.85%;
	overflow: hidden;
	border: 1px solid #d9d9d9;
}

.gimg a .gallery-thum-box .gallery-thum {
	/*position: absolute;*/
	top: 0px;
	left: 0px;
	right: 0;
	bottom: 0;
	display: block;
	overflow: hidden;
}

.gimg a .gallery-thum-box .gallery-thum img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	object-fit: cover;
	object-position: 50% 0;
}

.gimg a:hover .gallery-thum-box .gallery-thum img {
	-webkit-transform: scale(1.1) rotate(0.02deg);
	-moz-transform: scale(1.1) rotate(0.02deg);
	-ms-transform: scale(1.1) rotate(0.02deg);
	-o-transform: scale(1.1) rotate(0.02deg);
	transform: scale(1.1) rotate(0.02deg);
}

.gallery-txt-con {
	margin-top: 20px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
}

/* 슬라이더 화살표 */
.gallery_prev,
.gallery_next {
	width: 35px;
	height: 35px;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	padding: 0;
	z-index: 20;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.gallery_prev {
	left: -33px;
	background: url('../images/icon/garrow_previous.png');
}

.gallery_next {
	right: -33px;
	background: url('../images/icon/garrow_next.png');
}

/* 모바일CSS */
@media all and (max-width:1023px) {
	.galley_scon {
		width: 100%;
		padding: 30px 45px;
		background: #f7f7f7;
	}

	.gallery-txt-con {
		margin-top: 15px;
		font-size: 1.7rem;
	}
}

@media all and (max-width:640px) {
	.galley_scon {
		padding: 25px 40px;
	}

	.gallery_prev,
	.gallery_next {
		width: 30px;
		height: 30px;
	}

	.gallery_prev {
		left: -26px;
		background: url('../images/icon/garrow_previous.png');
		background-size: 30px 30px;
	}

	.gallery_next {
		right: -26px;
		background: url('../images/icon/garrow_next.png');
		background-size: 30px 30px;
	}
}

/* ==================================================
	갤러리 리스트
================================================== */
.gallery_list {
	/*margin-top: 50px;*/
	/*padding: 0 0 40px 0;*/
	/*border-top: 1px solid #000;*/
	border-bottom: 1px solid #ddd;
	/*font-family: 'Noto Sans KR';*/
	font-style: normal;
}

.gallery_list>ul:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.gallery_list>ul>li {
	float: left;
	width: 23.5%;
	margin-left: 2%;
	margin-bottom: 40px;
}

.gallery_list>ul>li:first-child {
	margin-left: 0;
}

.gallery_list>ul>li a {
	display: block;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.gallery_list>ul>li a .bgallery-thum-box {
	position: relative;
	padding-top: 67.85%;
	overflow: hidden;
	border: 1px solid #d9d9d9;
}

.gallery_list>ul>li a .bgallery-thum-box .bgallery-thum {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0;
	bottom: 0;
	display: block;
	overflow: hidden;
}

.gallery_list>ul>li a .bgallery-thum-box .bgallery-thum img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	object-fit: cover;
	object-position: 50% 0;
}

.gallery_list>ul>li a:hover .bgallery-thum-box .bgallery-thum img {
	-webkit-transform: scale(1.1) rotate(0.02deg);
	-moz-transform: scale(1.1) rotate(0.02deg);
	-ms-transform: scale(1.1) rotate(0.02deg);
	-o-transform: scale(1.1) rotate(0.02deg);
	transform: scale(1.1) rotate(0.02deg);
}

.bgallery-txt-con {
	margin-top: 10px;
}

.bgallery-txt-con .gtit {
	display: block;
	font-size: 1.1rem;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	line-height: 2rem;
	min-height: 25px;
	max-height: 25px;
	color: #000;
}

.bgallery-txt-con .gdate {
	display: block;
	font-size: 1rem;
	color: #666;
	margin-top: 3px;
}

/* 모바일CSS */
@media all and (min-width:1023px) {
	.gallery_list>ul>li:nth-child(4n+1) {
		clear: both;
		margin-left: 0;
	}
}

@media all and (max-width:1023px) {
	.gallery_list {
		margin-top: 40px;
		padding: 0 0 30px 0;
	}

	.gallery_list>ul>li {
		width: 48%;
		margin-left: 4%;
		margin-top: 30px;
	}

	.gallery_list>ul>li:nth-child(2n+1) {
		clear: both;
		margin-left: 0;
	}

	.bgallery-txt-con .gtit {
		font-size: 1.4rem;
		line-height: 2.2rem;
		min-height: 30px;
		max-height: 30px;
	}

	.bgallery-txt-con .gdate {
		font-size: 1.2rem;
	}
}

@media all and (max-width:640px) {
	.gallery_list {
		margin-top: 30px;
		padding: 0 0 20px 0;
	}

	.gallery_list>ul>li {
		margin-top: 20px;
	}

	.bgallery-txt-con .gtit {
		font-size: 1.8rem;
		line-height: 1.9rem;
		min-height: 25px;
		max-height: 25px;
	}

	.bgallery-txt-con .gdate {
		font-size: 1.1rem;
	}
}

@media all and (max-width:640px) {
	.bgallery-txt-con .gtit {
		font-size: 1.2rem;
		line-height: 1.8rem;
	}

}

/* ==================================================
	페이징
================================================== */
.prd_paging {
	margin-top: 20px;
	text-align: center;
}

.prd_paging a,
.prd_paging em {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 3px;
	line-height: 2.2em;
	vertical-align: top;
}

.prd_paging a:hover,
.prd_paging em {
	color: #0266E3;
	font-weight: 700;
}

.prd_paging .first {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	background: url("../images/form/btnFirst.png") 50% 50% no-repeat;
}

.prd_paging .first:hover {
	background: #0266E3 url("../images/form/btnFirst_on.png") 50% 50% no-repeat;
	border: 1px solid #0266E3;
}

.prd_paging .prev {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	margin-right: 20px;
	background: url("../images/form/btnPrev.png") 50% 50% no-repeat;
}

.prd_paging .prev:hover {
	background: #0266E3 url("../images/form/btnPrev_on.png") 50% 50% no-repeat;
	border: 1px solid #0266E3;
}

.prd_paging .next {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	margin-left: 20px;
	background: url("../images/form/btnNext.png") 50% 50% no-repeat;
}

.prd_paging .next:hover {
	background: #0266E3 url("../images/form/btnNext_on.png") 50% 50% no-repeat;
	border: 1px solid #0266E3;
}

.prd_paging .last {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	background: url("../images/form/btnLast.png") 50% 50% no-repeat;
}

.prd_paging .last:hover {
	background: #0266E3 url("../images/form/btnLast_on.png") 50% 50% no-repeat;
	border: 1px solid #0266E3;
}

.hide {
	display: none;
}

@media screen and (max-width:800px) {
	.prd_paging {
		position: relative;
		margin-top: 10px;
		padding: 30px 90px 0;
	}

	.prd_paging a,
	.prd_paging em {
		width: 35px;
		height: 35px;
		margin: 0 2px 5px;
	}

	.prd_paging .first {
		position: absolute;
		left: 0;
		top: 30px;
	}

	.prd_paging .prev {
		position: absolute;
		left: 40px;
		top: 30px;
	}

	.prd_paging .next {
		position: absolute;
		right: 40px;
		top: 30px;
	}

	.prd_paging .last {
		position: absolute;
		right: 0;
		top: 30px;
	}

	.prd_paging .first,
	.prd_paging .first:hover,
	.prd_paging .prev,
	.prd_paging .prev:hover,
	.prd_paging .next,
	.prd_paging .next:hover,
	.prd_paging .last,
	.prd_paging .last:hover {
		margin: 0;
		background-size: auto 11px;
	}
}

@media screen and (max-width:645px) {
	.prd_paging {
		margin-top: 5px;
		padding: 25px 30px 0;
	}

	.prd_paging .first,
	.prd_paging .last {
		display: none;
	}

	.prd_paging .prev {
		left: 0;
		top: 22px;
	}

	.prd_paging .next {
		right: 0;
		top: 22px;
	}

	.prd_paging a,
	.prd_paging em {
		width: 25px;
		height: 25px;
		font-size:1.7rem;
		line-height: 1;
	}
}

@media screen and (max-width:450px) {
	.prd_paging {
		padding: 25px 15px 0;
	}

	.prd_paging .prev {
		top: 23px;
	}

	.prd_paging .next {
		top: 23px;
	}

	.prd_paging a,
	.prd_paging em {
		width: 20px;
		height: 20px;
		font-size:1.6rem;
	}
}