/* header */
#header {    
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 40px 0;
    z-index: 100;
    transition: 0.5s;
}
#header .gnbWrap{
    display: flex;
    justify-content: space-between;
}
#header .logo .logo_b{
    position: relative;
    z-index: 1;
}
#header .logo .logo_w{
    position: absolute;
    right: 0;
    transform: rotate(0);
    top: 0;
    transform-origin: top right;
    transition: 0.5s ease-in-out;
}
#header .nav li a {
    margin-left:40px;
    transition: 0.3s;
    font-size: 1.25rem;
    font-weight: 300;
    text-decoration: none;
    color: #333;
}
#header .nav li a.on{    
    color: #e86851;
    text-shadow:0px 0px 1px #e86851;
}
#header.on {
    box-shadow: 0px 5px 7px 0 rgba(208, 208, 208, 0.2);
    background: rgba(255,255,255,.5);
}
#header .sitemap{
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: 100;
    background: #FFF;
    transition: 0.4s;
    padding: 30px 20px;
}
#header .sitemap.on{
    top: 0;
    opacity: 1;
    visibility: visible;
}
#header .sitemap .site_top{
    margin-bottom: 40px;
}
#header .sitemap .close_btn{
    cursor: pointer;
}
#header .sitemap ul li{
    margin-bottom: 25px;
}
#header .sitemap ul li a{
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}

body.body_bg {
    overflow: hidden !important;
}
body.body_bg .overlay {
    opacity: 1;
}


/* header */

/* footer */
#footer{
    padding: 60px 0 90px;
    background: #fff;
}
#footer .footer_inner{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
#footer span.y_br{
    background: rgba(0,0,0,.3);
    height: 13px;
    width: 1px;
    display: inline-block;
    margin: 0 10px;
}
#footer .info .txt01 span{
    display: inline-block;
    color: rgba(21, 21, 21, 0.9);
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: -0.36px;
    line-height: 1.9;
}
.display_block {display: block;}
.mb15 {margin-bottom: 0.9375rem !important;}
.fs_15 {font-size: 0.9375rem !important;}
.color_666_40 {
    color: rgba(102,102,102,.4) !important;
}
#footer .info .txt01 span em{
    font-weight: 700;
    font-style: normal;
}
#footer .info .txt02{
    color: rgba(21, 21, 21, 0.34);
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: -0.36px;
    margin-top: 40px;
}
#footer .policy_box a{
    font-size: 1.125rem;
    font-weight: 300;
    color: #151515;
    transition: 0.3s;
}

.familySite {
    position: relative;
    display: block;
    z-index: 1;
    border: 1px solid #333;
}

.familySite.on {
    background: #232323;
    z-index: 10000;
}

.familySite>header {
    height: 46px;
}

.familySite h3 {
    background: url(../images/plus_icon.png) no-repeat right 20px center;
    background-size: 16px;
}

.familySite h3 a {
    color: #adb2bc;
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 13px 50px 13px 20px;
    text-align: left;    
}

.familySite .footSelect {
    position: absolute;
    bottom: 46px;
    left: -1px;
    right: -1px;
    background-color: #fff;
}

.footSelect ul {
    overflow: hidden;
    display: none;
    border: 1px solid #afafaf;
}

.familySite li {
    padding: 0;
    border-bottom: 1px solid #afafaf;
}

.familySite li:last-child {
    border-bottom: 0;
}

.footSelect ul li a {
    display: block;
    color: #333;
    padding: 13px 20px;
    font-size: 14px;
}

@media (min-width: 1200px) {
    .familySite h3:hover {
        background: #333 url(../images/plus_icon.png) no-repeat right 20px center;
        background-size: 16px;
    }

    .footSelect ul li a:hover {
        background-color: #f7f7f7;
    }
}
@media (max-width: 767px) {
    .familySite {
        margin: 0 auto;
    }
    .familySite>header {
        height: 30px;
    }
    .familySite h3 {
        background-size: 12px;
    }
    .familySite h3 a {
        font-size: 14px;
        padding: 6px 50px 5px 20px;
    }
    .footSelect ul li a {
        padding: 6px 20px;
    }
    .familySite .footSelect {
        bottom: 30px;
    }
}
@media screen and (max-width: 1200px) and (min-width: 440px) {
    #footer .familySite {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-top: 0;
    }

}

/* footer */


@media (min-width: 1024px) {    
    #header .nav li a:hover {
        color: #e86851;
        text-shadow:0px 0px 1px #e86851;
    }
}