@charset "utf-8";

@font-face {
    font-family: 'KoPubWorldDotum';
    font-weight: 300;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumLight.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumLight.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumLight.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumLight.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumLight.ttf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'KoPubWorldDotum';
    font-weight: 500;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumMedium.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumMedium.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumMedium.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumMedium.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumMedium.ttf') format("truetype");
    font-display: swap;
}
@font-face {
    font-family: 'KoPubWorldDotum';
    font-weight: 700;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumBold.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumBold.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumBold.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumBold.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/webfontworld/kopus/KoPubWorldDotumBold.ttf') format("truetype");
    font-display: swap;
}

body{
    font-family: 'KoPubWorldDotum';
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-thumb {
    background-color: #5B5555;
    border-radius: 10px;
}
body::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}

/* 헤더 */
#header{
    z-index: 5000;
    width: 100%;
    position: fixed;
    background-color: #fff;
}
#h_in{
    position: relative;
    margin: 0 auto;
    z-index: 1000;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.h_logo{
    width: 100px;
    height: auto;
}
.h_logo img{
    width: 100%;
    height: auto;
}
#nav{
    display: none;
}

/* 햄버거 메뉴 */
#icon + label + #ham_menu{
    width: 200px;
}

#ham_icon{
    position: fixed !important;
    left: 10px;
    z-index: 999;
}
#ham_icon{
    margin: auto 0;
}
#ham_menu li{
    padding: 10px 0;
    text-align: center;
}
input[id="icon"] {
    display:none;
} 

input[id="icon"] + label{
    position: fixed;
    display:block;
    width:30px;
    height:22px;
    cursor:pointer;  /* 커서를 올려놓을 때 모양이 바뀐다. */
    z-index: 900 !important;
} 

input[id="icon"] + label > span {
    position: absolute;
    display:block;
    width:100%;
    height:2px;
    border-radius:30px;
    background: #000;
    transition: all 0.35s;  /* 진행되는 과정들을 천천히 보여줄 수 있다. 0.35초 동안 진행됨 */
}

input[id="icon"] + label > span:nth-child(1) {
    top:0px;
}

input[id="icon"] + label > span:nth-child(2) {
    top:50%;
    transform: translateY(-50%);  /* 엘리먼트를 변형할 때 쓴다. 비틀거나 구부리거나 돌릴 때 . 여러가지로 모양을 바꿀 때 */
}

input[id="icon"] + label > span:nth-child(3) {
    bottom:0px;
}


input[id="icon"]:checked + label > span:nth-child(1) {
    top:50%;
    transform:translateY(-50%) rotate(45deg);
}

input[id="icon"]:checked + label > span:nth-child(2) {
    opacity: 0;
}

input[id="icon"]:checked + label > span:nth-child(3) {
    bottom:50%;
    transform:translateY(50%) rotate(-45deg);
}

#icon + label + #ham_menu {
    position:fixed !important;  /* 스크롤을 내리더라도 같은 위치에서 붙어다닌다. */
    width:265px;
    height:100%;
    background: rgba(255, 255, 255, 0.8);
    top:0px;
    padding:60px 25px 25px 25px;
    box-sizing:border-box;
    left:-300px;
    z-index: 800 !important;
    transition: all 0.35s;
}

#icon:checked + label + #ham_menu {
    left:0px;
}
#icon:checked + label + #ham_menu > ul {
    padding-left: 0;
}
#icon:checked + label + #ham_menu > ul > li > a {
    color: #000;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    z-index: 200;
}
.accordion{
    width: 200px;
    margin: 50px auto;
}
.accordion li{
    border-bottom: 1px solid #aaa;
}
.accordion li:last-child{
    border-bottom: 0;
}
.accordion li a{
    display: block;
    padding: 0 20px;
    line-height: 50px;
    font-size: 17px;
    color: #222;
    font-weight: 700;
    text-decoration: none;
}
.accordion li a.on{
    color: #777;
}
.accordion .sub{
    display: none;
}
.accordion .sub ul{
    padding: 20px 0;
    border-top: 1px solid #ddd;
}
.accordion .sub li{
    border: 0;
}
.accordion .sub li a{
    line-height: 30px;
    font-weight: 400;
    font-size: 15px;
    color: #777;
}

