/* 색깔 선언해서 쓰는 방법 한번에 바꿀 때 유용
:root {
    --dark: #000;
}


.Wrap {
    background: var(--dark);
}*/
@import url('https://webfontworld.github.io/score/SCoreDream.css');

.header {
    line-height: 100px;
    background-color: transparent;
    position: relative;
    z-index: 9;

}

.header .container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}
.header .container h1 {width: 220px;}
.header .container h1  img {width: 100%}
.header nav {
    margin: 0 0 0 auto;
    /*nav를 왼쪽으로 치우치게 하는 방법 (로고가 대장이니까)*/
    top: -50px;
    left: 0;
    transition: all .4s;
}

.header nav a {
    display: block;
}

.header .search {
    margin: 0 0 0 30px;
}

.header nav>ul {
    display: flex;
    gap: 40px;
}

.header nav>ul>li {
    position: relative;
    color:#fff
}



.header nav>ul>li ul {
    position: absolute;
    inset: 100px auto auto 50%;
    line-height: 40px;
    z-index: 999;
    transform: translateX(-50%);

    border: 3px solid #369;
    background-color: #fff;

    width: 150px;
    /*width 100%를 적으면 relative width를 그대로 받음 ;*/
    text-align: center;
    font-size: 15px;

    visibility: hidden;
    opacity: 0;

    /*opacity는 에니메이션을 주기 위한것 visibility는 안보일 때 a링크를 없애기 위한 것*/
}


.header nav>ul>li:hover ul {
    inset: 80px auto auto 50%;
    transition: 0.5s;

    visibility: visible;
    opacity: 1;
}

.header nav>ul ul li~li {
    border-top: 1px solid #ddd;
}

.header .search input {
    border: none;
    border-bottom: 1px solid #333;
    outline: none;
    padding: 5px;
    color: #f00;
}

.header .search input::placeholder {
    /*플레이스홀더 꾸미는 법*/
    color: #ddd;
}

.header .search input:focus::placeholder {
    color: transparent;
}

.header .search button {
    background: transparent;
    /*색깔을 투명하게해라*/
    border: none;
    font-size: 21px;
}

