/*
Theme Name: theme-hwang
Theme URI: -
Author: youngsun
Author URI: -
Description: theme-hwang
Version:1.0
*/

@charset "utf-8";

/* CSS RESET */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus{
    outline: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, button, cite, code,del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin:0; 
    padding:0; 
    border:0;
    font-size:100%;
    font:inherit;
    background:none;
}

body {
    /* font-family: "Nanum Gothic", Nanum, Dotum, 돋음, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    /* font-family: 'Noto Serif KR', serif; */
    font-family: "NanumSquare", serif;
    line-height:100%;
    overflow-x : hidden;
    letter-spacing: -1px;
}

ol, ul, li{
    margin:0;
    padding:0;
    list-style:none;
}

hr {
    display:none;
}

table{
    border-collapse:collapse; 
    border-spacing:0;
}

sup{
    vertical-align:text-top;
}

sub{
    vertical-align:text-bottom;
}

strong, b{
    font-weight:normal;
}

button{
    cursor:pointer;
}

input,textarea,select{
    margin:0px;
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
}

a:link, a:visited{
    text-decoration:none;
}

a:hover{
    text-decoration:none;
}

legend {
    display:none; 
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display:block;
}

body {
    line-height:100%;
    overflow-x : hidden;
}         

blockquote, q{
    quotes:none;
}

blockquote:before, blockquote:after, q:before, q:after{
    content:'';
    content:none;
}

/* ::-moz-selection {
    background: #FCCE00;
    color: #fff;
}

::selection {
    background: #FCCE00;
    color: #fff;
} */



/*header*/
.header_wrap{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    /* min-height: 80px; */
    background: transparent;
    transition: all 0.3s;
}

.header_wrap.fix_menu{
    background: rgba(0, 0, 0, 0.9);
    height: 90px;
}

.header_wrap .logo {
    position: absolute;
    top: 36px;
    left: 50px;
    width: 200px;
    height: 70px;
    overflow: hidden;
    transition: all 0.3s;
}

.header_wrap.fix_menu .logo{
    top: 50%;
    transform: translateY(-50%);
    /* display: none; */
}

.header_wrap .logo a {
    display: block;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./images/logo.png?20210407');
}

.header_wrap .gnb_wrap {
    position: absolute;
    width: 850px;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    transition: all 0.3s;
    display: none;
}

.header_wrap.fix_menu .gnb_wrap{
    display: block;
}

.header_wrap.fix_menu .gnb_wrap{
    top: 50%;
    transform: translate(-50%, -50%);
}

.header_wrap .gnb_wrap ul{
    font-size: 0;
    width: 100%;
}

.header_wrap .gnb_wrap ul li{
    width: 16.6%;   
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    position: relative;
}

.header_wrap .gnb_wrap ul li a{
    display: block;
    padding: 32px 0;
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    cursor: pointer;
}

.header_wrap .gnb_wrap ul li a:hover{
    color: #FFBA01;
}

.header_wrap .gnb_wrap ul li a.active{
    color: #FFBA01;
}

.header_wrap .tel {
    position: absolute;
    top: 50px;
    right: 45px;
    transition: all 0.3s;
}

.header_wrap.fix_menu .tel{
    top: 50%;
    transform: translateY(-50%);
    /* display: none; */
}

.header_wrap .tel a{
    /* background: #333333; */
    color: #FFF;
    border-radius: 25px;
    padding-left: 45px;
    line-height: normal;
    font-size: 23px;
    letter-spacing: 0px;
    position: relative;
    font-weight: bold;
}

.header_wrap .tel a::after{
    content: "";
    width: 20px;
    height: 20px;
    background: url('./images/tel_icon.png');
    position: absolute;
    left: 23px;
    top: 4px;
}


/*footer*/
.footer_wrap{
    width: 100%;
    position: relative;
    /* background: #EDE5D8; */
    background: #000000;
}

.footer_area{
    width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0;
}

.footer_area p{
    color: #FFF;
    font-size: 17px;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: normal;
    padding-bottom: 13px;
    text-align: center;
}

.footer_area p strong{
    font-weight: bold;
}

.footer_area p span{
    font-size: 15px;
    padding: 0 10px;
    vertical-align: text-top;
}

