@charset "utf-8";
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
}
#header.fixed{
    background-color: rgba(0, 0, 0, 0.6);
}
#header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 56px;
}
#header .logo{
    padding-left: 24px;
    line-height: 56px;
}
#header .logo a{
    font-size: 18px;
    color: #fff;
}


.mo-menu-btn{
    height: 18px;
    padding-right: 24px;
}
.mo-menu-btn button{
    position: relative;
    width: 24px;
    height: 18px;
}
.mo-menu-btn button span,
.mo-menu-btn button::before,
.mo-menu-btn button::after{
    position: absolute;
    left: 0;
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}
.mo-menu-btn button::before{
    top: 0;
}
.mo-menu-btn button span{
    top: 8px;
    text-indent: -99999px;
}
.mo-menu-btn button::after{
    bottom: 0;
}

.mo-menu-btn.active button::before{
    top: 8px;
    transform: rotate(45deg);
}
.mo-menu-btn.active button span{
    opacity: 0;
}
.mo-menu-btn.active button::after{
    top: 8px;
    transform: rotate(-45deg);
}


.mo-gnb{
    position: fixed;
    top: 56px;
    left: 0;
    display: none;
    width: 100%;
    background-color: #292929;
}
.mo-gnb .depth1 > li{
    border-bottom: 1px solid #121212;
}
.mo-gnb .depth1 > li > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.mo-gnb .depth1 > li:hover > a{
    color: var(--primary-color);
}
.mo-gnb .depth1 > li > a::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: translateY(-2px) rotate(45deg);
}
.mo-gnb .depth1 > li > a.active{
    color: var(--primary-color);
}
.mo-gnb .depth1 > li > a.active::after{
    transform: translateY(-2px) rotate(135deg);
}
.mo-gnb .sub{
    display: none;
    background-color: #333;
}
.mo-gnb .sub ul{
    padding: 16px 24px;
}
.mo-gnb .sub li a{
    display: block;
    padding: 4px 0;
    color: #ddd;
    font-size: 15px;
}
.pc-gnb{
    display: none;
}


#footer{
    background-color: #121212;
}
.foot-logo{
    border-bottom: 1px solid #444;
    padding: 32px 24px 20px 24px;
    color: #ddd;
    font-size: 18px;
    font-weight: 500;
}
.foot-content{
    position: relative;
    padding: 32px 24px 40px 24px;
}
.foot-info{
    margin-bottom: 20px;
}
.foot-info .co-name{
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
}
.foot-contact h3{
    margin-bottom: 8px;
    color: #666;
    font-size: 18px;
}
.foot-contact p{
    padding-left: 24px;
    margin-bottom: 2px;
    color: #999;
    background-repeat: no-repeat;
    background-size: 14px auto;
    font-size: 15px;
}
.foot-contact p a{
    color: #999;
}
.foot-contact .phone{
    background-image: url(../images/ico-foot-tel.png);
    background-position: 0 center;
}
.foot-contact .fax{
    background-image: url(../images/ico-foot-fax.png);
    background-position: 0 center;
}
.foot-contact .email{
    background-image: url(../images/ico-foot-mail.png);
    background-position: 0 6px;
}
.foot-contact .time{
    background-image: url(../images/ico-foot-time.png);
    background-position: 0 4px;
}
.foot-menu{
    display: none;
}
.foot-sns{
    margin-top: 24px;
}
.foot-sns ul{
    display: flex;
    justify-content: end;
    gap: 8px;
}
.foot-sns li a{
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -999999px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px auto;
}
.foot-sns .insta a{
    background-image: url(../images/ico-foot-sns-insta.png);
}
.foot-sns .blog a{
    background-image: url(../images/ico-foot-sns-blog.png);
    background-size: 18px auto;
}
.foot-sns .youtube a{
    background-image: url(../images/ico-foot-sns-yt.png);
}
.foot-sns .kakao a{
    background-image: url(../images/ico-foot-sns-kakao.png);
}

@media screen and (min-width:768px) {
    #header_inner{
        height: 64px;
    }
    #header .logo{
        padding-left: 48px;
    }
    #header .logo a{
        font-size: 20px;
    }
    .mo-menu-btn{
        padding-right: 48px;
    }


    .foot-logo{
        padding-left: 40px;
        padding-right: 40px;
    }
    .foot-content{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding-left: 40px;
        padding-right: 40px;
    }
    .foot-menu{
        display: block;
        margin-bottom: 20px;
        text-align: right;
    }
    .foot-menu ul li{
        margin-bottom: 8px;
    }
    .foot-menu ul li a{
        font-size: 15px;
        color: #ccc;
    }
}

@media screen and (min-width:1280px) {
    #header_inner{
        height: 84px;
    }
    #header .logo a{
        font-size: 24px;
        color: #fff;
    }
    .mo-menu-btn{
        display: none;
    }
    .mo-gnb{
        display: none !important;
    }
    .pc-gnb{
        display: block;
        padding-right: 40px;
    }
    .pc-gnb .depth1{
        display: flex;
    }
    .pc-gnb .depth1 > li{
        position: relative;
    }
    .pc-gnb .depth1 > li > a{
        display: block;
        padding: 12px 40px;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
    }
    .pc-gnb .depth1 > li:hover > a{
        color: var(--primary-color);
    }
    .pc-gnb .sub{
        position: absolute;
        top: 49px;
        left: 20px;
        display: none;
    }
    .pc-gnb .depth1 > li:hover .sub{
        display: block;
    }
    .pc-gnb .sub ul{
        border: 1px solid #ccc;
        padding: 20px 18px;
        width: 100%;
        background-color: #fff;
    }
    .pc-gnb .sub li a{
        display: block;
        padding: 4px 0;
        color: #333;
    }
    .pc-gnb .sub li:hover a{
        text-decoration: underline;
        color: var(--primary-color);
    }
    .footer-inner{
        display: flex;
        width: 1280px;
        margin: 0 auto;
    }
    .foot-logo{
        border-bottom: 0;
        border-right: 1px solid #444;
    }
    .foot-content{
        flex: 1;
    }
}