


/** ================ // menu START ~ ================ **/ 
#menuCom {}

.menuCont {
	width:100%;
	padding:13.5rem 0 12rem; 
	position:relative;
}

.menuTopWrap {
    position: relative;
	overflow:hidden;
}

.menuTopBanner {
    width: calc(100% - 2rem);
    max-width: 176.2rem;
    margin: 0 auto;
    border-radius: 60px;
    border: 5px solid #fbad18;
    padding: 18.3rem 0rem;
    text-align: center;
    background: url(../images/menuTopBannerBg.jpg) no-repeat center / cover;
    position: relative;

}


.menuContInner {
	width:100%;
	max-width:124rem;
	padding :0 2rem;
	margin:0 auto;
}

.menuTBTitle {
    color: #fff;
    font-size: 8rem;
    text-shadow: 0px 3px 5px rgb(0, 0, 0, 0.5);
}
.menuTBTxt {
    font-size: 2.8rem;
    margin-top: 4.7rem;
    color: #fff;
    font-weight: 400;
    font-family: "Pretendard";
}


/* --- 탭 & 그리드 --- */

#menuTabs [data-ca="__ALL__"]{display:none !important;}
.hidden{display:none !important;}
  
  
.menuTabs {
    color: #fff;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 120rem;
    justify-content: space-between;
}

.menuTabs button {
    background: none;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding: 2.3rem 0 1.6rem;
    color: #fff;
    width: calc(100%);
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    border-radius: 40px 40px 0 0;
    background: #111;
}
.menuTabs button.active{
	background:#fbad18;
	color:#111;
	font-weight: 800;
}

.menuGrid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 0 4rem;
    margin-top: 6rem;
}


.tab_round {
    display: flex;
    gap: 0;
    justify-content: center;
}
.tab_round li {
    cursor: pointer;
    /* padding: 8px 14px; */
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.3rem;
    color: #433735;
    padding: 2rem 0;
    width: 18.8rem;
    text-align: center;
    background: #efb053;
}
.tab_round li.active {
    background: #ad3e2d;
    color: #fff;
    /* border-color: #111; */
}

.tab_cont.active {
	background:#999;
}

.thumbs { display:grid; grid-template-columns:repeat(auto-fit, minmax(120px,1fr)); gap:12px; }
.thumbs img { display:block; width:100%; height:auto; }

/** ================ ~ menu END // ================ **/ 


.menuCard {
    /* border: 1px solid #eee; */
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    /* transition: box-shadow .2s; */
    position: relative;
    margin-top: 0;
}



.menuCard a{display:block;color:inherit;text-decoration:none;}
.menuThumb {
    aspect-ratio: 1/1;
    background: #f7f7f7;
    overflow: hidden;
    border-radius: 40px;
    border: 3px solid #fbad18;
	position:relative;
}
.menuThumb {
    aspect-ratio: 1/1;
    background: #f7f7f7;
    overflow: hidden;
    border-radius: 40px;
    border: 3px solid #fbad18;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	background:#fde8b1;
	transition:all 0.3s ease-in-out;
}

.menuThumb .menuThumbImg {
    width: 81.675%;
    max-width: 30rem;
    margin: 0 auto;
}

.menuThumb .menuThumbImg img {
	width:100%;
	height:auto;
}

.menuMVBtn {
	width:8.8rem;
	height:8.8rem;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	opacity:0;
	transition:all 0.3s ease-in-out;
}

.menuMVBtn img {
	width:100%;
	height:auto;
}
.menuThumb:hover {
	background:#fbad18;
}
.menuThumb:hover .menuMVBtn {opacity:1;} 


.menuTitleBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
    margin-bottom: 4.2rem;
}


.menuTitle {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-family: "Pretendard";
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 3rem;
    word-break: keep-all;
}

.menuSubtitle {
    font-family: "Pretendard";
    font-size: 2.2rem;
    color: #666666;
    text-align: center;
    position: relative;
    display: inline-flex;
    padding-left: 2.7rem;
    margin-top: 1.7rem;
    font-weight: 400;
}

.menuSubtitle::before {
    content: '';
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/menuPlusIcon.png) no-repeat center / cover;
}


.hidden{display:none!important}

