* {
    letter-spacing: -.05em;
    box-sizing: border-box;
    text-decoration: none;
    padding: 0;
    margin: 0;
}
body{
    overflow-x: hidden;
    font-family: 'Pretendard';
}
.inner{
    width: 100%;
    padding: 0 20px;
    max-width: 1440px;
    margin: 0 auto;
}
.headerTop{
    border-bottom: 1px solid #ebebeb;
}
.headerTop .inner{
    display: flex;
    align-items: center;
    height: 40px;
}
.headerTop .snsBox{
    margin-left: auto;
    display: flex;
    gap: 6px;
}
.headerTop .snsBox a{
    width: 28px;
    height: 28px;
}
.headerTop .snsBox a img{
    width: 100%;
}
#header .inner{
    display: flex;
    height: 100px;
    align-items: center;
}

#header .logoBox{
    height: 48px;
}
#header .logoBox h1{
    height: 100%;
}
#header .logoBox h1 img{
    height: 100%;
}

#header .menu{
    margin-left: auto;
}
#header .menu ul{
    display: flex;
    gap: 50px;
    align-items: center;
}
#header .menu ul li a{
    font-size: 18px;
}
#header .menu .siteMapBtn{
    width: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background-color: transparent;
}
#header .menu .siteMapBtn span{
    background-color: #111;
    height: 2px;
    width: 100%;
    display: block;
}
.quickMn{
    position: fixed;
    right: 50px;
    top: 50%;
    z-index: 5;
}
.quickMn a{
    position: relative;
    color: #fff;
    text-align: center;
    padding-top: 50px;
    width: 90px;
    height: 90px;
    border-radius: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/common/quick-bg.png);
}
.quickMn a:not(:last-child){
    margin-bottom: 10px;
}
.quickMn a::before{
    position: absolute;
    content: "";
    width: 40px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.quickMn a.locaBtn::before{
    background-image: url(../images/common/quick-map.png);
    background-size: auto 26px;
}
.quickMn a.callBtn::before{
    background-image: url(../images/common/quick-cs.png);
    background-size: auto 28px;
}
@keyframes blink {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.1;
    }
    100%{
        opacity: 1;
    }
}
.quickMn a.callBtn::after{
    position: absolute;
    content: "무엇을 도와드릴까요?";
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 0;
    left: -195px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    width: 180px;
    opacity: 1;
    animation: blink 3s infinite;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.quickMn a.topBtn::before{
    background-image: url(../images/common/quick-top.png);
    background-size: 20px;
}
.quickMn a.blogBtn{
    background-color: #1dd837;
    background-image: none;
}
.quickMn a.blogBtn::before{
    background-image: url(../images/common/quick-blog.png);
    background-size: auto 28px;
}
.quickMn a.ytBtn{
    background-color: #fe0000;
    background-image: none;
}
.quickMn a.ytBtn::before{
    background-image: url(../images/common/quick-yt.png);
    background-size: auto 23px;
}
footer{
    background-color: #333b4e;
}
footer .top{
    display: flex;
    gap: 80px;
    padding: 85px 0 90px;
    border-bottom: 1px solid #5b6170;
}
footer .top .map{
    width: 660px;
    height: 250px;
}
footer .top .map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer .top ul li.space{
    margin-top: 30px;
}
footer .top ul li{
    color: #fff;
    font-weight: 300;
    line-height: 2;
}
footer .top ul li span{
    width: 110px;
    display: inline-block;
}
footer .bottom{
    padding: 25px 0;
    color: #fff;
    display: flex;
    align-items: center;
}
footer .bottom .btnWrap{
    margin-left: auto;
    display: flex;
    gap: 10px;
}
footer .bottom .btnWrap a{
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #5b6170;
}

.siteMap{
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}
.siteMap.on{
    right: 0;
}
.siteMap .pc{
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #fff;
    margin-left: 40%;
    padding: 140px 120px;
}
.siteMap .pc .top {
    margin-bottom: 140px;
}
.siteMap .pc .top p{
    font-size: 24px;
}
.siteMap .pc .top h2{
    font-size: 50px;
}
.siteMap .pc .menu{
    display: flex;
    justify-content: space-between;
}
.siteMap .pc .menu li p{
    font-size: 28px;
    color: #01abff;
    font-weight: 700;
}
.siteMap .pc .menu li ul{
    margin-top: 30px;
}
.siteMap .pc .menu li ul li a{
    font-size: 20px;
    line-height: 2;
}
.sm-close{
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: transparent;
    width: 34px;
    padding: 0;
}
.sm-close img{
    width: 100%;
}


@media screen and (max-width: 1440px){
    #header .logoBox{
        height: 42px;
    }
}
@media screen and (max-width: 1240px){
    #header .logoBox{
        height: 36px;
    }
    #header .menu ul li a{
        font-size: 16px;
    }
    .siteMap .pc{
        width: 70%;
        padding: 100px 80px;
        margin-left: 30%;
    }
    .siteMap .pc .menu li p{
        font-size: 25px;
    }
    .siteMap .pc .menu li ul li a{
        font-size: 18px;
    }
}
@media screen and (max-width: 1024px){
    #header .menu li:not(:last-child){
        display: none;
    }
    #header .inner{
        height: 80px;
    }
    .siteMap .pc{
        display: none;
    }
    .siteMap{
        top: 120px;
    }
    .siteMap .mo .menu{
        display: block;
        margin-top: 30px;
    }
    .siteMap .mo {
        position: relative;
        width: 80%;
        height: 100%;
        background-color: #fff;
        margin-left: 20%;
        padding: 20px 0;
    }
    .siteMap .mo .top{
        padding: 0 20px;
    }
    .siteMap .mo .menu>li{
        padding: 10px 20px;
        border-top: 1px solid #ebebeb;
    }
    .siteMap .mo .menu>li:last-child{
        border-bottom: 1px solid #ebebeb;
    }
    .siteMap .mo .menu>li p{
        position: relative;
        font-size: 20px;
        font-weight: 600;
    }
    .siteMap .mo .menu>li p::after{
        position: absolute;
        content: "";
        width: 20px;
        height: 20px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 12px;
        background-image: url(../images/sub/arr-down.png);
        transition: all 0.4s;
    }
    .siteMap .mo .menu>li p.on::after{
        transform: translateY(-50%) rotate(180deg);
    }
    .siteMap .mo .menu>li .sub{
        display: none;
        margin-top: 10px;
    }
    .siteMap .mo .menu>li .sub a{
        position: relative;
        font-size: 16px;
        padding: 5px 10px;
    }
    .siteMap .mo .menu>li .sub a::before{
        position: absolute;
        content: "";
        width: 3px;
        height: 3px;
        background-color: #5b6170;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    #header .logoBox{
        height: 30px;
    }
    body.on{
        overflow-y: hidden;
    }
    #header .menu .siteMapBtn.on{
        gap: 0;
    }
    #header .menu .siteMapBtn.on span{
        transition: all 0.4s;
    }
    #header .menu .siteMapBtn.on span:nth-child(2){
        display: none;
    }
    #header .menu .siteMapBtn.on span:nth-child(1){
        transform: translateY(1px) rotate(45deg);
    }
    #header .menu .siteMapBtn.on span:nth-child(3){
        transform: translateY(-1px) rotate(-45deg);
    }

    .quickMn a{
        width: 70px;
        height: 70px;
        padding-top: 36px;
        font-size: 14px;
    }
    .quickMn a::before{
        width: 30px;
        height: 20px;
    }
    .quickMn a.locaBtn::before{
        background-size: auto 20px;
    }
    .quickMn a.callBtn::before{
        background-size: auto 20px;
        
    }
    .quickMn a.topBtn::before{
        background-size: auto 10px;
    }
    .quickMn a.blogBtn::before{
        background-size: auto 20px;
    }
    .quickMn a.ytBtn::before{
        background-size: auto 18px;
    }
}

@media screen and (max-width: 768px){
    
    .siteMap .mo .menu>li p{
        font-size: 18px;
    }
    .siteMap .mo .menu>li .sub a{
        font-size: 15px;
    }
    .quickMn{
        top: unset;
        right: 20px;
        bottom: 40px;
    }
    .quickMn a{
        width: 50px;
        height: 50px;
        line-height: 50px;
        padding: 0;
        font-size: 12px;
        box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.2);
    }
    .quickMn a.callBtn::after{
        padding: 0;
        width: 140px;
        left: -150px;
    }
    .quickMn a::before{
        display: none;
    }
    footer .top{
        gap: 20px;
        flex-wrap: wrap;
        padding: 40px 0 ;
    }
    footer .top .map{
        height: 180px;
    }
    footer .top ul li{
        font-size: 14px;
    }
    footer .top ul li span{
        width: 80px ;
        font-weight: 600;
    }
    footer .bottom{
        flex-wrap: wrap;
    }
    footer .bottom .btnWrap{
        margin-left: 0;
        margin-top: 20px;
    }
}