@charset "utf-8";

@font-face {
    font-family: 'KimjungchulMyungjo-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulMyungjo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'KimjungchulMyungjo-normal';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulMyungjo-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

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;
}
img{
    width: 100%;
    height: auto;
}

/* 헤더 */
#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 */
#main{
    padding-top: 55px;
}
#sec1{
    background-color: #FFE7E7;
}
#sec1_in{
    padding: 40px 0;
}
.sec1_title h3, .sec1_title p{
    line-height: 25px;
    font-family: 'KoPubWorldBatang';
    font-weight: bold;
    color: #000;
    text-align: center;
}
.sec1_title h3{
    font-size: 1.4rem;
    line-height: 30px;
    margin-bottom: 10px;
}
.sec1_title p{
    padding: 0 20px;
    font-size: 1rem;
}

/* 섹션2 */
#sec2{
    background-image: url(../img/secbg.png);
    font-family: 'KoPubWorldDotum';
}
#sec2_in{
    padding: 40px 0;
}
#sec2_in h3{
    font-family: 'KoPubWorldBatang';
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}
.sec2_main{
    margin: 0 auto;
    position: relative;
    padding: 40px 10px 0 10px;
}
.sec2_list{
    border: 3px solid #fff;
    border-radius: 500px;
}
.sec2_list ul{
    display: flex;
    justify-content: space-around;
    padding: 10px;
}
.sec2_list li{
    position: relative;
    width: 80px; height: 80px;
    border-radius: 500px;
    font-size: 12px;
    text-align: center;
}
.li_order{
    margin-right: -10px;
    background-color: rgba(255, 255, 255, 0.5);
}
.li_time{
    background-color: rgba(189, 155, 128, 0.8);
}
.li_re{
    margin-left: -10px;
    background-color: rgba(167, 142, 119, 0.8);
}
.sec2_list p{
    position: absolute;
    top: 50%; left: 50%;
}
.li_order p{
    margin-left: -11px;
    margin-top: -6px;
}
.li_time p{
    margin-left: -22px;
    margin-top: -12px;
}
.li_re p{
    margin-left: -26.5px;
    margin-top: -12px;
}
.sec2_dot1, .sec2_dot2, .sec2_dot3{
    position: absolute;
    font-size: 10px;
    background-repeat: no-repeat;
}
.sec2_dot1{
    top: 15px; left: 50px;
    background-image: url(../img/dot1.png);
    background-size: auto 60px;
    background-position: top 3px left;
    padding: 0 0 70px 25px;
}
.sec2_dot2{
    bottom: 32px; right: 115px;
    background-image: url(../img/dot2.png);
    background-size: auto 60px;
    background-position: top 10px right;
    padding: 55px 20px 0 0;
}
.sec2_dot2 br{
    display: none;
}
.sec2_dot3{
    bottom: 7px; right: 47px;
    background-image: url(../img/dot3.png);
    background-size: auto 100px;
    background-position: top 10px right;
    padding: 100px 25px 0 0;
}
.sec2_dot3 br{
    display: none;
}

/* 섹션3 */
#sec3{
    font-family: 'KoPubWorldDotum';
    background-image: url(../img/sec3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#sec3_in{
    position: relative;
    padding: 140px 0 140px 0;
    text-align: center;
}
#sec3_in h3{
    display: inline-block;
    padding: 20px;
    background-image: url(../img/sec3tit.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    text-align: center;
    line-height: 15px;
    color: #fff;
    font-size: 12px;
}
.sec3_list li{
    position: absolute;
    color: #fff;
    text-align: center;
}
.sec3_list h4{
    display: inline-block;
    padding: 2px 7px;
    margin-bottom: 5px;
    border-radius: 50px;
    background-color: #837474;
    font-size: 12px;
}
.sec3_list p{
    line-height: 15px;
    font-size: 10px;
}
.sec3_1{
    width: 120px;
    top: 50px; left: 30px;
}
.sec3_2{
    width: 140px;
    top: 160px; left: 10px;
}
.sec3_2 h5{
    font-size: 10px;
}
.sec3_2 span{
    display: none;
}
.sec3_2 div{
    margin-bottom: 5px;
}
.sec32_p{
    margin-top: 2px;
}
.sec3_3{
    width: 120px;
    top: 50px; right: 30px;
}
.sec3_4{
    width: 100px;
    top: 200px; right: 30px;
}
.sec3_4 br{
    display: none;
}