.mopen {
    display: none;
}
.header.fixed {line-height: 80px;}
.header.fixed .container nav {position: fixed; background: rgba(255, 255, 255, 0.85); top: 0; left: 50%; transform: translateX(-50%); width: 100%;
}
.header.fixed .container nav ul {max-width: 700px; justify-content: space-between; margin: 0 auto;}
.header.fixed .container nav ul li {font-size:17px; color:#000}
@media (max-width:1200px) {
    .header .container {width: 100%; padding: 0 15px;}
    .footer .container {width: 100%; padding: 0 15px;}
}
@media (max-width:768px) {

    .header {
        line-height: 88px;

    }

    .header h1 {
        padding: 0 0 0 15px;
    }
    .header .container h1 {width: 180px;}
    .header .container {
        display: flex;
        justify-content: space-between;
        width: auto;
        margin: 0 auto;
    }

    .header nav {
        position: fixed;
        top: 0;
        left: -100%;
        /*버튼클릭하면 left 0 되야지*/
        height: 100vh;
        width: calc(100% - 90px);
        color: #fff;
        background: #333;
        margin: 0 0 0 auto;
        /*nav를 왼쪽으로 치우치게 하는 방법 (로고가 대장이니까)*/
        z-index: 10000;
        line-height: 40px;
        transition: 0.5s;
    }

    .header nav.on {
        left: 0;
    }

    .header nav a {
        display: blocklo;
    }

    .header .search {
        margin: 0 0 0 30px;
    }

    .header nav>ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 100px 15px 0 15px;
    }

    .header nav>ul>li {
        position: relative;
        border-bottom: 1px solid #666;
    
    }

    .header nav>ul>li~li::before {
        /*~*/
        content: "";
        /*가상요소는 항상 content가 따라와야해*/
        position: absolute;
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
        width: 1px;
        height: 13px;
        background: #333;

    }

    .header nav>ul>li ul {
        display: none;
        position: static;
        inset: 100px auto auto 50%;
        line-height: 40px;
        z-index: 999;
        transform: translateX(0);

        border: 0 solid #369;
        background-color: #666;

        width: auto;
        /*width 100%를 적으면 relative width를 그대로 받음 ;*/
        text-align: center;
        font-size: 15px;

        visibility: visible;
        opacity: 1;

        /*opacity는 에니메이션을 주기 위한것 visibility는 안보일 때 a링크를 없애기 위한 것*/
    }


    .header nav>ul>li:hover ul {
        inset: 80px auto auto 50%;
        /*transition: 0.5s;*/

        visibility: visible;
        opacity: 1;
    }

    .header nav>ul ul li~li {
        border-top: 1px solid #ddd;
    }


    .header .search {
        display: none;
    }

    .header .search input {
        border: none;
        border-bottom: 1px solid #333;
        outline: none;
        padding: 5px;
        color: #f00;
    }

    .header .search input::placeholder {
        /*플레이스홀더 꾸미는 법*/
        color: #ddd;
    }

    .header .search input:focus::placeholder {
        color: transparent;
    }

    .header .search button {
        background: transparent;
        /*색깔을 투명하게해라*/
        border: none;
        font-size: 21px;
    }


    .mopen {
        display: block;
        position: fixed;
        top: 30px;
        right: 30px;
        width: 30px;
        height: 30px;
        background: #ddd;
        border-radius: 5px;
        z-index: 1000;
    }

    .mopen span {
        position: absolute;
        /*positoin의 기준은 position (꼭 relative 아니어도 됨)*/
        top: 8px;
        left: 5px;
        right: 5px;
        height: 2px;
        background: #333;
        transition: 0.5s;
    }

    .mopen span:nth-child(1) {
        top: 7px;
    }

    .mopen span:nth-child(2) {
        top: 14px;
    }

    .mopen span:nth-child(3) {
        top: 14px;
    }


    .mopen span:nth-child(4) {
        top: 22px;
    }

    .mopen.on span:nth-child(1) {
        opacity: 0;
    }

    .mopen.on span:nth-child(2) {

        transform: rotate(45deg);
    }

    .mopen.on span:nth-child(3) {
        transform: rotate(-45deg);

    }


    .mopen.on span:nth-child(4) {
        opacity: 0;
    }

    .header.fixed {line-height: 100px;}
.header.fixed .container nav {position: fixed; background: #333; top: 0;
    left: -100%; transform: translateX(0%);     width: calc(100% - 90px);

}
.header.fixed .container nav.on {left: 0;}
.header.fixed .container nav.on a {color: #fff;}
.header.fixed .container nav ul {max-width: 700px; justify-content: space-between; margin: 0 auto;}
.header.fixed .container nav ul li {font-size:17px}
}

.main_slider {
    margin-top: -100px;
}

.main_slider figure {
    position: relative;
    height: 100vh;

}

.main_slider .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    color: #fff;
    text-align: center;

}

.main_slider .inner h2 {
    font-size: 48px;
    /* text-shadow: 0 0 3px #000; */
    transform: translateY(100px);
    opacity: 0;
    font-weight: 400;
    line-height: 1.5em;
    margin-bottom: 40px;
    font-family: 'SCoreDream';

}

.main_slider figure.on .inner h2 {
    transform: translateY(0);
    opacity: 1;
    transition: 0.5s;
}

.main_slider .inner p {
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 20px 0;
    text-shadow: 0 0 3px #000;
    transform: translateY(100px);
    opacity: 0;
}

.main_slider figure.on .inner p {
    transform: translateY(0);
    opacity: 1;
    transition: 0.5s 0.5s;
}

.main_slider .inner a {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 25px 13px 25px;
    transform: translateY(100px);
    opacity: 0;
    font-size: 17px;
}
.main_slider .inner a:last-child {margin-left: 30px;}
.main_slider figure.on .inner a {
    transform: translateY(0);
    opacity: 1;
    transition: 0.5s 1s;
}



.main_slider .itm01 {
    background: url('../img/mainvisual01.jpg') no-repeat center center/cover;
}

.main_slider .itm02 {
    background: url('../img/mainvisual02.jpg') no-repeat center center/cover;

}

