@charset "utf-8";
@import "font.css";
/* font */
:root{
    --koEBfont: 'TJJoyofsingingEB_TTF','Noto Sans KR', 'sans-serif';
    --koBfont: 'TJJoyofsingingB_TTF','Noto Sans KR', 'sans-serif';
    --koMfont: 'TJJoyofsingingM_TTF','Noto Sans KR', 'sans-serif';
    --koLfont: 'TJJoyofsingingL_TTF','Noto Sans KR', 'sans-serif';
}
/* 초기화 */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul{
    list-style: none;
}
a {
    text-decoration: none;
    color: #333;
}
img{
    vertical-align: top;
}
/* -------------------------- */
/* 공통클래스 */
body{
    font-family: var(--koMfont);
}
.container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
}
/* -------------------------- */
/* ====== mobile menu ====== */
.mb-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 22px 3%;
    overflow-y: auto;
    transition:  right 0.2s linear;
}
.mb-menu.active{
    right:0;
}
.mb-menu .mb-menu-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 35px 0;
}
.mb-menu .mb-menu-title .mb-logo{}
.mb-menu .mb-menu-title .mb-logo a{
    display: block;
    width: 230px;
}
.mb-menu .mb-menu-title .mb-logo a img{
    width: 100%;
}
.mb-menu .mb-menu-title .mb-btn-close{
    display: block;
    width: 30px;
    height: 30px;
}
.mb-menu .mb-menu-title .mb-btn-close span{
    font-size: 30px;
    color: #222;
}
.mb-menu .mb-main-menu {
    padding-top: 36px;
}
.mb-menu .mb-main-menu > li{
    padding: 5px;
}
.mb-menu .mb-main-menu > li .mb-menu-list{
    display: block;
    padding: 15px 0;
    font-size: 20px;
    color: #222;
    font-weight: 700;
    letter-spacing: -0.4px;
    width: 100%;
    position: relative;
}
.mb-menu .mb-main-menu > li .mb-menu-list span{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg) ;
    color:#333;
    font-size: 30px;
    opacity: 0.7;
    transition:  all .3s linear;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active {
    color: var(--mainColor);
}
.mb-menu .mb-main-menu > li .mb-menu-list.active span{
    transform: translateY(-50%) rotate(180deg);
    color: var(--mainColor);
}

.mb-menu .mb-main-menu > li .mb-submenu{
    padding-bottom: 20px;
    display: none;
}
.mb-menu .mb-main-menu > li .mb-submenu li{
    padding: 8px 0 ;
}
.mb-menu .mb-main-menu > li .mb-submenu li a{
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.466667px;
    color: #777;
}