/* 섹션1 */
#sec1{
    overflow-x: hidden;
    padding-top: 47px;
    background-image: url(../img/main_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#sec1_in{
    padding: 0 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec1_txt{
    width: 55%;
    margin-top: 40px;
}
.sec1_txt h3{
    font-size: 1.2rem;
    font-weight: bold;
    color: #5B5555;
    margin-bottom: 10px;
}
.sec1_txt p{
    color: #856e4e;
    font-size: 10px;
}
.sec1_img{
    margin-right: 10px;
    width: 45%;
}
.sec1_img img{
    width: 100%;
    height: auto;
}
/* 섹션1 */

/* 섹션2 */
#sec2{
    overflow-x: hidden;
}
.sec21{
    background-image: url(../img/sec21bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#sec21_in{
    padding: 20px 10px;
}
.sec21_title{
    font-family: 'KoPubWorldDotum';
    text-align: center;
    margin-bottom: 10px;
}
.sec21_title h3{
    font-size: 1.3rem;
}
.sec21_title p{
    font-weight: 700;
    font-size: 1.3rem;
}
.sec21_name{
    padding: 5px 0;
    text-align: center;
    background-color: #EDE6DE;
}
.sec21_b-a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec21_b-a img{
    width: 100%;
    height: auto;
}
.sec21_b-a p{
    text-align: center;
    color: #fff;
}
.sec21_before{
    margin-right: 5px;
}
.sec21_before p{
    padding: 5px 0;
    background-color: #CAAC94;
}
.sec21_after p{
    padding: 5px 0;
    background-color: #502300;
}

.sec22{
    overflow: hidden;
    background-color: #FFF9F2;
}
#sec22_in{
    position: relative;
    padding: 20px 10px 0 10px;
}
.sec22_title{
    font-family: 'KoPubWorldDotum';
    text-align: center;
    margin-bottom: 60px;
}
.sec22_title h3{
    font-size: 1.5rem;
}
.sec22_title p{
    font-weight: 700;
    font-size: 1.5rem;
}
.sec22_info{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -60px;
}
.review_center{
    margin-bottom: 20px;
}
.sec22_info img{
    width: 100%;
    height: auto;
}
.sec22bgL, .sec22bgR{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: absolute;
    top: 40px;
    width: 70px;
    font-size: 11px;
    font-weight: 700;
    padding: 30px 5px 30px 27px;
}
.sec22bgL{
    background-image: url(../img/review_subL.png);
    left: 0;
}
.sec22bgR{
    background-image: url(../img/review_subR.png);
    right: 0;
}
.sec22bgL span, .sec22bgR span{
    color: #002094;
}
.sec22bgL img, .sec22bgR img{
    width: 100%;
    height: auto;
}
/* 섹션2 */

/* 섹션3 */
#sec3{
    overflow-x: hidden;
}
#sec3_in{
    padding: 30px 10px;
}
.sec3_title{
    text-align: center;
    margin-bottom: 20px;
}
.sec3_title p{
    color: #CAAC94;
}
.sec3_title h3{
    font-size: 1.3rem;
}
.sec3_info1, .sec3_info2, .sec3_info3{
    margin-bottom: 30px;
}
.sec3_img1{
    box-shadow: -10px -10px #FFF9F2;
}
.sec3_img2{
    box-shadow: -10px -10px #FFE7E7;
}
.sec3_img3{
    box-shadow: -10px -10px #C8B3A3;
}
.sec3_img4{
    box-shadow: -10px -10px #CAAC94;
}
#sec3_in img{
    width: 100%;
    height: 100%;
}
.sec3_num{
    font-family: 'KoPubWorldDotum';
    color: #502300;
    padding: 5px 0;
}
.sec3_name{
    font-family: 'KoPubWorldDotum';
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1.3rem;
}
/* 섹션3 */

