@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 공통영역 */
*{
    margin: 0;
    padding: 0;
    
}
html,body{
    font-family: 'Noto Sans', sans-serif;
}
span{
    font-family: 'Noto Sans KR', sans-serif;
}
a{
    text-decoration: none;
}
ul,li{
    list-style: none;
}
img{
    width: 100%;
    height: 100%;
}
/* 메인 */
#main{
    position: relative;
    width: 100%;
    background-color: #fdfdfd;
}
/* 헤더 */
#main header{
    width: 100%;
    height: 8.333vh;
    background-color: #1d24ab;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main header .logo{
    height: 35px;
}
/* s: 배너 */
#main .banner-wrap{
    width: 100%;
    height: 100vh;
    position: relative;
    background: url(../img/slide_back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* 배경로고-1 */
#main .banner-wrap .back-1{
    height: 30.092%;
    position: absolute;
    bottom: 8.333% ;
    right: 9.375%;    
}
/* 배경로고-2 */
#main .banner-wrap .back-2{
    width: 20.572%;
    position: absolute;
    top: 10.703%;
    left: 16.031%;
}
/* 배너 슬라이드 */
#main .banner-wrap .banner-slider{
    width: 100%;
    position: absolute;
    bottom: 17.5%;
    left: 0;
}
#main .banner-wrap .banner-slider .firstSwiper{
    width: 70%;
    height: 100%;
}
#main .banner-wrap .banner-slider .slider{
    width: 100%;
    display: flex;
    align-items: flex-end;
}
#main .banner-wrap .menu-slider:last-child{
    width: 50%;
}
#main .banner-wrap .name {
    width: fit-content;
}
#main .banner-wrap .name h3{
    font-size: 20px;
    color: #1d24ab;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #fdfdfd;
    border: 2px solid #1d24ab;
    border-radius: 30px;
    text-align: center;
}
#main .banner-wrap .menu{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main .banner-wrap .menu-img{
    width: 450px;
}
#main .banner-wrap .menu-2 .menu-img{
    transform: rotate(-10deg);
}
#main .banner-wrap .menu-3 .menu-img{
    transform: rotate(15deg);
}
#main .banner-wrap .menu-4 .menu-img{
    transform: scale(1.2) ;
}
#main .banner-wrap .menu-5 .menu-img{
    transform: scale(0.7) rotate(-20deg);
}
#main .banner-wrap .menu-6 .menu-img{
    transform: scale(0.7)  rotate(20deg);
}
#main .banner-wrap .menu-7 .menu-img{
    transform: scale(0.7);
}
#main .banner-wrap .menu-8{
    display: none;
}
#main .banner-wrap .menu-9 .menu-img{
    transform: rotate(-10deg);
}
/* e: 배너슬라이드 */
/* s:탭 메뉴 영역*/
#main .menu-wrap{
    width: 100%;
}
#main .menu-wrap .container{
    width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
}
/* 메뉴 헤딩 */
#main .menu-wrap .heading{
    margin-left: 9.142%;
}
#main .menu-wrap .heading h1{
    color: #1d24ab;
    font-size: 60px ;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}
#main .menu-wrap .heading span{
    color: #1d24ab;
    font-size: 16px;
}
#main .menu-wrap .tab-inner{
    width: 82.714%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* 탭 메뉴 클릭 버튼*/