/* --- 모달 --- */
.modalBack {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.52);
    display: none;
    z-index: 9998;
    height: 150vh;
    width: 100%;
}
.modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    height: auto;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    display: none;
    z-index: 9999;
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
    max-width: 88.1rem;
    border: 3px solid #fbad18;
}
.modalHeader{padding:12px 16px;border-bottom:1px solid #eee;display:flex;align-items:center;justify-content:space-between;}
.modalClose {
    background: none;
    border: 0;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 4rem;
    top: 3rem;
    z-index: 10;
	color: #111;
}
.modalBody{height:calc(100% - 53px);}

.signature {
    font-size: 2rem;
    color: #fff;
    padding: 0.9rem 1.4rem 0.7rem;
    background: #d51900;
    border-radius: 14.5px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
	margin-bottom:1.7rem;
}


/* --- 슬라이더 안 컨텐츠 --- */
.swiper{width:100%;height:100%;}

.slideWrap {
    display: grid;

    gap: 0;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow: auto;
    grid-template-columns: 0.454fr 0.546fr;
    grid-template-columns: minmax(0, .454fr) minmax(0, .546fr);
}

.slideCover {
    width: 100%;
    height: 100%;
    min-height: 38rem;
    background: #fde8b1;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideCoverImg {
    width: 75.52%;
    max-width: 30rem;
    margin: 0 auto;
}
.slideCoverImg img{width:100%;height:100%;object-fit:cover;display:block;}



.slideBody {
    padding: 6.5rem 6rem 7rem 6rem;
    position: relative;
}

.slideBody h4 {
    font-size: 3.6rem;
    word-break: keep-all;
    line-height: 1.2;
}

.slideBody .slide-sub {display:none;}
.slideBody .cat{display:none;}
.slideBody .cont {
    font-size: 15px;
    line-height: 1.7;
    word-break: keep-all;
    font-family: "Pretendard", sans-serif;
    line-height: 3rem;
    font-size: 2.2rem;
    color: #333;
    margin-top: 3.1rem;
}
/* 네비게이션 버튼 */

.menuSlideBtn {
    position: relative;
    width: auto;
    display: flex;
    position: absolute;
    right: 5em;
    bottom: 3rem;
}
.menuSlideBtn .swiper-button-prev, .menuSlideBtn .swiper-button-next {
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    transform: unset!important;
    width: 5rem;
    height: 5rem;
    margin-top: 0;
	margin:0 0.5rem;
}
.menuSlideBtn .swiper-button-prev img, .menuSlideBtn .swiper-button-next img {width:100%; height:auto; opacity:0;}
.menuSlideBtn .swiper-button-prev:after, .menuSlideBtn .swiper-rtl .swiper-button-next:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #333;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.menuSlideBtn .swiper-button-prev:before, .menuSlideBtn .swiper-rtl .swiper-button-next:before {
    content: '';
    width: 46%;
    height: 38%;
    background: url(../images/menuSlideArrowLeft01.png) no-repeat center / cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}


.menuSlideBtn .swiper-button-next:after, .menuSlideBtn .swiper-rtl .swiper-button-prev:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}

.menuSlideBtn .swiper-button-next:before, .menuSlideBtn .swiper-rtl .swiper-button-prev:before {
    content: '';
    width: 46%;
    height: 38%;
    background: url(../images/menuSlideArrowRight01.png) no-repeat center / cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}


.swiper-pagination-bullet{opacity:.4}
.swiper-pagination-bullet-active{opacity:1}



