<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.group-special {
	/* background: #0f0; */
	padding: 0px 0 100px;
}

.group-special h2{
	display: none;
	font-size: 30px;
	font-weight: 700;
	color: #111;
	margin-bottom: 18px;
}

.special-area {
	/* padding-top: 24px; */
	/* border-top: 1px #ddd solid; */
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 150px 30px;
}

.special-item {
	min-width: 0;
}
.special-item .img {
	position: relative;
	width: 100%;
	padding-top: 73%;
}

.special-item .img img {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.special-item .modify{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.7);
	padding: 15px 0;
	text-align: center;
	color: #fff;
}

.product-list {
	margin-top: 10px;
	border-top: 1px solid #555;
}

.product-list .product-item{}
.product-list .product-item .link{
	padding: 16px 10px;
	border-bottom: 1px solid #ddd;
	display: block;
	transition:0.4s;
}
.product-list .product-item .name{
	font-size: 18px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 65px;
}
.product-list .product-item .info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.product-list .product-item .date{
	font-size: 18px;
	font-weight: 300;
	color: #666;
}

.product-list .product-item .price{
	position: relative;	
	font-size: 18px;
	font-weight: 700;
	color: #111;
	/* color: #ff6820; */
	font-style: italic;
	padding-right: 5px;
}

.goods_txt {
	position: absolute;
	right: 5px;
	top: -22px;
	color: #fff;
	padding: 0px 7px;
	font-weight: 300;
	font-size: 12px;
	border-radius:20px;
}


.goods_txt.goods_txt_color_1 { /* 예약가능 */
	background-color:#19b146;
}

.goods_txt.goods_txt_color_2 { /* 출발대기 */
	background-color:#bfa700;
}

.goods_txt.goods_txt_color_3 { /* 출발확정 */
	background-color:#0099FF;
}

.goods_txt.goods_txt_color_4  { /* 집중모객 */
	background-color:#8000FF;
}

.goods_txt.goods_txt_color_5  { /* 마감임박 */
	background-color:#ff0000;
}

.goods_txt.goods_txt_color_6 { /* 예약마감 */
	background-color:#999999;
}

.goods_txt.goods_txt_color_7  { /* 상품준비 */
	background-color:#000000;
}

.goods_txt.goods_txt_color_8  { /* 예약대기 */
	background-color:#995500;
}


.product-list .slick-prev, 
.product-list .slick-next{ 
	font-size: 0px;
	display:block; 
	box-sizing:border-box; 
	padding: 0; 
	cursor: pointer;    
	color: #666;    
	border:0;
	border-radius:0;    
	outline: none;    
	background-color: transparent;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:20px 14px;
	position:absolute;
	bottom: -28px;
	right: 0;
	transition: all 0.2s ease; 
	-o-transition: all 0.2s ease; 
	-ms-transition: all 0.2s ease; 
	-moz-transition: all 0.2s ease;  
	-webkit-transition: all 0.2s ease;
}

.product-list .slick-prev {
	right: 47px;
}

.product-list .slick-prev::before,
.product-list .slick-next::before {
	font-size: 16px;
}

.product-list .slick-prev::before {
	content:"이전";
}

.product-list .slick-next::before {
	content:"다음";
}

.product-list .slick-next::after {
	position: absolute;
	left: -9px;
	top: 7px;
	content: '';
	display: block;
	background: #ddd;
	width: 1px;
	height: 12px;
}


.product-list .slick-prev.slick-disabled::before, 
.product-list .slick-next.slick-disabled::before {
	color: #c7c7c7;
}






/************************ hover ************************/
@media (hover: hover) {

	.product-list .product-item .link:hover {
		text-decoration:none;
		background-color: #f5f5f5;
		transition:0.4s;
	}


}
/************************ hover ************************/




/* 반응형 중간기기 1280px 사이즈 이하*/
@media all and (max-width:1415px){

	

}




/* 반응형 중간기기 1200px 사이즈 이하*/
@media all and (max-width:1170px){
	
	.group-special {
		padding: 0px 15px 30px;
	}



}



/* 반응형 중간기기 768사이즈 이하 */
@media screen and (max-width: 998px) {	

	.product-list .product-item .date {
		font-size: 16px;
	}
	
}



/* 반응형 중간기기 768사이즈 이하 */
@media screen and (max-width: 768px) {	

	.special-area {
		grid-template-columns: 1fr;
	}

	.product-list .product-item .name {
		font-size: 16px;
	}

	.product-list .product-item .date {
		font-size: 16px;
		font-weight: 400;
	}

	.product-list .product-item .price {
	}

}



/* 반응형 작은기기 480사이즈 이하 */
@media screen and (max-width: 480px) {	
	

	.product-list .product-item .info {
		flex-direction: column;
		align-items: flex-start;
	}

	.product-list .product-item .name {
		padding: 0;
	}

	.product-list .product-item .price {
		display:flex;
		align-items:center;
		gap:5px;
		text-align: right;
		margin-right: 0;
		margin-left: auto;
		margin-top: 8px;
	}

	.goods_txt {
		position: initial;
		margin-top: 3px;
	}



}



/* 반응형 작은기기 360사이즈 이하 */
@media screen and (max-width: 360px) {	

	
	

}


</pre></body></html>