.main_slider .itm03 {
    background: url('../img/mainvisual03.jpg') no-repeat center center/cover;
}
.main_slider .itm04 {
    background: url('../img/mainvisual04.jpg') no-repeat center center/cover;
}
.main_slider .itm05 {
    background: url('../img/mainvisual05.jpg') no-repeat center center/cover;
}
.main_slider .itm06 {
    background: url('../img/mainvisual06.jpg') no-repeat center center/cover;
}
.main_slider .itm07 {
    background: url('../img/mainvisual07.jpg') no-repeat center center/cover;
}
.main_slider .itm08 {
    background: url('../img/mainvisual08.jpg') no-repeat center center/cover;
}
.main_slider .itm09 {
    background: url('../img/mainvisual09.jpg') no-repeat center center/cover;
}
.main_slider .itm10 {
    background: url('../img/mainvisual10.jpg') no-repeat center center/cover;
}

.main_slider .slick-dots {
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
}

.main_slider .slick-dots li {
    display: inline-block;
    width: 13px;
    height: 13px;
    border:1px solid #fff;
    border-radius: 50%;
    margin: 0 6px;
}

.main_slider .slick-dots li.slick-active {
    background: #fff;
}

.main_slider .slick-dots button {
    display: none;
}

.main_slider .slick-arrow {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background: transparent;
    border: none;
    font-size: 0;
    width: 100px;
    height: 100px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}

.main_slider .slick-prev {
    margin: 0 0 0 -700px;
    transform: translate(-50%, -50%) rotate(-45deg);
    /*마지막 transform만 먹히기 때문에 translate 한번 더 적음*/
}

.main_slider .slick-next {
    margin: 0 0 0 700px;
    transform: translate(-50%, -50%) rotate(135deg);
}


.main_visual {
    position: relative;
}

.main_visual .slideNum {
    position: absolute;
    top: 0;
    left: 50%;
    /*가운데로 보낸다음*/
    margin: 40px 0 0 600px;
    /*width1200px이므로 margin-left를 600px 줘서 끝으로 보낸다음*/
    transform: translateX(-100%);
    /*자기자신만큼 왼쪽으로 보낸다*/

    color: #fff;
    font-size: 40px;
    text-shadow: 0 0 3px #000;
}

.main_visual .slideArrows i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.main_visual .slideArrows i:nth-child(1) {
    margin: 0 0 0 -700px;
}

.main_visual .slideArrows i:nth-child(2) {
    margin: 0 0 0 700px;
}

@media (max-width:1200px) {
    .main_slider .inner h2 {font-size:35px;}
    .main_slider .slick-prev {
        margin: 0 0 0 -500px;

    }
    
    .main_slider .slick-next {
        margin: 0 0 0 500px;}
}
@media (max-width:768px) {

    .main_slider figure {
        position: relative;
        height: calc(100vh - 100px);


    }
    
    .main_slider .inner {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        width: 100%;
        /*absolute의 auto는 쪼그라듦*/
        padding: 0 15px;
        color: #fff;
    }

    .main_slider .inner h2 {
        font-size: 4.8vw;
        font-weight: 400;
        margin: 0 0 20px 0;
        text-shadow: 0 0 3px #000;
        transform: translateY(100px);
        opacity: 0;
    }

    .main_slider figure.on .inner h2 {
        transform: translateY(0);
        opacity: 1;
        transition: 0.5s;
    }

    .main_slider .inner p {
        font-size: 2.5vw;
        line-height: 1.4;
        font-weight: 300;
        margin: 0 0 20px 0;
        text-shadow: 0 0 3px #000;
        transform: translateY(100px);
        opacity: 0;
    }

    .main_slider figure.on .inner p {
        transform: translateY(0);
        opacity: 1;
        transition: 0.5s 0.5s;
    }

    .main_slider .inner a {
        display: inline-block;
        background-color: #333;
        color: #fff;
        padding: 10px 20px 13px 20px;
        transform: translateY(100px);
        opacity: 0;
        font-size: 14px;
    }

    .main_slider figure.on .inner a {
        transform: translateY(0);
        opacity: 1;
        transition: 0.5s 1s;
    }



    .main_slider .itm01 {
        background: url('../img/mainvisual01.jpg') no-repeat left center/cover;
    }

    .main_slider .itm02 {
        background: url('../img/mainvisual02.jpg') no-repeat right center/cover;

    }

    .main_slider .itm03 {
        background: url('../img/mainvisual03.jpg') no-repeat right center/cover;

    }

    


    .main_slider .slick-dots button {
        display: none;
    }

    .main_slider .slick-arrow {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 999;
        background: transparent;
        border: none;
        font-size: 0;
        width: 100px;
        height: 100px;
        border-left: 1px solid #fff;
        border-top: 1px solid #fff;
    }

    .main_slider .slick-prev {
        margin: 0 0 0 -700px;
        transform: translate(-50%, -50%) rotate(-45deg);
        /*마지막 transform만 먹히기 때문에 translate 한번 더 적음*/
    }

    .main_slider .slick-next {
        margin: 0 0 0 700px;
        transform: translate(-50%, -50%) rotate(135deg);
    }


    .main_visual {
        position: relative;
    }

    .main_visual .slideNum {
        position: absolute;
        top: 0;
        right: 15px;
        left: auto;
        /*가운데로 보낸다음*/
        margin: 0 0 0 0;
        /*width1200px이므로 margin-left를 600px 줘서 끝으로 보낸다음*/
        transform: translateX(0);
        /*자기자신만큼 왼쪽으로 보낸다*/

        color: #fff;
        font-size: 40px;
        text-shadow: 0 0 3px #000;
    }

    .main_visual .slideArrows i {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 50px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
    }

    .main_visual .slideArrows i:nth-child(1) {
        left: 15px;
        margin: 0 0 0 0;
    }

    .main_visual .slideArrows i:nth-child(2) {
        left: auto;
        right: 15px;
        margin: 0 0 0 0;
    }

}
@media screen and (max-width:550px) {
    .main_slider figure {
        height:300px;
    }
    .main_slider .slick-dots li {
        width: 7px; height: 7px;
    }
    .main_slider .slick-dots {
        width: 100%;
        text-align: center;
    }
    .main_slider .inner h2 {
        font-size: 4.2vw;}
        .main_slider .inner a {
            font-size: 12px;
            padding: 7px 17px 11px 17px;
        }
        
}