/* 섹션4 */
#sec4{
    overflow-x: hidden;
    background-image: url(../img/sec4bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#sec4_in{
    background-image: url(../img/sec4_logo.png);
    background-repeat: no-repeat;
    background-position: right -40px bottom;
    background-size: 60% auto;
    padding: 30px 10px;
}
#sec4_in h3{
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.sec4_list li{
    margin-bottom: 20px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}
.sec4_list h4{
    padding: 10px;
    background-color: #C8B3A3;
    border-radius: 20px 20px 0 0;
    font-size: 1rem;
}
.sec4_list p{
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}
/* 섹션4 */

/* 섹션5 */
#sec5{
    overflow-x: hidden;
}
.sec51 img{
    width: 100%;
    height: auto;
}
#sec52_in{
    padding: 30px 10px;
}
#sec52_in h3{
    text-align: center;
    margin-bottom: 20px;
}
.sec52_title{
    display: flex;
}
.sec52_title p{
    padding: 10px 5px;
    margin-right: 5px;
}
.sec52_title .order{
    background-color: #CAAC94;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
}
.kakao, .insta{
    width: 30px;
}
.kakao img, .insta img{
    width: 100%;
    height: auto;
}
.sec5_form{
    background-color: #CAAC94;
    padding: 10px;
}
.sec5_form fieldset{
    padding: 10px;
    border-style: none;
    border: 1px solid #fff;
}
#phone, .sec5_form select{
    width: 100%;
    display: block;
    padding: 5px 0;
    width: 100%;
    border-radius: 5px;
    box-sizing : border-box;
    border-width: 0;
}
#phone{
    margin-bottom: 5px;
}
.form_chb{
    margin: 5px 0;
}
#checkbox{
    font-size: 12px;
}
#form_btn{
    color: #fff;
    background-color: #837474;
    border: none;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
}
/* 섹션5 */

/* 푸터 */
#footer{
    background-color: #000;
}
#f_in{
    padding: 20px 10px;
}
#f_in p{
    display: inline;
    color: #fff;
    font-size: 14px;
}
#f_in p::after{
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    margin-left: 6px;
    margin-right: 2px;
    margin-bottom: -1px;
    background-color: #fff;
}
#f_in p:last-child::after{
    display: none;
}
.copyright{
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}
/* 푸터 */

/* 픽스 */
.fix_icon{
    position: fixed;
    right: 10px; bottom: 5%;
}
.fix_icon div{
    width: 40px; height: 40px;
}
.fix_icon div:first-child{
    margin-bottom: 5px;
}



@media screen and (min-width:300px) {
    .sec1_txt h3{
        font-size: 1.6rem;
    }
    .sec1_txt p{
        font-size: 0.8rem;
    }
}