#main .tab-inner .tab-btn{
    width: 216px;
}
#main .tab-inner .tab-btn li{
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    padding: 10px 20px;
    color: #1d24ab;
    background-color: #fdfdfd;
    transition: 0.5s;
    cursor: pointer;
}
#main .tab-inner .tab-btn li:hover{
    background-color: #1d24ab;
    color: #fdfdfd;
}
#main .tab-inner .tab-btn li.active{
    background-color: #1d24ab;
    color: #fdfdfd;
}
/* 탭 메뉴 슬라이드 */
#main .tab-inner .tabs{
    width: 650px;
    height: 600px;
    position: relative;
}
#main .slice{
    width: 80%;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#main .tabs .arrow-btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#main .tabs .arrow-btn .prev, #main .tabs .arrow-btn .next{
    width: 30px;
    height: 30px;
    cursor: pointer;
}
#main .slick-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
#main .slick-dots li{ 
    font-size: 0;
    background-color: #a2a2a3;
    border-radius: 50%;
    margin-right: 10px;
}
#main .slick-dots li button{
    width: 10px;
    height: 10px;
    border: 1px solid #1d24ab;
    border-radius: 50%;
}
#main .slick-dots li.slick-active button{
    background-color: #1d24ab;
}
#main .slice.active{
    display: block;
}
#main .slice .menu-slice{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#main .menu-slice .mask{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background-color: rgb(243, 247, 252);
}
#main .menu-slice .txt{
    text-align: center;
    margin-top: 20px;
}
#main .menu-slice .txt h1{
    font-size: 20px;
    font-weight: bold;
    color: #000454;
    font-family: 'Noto Sans KR', sans-serif;
}
.slick-slide img{
    height: auto;
}
/* e:탭 메뉴 영역*/
/* e:가게 탭메뉴 */
/* s: 체인점 목록 */
#main .store-wrap{
    width: 100%;
    padding: 200px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:url(../img/store-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#main .store-wrap .heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 40px;
}
#main .store-wrap .heading h1{
    color: #1d24ab;
    font-size: 80px;
    font-weight: 900;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
#main .store-wrap .heading .txt-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#main .store-wrap .heading .txt-box span{
    font-size: 26px;
    font-weight: bold;
    color: #1d24ab;
}
#main .store-wrap .heading .txt-box span:first-child{
    margin-right: 10px;
}
#main .store-wrap .store{
    width: 91.666%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#main .store-wrap .store-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#main .store-wrap .store-btn div{
    cursor: pointer;
}
#main .store-wrap .store .box{
    padding: 8px;
    box-sizing: border-box;
}
#main .store-wrap .store .box .mask{
    border-radius: 20px;
    box-shadow: 0 10px  3px -5px rgb(0 0 0 /20%);
    overflow: hidden;
}
#main .store-wrap .store .box img{
    height: auto;
}
#main .store-wrap .store .box .s-name{
    width: 100%;
    background-color: #1d24ab;
    text-align: center;
    line-height: 3.6;
    box-shadow: inset -3px -10px 8px 1px rgb(255 255 255 / 20%);
}
#main .store-wrap .store .box .s-name b{
    color: #fdfdfd;
    font-size: 1.8rem;
    font-weight: 600;
}
/* e:체인점목록 */
/* s: 띠배너 */
#main .space{
    width: 100%;
    background-color: #1d24ab;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}