.content01 {
    padding: 100px 0;
    text-align: center;
    /*inline인건 다 센터로*/
}

.content01 p {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 30px 0;
    line-height: 1.6em;
    color: #111;
}
.content01 p b {background: linear-gradient(to top, #ffe9e0 50%, transparent 50%); font-weight: 600;}
.content01 .table_box {
    display: flex;
    justify-content: space-between;
}
.content01 .table_box strong {display: inline-block; width: 17%;}
.content01 .table_box table {width: 80%; border-collapse: collapse; border: 1px solid #ddd;}
.content01 .table_box .table_content {width: 80%;}
.content01 .table_box .table_content p {text-align: left; margin-bottom:7px}
.content01 .table_box .table_content table {width: 100%; margin-bottom:35px; }
.content01 .table_box table th {padding: 13px 0; background-color: #f4f4f4;}
.content01 .table_box table th.date_th {background-color: #fff7f1; width:15%}
.content01 .table_box table th.date_th span {font-size: 0.8em;}
.content01 .table_box table td {padding: 13px 0;}
.content01 .table_box_03 {margin:35px 0;}
.content01 p.table_info {text-align: right; font-size: 0.8em; color: #444;}
.content01 p.more_info {text-align: left;}
.content01 .wid {
    max-width: 1100px;
    margin: 0 auto;
}
.content01 .table_box .mo {display: none;}


@media (max-width:1200px) {
    .content01 .wid { padding: 0 15px;
    }
    .content01 p .pc {display: none;}
}
@media (max-width:768px) {
    .content01 {
        padding: 50px 0;
        text-align: center;
        /*inline인건 다 센터로*/
    }

  
    .content01 p {
        font-size: 14px;
        font-weight: 300;
        margin: 0 0 30px 0;
    }
   
}
@media (max-width:550px) {
    .content01 .table_box {
        flex-direction: column;
        gap: 7px; 
        font-size: 14px;
    }
    .content01 .table_box .table_content {width: 100%;}

    .content01 .table_box strong {width: 100%; text-align: left;}
    .content01 .table_box table {width: 100%; font-size: 12px; line-height: 1.3em; }
    .content01 .table_box .mo {display: block;}
    .content01 .table_box .pc {display: none;}

}



.content02 {
    padding: 200px 0;
    text-align: center;
    background:url(../img/main02_bg.jpg);
}
.content02 p {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 30px 0;
    line-height: 1.6em;
    color: #fff;
}
.content02 a {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
   border: 2px solid #fff;
   padding: 12px 80px;
    line-height: 1.6em;
    color: #fff;
    transition: all .3s;
}
.content02 a:hover {background-color: #fff; color:#333}

@media (max-width:768px) {
    .content02 {
        padding: 100px 0;
        text-align: center;
        /*inline인건 다 센터로*/
    }

  
    .content02 p {
        font-size: 14px;
        padding: 0 10px;
    }
    .content02 a {font-size: 13px;}
   
}


.content03 {
    padding: 100px 0;
    text-align: center;
    background: #fafafa;
}
#page03 {background: transparent;}
.content03 .wid {max-width: 1200px; margin: 0 auto;}
.content03 .wid h2 {font-size: 25px; font-weight: 700; position: relative; margin-bottom: 60px;}
.content03 .wid h2::after {display:block; content:''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 45px; height: 1px; background-color: #aaa;}
.content03 .wid ul {display: flex; gap:3.5%; flex-wrap: wrap;}
.content03 .wid ul li {width: 31%;}
.content03 .wid ul li div {width: 100%; height: 100%; padding: 150px 30px; transition: all .3s;} 
.content03 .wid ul li:hover div.img_dark { background: rgba(0, 0, 0, 0.3);}
.content03 .wid .rooms li:nth-child(1) {
    background: url(../img/main03_bg01.JPG) no-repeat center center/cover;
}
.content03 .wid .rooms li:nth-child(2) {
    background: url(../img/main03_bg02.JPG) no-repeat center center/cover;
}
.content03 .wid .rooms li:nth-child(3) {
    background: url(../img/main03_bg03.JPG) no-repeat center center/cover;
}
.content03 .wid .facilities li:nth-child(1) {
    background: url(../img/main03_bg04.jpg) no-repeat center center/cover;
    margin-bottom: 30px;
}
.content03 .wid .facilities li:nth-child(2) {
    background: url(../img/main03_bg05.jpg) no-repeat center center/cover;
    margin-bottom: 30px;
}
.content03 .wid .facilities li:nth-child(3) {
    background: url(../img/main03_bg06.jpg) no-repeat center center/cover;
    margin-bottom: 30px;
}
.content03 .wid .facilities li:nth-child(4) {
    background: url(../img/main03_bg07.jpg) no-repeat center center/cover;
}
.content03 .wid .facilities li:nth-child(5) {
    background: url(../img/main03_bg08.jpg) no-repeat center center/cover;
}
.content03 .wid .facilities li:nth-child(6) {
    background: url(../img/main03_bg09.jpg) no-repeat center center/cover;
}
.content03 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: #fff;
    padding: 20px;
    border: 2px solid #fff;
}

@media (max-width:768px) {
    .content03 {
        padding: 50px 0;
        text-align: center;
        /*inline인건 다 센터로*/
    }

    .content03 p {
        font-size: 14px;
    }
    .content03 .wid ul {}
    .content03 .wid ul li {width: 48%;}
    .content03 .wid .rooms li:nth-child(1),.content03 .wid .rooms li:nth-child(2) {
        margin-bottom: 30px;
    }
    .content03 .wid .facilities li:nth-child(4) { margin-bottom: 30px;
    }
    .content03 .wid ul li div {padding: 130px 30px;}
}
@media screen and (max-width:550px) {
    .content03 .wid ul {flex-direction: column; gap: 25px;}
    .content03 .wid ul li {width: 100%;}

    
}
.content05 {
    padding: 100px 0;
    text-align: center;
    background: #fafafa;
}
.content05 .wid  {max-width: 1200px; margin: 0 auto;}
.content05 .wid h2 {font-size: 25px; font-weight: 700; position: relative; margin-bottom: 160px;}
.content05 .wid .reser_btn {display: flex; justify-content: space-between;}
.content05 .wid .reser_btn li {width: 31%;}
.content05 .wid .reser_btn li img {display:block; width: 30%; margin:0 auto 20px auto;}
.content05 .wid .reser_btn li strong {display: block; font-size: 1.1em; line-height: 1.4em; font-weight: 600; color: #8a522c;}
.content05 .wid .reser_btn li span {display: block; font-size: 0.8em; line-height: 1.4em; font-weight: 600; color: #f00;}
@media screen and (max-width:550px) {
    .content05 {
        padding: 40px 0;}
        .content05 .wid h2 {margin-bottom: 30px;}
    .content05 .wid .reser_btn {flex-direction: column; gap: 25px;}
    .content05 .wid .reser_btn li {width: 100%; }
    .content05 .wid .reser_btn li img { margin:0 auto 10px auto;}
    .content05 .wid .reser_btn li strong {font-size:15px;}
    .content05 .wid .reser_btn li a {font-size: 14px;}
}
.footer {
    background-color: #333;
    color: #fff;
    line-height: 80px;
    font-size: 15px;
}

.footer .top {
    border-bottom: 1px solid #555;

}

.footer .container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}


.footer .top .service li {
    display: inline-block;
}


.footer .top .service .bold {
    font-weight: 700;
}

.footer .top .service li+li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #ddd;
    margin: 0 15px;
}

.footer .sns {
    font-size: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer .sns a {
    display: inline-block;
    margin: 0 2px;


}

.footer .sns i {
    font-size: 30px;
    background: #444;
    padding: 10px;
    vertical-align: middle;
}
.footer .sns .kakao_logo_box {
    background: #444;
    width: 50px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .sns img {
    width: 40px;
   margin-right: 10px;
   display: block;
   margin: 0 auto;
}
.footer address {
    font-style: normal;
}

.footer .bottom select {
    outline: none;
    border: 1px solid #555;
    background: transparent;
    color: #fff;
    padding: 5px 15px;
    font-size: 10px;
    text-transform: uppercase;
}

.footer .bottom select option {
    background: #333;


}

.to_top {
    position: fixed;
    inset: auto 50px 300px auto;
    display: none;
    font-size: 40px;
    color: #fff;
    background: #333;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.quick_menu {
    position: fixed;
    bottom:50px; right:15px;
}
.quick_menu a {
    display: block;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    padding: 11px 0;
}
.quick_menu a i {display: block; margin-bottom: 6px; font-size: 20px;
}
.quick_menu a .kakao_logo {
    width: 24px;
    display: block;
    margin: 0 auto 5px;

}
.quick_menu a:first-child {
    background-color: #8a522c;
    color: #fff;
    margin-bottom: 20px;
}
.quick_menu a:last-child {
    background-color: #FAE100;
    color: #371D1E;
    padding: 15px 0;
}
@media (max-width:768px) {
    .footer {
        background-color: #333;
        color: #fff;
        line-height: 40px;
        font-size: 15px;
        padding: 50px 0;
        text-align: center;
    }

    .footer .top {
        border-bottom: 1px solid #555;

    }

    .footer .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: auto;
        margin: 0 auto;
    }


    .footer .top .service li {
        display: inline-block;
        padding: 0 10px;
    }


    .footer .top .service .bold {
        font-weight: 700;
    }

    .footer .top .service li+li::before {
        content: '';
        display: none;
        display: inline-block;
        width: 1px;
        height: 10px;
        background: #ddd;
        margin: 0 15px;

    }

    .footer .sns {
        font-size: 0;
    }

    .footer .sns a {
        display: inline-block;
        margin: 0 2px;

    }

    .footer .sns i {
        font-size: 30px;
        background: #444;
        padding: 10px;
        vertical-align: middle;
    }

    .footer address {
        font-style: normal;
    }

    .footer .bottom {
        padding: 0 15px;
    }

    .footer .bottom select {
        outline: none;
        border: 1px solid #555;
        background: transparent;
        color: #fff;
        padding: 5px 15px;
        font-size: 10px;
        text-transform: uppercase;
    }

    .footer .bottom select option {
        background: #333;


    }

    .to_top {
        position: fixed;
        inset: auto 15px 15px auto;
        display: none;
        font-size: 20px;
        color: #fff;
        background: #333;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        z-index: 1000;
    }
}
@media screen and (max-width:550px){
    .quick_menu a:first-child {
   
        margin-bottom: 10px;
    }
    .quick_menu a {
        width: 57px;
        height: 57px;
        font-size: 13px;
        padding: 7px 0;
    }
        .quick_menu a i {
            margin-bottom: 3px;
        }
        .quick_menu a:last-child {
            padding: 10px 0;
        }
}