@media screen and (min-width:400px) {

    /* 헤더 */
    .h_logo{
        width: 130px;
    }
    /* 헤더 */

    /* 섹션1 */
    #sec1{
        padding-top: 55px;
    }
    #sec1_in{
        padding: 0 20px 30px 20px;
        justify-content: center;
    }
    .sec1_txt{
        margin-right: 10px;
    }
    .sec1_txt h3{
        font-size: 1.8rem;
    }
    .sec1_txt p{
        font-size: 12px;
    }
    .sec1_img{
        width: 40%;
    }
    /* 섹션1 */

    /* 섹션2 */
    #sec21_in{
        padding: 40px 20px;
    }
    .sec21_title h3, .sec22_title h3{
        font-size: 1.8rem;
    }
    .sec21_title p, .sec22_title p{
        font-size: 1.8rem;
    }
    #sec22_in{
        padding: 40px 20px 0 20px;
    }
    .sec22bgL, .sec22bgR{
        top: 70px;
        padding: 30px 25px 40px 30px;
        font-size: 14px;
    }
    /* 섹션2 */

    /* 섹션3 */
    #sec3_in{
        padding: 40px 20px 40px 20px;
    }
    .sec3_title h3{
        font-size: 1.8rem;
    }
    .sec3_info1, .sec3_info2, .sec3_info3, .sec3_info4{
        display: flex;
    }
    .sec3_info1, .sec3_info2, .sec3_info3{
        margin-bottom: 50px;
    }
    .sec3_info2, .sec3_info4{
        flex-direction: row-reverse;
    }
    .sec3_info2 .sec3_num, .sec3_info2 .sec3_name, .sec3_info2 .sec3_txt, .sec3_info4 .sec3_num, .sec3_info4 .sec3_name, .sec3_info4 .sec3_txt{
        text-align: right;
    }
    .sec3_img1, .sec3_img2, .sec3_img3, .sec3_img4{
        width: 50%;
        margin-right: 20px;
    }
    .sec3_img2, .sec3_img4{
        margin-left: 20px;
    }
    .sec3_img2{
        box-shadow: 10px 10px #FFE7E7;
    }
    .sec3_img4{
        box-shadow: 10px 10px #CAAC94;
    }
    .sec3_text{
        width: 50%;
        margin-bottom: 0;
    }
    .sec3_num{
        font-size: 10px;
    }
    .sec3_name{
        font-size: 1.2rem;
    }
    .sec3_name br{
        display: block;
    }
    .sec3_txt{
        font-size: 12px;
    }
    /* 섹션3 */

    /* 섹션4 */
    #sec4_in{
        padding: 30px 10px 70px 10px;
    }
    #sec4_in h3{
        font-size: 1.8rem;
    }
    .sec4_list li{
        position: relative;
        box-shadow: none;
    }
    .sec4_list h4{
        width: 330px;
        position: absolute;
        border-radius: 0;
        top: -30px; left: 20px;
        box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
        font-size: 0.85rem;
    }
    .sec4_list p{
        font-size: 12px;
        margin-top: 60px;
        border-radius: 10px;
        padding: 30px 20px 20px;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }
    /*
    .sec4_list li:nth-child(4) p{
        padding-top: 55px;
    }
    .sec4_list li:nth-child(5) p{
        padding-top: 55px;
    }
    */

    /* 섹션4 */

    /* 섹션5 */
    #sec52_in{
        padding: 30px;
    }
    #sec52_in h3{
        font-size: 1.5rem;
    }
    /* 섹션5 */

    /* 푸터 */
    #f_in{
        padding: 30px;
    }
    /* 푸터 */

    /* 픽스 */
    .fix_icon div{
        width: 60px; height: 60px;
    }
}

@media screen and (min-width:450px) {
    .sec1_txt h3{
        font-size: 2.2rem;
    }
    .sec1_txt p{
        font-size: 1.1rem;
    }
}


@media screen and (min-width:500px) {
    /* 햄버거 메뉴 */
    input[id="icon"] + label{
        width: 40px;
        height: 30px;
    }
    #icon + label + #ham_menu{
        width: 300px;
    }
    /* 햄버거 메뉴 */
    
    /* 섹션1 */
    .sec1_txt h3{
        font-size: 2rem;
    }
    .sec1_txt p{
        font-size: 0.8rem;
    }
    /* 섹션1 */

    /* 섹션2 */
    .sec22bgL{
        left: 30px;
    }
    .sec22bgR{
        right: 30px;
    }
    /* 섹션2 */

    /* 섹션3 */
    .sec3_num{
        font-size: 15px;
    }
    .sec3_name{
        font-size: 1.7rem;
    }
    .sec3_txt{
        font-size: 14px;
    }
    /* 섹션3 */

    /* 섹션4 */
    #sec4_in{
        background-size: 45% auto;
    }
    /* 섹션4 */
}



