/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {margin:0;padding:0}
ul {list-style:none}
button, input, select {margin:0}
html {box-sizing:border-box}
*, :after, :before {box-sizing:inherit}
img, video {height:auto;max-width:100%}
iframe {border:0}
table {border-collapse:collapse;border-spacing:0}
td, th {padding:0}
a {text-decoration: none; color:inherit;}

body {
    font-family: 'Apple SD Gothic Neo','Noto Sans KR','Malgun Gothic',arial,sans-serif;;
    word-break:keep-all;
}

body.noscroll {
    overflow:hidden;
}

.inner {
    width:1300px;
    max-width:100%;
    margin:0 auto;
    padding:0 10px;
}

#wrap {
    position:relative;
}

@media all and (max-width:991px){
    .inner {
        padding:0 16px; 
    }
}




/* #=========================================#
        HEADER
#=========================================# */
header {
    position:fixed;
    left:0; top:0; z-index:100;
    width:100%;
    height:auto;
    padding:20px 0 10px;
    transition:background 0.4s;
}
header.fixed {
    background-color:rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}
header .inner {
    display:flex; 
    align-items: center;
    justify-content: space-between;
}
header .right_box {
    display:flex;
    align-items: center;
    gap:48px
}
header .right_box a {
    padding:10px 16px;
    font-size:17px;
    font-weight:700;
}
header .down_btn {
    color:#fff;
    background-color: #F63540;
    border-radius: 4px;
}
header .right_box a.ham_icon {
    display:none;
}

@media all and (max-width:991px){
    header {
        padding:10px 0 6px;
    }
    header .right_box {
        gap:8px;
    }
    header .right_box a.about_link {
        display:none; 
    }
    header .right_box a.ham_icon {
        display:block;
        padding:0;
    }
    header .right_box a {
        padding:8px 13px; 
        font-size:13px;
    }
}


/* #=========================================#
        MOBILE MENU
#=========================================# */
.mobile_menu {
    z-index:101; 
    position:fixed;
    left:0; top:0; 
    display:none;
    width:100%;
    height:100%;
    overflow-y:auto;
    background-color:#000;
    transition:left 0.5s;
}
.mobile_menu.open {
    left:0;
}
.mobile_menu .top_box {
    padding:12.5px 16px;
    text-align: right;
}
.mobile_menu .down_btn {
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:calc(100% - 34px);
    padding: 12px 16px;
    margin:0 auto 17px;
    background-color: #121212;
    border-radius:6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.32px;
    color:#E7E7E7;
}
.mobile_menu .menu_box {
    padding:10px 16px 30px;
}
.mobile_menu .menu_box h4 {
    padding:0 10px; 
    font-size: 12px;
    font-weight: 600;
    line-height: 166.667%;
    letter-spacing: -0.24px;
    color:#6B6B6B;
}
.mobile_menu .menu_box > ul {
    padding:5px 16px 5px 10px; 
}
/* .mobile_menu .menu_box ul li + li {
    margin-top:20px; 
} */
.mobile_menu .menu_box > ul ul {
    display:none;
    padding:8px 0;
}
.mobile_menu .menu_box ul ul li + li {
    margin-top:8px;
}
.mobile_menu .menu_box a {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.32px;
    color:#E7E7E7;
    font-family:Pretendard;
}
.mobile_menu .menu_box > ul ul a {
    padding:2px 0;
    font-size:14px;
    line-height: 24px; /* 171.429% */
    letter-spacing: -0.21px;
    font-weight:400;
}
.mobile_menu .menu_box a.on img {
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
}
.mobile_menu .devider {
    width:100%;
    height:2px;
    background-color: #4a4a4a;
    margin: 27px 0;

}