@media (max-width:1024px){.menuGrid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:900px){.slideWrap{grid-template-columns:1fr;}}
@media (max-width:768px){.menuGrid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:768px) {
	
	.menuCont {
		width: 100%;
		padding: 18.6667vw 0;
		position: relative;
	}

	.menuTopWrap {
		position: relative;
	}
	
	.menuTopBanner {
		width: calc(100% - 2rem);
		border: 3px solid #fbad18;
		padding: 18.1333vw 0rem;
		border-radius: 29.3px;
	}
	
	.menuTBTitle {
		font-size: 10.4160vw;
		text-shadow: 0px 0px 5px #111;
		line-height: 11.4560vw;
	}

	.menuTBTxt {
		font-size: 3.6453vw;
		margin-top: 6.1333vw;
	}
	
	.menuTabs {
		align-items: center;
		position: relative;
		bottom: unset;
		left: unset;
		transform: unset;
		flex-wrap: wrap;
		flex-direction: row;
		padding: 0 8.0000vw;
		margin-top: 5.3333vw;
	}

	.menuTabs button {
		font-size: 3.6453vw;
		padding: 2.4000vw 0;
		color: #fff;
		width: calc(100%/3 - 1.9vw);
		border-radius: 29.65px;
		margin: 2.0000vw 0;
	}


	.menuContInner {
		padding: 0 1.5rem;
	}
	
	.menuThumb {border-radius: 19.53px;}


	.menuGrid {
		gap: 0 1.4rem;
		display: grid;
		margin-top: 4.4000vw;
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
	
	.menuTitle {
		margin: 0;
		text-align: center;
		font-size: 3.6453vw;
		line-height: 1;
		margin-top: 3.7333vw;
	}


	.menuCard {
		border-radius: 0;
		overflow: hidden;
		background: #fff;
		position: relative;
		margin-top: 4vw;
	}
	
	
	.menuMVBtn {
		width: 10.6667vw;
		height: 10.6667vw;
	}
	
	.modal {
		width:71.61%;
		border-radius: 29.3px;
	}
	
	.slideBody {
		padding: 6.6667vw 6.1333vw 8.6667vw 6.1333vw;
		min-height: 66.4933vw;
		height: auto;
	}
		
	.slideCover {
		width: 100%;
		height: 61.84vw;
		min-height: unset;
		border-radius: 0;
		overflow: hidden;
	}

	.slideBody .cont {
		line-height: 4.6880vw;
		font-size: 3.6453vw;
		color: #333;
		margin-top: 5.0667vw;
	}
	
	.slideBody h4 {
		font-size: 6.7707vw;
	}
	
	.modalClose {
		right: 5.0667vw;
		top: 5.0667vw;
	}
	.menuSlideBtn {
		right: 4.0667vw;
		bottom: 3.5667vw;
	}
	.menuSlideBtn .swiper-button-prev, .menuSlideBtn .swiper-button-next {
		width: 8.0720vw;
		height: 8.0720vw;
		margin-top: 0;
		margin: 0 0.5rem;
	}




}




.menuThumb { position: relative; }
.menuBadges { position:absolute; display:flex; gap:6px; z-index:2; }
.menuBadges.tl { top:8px; left:8px; }
.menuBadges.tr { top:8px; right:8px; }
.badge { height:20px; vertical-align:middle; }

.badge-spicy { position:absolute; right:8px; bottom:8px; z-index:2; }
.badge-spicy .badge-hot { height:22px; }

.menuTitle {align-items:center; gap:6px; flex-wrap:wrap; }
.chip {
  display:inline-block; padding:2px 6px; font-size:12px; line-height:1.4;
  border-radius:10px; border:1px solid #ccc;
}
.chip-sig { border-color:#333; }
.chip-rec { border-color:#ff6c00; }
.chip-new { border-color:#a91615; }


.badge {
    display: inline-block;
    margin-right: 6px;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 10px;
    background: #eee;
    color: #333;
    font-size: 3rem;
    line-height: 1;
    padding: 1.2rem 1.8rem 1.1rem;
    background: #d51900!important;
    color: #FFF;
    height: auto;
    border-radius: 30px;
    position: absolute;
    left: 2.2rem;
    top: 2rem;
    text-transform: uppercase;
}



.slideBody .tags {
    margin-bottom: 1.7rem;
}


.Slidebadge {
	display: inline-block;
	margin-right: 6px;
	border-radius: 10px;
	background: #eee;
	color: #333;
	font-size: 2rem;
	line-height: 1;
	padding: 0.7rem 1.3rem 0.6rem;
	background: #d51900!important;
	color: #FFF;
	height: auto;
	border-radius: 30px;
	position: relative;
	text-transform: uppercase;
	font-family: 'Paperlogy-7Bold';
}

/*

.badge-sig    { background:#333; color:#fff; }
.badge-rec    { background:#ff6c00; color:#fff; }


.badge-hot    { background:#e5533d; color:#fff; }

*/

.badge-summer {background: #04b1e3!important;}
.badge-best {color:#111; background: #fbad18!important;}
.badge-new {
    background: #ff5a00!important;
}

@media (max-width:768px) {
	.badge {
		font-size: 3.3840vw;
		padding: 1.47333vw 2.6667vw 1.3333vw 2.6667vw;
		top: 2.6667vw;
		left: 2.6667vw;
	}
	.Slidebadge {font-size: 3.25vw; padding: 1.07vw 2.13vw;}
	.slideBody .tags {margin-bottom: 3.20vw;}
	
	
	.menuSubtitle {
		margin-top: 2.1333vw;
		padding-left: 3.6640vw;
		font-size: 2.8640vw;
		font-weight: 400;
	}

	.menuSubtitle::before {
		width: 2.8640vw;
		height: 2.8640vw;
	}
	
	.menuTitleBox {
		height: 13vw;
		margin-bottom: 0;
	}

}