@media screen and (min-width:600px) {

    /* 헤더 */
    .h_logo{
        width: 170px;
    }
    /* 헤더 */

    /* 햄버거 메뉴 */
    #ham_icon{
        left: 20px;
    }
    /* 햄버거 메뉴 */

    /* 섹션1 */
    .sec1_txt h3{
        font-size: 2.4rem;
    }
    .sec1_txt p{
        font-size: 1rem;
    }
    /* 섹션1 */

    /* 섹션2 */
    .sec21_title h3, .sec22_title h3{
        font-size: 1.7rem;
    }
    .sec21_title p, .sec22_title p{
        font-size: 2rem;
    }
    /* 섹션2 */

    /* 섹션3 */
    .sec3_title h3{
        font-size: 1.7rem;
    }
    .sec3_name{
        font-size: 1.5rem;
    }
    .sec3_txt{
        font-size: 1.2rem;
    }
    /* 섹션3 */

    /* 섹션4 */
    #sec4_in h3{
        font-size: 1.7rem;
    }
    .sec4_list h4{
        width: 500px;
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .sec4_list p{
        font-size: 1rem;
    }
    /* 섹션4 */
}




@media screen and (min-width:700px) {
    
    /* 햄버거 메뉴 */
    #icon:checked + label + #ham_menu > ul > li > a{
        font-size: 25px;
    }
    /* 햄버거 메뉴 */

    /* 섹션1 */
    #sec1_in{
        padding: 20px 40px 40px;
    }
    .sec1_txt h3{
        font-size: 2.7rem;
    }
    /* 섹션1 */

    /* 섹션2 */
    #sec21_in{
        padding: 50px 20px;
    }
    .sec21_title{
        margin-bottom: 20px;
    }
    .sec21_title h3, .sec22_title h3{
        font-size: 1.7rem;
    }
    .sec21_title p, .sec22_title p{
        font-size: 1.7rem;
    }
    .sec22bgL, .sec22bgR{
        padding: 25px 15px 35px 25px;
        font-size: 12px;
    }
    .sec22bgL{
        left: 15px;
    }
    .sec22bgR{
        right: 15px;
    }
    .sec21_info{
        max-width: 700px;
        margin: 0 auto;
    }
    /* 섹션2 */

    /* 섹션3 */
    .sec3_title{
        margin-bottom: 50px;
    }
    .sec3_num{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .sec3_name{
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    .sec3_txt{
        font-size: 1.3rem;
    }
    /* 섹션3 */

    /* sec4 */
    #sec4_in{
        padding: 60px 20px 100px 20px;
        background-size: 40% auto;
    }
    /* sec4 */

    /* sec5 */
    #sec5{
        display: flex;
        align-items: center;
    }
    .sec51{
        width: 50%;
    }
    .sec52{
        width: 50%;
    }
    #sec52_in{
        padding: 20px;
    }
    /* sec5 */

    /* 푸터 */
    #f_in{
        padding: 60px 30px 40px 30px;
    }
    .copyright{
        margin-top: 20px;
    }
    /* 푸터 */

    /* 픽스 */
    .fix_icon div{
        width: 80px; height: 80px;
    }
    .fix_icon div:first-child{
        margin-bottom: 20px;
    }
}



@media screen and (min-width:900px) {
    
    /* 헤더 */
    .h_logo{
        width: 250px;
    }
    /* 헤더 */

    /* 햄버거 메뉴 */
    #ham_icon{
        width: 50px;
        height: 40px;
    }
    /* 햄버거 메뉴 */

    /* 섹션1 */
    .sec1_txt h3{
        font-size: 3.5rem;
    }
    .sec1_txt p{
        font-size: 1.5rem;
    }
    /* 섹션1 */

    /* 섹션2 */
    #sec2{
        overflow: hidden;
    }
    .sec22_title{
        margin-bottom: 15px;
    }
    .sec21_title h3, .sec22_title h3{
        font-size: 2.2rem;
    }
    .sec21_title p, .sec22_title p{
        font-size: 2.2rem;
    }
    .sec21_info{
        max-width: 900px;
    }
    .sec21_before{
        width: 50%;
    }
    .sec21_after{
        width: 50%;
    }
    /* 섹션2 */

    /* 섹션3 */
    #sec3_in{
        padding: 60px 20px;
    }
    .sec3_title h3{
        font-size: 2.2rem;
    }
    .sec3_title p{
        font-size: 20px;
    }
    .sec3_info{
        max-width: 800px;
        margin: 0 auto;
    }
    .sec3_num{
        font-size: 25px;
    }
    .sec3_name{
        font-size: 2rem;
    }
    /* 섹션3 */

    /* 섹션4 */
    #sec4_in h3{
        font-size: 2.2rem;
        margin-bottom: 100px;
    }
    .sec4_list{
        max-width: 800px;
        margin: 0 auto;
    }
    .sec4_list h4{
        width: 600px;
        font-size: 1.5rem;
    }
    .sec4_list p{
        padding: 40px 20px 20px;
        font-size: 1.3rem;
    }
    /* 섹션4 */

    /* 푸터 */
    #f_in{
        text-align: center;
    }
    /* 푸터 */
}



