@charset "utf-8";
.item__contents{
	padding: 0 1% 10%;
	display: flex;
	justify-content: space-between;
}
.item__slider{
	width: 55%;
}
.item__thumb__box{
	width: 45%;
}
.item__contents img,
.item__contents video{
	width: 100%;
	height: auto;
}

.item__slider .slick-prev{
	left: 1%;
    bottom: 50%;
}
.item__slider .slick-next{
	right: 1%;
    bottom: 50%;
}

.item__thumb .slide__box{
	width: 25%!important;
	padding: 0.5%;
	cursor: pointer;
}


.item__thumb .slick-track {
	transform:unset!important;
	display: flex;
	flex-wrap: wrap;
}

.btn__area a{
	display: block;
	width: 80%;
	max-width: 300px;
	margin: 30px auto 0;
	text-align: center;
	color: #fcfaf3;
	font-size: 16px;
	line-height: 1;
	padding: 15px 0;
	border-radius: 10px;
	background-color: #94a59d;
	position: relative;
}
.btn__area a::before,
.btn__area a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 5%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fcfaf3;
  transform-origin: calc(100% - 1px) 50%;
}

.btn__area a::before {
  transform: rotate(45deg);
}

.btn__area a::after {
  transform: rotate(-45deg);
}

@media (min-width: 751px) {
	.item__thumb .slide__box{
		transition: all 0.6s ease;
	}
	.item__thumb .slide__box:hover{
		opacity: 0.8;
		filter: blur(1px);
	}
}
@media (max-width: 750px) {
	.item__contents{
		padding: 0 5% 10%;
		display: block;
	}
	.item__slider{
		width: 100%;
	}
	.item__thumb__box{
		width: 100%;
		padding-top: 5%;
	}
	.item__slider .slick-dots li {
		width: 12px;
		margin: 0 4px;
	}
	.item__thumb .slick-list{
		padding: 0!important;
	}
	.item__thumb .slide__box{
		width: 20%!important;
	}
	.btn__area a{
		font-size: 13px;
	}
}