.footer_area p.copy_txt{
    padding-top: 10px;
    padding-bottom: 0;
    font-size: 10px;
}

.fix_contact_wrap{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    border: 2px solid #935D18;
    border-width: 2px 0;
    box-sizing: border-box;
    background: #A5212B;
    z-index: 100;
}

.fix_contact_area{
    width: 1300px;
    margin: 0 auto;
    position: relative;
    /* padding: 30px 0; */
}

.fix_contact_area ul{
    font-size: 0;
}

.fix_contact_area ul li{
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 0 20px;
    box-sizing: border-box;
    height: 90px;
}

.fix_contact_area ul li img{
    display: block;
    margin: 0 auto;
    vertical-align: middle
}

.fix_contact_area ul li:first-child{
    width: 250px;
    text-align: center;
    border-right: 2px solid #935d18;
}

.fix_contact_area ul li:last-child{
    width: 1050px;
}

.contact_tel_img{
    display: inline-block;
    padding-right: 20px;
}

.navi_wrap{
    position: fixed;
    width: 160px;
    z-index: 99999;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    cursor:pointer;
}

.navi_wrap .kaka{
    float: left;
    padding: 0;
    padding-bottom:10px;
}

.navi_wrap .tel{
    padding-bottom:10px;
}

.mo_navi_wrap{
    display: none;
}

/*media query*/
@media all and (max-width: 1700px) {
    .header_wrap .gnb_wrap {
        width: 750px;
    }
}

@media all and (max-width: 1550px) {
    .header_wrap .logo {
        left: 15px;
    }

    .header_wrap .tel {
        right: 20px;
    }

    .header_wrap .gnb_wrap {
        width: 700px;
    }

    .header_wrap .gnb_wrap ul li a {
        font-size: 17px;
    }
}

@media all and (max-width: 1450px) {
    .header_wrap .tel a {
        font-size: 20px;
    }

    .header_wrap .tel a::after {
        top: 2px;
    }
}

@media all and (max-width: 1350px) {
    .fix_contact_area{
        width:100%;
    }
}

@media all and (max-width: 1320px) {
    .header_wrap .gnb_wrap {
        width: 550px;
    }

    .header_wrap .gnb_wrap ul li a {
        font-size: 16px;
    }
}

@media all and (max-width: 1240px) {
    .footer_area p {
        font-size: 14px;
    }
}

@media all and (max-width: 1170px) {
    .header_wrap .gnb_wrap {
        width: 480px;
    }
}

@media all and (max-width: 1090px) {
    .header_wrap.fix_menu .gnb_wrap {
        display: none;
    }
}

@media all and (max-width: 1020px) {
    .fix_contact_wrap{
        display: none;
    }
}

@media all and (max-width: 800px) {
    .footer_area{
        padding: 60px 0 100px;
        width: 95%;
    }

    .navi_wrap {
        display: none;
    }

    .mo_navi_wrap{
        display: block;
    }

    .mo_navi_wrap{
        width:100%;
        position: fixed;
        bottom: 0;
        z-index:99;
    }
    
    .mo_navi_wrap ul{
        font-size:0;
    }
    
    .mo_navi_wrap ul li{
        display:inline-block;
        width:50%;
        line-height: 20px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        font-size:15px;
        padding: 13px 0px;
        text-align: center;
    }
    
    .mo_navi_wrap ul li a{
        color: #FFF;
        font-weight: bold;
    }
    
    .mo_navi_wrap ul li strong{
        color: #FFBA00;
        font-size: 25px;
    }
    
    .mo_navi_wrap ul li img{
        vertical-align: middle;
    }
    
    .k_li{
        background: #FFDE00;
    }
    
    .f_li{
        background: #E21F23;
    }
    
    .k_li a{
        color:#3B1F1E !important;
    }
}

@media all and (max-width: 740px) {
    .footer_area p span {
        padding: 0 10px;
    }

    .footer_area p {
        font-size: 13px;
    }
}

@media all and (max-width: 610px) {
    .header_wrap .logo {
        width: 170px;
        height: 56px;
    }

    .header_wrap .tel {
        display: none;
    }
}

@media all and (max-width: 550px) {
    .header_wrap .logo {
        width: 150px;
        height: 47px;
    } 
}