@media screen and (min-width:1200px) {

    /* 헤더 */
    #h_in{
        justify-content: space-between;
        padding: 20px 40px;
    }
    .h_logo{
        width: 200px;
    }
    #nav{
        display: block;
        width: 100%;
    }
    #nav:after{
        content: "";
        display: block;
        clear: both;
    }
    .menu{
        margin: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu>li{
        position: relative;
        box-sizing: border-box;
        line-height: 50px;
        text-align: center;
        margin-right: 30px;
        font-weight: bold;
    }
    .menu>li>a{
        font-size: 20px;
    }
    .menu>li a{
        font-family: 'KoPubWorldDotum';
        display: block;
        transition: all 0s;
        color: #000;
    }
    .sub{
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        z-index: 1;
        width: 190px;
    }
    .sub > li > a{
        font-weight: bold;
        font-size: 18px;
        color: #000;
        background: rgba(255, 255, 255, 0.8);
    }
    .sub > li > a:hover{
        color: #fff;
    }

    /* 햄버거 메뉴 */
    #ham_icon{
        display: none;
    }

    /* 섹션1 */
    .sec1_txt h3{
        font-size: 3.5rem;
    }
    .sec1_txt p{
        font-size: 1.5rem;
    }
    /* 섹션1 */

    /* 섹션2 */
    #sec21_in{
        padding: 60px 30px 60px 30px;
    }
    #sec22_in{
        padding: 100px 20px 0 20px;
    }
    .sec21_title{
        margin-bottom: 22px;
    }
    .sec22_title{
        margin-bottom: 40px;
    }
    .sec22bgL, .sec22bgR{
        padding: 50px 50px 60px 50px;
        font-size: 14px;
        top: 150px;
    }
    .sec21_title h3, .sec22_title h3{
        font-size: 2.5rem;
    }
    .sec21_title p, .sec22_title p{
        font-size: 2.5rem;
    }
    /* 섹션2 */

    /* 섹션3 */
    .sec3_title h3{
        font-size: 2.5rem;
    }
    .sec3_title p{
        font-size: 25px;
    }
    .sec3_info{
        max-width: 1000px;
    }
    .sec3_num{
        font-size: 25px;
    }
    .sec3_name{
        font-size: 2.5rem;
    }
    .sec3_txt{
        font-size: 2rem;
    }
    /* 섹션3 */

    /* 섹션4 */
    #sec4_in h3{
        font-size: 2.5rem;
    }
    .sec4_list{
        max-width: 1000px;
    }
    .sec4_list h4{
        width: 800px;
        font-size: 2rem;
    }
    .sec4_list p{
        font-size: 2rem;
    }
    /* 섹션4 */

    /* 섹션5 */
    #sec52_in h3{
        font-size: 2.5rem;
    }
    .sec52_title .order{
        font-size: 25px;
        padding: 10px 20px;
        border-radius: 20px 20px 0 0;
    }
    .kakao, .insta{
        width: 50px;
    }
    .sec5_form{
        padding: 20px;
    }
    .sec5_form fieldset{
        padding: 20px;
    }
    .sec5_form label{
        display: inline-block;
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 10px;
    }
    #phone, .sec5_form select{
        padding: 10px 0;
    }
    #phone{
        margin-bottom: 10px;
    }
    #checkbox{
        font-size: 15px;
    }
    #form_btn{
        font-size: 20px;
    }
    /* 섹션5 */

    /* 푸터 */
    #f_in p{
        font-size: 15px;
    }
    .copyright{
        font-size: 15px;
    }
    /* 푸터 */
}



