/* ------------------------------------
  slide
------------------------------------ */
.wideslider {
	width: 100%;
	height: 400px;
	margin: 0 auto;
	padding: 5px 0;
	text-align: left;
	position: relative;
	overflow: hidden;
	visibility: hidden;
	background: #000;
}
.wideslider.small {
	height: 240px;
}
.wideslider ul, .wideslider ul li {
	float: left;
	display: inline;
	overflow: hidden;
}
.wideslider ul li {
	position: relative;
	background: #FFF;
}
.wideslider ul li a {
	display: block;
}
.wideslider ul li p {
	width: 100%;
	padding: 30px 50px 50px 50px;
	color: #FFF;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
}
.wideslider ul li img {
	width: 100%;
}
.wideslider_base {
	top: 5px;
	position: absolute;
}
.wideslider_wrap {
	top: 0;
	position: absolute;
	overflow: hidden;
}
.slider_prev, .slider_next {
	top: 0;
	/*  overflow: hidden;*/
	position: absolute;
	z-index: 10;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease-out;
}
.slider_prev {
	border-right: 5px solid #000;
}
.slider_next {
	border-left: 5px solid #000;
}
.btn_prev, .btn_next {
	position: absolute;
	top: 50%;
	z-index: 99;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.btn_prev {
	left: 20px;
}
.btn_next {
	right: 20px;
}
.btn_prev:before, .btn_next:before {
	content: "\e902";
	font-family: "hojin";
	color: #fff;
	display: block;
	font-size: 2em;
}
.btn_next:before {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.btn_prev:before {
	-webkit-transform: translate(0, -50%) rotate(180deg);
	transform: translate(0, -50%) rotate(180deg);
}
.slider_prev:hover, .slider_next:hover {
	background: rgba(0, 0, 0, 0.6);
}
.pagination {
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 10px;
	text-align: center;
	position: absolute;
	z-index: 99;
}
.wideslider.small .pagination {
	bottom: 12px;
}
.pagination a {
	margin: 0 3px;
	width: 20px;
	height: 10px;
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	background: #FFF;
	opacity: 1!important;
	transition: all 0.3s ease-out;
}
.pagination a.active, .pagination a:hover {
	background: #cdc08d;
}

@media only screen and (max-width: 768px) {
	.wideslider_base {
		top: 0;
	}
	.wideslider ul li p {
		display: none;
	}
	.slider_prev,
	.slider_next,
	.btn_prev,
	.btn_next,
	.pagination {
		display: none;
	}
}

/* ------------------------------------
  in case of only one slide
------------------------------------ */
.oneSlide .slider_prev,
.oneSlide .slider_next,
.oneSlide .btn_prev,
.oneSlide .btn_next,
.oneSlide .pagination {
	display: none;
}
.oneSlide .wideslider_wrap > ul:not(.mainList) {
	visibility: hidden;
}

/* ------------------------------------
	Opacity Hover
------------------------------------ */
.wideslider ul li a {
	transition: all 0.3s ease-out;
}

@media only screen and (min-width: 768px) {
	.wideslider ul li a:hover {
		opacity: 0.9;
	}
}