/* 섹션4 */
#sec5{
    font-family: 'KoPubWorldDotum';
    background-color: #F7F4F4;
}
#sec5_in{
    padding: 40px 0;
}
#sec5_in h3{
    font-family: 'KoPubWorldBatang';
    text-align: center;
    margin-bottom: 50px;
}
.sec5_list ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sec5_list li{
    width: 45%;
    margin: 0 5px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}
.sec5_list div{
    position: relative;
    padding: 10px;
}
.sec5_num{
    position: absolute;
    top: -20px; left: 50%;
    margin-left: -17.5px;
    display: inline-block;
    padding: 10px 0;
    width: 35px;
    text-align: center;
    color: #fff;
    background-color: #5B5555;
}
.sec5_img{
    width: 50%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
}
.sec5_tit{
    margin-bottom: 10px;
    font-size: 13px;
}
.sec5_txt{
    line-height: 16px;
    font-size: 12px;
}

/* 립 주의사항 */
#lip_sec{
    font-family: 'KoPubWorldDotum';
}
#lip_in{
    padding: 40px 0;
}
#lip_in h3{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 30px;
    font-family: 'KoPubWorldBatang';
    text-align: center;
    margin-bottom: 20px;
}
.lip_list li{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    border-style: dotted;
    padding-bottom: 10px;
}
.lip_list li:last-child{
    border-bottom: none;
}
.lip_num{
    width: 30%;
    display: inline-block;
    margin-right: 15px;
    width: 20px; height: 20px;
    text-align: center;
    line-height: 20px;
    padding: 5px;
    color: #fff;
    background-color: #5B5555;
}
.lip_txt{
    font-size: 0.8rem;
    line-height: 23px;
    width: 70%;
}

/* 섹션6 */
#sec6{
    font-family: 'KoPubWorldDotum';
    background-image: url(../img/sec6bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#sec6_in{
    padding: 40px 0;
}
#sec6_in h3{
    font-family: 'KoPubWorldBatang';
    text-align: center;
    margin-bottom: 20px;
}
.sec6_list ul{
    display: table;
    margin: 0 auto;
}
.sec6_list li{
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.sec6_num{
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 20px; height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 500px;
    padding: 5px;
    background-color: #FFF9F2;
}
.sec6_txt{
    width: 210px;
    margin-left: -8px;
    padding: 7px 10px;
    font-size: 0.8rem;
    border: 1px solid #000;
    border-style: dashed;
    border-radius: 500px;
    background-color: #fff;
}

/* 섹션7 */
#sec7{
    font-family: 'KoPubWorldDotum';
}
#sec7_in{
    padding: 40px 10px;
}
#sec7_in h3{
    font-family: 'KoPubWorldBatang';
    text-align: center;
    margin-bottom: 20px;
}
.sec7_list li{
    margin-bottom: 20px;
}
.sec7_txt{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.sec7_num{
    display: inline-block;
    margin-right: 5px;
    width: 20px; height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 500px;
    padding: 5px;
    color: #fff;
    background-color: #837474;
}
.sec7_ans{
    line-height: 18px;
    padding: 10px 20px;
    font-size: 0.8rem;
    background-color: #F1F1F5;
}

/* 섹션8 */
#sec8{
    font-family: 'KoPubWorldDotum';
}
#sec8_in{
    padding-bottom: 50px;
}
.sec8_info{
    text-align: center;
}
.sec8_address, .sec8_phone, .sec8_medical, .sec8_ban{
    line-height: 20px;
    margin-bottom: 20px;
}
.sec8_phone span{
    font-size: 1.1rem;
}
.sec8_medical span, .sec8_ban span{
    display: inline-block;
    margin-bottom: 5px;
}
.sec8_etc{
    margin-top: 90px;
    display: flex;
    justify-content: center;
}
.sec8_etc div{
    padding: 0 5px;
}
.sec8_etc a{
    color: #000;
}
.sec8_etc span{
    padding: 65px 10px 10px;
    background-repeat: no-repeat;
    background-position: top 10px center;
    background-size: 50px auto;
    background-color: #F1F1F5;
}
.sec8_doc span{
    background-image: url(../img/docico.png);
}
.sec8_map span{
    background-image: url(../img/mapico.png);
}
.sec8_call span{
    background-image: url(../img/callico.png);
}