@media screen and (min-width:1400px) {

    /* 헤더 */
    .menu>li{
        margin-right: 50px;
    }
    /* 헤더 */

    /* 섹션1 */
    #sec1_in{
        max-width: 1400px;
        margin: 0 auto;
    }
    /* 섹션1 */

    /* 섹션2 */
    .sec21_title h3, .sec22_title h3{
        font-size: 40px;
    }
    .sec21_title p, .sec22_title p{
        font-size: 35px;
    }
    .sec21_title{
        margin-bottom: 60px;
    }
    .sec21_name{
        font-size: 20px;
    }
    .sec21_b-a{
        justify-content: space-between;
    }
    .sec21_before{
        width: 50%;
    }
    .sec21_after{
        width: 50%;
    }
    .sec21_before p, .sec21_after p{
        font-size: 20px;
    }
    .sec22{
        width: 50%;
    }
    .sec22bgL, .sec22bgR{
        top: 150px;
    }
    /* 섹션2 */

    /* 섹션3 */
    
    .sec3_info{
        max-width: 1050px;
        margin: 0 auto;
    }
    .sec3_info1, .sec3_info2, .sec3_info3{
        margin-bottom: 100px;
    }
    .sec3_title h3{
        font-size: 40px;
    }
    .sec3_name{
        font-size: 35px;
        margin-bottom: 30px;
    }
    .sec3_txt{
        font-size: 1.5rem;
    }
    /* 섹션3 */

    /* 섹션4 */
    #sec4_in{
        padding: 100px 0 140px 0;
        background-size: 30% auto;
    }
    #sec4_in h3{
        font-size: 40px;
    }
    .sec4_list{
        max-width: 1400px;
    }
    .sec4_list h4{
        width: 1200px;
        font-size: 30px;
    }
    .sec4_list p{
        padding: 80px 20px 40px 40px;
        font-size: 25px;
    }
    /* 섹션4 */

    /* 섹션5 */
    .sec51{
        background-color: #000;
    }
    .sec51 img{
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    /* 섹션5 */

    /* 푸터 */
    #f_in{
        padding: 70px 0;
    }
    /* 푸터 */
}




.sec51 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: #000;
}

.sec51 h2 {
  color: #fff;
  text-align: center;
  font-size: 65px;
  font-weight: bold;
  margin-bottom: 30px;
}

.sec51 .wrap {
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
}

.sec51 .wrap iframe {
  width: 100%;
  height: 450px;
}

.sec51 .wrap .text_box {
  height: auto;
  border: 1px solid #fff;
  border-top: none;
  padding: 38px 46px;
}

.sec51 .wrap .text_box .text {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sec51 .wrap .text_box .text:last-of-type {
  margin-bottom: 0;
}

.sec51 .wrap .text_box .text p {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
}

.sec51 .wrap .text_box .text:last-of-type p {
  font-size: 35px;
  font-weight: bold;
}

.sec51 .wrap .text_box .text span {
  width: 88px;
  height: 23px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
  display: flex;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .sec51 h2 {
    font-size: 48px;
  }

  .sec51 .wrap {
    max-width: 500px;
  }

  .sec51 .wrap .text_box .text p {
    font-size: 16px;
    word-break: keep-all;
  }

  .sec51 .wrap .text_box .text:last-of-type p {
    font-size: 24px;
  }

  .sec51 .wrap .text_box {
    padding: 30px 20px;
  }
}

@media (max-width: 500px) {
  .sec51 {
    padding: 50px 0;
  }

  .sec51 h2 {
    font-size: 24px;
  }

  .sec51 .wrap iframe {
    height: 300px;
  }

  .sec51 .wrap {
    max-width: 90%;
  }

  .sec51 .wrap .text_box .text span {
    width: 75px;
    height: 20px;
    margin-right: 10px;
    font-size: 14px;
  }

  .sec51 .wrap .text_box .text p {
    font-size: 14px;
  }

  .sec51 .wrap .text_box .text:last-of-type p {
    font-size: 18px;
  }
}