@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */

#skipToContent a {z-index:100000;position:absolute;overflow:hidden;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;}
#skipToContent a:focus,
#skipToContent a:active {width:200px;height:50px;background:#21272e;color:#fff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;line-height:50px;outline-color:#f37736;}
a:focus {outline:#f37736;}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}
.fr-box .swiper-wrapper {display:block;}

.contain {max-width:1500px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}

/* header */
#header {position:fixed; top: var(--space-24); left: 50%; width: calc(100% - clamp(15px, calc(48 / var(--inner) * 100vw), 48px) * 2); transform: translateX(-50%); z-index:100; border-radius: var(--radius-24); background: rgba(0, 0, 0, 0.16); backdrop-filter: blur(4px);}
#sub #header {position: sticky; left: auto; transform: none; margin-left: auto; margin-right: auto;}
#header .contain {position:relative; display:flex; align-items:center; justify-content:space-between; max-width: 1500px; height:var(--header-height); z-index:10;}
#header .sitelogo {position: absolute; left: 50%; transform: translateX(-50%); filter: brightness(0) invert(1);}

#gnb {text-align:center; flex:1 1 auto; min-width:0; width:1%;}
#gnb>ul {display:flex; width: 100%;}
#gnb>ul>li {position:relative; padding:0 clamp(10px, calc(40 / var(--inner) * 100vw), 40px);}
#gnb>ul>li:nth-child(3) {margin-right: auto;}
#gnb>ul>li>a {position:relative; display:flex; align-items:center; flex-direction: column; justify-content:center; height:var(--header-height); color:#fff; font-size:var(--font-size-20); font-weight:700; letter-spacing:-.03em; line-height:1.3em;}
#gnb>ul>li>a:after {content:""; position:absolute; top: 10%; width: 8px; height: 8px; background: url('/images/common/gnb-deco.svg') no-repeat center center / contain; opacity: 0; transition:.2s;}
#gnb>ul>li.active>a:after {top: 22%; opacity: 1;}
#gnb .submenu {display: none; position:absolute; left:50%; transform: translateX(-50%); width:100%; min-width: max-content; overflow:hidden; text-align:center; border-radius: var(--radius-24); background: rgba(255, 255, 255, 0.88);box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);backdrop-filter: blur(4px);}
#gnb .submenu>ul {padding:25px 20px;}
#gnb .submenu>ul>li>a {display:block; padding:5px 0; font-size:var(--font-size-18); font-weight: 500; line-height:1.6667em;}
#gnb .submenu>ul>li>a:hover {color:var(--primary-color); font-weight: 600;}

.h-sns {display: flex; gap: var(--space-15); margin-left: var(--space-15);}
.h-sns a {display: flex; align-items: center; justify-content: center; padding: clamp(8px, calc(13 / var(--inner) * 100vw), 13px); border-radius: 100%; background: rgba(255, 255, 255, 0.24);}

#header.active {background: rgba(255, 255, 255, 0.88); box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08); backdrop-filter: blur(4px);}
#header.active .sitelogo {filter: none;}
#header.active #gnb>ul>li>a {color: var(--dark-color);}
#header.active #gnb>ul>li.active>a {color: var(--primary-color);}
#header.active .h-sns a {background: var(--primary-color);}
#header.active .btn-m-menu span {background: var(--dark-color);}
#header.active .btn-m-menu span:before,
#header.active .btn-m-menu span:after {background: var(--dark-color);}

/* for mobile */
.btn-m-menu {display:none; position:relative; width:20px; height:26px;}
.btn-m-menu span {position:absolute; left:0; right:0; top:50%; height:2px; margin-top:-1px; background:#fff;}
.btn-m-menu span:before,
.btn-m-menu span:after {content:" "; position:absolute; left:0; right:0; height:2px; background:#fff;}
.btn-m-menu span:before {top:-7px;}
.btn-m-menu span:after {bottom:-7px;}

.mobile-navigation {display:none; position:fixed; top:0; right:0; width:300px; height:100%; overflow:auto; transition:.2s linear; -ms-transform:translateX(100%); transform:translateX(100%); background:#fff; z-index:102;}
.mobile-navigation .home {display:flex; align-items:center; height:var(--header-height); padding:0 20px; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .nav-menu>ul {border-top:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li {border-bottom:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li>a {position:relative; padding:10px 48px 10px 20px; display:block; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .nav-menu>ul>li>a:after {content:""; position:absolute; top:50%; right:20px; transform:translateY(-75%) rotate(45deg); width:11px; height:11px; border-right:2px solid #505050; border-bottom:2px solid #505050;}
.mobile-navigation .nav-menu>ul>li.active>a {color:#fff; background:var(--primary-color)}
.mobile-navigation .nav-menu>ul>li.active>a:after {transform:translateY(-35%) rotate(-135deg); border-color:#fff;}
.mobile-navigation .nav-menu .submenu {display:none; background:#f8f8f8; color:#454545; font-size:16px; font-weight:400; line-height:1.5em;}
.mobile-navigation .nav-menu .submenu ul li {border-top:1px solid #e5e5e5;}
.mobile-navigation .nav-menu .submenu ul li a {display:block; padding:12px 20px;}
.mobile-navigation .nav-menu .submenu ul li a:hover {color:var(--primary-color);}
.mobile-navigation .close {position:absolute; top:0; right:15px; width:26px; height:var(--header-height); text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top:50%; left:0; width:100%; height:3px; background:#242424; border-radius:3px;}
.mobile-navigation .close:before {transform:rotate(45deg);}
.mobile-navigation .close:after {transform:rotate(-45deg);}
.mobile-overlay {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:0.6; z-index:101;}

html.menu-opened {overflow:hidden;}
html.menu-opened .mobile-navigation {-ms-transform:translateX(0); transform:translateX(0);}
html.menu-opened .mobile-overlay {display:block;}

/* main */
.main-visual {position:relative; overflow:hidden;}
.main-visual .slick-slide {position:relative; height:100vh; overflow:hidden;}
.main-visual .item {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden;}
.main-visual .item .video-js,
.main-visual .item video {position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover;}
.main-visual .item iframe {position:absolute; top:50%; left:50%; width:100vw; height:100vh; -webkit-transform:translate(-50%,-50%); transform:translate(-50%,-50%);}
.main-visual .item img {position:absolute; top:50%; left:0; transform:translateY(-50%); -ms-transform:translateY(-50%); -webkit-transform:translateY(-50%); width:100%; height:auto !important; max-width:100%; min-height:100%; object-fit:cover;}
.slick-dots {display: flex; gap: var(--space-15); position: absolute; bottom: clamp(20px, calc(80 / var(--inner) * 100vw), 80px); left: 50%; transform: translateX(-50%);}
.slick-dots button {display: block; width: 8px; height: 8px; background: #fff; border-radius: 100px; border: 0; opacity: .64; transition: .2s; overflow: hidden; text-indent: -9999px;}
.slick-dots .slick-active button {width: 32px; opacity: 1;} 

.main-section {position: relative; z-index:1; padding: var(--space-140) 0; overflow: hidden;}
.main-section h2 {font-size: var(--font-size-40); font-family: 'Recipekorea'; line-height: 1.4em; color: var(--primary-color); font-weight: 400;}
.main-section.white-color h2 {color: #fff;}
.btn-round {display: block; width: fit-content; padding: 12px 32px; border: 1px solid var(--primary-color); border-radius: 100px; color: var(--primary-color); font-size: var(--font-size-18); font-weight: 600; line-height: 1.7778em;}
.btn-round.type2, .btn-round.type3 {border-color: #fff; background: rgba(255, 255, 255, 0.24); backdrop-filter: blur(2px); color: #fff;} 
.btn-round.type3 {padding: clamp(12px, calc(23 / var(--inner) * 100vw), 23px) 40px; font-size: var(--font-size-20); line-height: 1.7em;}
.btn-round:hover {background: var(--primary-color); border-color: var(--primary-color); color: #fff;}
.btn-round.type2:hover {background: #fff; color: var(--primary-color);}
.btn-plus {display: block; padding: var(--space-15); border: 1px solid #ddd; border-radius: 100%;}
.btn-plus:before {content: ''; display: block; width: 12px; height: 12px; background: url('/images/main/btn-plus.svg') no-repeat center center / contain;}
.btn-plus:hover {border-color: var(--primary-color); background: var(--primary-color);}
.btn-plus:hover:before {filter: brightness(0) invert(1);}

.main-food {position: relative; z-index: 5; background: #fff; }
/* .main-food-cards {display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-24);} */
.main-food-cards {margin:  0 calc(var(--space-24) / -2);}
.main-food-cards .slick-slide {padding: 0 calc(var(--space-24) / 2);}
.main-food-card {position: relative; padding: var(--space-38) 15px; border-radius: var(--radius-40); overflow: hidden;}
.main-food-card:hover {box-shadow: 0 0 24px 0 rgba(42, 82, 26, 0.08);}
.main-food-card:after {content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border: 1px solid var(--third-color); border-radius: var(--radius-40); pointer-events: none;}
.main-food-card h3 {width: fit-content; padding: clamp(4px, calc(8 / var(--inner) * 100vw), 8px) clamp(20px, calc(56 / var(--inner) * 100vw), 56px); margin: 0 auto; border-radius: 100px; border: 1px solid var(--third-color); color: var(--primary-color); font-size: var(--font-size-24); font-weight: 600; line-height: 1.58333em; transition: .2s;}
.main-food-card:hover h3 {background: var(--primary-color); color: #fff;}
.main-food-card .thumb, .food-item .thumb {position: relative; width: 100%; max-width: 265px; margin: 0 auto var(--space-38);}
.main-food-card .thumb:before, .food-item .thumb:before {content: ''; display: block; width: 100%; padding-bottom: 100%;}
.main-food-card .thumb img, .food-item .thumb img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; transition: .5s;}
.main-food-card:hover .thumb img {transform: scale(1.1);}

.main-brand {background: #FCFAEE;}
.main-brand .contain {max-width: calc(50% + 750px); gap: 25px clamp(35px, calc(50 / var(--inner) * 100vw), 100px); margin-right: 0; padding-right: 0;}
.main-brand-slider .slick-slide { padding: 0 var(--space-20);}
.main-brand-slide {position: relative; border-radius: var(--radius-40); overflow: hidden;}
.main-brand-slide h3 {position: absolute; left: 0; bottom: 0; width: 100%; padding: clamp(20px, calc(36 / var(--inner) * 100vw), 36px) clamp(20px, calc(56 / var(--inner) * 100vw), 56px); font-size: var(--font-size-40); font-weight: 700; line-height: 1.29167em; color: #fff}
.main-brand-slide h3 span {display: block; height: 2.58334em; overflow: hidden;}
.main-brand-slide h3 span.inner {transform: translateY(-80px); opacity: 0; transition: .3s;}
.main-brand-slide:hover h3 span.inner {transform: translateY(0); opacity: 1;}
.main-brand-slider .slick-dots {position: unset; width: 100%; transform: none; justify-content: center; max-width: 810px; margin-top: var(--space-50);}
.main-brand-slider .slick-dots button {background: var(--primary-color);}

.main-instagram {background: url('/images/main/bg-instagram.jpg') repeat-x center bottom;}
.main-instagram-cards {display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-48); margin-bottom: var(--space-80);}
.main-instagram-card {display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-40); overflow: hidden; box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);}
.instagram-user {display: flex; align-items: center; gap: var(--space-15); padding: var(--space-24) clamp(15px, calc(32 / var(--inner) * 100vw), 32px);}
.instagram-info {font-size: var(--font-size-24); line-height: 1.25em; font-weight: 700; color: var(--primary-color);}
.instagram-info small {display: block; font-size: var(--font-size-16); line-height: 1.25em; font-weight: 500; color: var(--gray-color);}
.instagram-thumb {position: relative; width: 100%; padding-bottom: 100%;}
.instagram-thumb img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
.instagram-txt {margin: var(--space-24) var(--space-40) var(--space-30); font-size: var(--font-size-22); line-height: 1.7778em; font-weight: 600; overflow: hidden; white-space: normal; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-break: break-all;}
.main-instagram-cards + .btn-round, .main-franchise .btn-round {margin: 0 auto;}

.main-support-cnt {gap: 30px clamp(35px, calc(80 / var(--inner) * 100vw), 80px);}
.main-support-cnt > div {flex: 1; min-width: 1%;}
.main-support-head {display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-30);}
.main-support-head h3 {display: flex; align-items: center; gap: var(--space-15); font-size: var(--font-size-32); line-height: 1.4375em; font-weight: 700; color: var(--primary-color);}
.main-support-head h3:before {content: ''; display: block; width: 16px; height: 16px; background: url('/images/common/gnb-deco.svg') no-repeat center center / contain;}

.main-news-list {border-top: 2px solid #686868;}
.main-news-list li {border-bottom: 1px dashed #ddd;}
.main-news-list li:last-child {border-bottom: 1px solid #ddd;}
.main-news-list a {display: flex; align-items: center; gap: 10px 20px; padding: var(--space-30) var(--space-15); color: #999;}
.main-news-list a .tit {flex: 1; min-width: 1%; font-size: var(--font-size-24); font-weight: 500; color: var(--dark-color); line-height: 1.5833em;  overflow: hidden; white-space: normal; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: keep-all;}
.main-news-list a:hover .tit {color: var(--primary-color);}
.main-event-cards {display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-40);}
.main-event-card {display: flex; flex-direction: column; text-align: center; color: #999; max-width: 320px; width: 100%; margin: 0 auto;}
.main-event-card .thumb {position: relative; width: 100%; padding-bottom: 75.3125%; margin-bottom: 15px; border-radius: var(--radius-24); overflow: hidden;}
.main-event-card .thumb img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
.main-event-card .txt {flex: 1; display: flex; flex-direction: column; justify-content: space-between;}
.main-event-card:hover .tit {color: var(--primary-color);}
.main-event-card .tit {font-size: var(--font-size-20); font-weight: 600; color: var(--dark-color); line-height: 1.7em; overflow: hidden; white-space: normal; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: keep-all;}
.main-franchise {background: url('/images/main/bg-franchise.jpg') no-repeat center center / cover;}
.main-franchise p {margin: 10px 0 var(--space-50);}

/* sub */
.sub-visual {position:relative; overflow:hidden; height:576px; background:#333; color:#fff; text-align:center;}
.sub-visual .bg {position:absolute; top:0; left:0; overflow:hidden; width:100%; height:100%; background-repeat:no-repeat; background-position:50% 0; background-size:cover; transition:2s; opacity:0; transform:scale(1.1);}
.sub-visual .inner {position:absolute; top:50%; left:0; width:100%; transform:translateY(-50%);}
.sub-visual h2 {font-size:52px; font-weight:700; line-height:1.3em; letter-spacing:-.03em;}
.sub-visual .bg1 {background-image:url("/images/common/sv1.jpg");}
.sub-visual .bg2 {background-image:url("/images/common/sv2.jpg");}
.sub-visual .bg3 {background-image:url("/images/common/sv3.jpg");}
.sub-visual .bg4 {background-image:url("/images/common/sv4.jpg");}
.sub-visual .bg5 {background-image:url("/images/common/sv5.jpg");}
.sub-visual.none-lnb .inner {padding:0;}
.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.lnb-wrap {margin-bottom: var(--space-100); padding: 0 var(--container-space);}
.lnb ul {display:flex; width: max-content; margin: 0 auto;}
.lnb ul li {flex:1 1 auto; width: auto; padding: 0 8px; }
.lnb ul li a {display:flex; flex-direction:column; justify-content:center; align-items:center; width:100%; padding:10px var(--space-30); border-radius: 100px; background: #F6F9F5; color:var(--primary-color); font-size:var(--font-size-18); font-weight:700; line-height:1.7778em; letter-spacing:-.03em;}
.lnb ul li.active a {background:var(--primary-color);color:#fff;}

.sub-title {padding-bottom:var(--space-80); max-width:1500px; margin:0 auto; text-align: center; text-align: center;}
.sub-title.blind {display: none;}
#contArea.wide .sub-title {padding-left:var(--container-space); padding-right:var(--container-space);}
.sub-title h2 {font-family: Recipekorea; font-size: clamp(30px, calc(40 / var(--inner) * 100vw), 40px); font-weight: 400; line-height: 1.4em; color: var(--primary-color);}

#contArea {max-width:1500px; padding-left:var(--container-space); padding-right:var(--container-space);  padding-top: var(--space-140); margin:0 auto;}
#contArea.wide {max-width:100%; padding-left: 0; padding-right: 0;}

.real-cont {padding-bottom:clamp(40px, calc( 120 / var(--inner) * 100vw ), 120px);}
.icon img {vertical-align: middle; margin-top: -.02em;}
.txt-center {text-align: center;}
.desc p:not(:last-child) {margin-bottom: 1.58333em;}

.flex-wrap {display: flex;}
.flex-center {display: flex; justify-content: center;}
.flex-between {display: flex; justify-content: space-between;}
.flex-mid {display: flex; align-items: center;}
.flex-bottom {display: flex; align-items: flex-end;}
.flex-column {display: flex; flex-direction: column;}
.flex1 {flex: 1; min-width: 0;}

.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}
.fw800 {font-weight: 800;}

.font-recipekorea {font-family: Recipekorea;;}

.fz14 {font-size: var(--font-size-14);}
.fz18 {font-size: var(--font-size-18); line-height: 1.7778em;}
.fz20 {font-size: var(--font-size-20); line-height: 1.5em;}
.fz24 {font-size: var(--font-size-24); line-height: 1.5833em;}
.fz28 {font-size: var(--font-size-28); line-height: 1.5em;}
.fz32 {font-size: var(--font-size-32); line-height: 1.4375em;}
.fz40 {font-size: var(--font-size-40); line-height: 1.4em;}
.fz44 {font-size: var(--font-size-44); line-height: 1.31818em;}
.fz48 {font-size: var(--font-size-48); line-height: 1.25em;}
.fz64 {font-size: var(--font-size-64); line-height: 1.25em;}

.mb24 {margin-bottom: var(--space-24);}
.mb30 {margin-bottom: var(--space-30);}
.mb40 {margin-bottom: var(--space-40);}
.mb50 {margin-bottom: var(--space-50);}
.mb60 {margin-bottom: var(--space-60);}
.mb80 {margin-bottom: var(--space-80);}
.mb100 {margin-bottom: var(--space-100);}
.mb120 {margin-bottom: var(--space-120);}

.primary-color {color: var(--primary-color);}
.secondary-color {color: var(--secondary-color);}
.dark-color {color: var(--dark-color);}
.gray-color {color: var(--gray-color);}
.gray-color2 {color: var(--gray-color2);}
.white-color {color: #fff;}

/* footer */
#footer {padding: clamp(30px, calc(64 / var(--inner) * 100vw), 64px) 0; background:var(--primary-color); color: #fff;}
#footer .contain {display: flex; gap: 20px 35px; max-width: 1660px;}
#footer .contain > div {gap: var(--space-20);}
.f-logo {display: block; width:fit-content}
address ul {display: flex; flex-wrap: wrap; gap: 0 clamp(20px, calc(64 / var(--inner) * 100vw), 64px); }
address li {display: flex; gap: 0 clamp(10px, calc(40 / var(--inner) * 100vw), 40px); margin-bottom: 4px; font-style: normal;}
.f-cnt {align-items: flex-end;}
.f-brands a {display: block;}
.f-brands a:not(:last-child) {margin-bottom: clamp(5px, calc(10 / var(--inner) * 100vw), 10px);}
.f-func {gap: 20px var(--space-40); flex-wrap: wrap;}
.f-link {gap: var(--space-24);}
.f-link a {display: flex; align-items: center; gap: 10px;}
.copyright {color: #A2C495; font-weight: 500;}

/* float-banner */
.float-banner {display: flex; flex-direction: column; gap: clamp(30px, calc(100 / var(--inner) * 100vw), 180px); align-items: center; position: fixed; right: var(--container-space); bottom: var(--container-space); z-index: 100;}
.float-banner a {display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: clamp(50px, calc(120 / var(--inner) * 100vw), 120px); height: clamp(50px, calc(120 / var(--inner) * 100vw), 120px); border-radius: 100%; background: #E25B91; color: #fff; box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08); font-size: var(--font-size-20); line-height: 1.7em; font-weight: 700;}
.float-banner ul {display: flex; flex-direction: column; gap: 8px;}
.float-banner ul:nth-child(2) a { width: clamp(50px, calc(96 / var(--inner) * 100vw), 96px); height: clamp(50px, calc(96 / var(--inner) * 100vw), 96px); background: #fff; color: var(--primary-color); font-size: var(--font-size-18); line-height: 1.7778em;}
.float-banner .icon {display: flex;}