#main .space .polygon{
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 30px;
    height: 30px;
    background-color: #1d24ab;
}
#main .space .heading{
    width: 100%;
    margin: 0 auto;
}
#main .space .heading h2{
    color:#1d24ab;
    font-size: 40px;
    font-family: 'Noto Sans KR', sans-serif;
    text-align: center;
    -webkit-text-stroke: 1px #fdfdfd;
}
#main .space .heading h1{
    color: #fdfdfd;
    text-align: center;
    font-size: 20px;
    font-family: 'Noto Sans KR', sans-serif;
}
/* e: 띠배너 */
/* s:인테리어 */
/* 홀매장 인테리어 */
#main .int{
    width: 100%;
    background: url(../img/interior_back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#main .int .container{
    width: 1400px;
    margin: 0 auto;
    padding: 160px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#main .int .container .heading{
    margin-bottom: 72px;
    text-align: right;
}
#main .int .container .heading h1{
    color: #1d24ab;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 8px;
    word-break: keep-all;
    font-family: 'Montserrat', sans-serif;
}
#main .int .container .heading span{
    color: #1d24ab;
    font-size: 16px;
    font-weight: 500;
}
#main .int .container .inner{
    width: 70.214%;
}
#main .int .container .inner .secondSwiper{
    width: 100%;
}
#main .int .container .inner .inner-slider{
    width: 1952px !important;
    height: 384px;
}
#main .int .container .inner .inner-slide{
    width: 640px;
    height: 100%;
}
#main .int .inner .next-btn,#main .int .inner .prev-btn{
    color: #fdfdfd !important;
}
#main .int .int-txt{
    margin-top: 18px;
}
#main .int .int-txt span{
    font-size: 20px;
    font-weight: medium;
    color: #1d24ab;
}
/* 배달매장 인테리어*/
#main .int-2{
    width: 100%;
    background: url(../img/interior_back_2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#main .int-2 .container{
    width: 1400px;
    margin: 0 auto;
    padding: 160px 0;
}
#main .int-2 .container .heading{
    margin-bottom: 72px;
}
#main .int-2 .container .heading h1{
    color: #1d24ab;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 50px;
}
#main .int-2 .container .heading span{
    color: #1d24ab;
    font-size: 16px;
    font-weight: 500;
}
#main .int-2 .container .inner .forthSwiper{
    width: 50%;
    margin: 0;
}
#main .int-2 .container .inner .inner-slider{
    height: 384px;
}
#main .int-2 .container .inner .inner-slide{
    color: #fdfdfd !important;

}
#main .int-2 .inner .next-btn, #main .int-2 .inner .prev-btn{
    color: #fdfdfd !important;
}
#main .int-2 .int-txt{
    margin-top: 18px;
}
#main .int-2 .int-txt span{
    font-size: 20px;
    font-weight: medium;
    color: #1d24ab;
}
/* e:인테리어 */
/* s:아토커피&피버타임 */
#main .collabo {
    width: 100%;
    padding: 160px 0;
    box-sizing: border-box;
    background:url(../img/collabo-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .collabo .con-box-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .collabo .con-box-wrap .hood{
    width: 31.25%;
}
#main .collabo .con-box-wrap .con-box{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#main .collabo .con-box-wrap .con-box .con{
    margin-bottom: 16px;
}
#main .collabo .con-box-wrap .con-box .con-txt{
    text-align: right;
    margin-bottom: 24px;
}
#main .collabo .con-box-wrap .con-box .con-txt span{
    color: #1d24ab;
    font-size: 16px;
    font-weight: 400;
}
#main .collabo .con-box-wrap .con-btn{
    display: inline-block;
    width: 110px;
    height: 55px;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #1d24ab;
    border-radius: 30px;
    background-color: #1d24ab;
    text-align: center;
    line-height: 55px;
    transition: 0.5s;
}
#main .collabo .con-btn span{
    color: #fdfdfd;
    font-size: 1rem;
}
#main .collabo .con-box-wrap .con-btn:hover{
    background-color: transparent;
}
#main .collabo .con-box-wrap .con-btn:hover span{
    color: #1d24ab;
}
/* e: 아토커피&피버타임 */
/* s: 점포개설비용 */
.table-wrap{
    width: 72.916%;
    margin: 0 auto;
    padding: 60px 0 120px 0;
}
/* 버튼 */
#main .tab-btn{
    text-align: center;
    margin-bottom: 20px;
}
#main .tab-btn .btn{
    width: 120px;
    height: 50px;
    display: inline-block;
    padding: 10px 8px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #1d24ab;
    border-radius: 30px;
    color: #1d24ab;
    background-color: #fdfdfd;
    font-size: 16px;
    margin-right: 8px;
    cursor: pointer;
}
#main .tab-btn .btn.active{
    background-color: #1d24ab;
    color: #fdfdfd;
}
#main .tab-btn .btn:hover{
    background-color: #1d24ab;
    color: #fdfdfd;
}
/* 개설비용표 */
#main .table-wrap table{
    width: 100%;
    height: auto;
    border:2px solid #1d24ab;
    border-collapse: collapse;
    text-align: center;
}
#main .table-wrap th, td{
    border: 1px solid #1d24ab;
    padding: 10px;
    font-size: 16px;
    color: #000454;
}
#main .table-wrap .t-t{
    font-size: 30px;
    color: #fdfdfd;
    background-color: #1d24ab;
}
#main .table-wrap thead tr:last-child{
    background-color: #8D92F977;
    font-size: 20px;
    font-weight: 400;
}
#main .table-wrap thead tr:last-child td{
    font-size: 20px;
    font-weight: bold;
    color: #000454;
    border-bottom: 2px solid #1d24ab;
}
#main .table-wrap tbody td:first-child{
    font-weight: bold;
}
#main .table-wrap tbody .each{
    border-top: 2px solid #1d24ab;
}
#main .table-wrap tbody tr:last-child{
    border: 2px solid #1d24ab;
    border-spacing: 1px;
}
#main .table-wrap tbody tr:last-child td{
    font-size: 30px;
    font-weight: bold;
    background-color:#1d24ab;
    color: #fdfdfd;
}
#main .table-wrap tbody tr:last-child td:first-child
{
    padding: 20px;
    border-right: 1px solid #fdfdfd;
}
#main .table-wrap tbody .price{
    font-size: 40px !important;
}
/* 배달매장형 */
#main .table-con{
    display: none;
    margin: 0 auto;
    width: 100%;
}
#main .table-con.on{
    display: block;
}
/* e: 점포개설비용 */
/* s: 리뷰 */
#main .review-wrap{
    width: 100%;
}
#main .review-wrap > .container{
    width: 1400px;
    margin: 0 auto;
    padding: 120px 0;
    box-sizing: border-box;
}
/* 헤딩 */
#main .review-wrap .container .heading{
    width: 100%;
    margin: 0 auto;
}
#main .review-wrap .container .heading .customer{
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 280px;
}
#main .customer .title{
    width: 100%;
    height: 180px;
    background: url(../img/review_title.png);
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(0.7);
    background-size: contain;
}
#main .customer .ranking{
    width: 100%;
    height: 180px;
    background: url(../img/review_1111.png);
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(0.8);
    background-size: contain;
    margin-bottom: 20px;
}
/* 리뷰 스와이퍼 */
#main .review-wrap .review-slider{
    width: 89.285%;
    margin: 0 auto;
}
#main .review-wrap .review-slider .thirdSwiper{
    width: 100%;
}
#main .review-wrap .review-slider .slider{
    width: 100%;
    margin:20px 0;
}
#main .review-wrap .review-slider .slider .review-slide{
    height: auto;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}