/* 푸터 */
#footer{
    background-color: #000;
}
#f_in{
    padding: 20px 10px;
}
#f_in p{
    display: inline;
    color: #fff;
    font-size: 10px;
}
#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: 10px;
    color: #fff;
}

#sec2_in h3, #sec5_in h3, #sec6_in h3, #sec7_in h3{
    font-size: 1.5rem;
}
.sec5_tit, .sec7_que{
    font-size: 1rem;
}
.sec4_more{
    text-align: center;
    background-color: #EEE7DF;
}
.sec4_more a{
    display: inline-block;
    font-size: 15px;
    color: #000;
    padding: 30px 40px 30px;
    margin-left: -25px;
    background-image: url(../img/insta.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center right 5px;
}

/* 픽스 */
.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) {

}

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

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

    .sec1_title h3{
        line-height: 38px;
    }

    /* 섹션2 */
    #sec2_in h3{
        font-size: 1.4rem;
    }
    .sec2_main{
        max-width: 350px;
    }
    .sec2_list li{
        width: 120px;
        height: 120px;
        font-size: 16px;
    }
    .li_order p{
        margin-left: -16px;
        margin-top: -8px;
    }
    .li_time p{
        margin-left: -27px;
        margin-top: -16px;
    }
    .li_re p{
        margin-left: -35px;
        margin-top: -16px;
    }
    .sec2_dot1, .sec2_dot2, .sec2_dot3{
        font-size: 13px;
    }
    .sec2_dot1{
        top: 25px; left: 65px;
    }
    .sec2_dot2{
        bottom: 35px; right: 168px;
    }
    .sec2_dot3{
        bottom: 0; right: 65px;
    }

    /* 섹션3 */
    #sec3_in{
        max-width: 400px;
        margin: 0 auto;
    }
    #sec3_in h3{
        padding: 50px;
    }
    .sec3_list h4{
        padding: 5px 10px;
        margin-bottom: 10px;
        font-size: 15px;
    }
    .sec3_2{
        top: 230px;
        width: 163px;
    }
    .sec3_2 div{
        display: flex;
        align-items: baseline;
    }
    .sec3_2 span{
        display: inline-block;
        margin: 0 2px;
    }
    .sec32_p{
        margin-top: 0;
        text-align: left;
    }
    .sec3_3{
        top: 50px;
        width: 130px;
    }
    .sec3_4{
        top: 250px;
        width: 130px;
    }
    .sec3_4 br{
        display: block;
    }

    /* 섹션4 */
    .sec4_info{
        display: flex;
    }

    /* 섹션5 */
    #sec5_in h3{
        font-size: 1.4rem;
    }
    .sec5_list div{
        padding: 20px;
    }
    .sec5_img{
        padding: 0 10px;
    }
    .sec5_tit{
        font-size: 1.1rem;
        line-height: 25px;
    }
    .sec5_txt{
        line-height: 20px;
        font-size: 0.9rem;
    }

    /* 립 주의사항 */
    #lip_in h3{
        line-height: 40px;
        font-size: 1.8rem;
    }
    .lip_list li{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .lip_num{
        font-size: 1.4rem;
    }
    .lip_txt{
        font-size: 1rem;
    }

    /* 섹션6 */
    #sec6_in h3{
        font-size: 1.4rem;
    }
    .sec6_list li{
        margin-bottom: 15px;
    }
    .sec6_num{
        font-size: 1.4rem;
        padding: 10px;
    }
    .sec6_txt{
        width: 340px;
        font-size: 1rem;
    }

    /* 섹션7 */
    #sec7_in h3{
        font-size: 1.4rem;
    }
    .sec7_num{
        padding: 7px;
        font-size: 1.2rem;
    }
    .sec7_que{
        font-size: 1.2rem;
    }
    .sec7_ans{
        line-height: 22px;
        font-size: 1rem;
    }

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


    .sec1_title h3, #sec2_in h3, #sec5_in h3, #sec6_in h3, #sec7_in h3{
        font-size: 1.8rem;
    }
    .sec5_tit, .sec7_que{
        font-size: 1.3rem;
    }

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



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

    /* 햄버거 메뉴 */
    input[id="icon"] + label{
        width: 40px;
        height: 30px;
    }
    #icon + label + #ham_menu{
        width: 300px;
    }

    /* 섹션1 */
    #sec1_in{
        padding: 60px 0;
    }
    .sec1_title h3{
        font-size: 1.8rem;
        line-height: 40px;
    }
    .sec1_title p{
        line-height: 30px;
        font-size: 1.3rem;
    }

    /* 섹션2 */
    .sec2_dot3{
        text-align: right;
    }
    .sec2_dot3 br{
        display: block;
    }
    
}



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

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

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




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

    /* 섹션2 */
    #sec2_in{
        padding: 60px 0 0;
    }
    #sec2_in h3{
        font-size: 1.8rem;
    }
    .sec2_main{
        max-width: 800px;
        padding: 60px 60px 100px 60px;
    }
    .sec2_list{
        border: 5px solid #fff;
    }
    .sec2_list ul{
        padding: 20px;
    }
    .sec2_list li{
        width: 200px;
        height: 200px;
    }
    .sec2_list p{
        font-size: 1.5rem;
    }
    .li_order p{
        margin-left: -21.5px;
        margin-top: -12px;
    }
    .li_time p{
        margin-left: -43px;
        margin-top: -24px;
    }
    .li_re p{
        margin-left: -53px;
        margin-top: -24px;
    }
    .sec2_dot1, .sec2_dot2, .sec2_dot3{
        font-size: 1.2rem;
    }
    .sec2_dot1{
        background-size: auto 100px;
        background-position: top 10px left;
        padding: 0 0 95px 40px;
        top: 35px; left: 108px;
    }
    .sec2_dot1 br{
        display: none;
    }
    .sec2_dot2{
        background-size: auto 100px;
        padding: 88px 47px 0 0;
        bottom: 38px; right: 290px;
    }
    .sec2_dot3{
        background-size: auto 160px;
        padding: 145px 40px 0 0;
        bottom: -2px; right: 110px;
        text-align: right;
    }

    /* 섹션3 */
    #sec3_in{
        max-width: 650px;
        padding-bottom: 180px;
    }
    #sec3_in h3{
        padding: 70px;
        font-size: 1.5rem;
        line-height: 27px;
    }
    .sec3_list h4{
        font-size: 1.3rem;
        padding: 7px 15px;
        margin-bottom: 15px;
    }
    .sec3_list p{
        line-height: 28px;
        font-size: 1.2rem;
    }
    .sec3_1{
        width: 230px;
        left: -20px;
    }
    .sec3_2{
        width: 308px;
        top: 240px; left: -20px;
    }
    .sec3_2 h5{
        font-size: 1.2rem;
    }
    .sec3_3{
        width: 220px;
        top: 40px; right: -20px;
    }
    .sec3_4{
        width: 230px;
        top: 270px; right: -20px;
    }
    .sec3_list p, .sec32_p h5{
        font-size: 1rem;
    }

    /* 섹션4 */
    #sec4_in{
        display: flex;
    }

    /* 섹션5*/
    #sec5_in{
        padding: 60px 0 20px 0;
    }
    #sec5_in h3{
        font-size: 1.8rem;
    }
    .sec5_list li{
        width: 29%;
        margin: 0 15px 60px 15px;
    }
    .sec5_num{
        width: 45px;
        font-size: 1.5rem;
    }
    .sec5_txt{
        line-height: 23px;
        font-size: 1rem;
    }
    .sec5_txt br{
        display: block;
    }

    /* 립 주의사항 */
    #lip_in{
        padding: 60px 0;
    }
    #lip_in h3{
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
    #lip_in h3 br{
        display: none;
    }
    .lip_list li{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .lip_num{
        font-size: 1.5rem;
        padding: 10px;
    }
    .lip_txt{
        line-height: 27px;
        font-size: 1.2rem;
    }

    /* 섹션6 */
    #sec6_in{
        padding: 60px 0;
    }
    #sec6_in h3{
        font-size: 1.8rem;
    }
    .sec6_list ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .sec6_list li{
        margin: 0 5px 15px 5px;
    }
    .sec6_num{
        font-size: 1.5rem;
        padding: 15px;
    }
    .sec6_txt{
        width: 280px;
        padding: 15px 0;
        font-size: 1rem;
    }

    /* 섹션7 */
    #sec7_in{
        padding: 60px;
    }
    #sec7_in h3{
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    /* 섹션8 */
    #sec8_in{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sec8_info{
        text-align: left;
        margin-right: 30px;
    }
    .sec8_etc span{
        padding: 95px 20px 20px;
        background-position: top 20px center;
        background-size: 60px;
    }

    /* 푸터 */
    #f_in{
        text-align: center;
    }
    .copyright{
        margin-top: 20px;
    }


    .sec1_title h3, #sec2_in h3, #sec5_in h3, #sec6_in h3, #sec7_in h3{
        font-size: 2.4rem;
    }
    .sec5_tit, .sec7_que{
        font-size: 1.5rem;
    }


    .sec4_more a{
        font-size: 22px;
    }

    .sec1_title h3{
        line-height: 48px;
    }

    /* 픽스 */
    .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;
    }

    #main{
        padding-top: 87px;
    }

    /* 섹션1 */
    .sec1_title h3{
        margin-bottom: 20px;
    }
    .sec1_title p{
        line-height: 35px;
        font-size: 1.7rem;
    }

    /* 섹션2 */
    #sec2_in{
        padding: 80px 0 0;
    }
    #sec2_in h3{
        font-size: 2.2rem;
    }
    .sec2_dot1{
        top: 30px; left: 115px;
    }
    .sec2_dot2{
        bottom: 35px; right: 292px;
    }
    .sec2_dot3{
        bottom: -5px; right: 112px;
    }

    /* 섹션3 */
    #sec3_in{
        max-width: 850px;
        padding: 230px 0;
    }
    #sec3_in h3{
        padding: 80px;
    }
    .sec3_1{
        top: 150px; left: 30px;
    }
    .sec3_2{
        width: 314px;
        top: 350px;
    }
    .sec3_2 div{
        margin-bottom: 15px;
    }
    .sec3_2 span{
        margin: 0 5px;
    }
    .sec3_3{
        width: 300px;
        top: 150px;
    }
    .sec3_4{
        width: 247px;
        top: 380px; right: 30px;
    }

    /* 섹션6 */
    #sec6_in h3{
        margin-bottom: 50px;
    }
    .sec6_txt{
        width: 350px;
        font-size: 1.2rem;
    }

    /* 섹션8 */
    #sec8_in{
        padding: 20px 0 100px 0;
    }
    .sec8_info{
        font-size: 1.3rem;
    }
    .sec8_address, .sec8_phone, .sec8_medical, .sec8_ban{
        margin-bottom: 40px;
        line-height: 30px;
    }
    .sec8_phone span{
        font-size: 1.5rem;
    }
    .sec8_etc span{
        font-size: 1.3rem;
        padding: 135px 30px 30px;
        background-size: 80px auto;
        background-position: top 30px center;
    }

    /* 푸터 */
    #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;
    }

    #main{
        padding-top: 150px;
    }

    /* 섹션2 */
    #sec2_in{
        padding: 100px 0;
    }
    #sec2_in h3{
        font-size: 2.5rem;
    }
    .sec2_main{
        padding: 100px 0 0;
        max-width: 1000px;
    }
    .sec2_list li{
        width: 350px; height: 350px;
    }
    .sec2_list p{
        font-size: 2.3rem;
    }
    .li_order p{
        margin-left: -33px;
        margin-top: -18px;
    }
    .li_time p{
        margin-left: -66px;
        margin-top: -37px;
    }
    .li_re p{
        margin-left: -81px;
        margin-top: -37px;
    }
    .sec2_dot1, .sec2_dot2, .sec2_dot3{
        font-size: 1.8rem;
    }
    .sec2_dot1{
        left: 180px; top: 60px;
        background-size: auto 170px;
        padding: 0 0 170px 55px;
    }
    .sec2_dot2{
        right: 490px; bottom: 100px;
        background-size: auto 170px;
        padding: 146px 70px 0 0;
    }
    .sec2_dot3{
        right: 170px; bottom: 10px;
        background-size: auto 290px;
        padding: 265px 80px 0 0;
    }

    /* 섹션3 */
    #sec3_in{
        padding: 280px 0;
    }
    #sec3_in h3{
        padding: 150px;
        font-size: 2.5rem;
        line-height: 40px;
    }
    .sec3_list h4{
        padding: 15px 30px;
        font-size: 1.8rem;
    }
    .sec3_list p{
        line-height: 35px;
        font-size: 1.5rem;
    }
    .sec3_1{
        top: 200px; left: -30px;
        width: 244px;
    }
    .sec3_2{
        top: 500px; left: -150px;
        width: 390px;
    }
    .sec3_2 h5{
        font-size: 1.5rem;
    }
    .sec3_3{
        top: 200px; right: -80px;
    }
    .sec3_4{
        top: 530px; right: -150px;
        width: 309px;
    }
    /* 섹션3 */

    /* 섹션5 */
    #sec5_in h3{
        font-size: 2.5rem;
        margin-bottom: 80px;
    }
    .sec5_list{
        max-width: 1000px;
        margin: 0 auto;
    }
    .sec5_img{
        max-width: 180px;
        margin: 20px auto 20px auto;
    }
    .sec5_tit{
        font-size: 1.5rem;
    }

    /* 립 주의사항 */
    #lip_in{
        padding: 80px 0;
    }
    #lip_in h3{
        font-size: 2.5rem;
        margin-bottom: 80px;
    }
    .lip_list li{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .lip_num{
        font-size: 1.8rem;
    }
    .lip_txt{
        line-height: 35px;
        font-size: 1.5rem;
    }

    /* 섹션6 */
    #sec6_in{
        padding: 80px 0;
    }
    #sec6_in h3{
        font-size: 2.5rem;
        margin-bottom: 80px;
    }
    .sec6_list{
        max-width: 1100px;
        margin: 0 auto;
    }
    .sec6_list li{
        margin: 0 20px 30px 20px;
    }
    .sec6_num{
        padding: 20px;
        font-size: 1.8rem;
    }
    .sec6_txt{
        width: 450px;
        font-size: 1.5rem;
    }

    /* 섹션7 */
    #sec7_in{
        padding: 80px 0 60px 0;
    }
    #sec7_in h3{
        font-size: 2.5rem;
        margin-bottom: 80px;
    }
    .sec7_list{
        max-width: 1000px;
        margin: 0 auto;
    }
    .sec7_num{
        padding: 10px;
        font-size: 1.5rem;
    }
    .sec7_que{
        font-size: 1.5rem;
    }
    .sec7_ans{
        line-height: 30px;
        padding: 25px 30px;
        font-size: 1.3rem;
    }

    /* 섹션8 */
    #sec8_in{
        padding: 90px 0 150px 0;
    }

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



@media screen and (min-width:1400px) {
    .sec4_more a{
        font-size: 30px;
    }
    /* 헤더 */
    .menu>li{
        margin-right: 50px;
    }

    .sec1_title h3{
        font-size: 74px;
        line-height: 95px;
    }

    #sec2_in h3, #sec5_in h3, #sec6_in h3, #sec7_in h3{
        font-size: 74px;
    }
    .sec5_tit{
        font-size: 38px;
        margin-bottom: 25px;
    }
    .sec5_txt{
        font-size: 30px;
    }
    .sec7_que{
        font-size: 38px;
    }

    /* 섹션5*/
    .sec5_list{
        max-width: 1200px;
    }
    .sec5_list li{
        margin: 0 20px 60px 20px;
    }
    .sec5_txt{
        line-height: 30px;
        font-size: 1.3rem;
    }

    /* 립 주의사항 */
    .lip_list{
        max-width: 1200px;
        margin: 0 auto;
    }

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