/* #=========================================#
        FOOTER
#=========================================# */
footer {
    position:relative;
    z-index:50;
    padding:24px 0;
    background-color: #FAFAFA;
}
footer .fnb {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer .fnb .sns_link {
    display:flex;
    gap:16px;
    margin-top:12px; 
}
footer .fnb .right_link {
    display:flex; 
    align-items: flex-start;
    gap:32px;
}
footer .fnb .right_link a {
    font-size: 14px;
    font-weight: 700;
    line-height: 200%; 
    letter-spacing: -0.21px;
    color:#6B6B6B;
}
footer .fnb .right_link .cs_btn {
    position:relative; 
}
footer .fnb .right_link .cs_btn a {
    display:flex; align-items: center;
    gap:8px;
}
footer .fnb .right_link .cs_btn a.on img {
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
}
footer .fnb .right_link .cs_btn p {
    display:none; 
    position:absolute; right:0; top:100%;
    padding:5px;
    border:1px solid #ababab;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%; 
    letter-spacing: -0.21px;
    color:#6B6B6B;
    white-space: nowrap;
    background-color: #f6f6f6;
}
footer .address {
    margin-top:20px; 
    color:#aaa;
    font-size: 12px;
    font-weight: 500;
    line-height: 200%; 
    letter-spacing: -0.18px;
}
footer .address > p {
    font-weight: 700;
}
footer .address ul {
    display:flex; 
    justify-content: space-between;
    gap:100px;
    width:620px;
    max-width:100%;
}
footer .address ul li p {
    display:flex;
}
footer .address ul li span {
    white-space:nowrap;
}
footer .address ul li span:first-of-type {
    width:108px;
}
footer .address ul li span:last-of-type {
    width:calc(100% - 108px);
}

@media all and (max-width:991px){
    footer .fnb {
        display:block;
    }
    footer .fnb .right_link {
        margin-top:14px;
        flex-direction: column;
        gap:2px;
    }
    footer .fnb .right_link .cs_btn p {
        right:auto;
        left:0; 
        text-align: left;
    }
    footer .fnb .right_link a {
        font-weight:500;
    }
    footer .address {
        color:#6B6B6B;
        font-size:14px;
    }
    footer .address ul {
        display:block; 
    }
    footer .address ul li:nth-of-type(2){
        margin-bottom:30px;
    }
    footer .address ul li span {
        white-space:unset;
    }
    footer .address ul li span:first-of-type {
        width:120px;
    }
    footer .address ul li span:last-of-type {
        width:calc(100% - 120px);
    }
}


/* #=========================================#
        공통타이틀
#=========================================# */
.tit_box {
    letter-spacing: -0.38px; 
}
.tit_box h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 131.579%; 
}
.tit_box h3 b {
    font-weight:900;
    color:#E72C37;
}
.tit_box p {
    margin-top:24px;
    font-size: 19px;
    font-weight: 500;
    line-height: 157.895%; 
}


@media all and (max-width:991px){
    .tit_box h3 {
        font-size: 34px;
        letter-spacing: -0.68px;
    }
    .tit_box h3 b {
        letter-spacing: -1.02px;
    }
    .tit_box p {
        font-size:16px; 
        line-height:156.25%;
        letter-spacing: -0.16px;
    }
}

.tit_box02 {
    text-align:center;
}
.tit_box02 img {
    height:40.7px;
}
.tit_box02 h3 {
    color:#000;
    font-size: 36px;
    font-weight: 700;
    line-height: 144.444%;
    letter-spacing: -0.72px;
}
.tit_box02 p {
    margin-top:24px;
    color:#000;
    font-size: 18px;
    font-weight: 400;
    line-height: 166.667%;
    letter-spacing: -0.36px;
}

@media all and (max-width:991px){
    .tit_box02 img {
        height:30px
    }
    .tit_box02 h3 {
        font-size:24px;
        line-height: 150%; 
        letter-spacing: -0.48px;
    }
    .tit_box02 p {
        margin-top:11px;
        font-size: 15px;
        letter-spacing: -0.3px;
    }
}