/* ====== header ====== */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #fff;
    padding: 30px 0 0px;
    overflow: hidden;
    z-index: 9999;
    transition: all .4s;
    /* position: relative; */
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.header.down{
    height: 500px;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.header.down::before{
    opacity: 1;
    width: 100%;
    height: 1px;
    background: #ddd;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


/* ====== number ====== */
.header .number{
    position: absolute;
    top: -15px;
    right: 0;
}
.header .number img{
    width: 200px;
}


/* ====== logo ====== */
.header .logo{}
.header .logo > a{}
.header .logo > a img{
    width: 120px;
    /* width: 100px; */
}


/* ====== nav ====== */
.header nav {
    align-self: flex-end;
}
.header nav .mainMenu{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    
}
.header nav .mainMenu > li{
    font-family: var(--koMfont);
    position: relative;
    align-self: flex-end;
}

.header nav .mainMenu > li > a{
    display: block;    
    font-size: 20px;
    color: #222;
    letter-spacing: -0.466667px;
    text-align: center;
    padding: 15px 5px 5px;
    transition: all .4s linear;
    border-bottom: 5px solid transparent;      
}
.header nav .mainMenu > li:hover > a{
    border-bottom: 5px solid rgb(255, 98, 0);
}

.header nav .mainMenu > li .subMenu{
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 15px 0;
}
.header nav .mainMenu > li .subMenu > li{
    padding: 0 0 12px;
    font-family: var(--koMfont);
}
.header nav .mainMenu > li .subMenu > li a{
    font-size: 14px;
    display: block;
    color: #777;
    letter-spacing: -0.533333px;
    text-align: center;
    line-height: 1.2;
    padding: 7px 0;
    white-space: nowrap;
}
.header nav .mainMenu > li .subMenu > li a:hover{
    color: #333;
    font-family: var(--koBfont);
}


/* ========== menuBtn ========== */
.header .menuBtn {
    display: none;
    width: 22px;
    height: 22px;
    position: relative;
}
.header .menuBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #222;
    position: absolute;
    left: 0;
}
.header .menuBtn span:nth-child(1){top:2px}
.header .menuBtn span:nth-child(2){top:11px}
.header .menuBtn span:nth-child(3){top:20px}


/* ========== main ========== */
/* visual */
.visual{
   height: auto;
   position: relative;
   padding-top: 130px;
   margin: 0 auto;
}
.visual .sw-visual{
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide{
    position: relative;
    width: 100%;
    height: 100%;
}

/* visual - pc */
.visual .sw-visual .swiper-slide .visual-bg-pc{
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-pc h2{}
.visual .sw-visual .swiper-slide .visual-bg-pc img{
    max-width: 100%;
}
/* visual - mb */
.visual .sw-visual .swiper-slide .visual-bg-m{
    display: none;
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-m img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .sw-visual .swiper-pagination-bullets{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 85%;
}
/* visual - swiper bullet */
.visual .sw-visual .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    /* border-radius: 50px; */
    margin: 0 30px 0 0;
    opacity: 0.25;
    transition: width .3s linear;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #fff;
}
.visual .sw-visual .swiper-pagination-bullets .swiper-pagination-bullet-active{
    opacity: 1;
     width: 50px;
    height: 50px;
    background-image: url('../img/free-icon-fried-chicken-837555.png');
    /* <a href="https://www.flaticon.com/kr/free-icons/" title="치킨 아이콘">치킨 아이콘 제작자: Freepik - Flaticon</a> */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    background-color: transparent;
}


/* brand */
.brand {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
  }
.brand-container {
    position: relative;
}
.brand-container .brand-pc-img {
    width: 100%;
    height: 100%;
    display: block;
}
.brand-container .brand-mb-img{
    display: none;
    width: 100%;
    height: 100%;
}
  
.brand-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 30%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.brand .brand-container .brand-img .happy-pc {
    width: 20%;
    position: absolute;
    top: 8%;
    left: 17%;
    
}
.brand .brand-container .brand-img .happy-pc img{
    width: 100%;
}
.brand .brand-container .brand-img .happy-mb{
    display: none;
    width:100%;
    position: absolute;
    top: 8%;
    left: 8%;
}
.brand .brand-container .brand-img .happy-mb img{
    width: 100%;
}
.brand .brand-container .brand-desc{}
.brand .brand-container .brand-desc .desc-pc{
    width: 26%;
    position: absolute;
    top: 39%;
    left: 14%;
}
.brand .brand-container .brand-desc .desc-pc img{
    width: 100%;
}
.brand .brand-container .brand-desc .desc-mb{
    display: none;
    width: 100%;
}
.brand .brand-container .brand-desc .desc-mb img{
    width: 100%;
}

/* logo-track */
.logo-ticker {
    width: 100%;
    overflow: hidden;
    height: 60px;
    position: relative;
    background: #fff;
}

.logo-track {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 50px;
    transition: transform 0s linear;
}

.logo-track img {
    height: 35px;
    flex-shrink: 0;
}

/* menu */
.menu{
    padding: 180px 0;
    position: relative;
}
.menu .container{}
.menu .menu-title{
    width: 100%;
    text-align: center;
}
.menu .menu-title h3{
    font-family: var(--koEBfont);
    font-size: 65px;
}
.menu .menu-tab-btns{
    padding-top: 20px;
}
.menu .menu-tab-btns ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu .menu-tab-btns ul li{}
.menu .menu-tab-btns ul li a{
    display: block;
    font-size: 1.2rem;
    text-align: center;
    color: rgba(29, 29, 29, 0.7);
    width: 100px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    margin: 15px;
}
.menu .menu-tab-btns ul li a:focus{
    background-color: rgb(255, 102, 0);
    color: #fff;
}
.menu .menu-tab-contents{
    padding: 40px 0 80px 0;
}
.menu .menu-tab-contents > div{
}
.menu .menu-tab-contents > div .sw-menu{
    width: 100%;
    /* margin: 0 18px; */
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide{
    width: 100%;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a{}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .spicy-icon{
    width: 7%;
    position: absolute;
    top: 12px;
    right: 75px;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .spicy-icon img{
    width: 100%;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-img{
    width: 70%;
    height: 100%;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s ease-in-out;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-img:hover img{
    transform: scale(1.1);
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-img img{
    width: 100%;
    height: 100%;
    /* text-align: center; */
    /* margin: 0 auto; */
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-desc{
    padding: 19px;
    text-align: center;
    white-space: nowrap;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-desc h5{
    font-size: 20px;
    font-family: var(--koBfont);
}

.menu .menu-tab-contents .btn-prev{
    position: absolute;
    top: 53%;
    right: 11%;
    z-index: 999;
    cursor: pointer;
}
.menu .menu-tab-contents .btn-next{
    position: absolute;
    top: 53%;
    left: 10%;
    z-index: 999;
    cursor: pointer;
}

/* video */
.video{
    padding:20px 0 100px 0;
}
.video .container{}
.video .container iframe{
    width: 100%;
    height: 777px;
}

/* store search */
.search{
    background-color: #fff1d2;
    width: 100%;
    height: 600px;
    position: relative;
}
.search .container{}
.search .search-icon{}
.search .search-icon h3{
    position: absolute;
    top: 43%;
    left: 36%;
    font-family: var(--koEBfont);
    font-size: 75px;
    color: #ff8b17;
    text-shadow: 5px 4px 3px rgba(0, 0, 0, 0.2);
    z-index: 99;
}
.search .search-icon > img{
    position: absolute;
    top: 9%;
    left: 15%;
    width: 25%;
    filter: drop-shadow(10px 10px 6px rgba(0, 0, 0, 0.148));
}
.search .search-box {}
.search .search-box .search-left{
    background: #fff;
    border: 5px solid #ff7e00;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(244, 164, 61, 0.4);
    padding: 10px 30px;
    width: 320px;
    white-space: nowrap;
    display: flex;
    align-items: center ;
    gap: 10px;
    justify-content: center;
    z-index: 99;
    position: absolute;
    top: 63%;
    left: 19%;
}
.search .search-box .search-left label{}
.search .search-box .search-left input{
     padding: 10px 0 10px 10px;
    border: none;
    outline: none;
    font-family: var(--koLfont);
}
.search .search-box .search-left .search-btn{
    background: none;
    border: none;
    cursor: pointer;
}
.search .search-box .search-left .search-btn span{}
.search .search-box .search-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 440px;
    background: #fff;
    border: 5px solid #ff7e00;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(244, 164, 61, 0.4);
    padding: 10px 30px;
    z-index: 99;
    position: absolute;
    top: 63%;
    left: 37%;
}
.search .search-box .search-right .sido {}
.search .search-box .search-right .sido label{}
.search .search-box .search-right .sido select{
    padding: 10px;
    border: none;
    outline: none;
    font-family: var(--koLfont);
}
.search .search-box .search-right .sido select option{}

.search .search-box .search-right .gugun {}
.search .search-box .search-right .gugun label{}
.search .search-box .search-right .gugun select{ 
    padding: 10px;
    border: none;
    outline: none;
    font-family: var(--koLfont);}
.search .search-box .search-right .gugun select option{}

/* store list */
.search .store-list{
    position: absolute;
    top: 13%;
    left: 65%;
    border: 3px solid #ff7e00;
    background-color: rgba(255, 255, 255, 0.178);
    border-radius: 10px;
    overflow-y: auto;
    max-height: 440px;
}
.search .store-box{
    height: 100%;
    display: flex;
    gap: 10px;
    padding: 0 10px;
    height: 110px;
    align-items: center;
    border-bottom: 1px solid #ff80005d;
}
.search .store-box .store-left{}
.search .store-box .store-left img{
    width: 50px;
}

.search .store-box .store-middle{
    margin: 0 0 0 10px;
    width: 230px;
    line-height: 1.5;
}
.search .store-box .store-middle h4{
    font-size: 0.9rem;
}
.search .store-box .store-middle p{
    font-size: 0.8rem;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.search .store-box .store-right{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:5px;
}
.search .store-box .store-right .btn-takeout{
    background-color:#ffc400;
    color: #fff;
    border-radius: 50px;
    padding: 7px 6px;
    border: none;
    cursor: pointer;
    font-family: var(--koMfont);
}
.search .store-box .store-right .btn-delivery{
    background-color:#ff7e00;
    color: #fff;
    border-radius: 50px;
    padding: 7px 6px;
    border: none;
    cursor: pointer;
    font-family: var(--koMfont);
}
.search .order{}
.search .order .delivery{
    width: 190px;
    position: absolute;
    top: 510px;
    left: 175px;
    white-space: nowrap;
}

.search .order .delivery > a{
    width: 100%;
    background-color: #ffd800;
    border-radius: 30px;
    object-fit: cover;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 0;
    box-shadow:  5px 4px 3px rgba(0, 0, 0, 0.2)
}
.search .order .delivery > a img{
    width: 70px;
}
.search .order .delivery > a p{
    font-size: 22px;
    color: #fff;
    font-family: var(--koEBfont);
    white-space: nowrap;
}

.search .order .takeout{
    width: 190px;
    position: absolute;
    top: 510px;
    left: 400px;
    white-space: nowrap;
}
.search .order .takeout > a{
    width: 100%;
    background-color: #ffd800;
    border-radius: 30px;
    object-fit: cover;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    box-shadow:  5px 4px 3px rgba(0, 0, 0, 0.2)
}
.search .order .takeout > a img{
    width: 55px;
    margin-left: 15px;
}
.search .order .takeout > a p{
    font-size: 22px;
    color: #fff;
    font-family: var(--koEBfont);
    white-space: nowrap;
}

/* foundation */
.foundation{
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: flex;
    overflow: hidden;
}
.foundation .foundation-inquiry{
    position: relative;
    width:50%;
}
.foundation .foundation-inquiry > a{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:#fff;
    font-family: var(--koMfont);
    line-height: 2;

}
.foundation .foundation-inquiry > a .border-bottom{
    padding: 0 10px 7px 10px;
    border-bottom: 1px solid #fff;
    font-size: 25px;

}
.foundation .foundation-inquiry > a span{
    font-size: 15px;
    padding-top: 10px;
}
.foundation .foundation-inquiry img{
    width: 100%;
}

.foundation .overseas-business{
     position: relative;
     width: 50%;
}
.foundation .overseas-business > a{
    text-align: center;
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:#fff;
    font-family: var(--koMfont);
    line-height: 2;
}
.foundation .overseas-business > a .border-bottom{
    padding: 0 10px 7px 10px;
    border-bottom: 1px solid #fff;
    font-size: 25px;

}
.foundation .overseas-business > a span{
    font-size: 15px;
}
.foundation .overseas-business img{
    width: 100%;
}

.bottom-brand{}
.bottom-brand{}
.bottom-brand .bottom-brand-logo{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.bottom-brand .bottom-brand-logo img{
    width: 11%;
    margin: 15px 0;
    align-items: center;
}
.bottom-brand .bottom-brand-logo:last-child {
    border-right: none;
}
/* ========== /main ========== */


/* ========== footer ==========*/
.footer {
    padding: 30px 0 80px 0;
    background-color: #222;
    color: rgb(187, 187, 187);
    font-family: var(--koLfont);
    font-size: 14px;
}
.footer .container {}
.footer .footer-top {
    padding: 0 0 70px 0; 
}
.footer .footer-top ul {
    display: flex;
    gap: 30px;
    white-space: nowrap;
}
.footer .footer-top ul > li {
    font-size: 15px;
}
.footer .footer-top ul > li a{
    color:rgb(187, 187, 187);
}
.footer .footer-top ul > li a span{
    color:#ffd800;
}

.footer .footer-bottom {
    padding: 0 0 50px 0; 
}
.footer .footer-bottom ul {
    line-height: 1.5;
}
.footer .footer-bottom ul .footer-info {
    padding: 5px;
}

.footer .copyright{
    padding: 0 0 20px;
    font-size: 13px;
    color:#555;
}