#main .review-wrap .review-slider .next-btn,
#main .review-wrap .review-slider .prev-btn{
    color: #fdfdfd !important;
}
/* e: 리뷰 */
/* s:체인문의배너 */
#main .review-wrap .call-banner-wrap{
    width: 100%;
    height: 180px;
    background-color: #1d24ab;
}
#main .review-wrap .call-banner-wrap .call-banner{
    width: 72.916%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#main .review-wrap .call-banner-wrap .call-banner .call-wrap{
    width: 314px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#main .review-wrap .call-icon{
    width: 80px;
    height: 82px;
}
#main .call-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main .call-num span{
    color: #FFE715;
    font-size: 30px;
    font-weight: bold;
}
#main .call-txt{
    color: #fdfdfd;
    font-size: 30px;
    font-weight: bold;
}
#main .review-wrap .form{
    width: 61.428%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#main form{
    width: 100%;
    display: flex;
    align-items: flex-end;
}
#main .form .info{
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#main .form #fix_name, #main .form #fix_call,#main .form #fix_place{
    width: 90%;
}
#main .form .info input{
    height: 36px;
    border: none;
    padding-left: 20px;  
    border-radius: 14px;
}
#main .form .info .call{
    width: 60%;
    margin-left: 10px;
}
#main .form .info .place{
    width: 40%;
}
#main .form .info p{
    font-size: 16px;
    color: #fdfdfd;
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0 0 5px 10px ;
}
#main .form form .agree input{
    margin-right: 10px;
}
#main .form form .agree span, 
#main .form form .agree a {
    color: #fdfdfd;
}
#main .form form .agree {
    
    margin-bottom: 8px;
}
#main .form form .agree label{
    font-size: 12px;
    color: #fdfdfd;
    white-space: nowrap;
}
#main .form form .box button{
    width: 112px;
    height: 60px;
    background-color: #FFE715;
    border: none;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.55);
    border-radius: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1d24ab;
    transition: 0.5s;
}
.btn_confirm{
    text-align: left;
}
#main .form form .box button:hover{
    background-color: #fdfdfd;
}
#main .form form .agree label {
    font-size: 12px;
    color: #fdfdfd;
    white-space: nowrap;
}
/* e: 리뷰 */
/* s :미디어쿼리 */
@media screen and (max-width: 1440px) {
    /* 배너스와이퍼 */
    #main .banner-wrap .banner-slider .firstSwiper{
        width: 80%;
        height: 100%;
    }
    #main .banner-wrap .back-2{
        width: auto;
    }
    #main .banner-wrap .menu-img{
        width: 600px;
        height: auto;
    }
    #main .banner-wrap .menu-8{
        display: flex;
        width: 76%;
        margin: 0 auto;
    }
    #main .banner-wrap .menu-8 .menu-img{
        width: 500px;
    }
    #main .banner-wrap .menu-9{
        display: none;
    }
    /* 체인점목록 */
    #main .container{
        width:90% !important ;
    }
    /* 인테리어 */
    #main .int, #main .int-2{
        height: auto;
    }
}/* end: 1440 */
@media screen and (max-width: 1024px) {
    /* 배너스와이퍼 */
    #main .banner-wrap .banner-slider .firstSwiper{
        width: 100%;
    }
    #main .banner-wrap .banner-slider{
        bottom: 50%;
        transform: translateY(50%);
    }
    #main .menu-wrap .container{
        padding: 120px 0;
    }
    /* 탭메뉴 */
    #main .menu-wrap .heading{
        margin-bottom: 10%;
    }
    #main .tab-inner .tab-btn li{
        padding: 16px;
        box-sizing: border-box;
        margin-left: 0;
    }
    #main .menu-wrap .tab-inner{
        flex-direction: column;
    }
    /* 탭메뉴 버튼 */
    #main .tab-inner .tab-btn{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* 체인점 목록*/
    #main .store-wrap{
        height: auto;
        padding: 120px 0 ;
        box-sizing: border-box;
    }
    #main .store-wrap .store-btn{
        top: 63%;
    }
    /* 배달매장  인테리어*/
    #main .int-2 .container .inner .forthSwiper{
        width: 80%;
    }
    /* 아토커피피버타임 */
    #main .collabo{
        height: auto;
        padding: 60px 0;
    }
    #main .collabo .con-box-wrap{
        flex-wrap: wrap-reverse;
    }
    #main .collabo .con-box-wrap .con-box{
        margin-bottom: 30px;
        align-items: center;
    }
    #main .collabo .con-box-wrap .hood{
        width: 50%;
    }
    #main .collabo .con-box-wrap .con-box .con-txt{
        text-align: center;
        margin-bottom: 20px;
    }
    #main .collabo .con-box-wrap .con-box .con-txt span{
        font-size: 30px;
    }
    #main .review-wrap .call-banner-wrap .call-banner{
        justify-content: center;
    }
    #main .review-wrap .form{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    /* 메뉴 */
    #main .menu-wrap .heading{
        text-align: center;
        margin: 0 auto;
    }
    #main .tab-inner .tabs{
        width: 100%;
        height: auto;
    }
    #main .menu-wrap .tab-inner{
        width: 100%;
    }
    #main .tab-inner .tab-btn{
        width: 100%;
        flex-wrap: wrap;
        margin-top: 5%;
    }
    #main .tab-inner .tab-btn li{
        width: 25%;
    }
    #main .slice{
        width: 70%;
        margin: 0 auto;
        top: auto;
        left: auto;
        transform: translate(0);
    }
    #main .menu-slice .mask{
        width: 80%;
        height: auto;
    }
    /* 가맹점 */
    #main .store-wrap .store-btn{
        display: none;
    }
    /* 인테리어 */
    #main .int .container{
        display: block;
    }
    #main .int-2 .container .inner .forthSwiper{
        width: 100%;
    }
    #main .int .container .heading,
    #main .int-2 .container .heading{
        text-align: center;
    }
    #main .int .container .inner{
        width: 100%;
        margin: 0 auto;
    }
    #main .int .container .inner .inner-slider,
    #main .int-2 .container .inner .inner-slider{
        width: 100% !important;
        height: auto;
    }
    #main .int .container .inner .inner-slide{
        width: 100%;
    }
    /* 띠배너 */
    #main .space{
        padding: 0 32px;
    }
    #main .space .heading h2{
        font-size: 20px;
        color: #fdfdfd;
        -webkit-text-stroke:0;
    }
    #main .space .heading h1{
        font-size: 14px;
        font-weight: 400;
    }
    /* 콜라보 */
    #main .collabo .con-box-wrap .con-box{
        height: auto;
    }
    #main .collabo .con-box-wrap .hood{
        width: 80%;
    }
    #main .collabo .con-box-wrap .con-box .con{
        width: calc(100% - 32px);
    }
    #main .collabo .con-box-wrap .con-box .con-txt span{
        font-size: 20px;
    }
    /* 리뷰 */
    #main .review-wrap .review-slider .thirdSwiper{
        width: 100%;
        padding: 0 10px;
    }
    #main .review-wrap .review-slider .slider .review-slide{
        border-radius: 50px;
    }
    #main .review-wrap .review-slider .slider .review-slide{
        box-shadow:0 5px 10px rgb(0 0 0 / 20%)
    }
    #main .review-wrap .review-slider .next-btn, 
    #main .review-wrap .review-slider .prev-btn{
        display: none;
    }
    /* 점포개설 */
    .table-wrap{
        width: calc(100% - 16px);
    }
}
@media screen and (max-width: 500px ) {
    #main .banner-wrap{
        height: auto;
        position: static;
        padding: 210px 0;
        background: url(../img/m-bg.png);
        background-position: center;
        background-repeat:  no-repeat;
        background-size: cover;
    }
    #main .banner-wrap .banner-slider{
        position: static;
        transform: translateY(0);
        bottom: auto;
    }
    #main .banner-wrap .back-1{
        display: none;
    }
    #main .banner-wrap .back-2{
        display: none;
    }
    #main .tab-inner .tab-btn{
        margin-bottom: 20%;
    }
    #main .tab-inner .tab-btn li{
        font-size: 0.9rem;
        width: 25%;
    }
    #main .banner-wrap .menu-img{
        width: 90%;
    }
    #main .banner-wrap .menu-8 .menu-img{
        width: 320px;
    }
    #main .tab-inner .tab-btn li:last-child{
        width: 25%;
    }
    /* 가맹점목록 */
    #main .store-wrap .heading{
        margin-bottom: 10%;
    }
    /* 띠배너 */
    #main .space{
        position: static;
    }
    #main .space .polygon{
        display: none;
    }
    #main .space .heading{
        position: static;
        transform: translate(0);
    }
    #main .space .heading h2, 
    #main .space .heading h2{
        word-break: keep-all;
    }
    /* 인테리어 */
    #main .int, #main .int-2{
        height: auto;
    }
    #main .int .container .heading span, 
    #main .int-2 .container .heading span{
        word-break: keep-all;
    }
    /* 가맹점목록 */
    #main .store-wrap .store .box{
        width: 100%;
        height: auto;
    }
    #main .store-wrap .heading .txt-box span{
        font-size: 1rem;
    }    
    /* 띠배너 */
    #main .space .heading h2{
        margin-bottom: 10px;
    }
    /* 리뷰 */
    #main .review-wrap .container{
        padding: 60px 0;
    }
    #main .review-wrap .container .heading .customer{
        height: auto;
    }
    #main .customer .title{
        transform: scale(1);
    }
    #main .customer .ranking{
        background: url(../img/m-review.png);
        background-position: center;
        background-repeat: no-repeat;
        height: 600px;
    }
    #main .review-wrap .review-slider{
        width: 100%;
    }
    /* 문의배너 */
    #main .review-wrap .call-icon{
        width: auto;
        height: auto;
    }
    #main .review-wrap .call-icon svg{
        width: 60px;
        height: 62px;
    }
    #main .call-num span{
        font-size: 24px;
    }
    /* 점포비용 */
    #main .table-wrap th, td{
        font-size: 13px;
    }
    #main .table-wrap thead tr:last-child td{
        font-size: 16px;
    }
    #main .table-wrap tbody tr:last-child td{
        font-size: 30px;
    }
    #main .table-wrap tbody .price{
        font-size: 30px !important;
    }
}
@media screen and (max-width: 375px ) {
    #main .tab-inner .tab-btn li{
        font-size: 14px;
        width: 20%;
    }
}
/* e :미디어쿼리 */

