@charset "utf-8";

/*
    font-family: 'Nanum Myeongjo', serif;
    font-family: 'Noto Sans KR', sans-serif;
*/

:root{
    --color-a: #202020;
    --color-b: #17ACEE;
    --color-c: #2782DE;
    --color-d: #0F64B9;
    --color-e: #5A20A1;
    --color-f: #D70C19;
    --color-g: #D8EAF4;
    
    --gray-a: #525252;
    --gray-b: #8e8e8e;
    --gray-c: #DDDDDD;
    --gray-d: #F7F9FB;
    --gray-e: #F8F8F8;

    --header-height: 177px;
    --lnb-height: 37px;
    --mobile-nav-height: 58px;
}

html, body{
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.5px;
    color: var(--color-a);   
    min-width: 370px; 
}
body{overflow-x: hidden;}
.main_width{
    max-width: 1300px;
    width: 95%;
    margin: 0 auto;
}
.m_br{display: none;}
p, span{font-weight: 300;}
.sentence{line-height: 1.5;}
.btn_a, .btn_b{
    display: block;
    font-family: 'Nanum Myeongjo', serif;    
    height: 33px;
    line-height: 33px;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 1rem;
    transition: 0.15s ease-in-out;
    width: 150px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}
.btn_a::after, .btn_b::after{
    content: "";
    position: absolute;
    width: 12px;
    height: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.15s ease-in-out;
    top: 50%; right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn_a{
    background-color: var(--color-b);
    border: 1px solid var(--color-b);
    color: #fff;
}
.btn_a::after{
    background-image: url(../img/icon_btn_a.svg);
}
.btn_b{
    background-color: transparent;
    border-bottom: 1px solid var(--color-a);
    color: var(--color-a);
}
.btn_b::after{
    background-image: url(../img/icon_btn_b.svg);
}
/* btn hover */
.btn_a:hover{
    background-color: transparent;
    color: var(--color-b);
}
.btn_a:hover::after{
    background-image: url(../img/icon_btn_c.svg);
}
.btn_b:hover{
    background-color: var(--color-d);
    border-bottom: 1px solid transparent;
    color: #fff;
}
.btn_b:hover::after{
    background-image: url(../img/icon_btn_a.svg);
}
p.notice_txt{
    margin-top: 15px;
    text-align: right;
    font-size: 0.875rem;
}

/* 메인페이지 간격 설정 */
.con_pd{padding: 120px 0;}
.last.con_pd{padding-bottom: 160px;}
/*// 메인페이지 간격 설정 */

/* 서브페이지 간격 설정 */

/* 페이지 전체 간격 */
.container{
    padding: 120px 0 160px;
}
/*// 페이지 전체 간격 */
/* 섹션별 간격 설정 */
.con_wrap{
    margin-bottom: 120px;
}
.con_wrap:last-child{margin-bottom: 0;}
.bgc_pd{
    background-color: var(--gray-d);
    padding: 120px 0;
}
.bgc_pd.last_full_banner{margin-bottom: -160px;}
.con_wrap.last_full_banner{
    margin-bottom: -160px;
    padding: 120px 0;
}
.privacy_wrap{margin-top: 150px;}
/*// 섹션별 간격 설정 */

/*// 서브페이지 간격 설정 */

@media screen and (max-width: 1430px){
    :root{
        --header-height: 90px;
    }
    .privacy_wrap{margin-top: 50px;}
}
@media screen and (max-width: 1200px){
    .con_pd{padding: 100px 0;}
    .last.con_pd{padding-bottom: 120px;}
    .con_wrap {
        margin-bottom: 100px;
    }
    .bgc_pd{padding: 100px 0;}    
    .container {
        padding: 100px 0 140px;
    }
    .con_wrap.last_full_banner{
        padding: 80px 0;
        margin-bottom: -140px;
    }
    .bgc_pd.last_full_banner{margin-bottom: -140px;}
    /* 게시판 위아래 간격 */
    .board_container_wrap{padding: 100px 0 140px;}
}
@media screen and (max-width: 950px){
    :root {
        --header-height: 70px;
        --mobile-nav-height: 56.88px;
    }
    html, body{font-size: 15px;}
    .privacy_wrap{margin-top: 40px;}
}
@media screen and (max-width: 800px){
    .m_br{display: block!important;}
}
@media screen and (max-width: 550px){
    :root {
        --header-height: 60px;
        --mobile-nav-height: 55.75px;
    }
    html, body{
        font-size: 14px;
    }    
    .con_pd{padding: 60px 0;}
    .last.con_pd{padding-bottom: 100px;}
    .con_wrap {
        margin-bottom: 60px;
    }
    .container {
        padding: 60px 0 100px;
    }
    .con_wrap.last_full_banner{
        padding: 60px 0;
        margin-bottom: -100px;
    }
    .bgc_pd.last_full_banner{margin-bottom: -100px;}
    .bgc_pd{padding: 60px 0;}
    /* 게시판 위아래 간격 */
    .board_container_wrap{padding: 60px 0 100px;}
}