@charset 'UTF-8';
@import url('var.css');
/* 서브 헤더 */
.sub-hd {
    padding-top: 80px;
}
.sub-hd-lnb {position: relative;}
/* 비주얼 */
.sub-hd-bg {
    position: relative;
    background-size: cover;
    background-position: center 0;
}
.sub-hd-bg:before {
    display: block;
    padding-top: 75%; /* 부모너비 100% 1:1 Ratio */
    content: '';
}
.sub-hd-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: '';
    transform-origin: right center; 
    animation: sub-visual-ani 1s both;
}
.bg1 {background-image: url('../images/sub/sub_visual_01.jpg');}

#hs-lnb {
    position: absolute;
    display: inline-flex;
    background-color: var(--main-color);
    animation: move-right 1s 0.5s both;
    bottom: 0;
    z-index: 1;
}
.hs-lnb-btn {}
.hs-lnb-list {}
.hs-lnb-list li {}
.hs-lnb-list a {
    display: inline-block;
    color: #fff;
}
.hs-lnb-list a:hover {
    font-weight: 600;
}
/* 메인 영역 */
#hs-main, #hs-main > * {
    padding-top: 22px;
    padding-bottom: 50px;
    font-family: var(--pre-font);
}
.brand-story-container {}
.sub-sec h2 {
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
}
.h2-desc {
    text-align: center;
    margin-bottom: 4em;
}
.sub-page-nav {
    margin-top: 50px;
}
.sub-page-list {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sub-page-list:before {
    position: absolute;
    left: 1em;
    top: -1.1em;
    width: calc(100% - 4em);
    height: 1px;
    background-color: #ddd;
    content: '';
    z-index: 1;
}
.depth3 a {
    position: relative;
    display: inline-block;
    font-size: 0.95em;
}
.depth3 a::before {
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    /* border: 1px solid #666; */
    top: -2em;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ddd;
    content: '';
    z-index: 2;
}
.sub-page-list li.active a {
    font-weight: 700;
}
.sub-page-list li.active a:before {
    background-color: var(--main-color);
}
.h2-desc {
    background: url(../images/sub/logo_background.png) center center / contain no-repeat;
}

/* 애니메이션 */
@keyframes move-right {
    from {transform: translateX(-100px); opacity: 0;}
    to {transform: translateX(0px); opacity: 1;}
}
@keyframes move-bottom {
    from {transform: translateY(-50%); opacity: 0;}
    to {transform: translateY(0px); opacity: 1;}
}
@keyframes sub-visual-ani {
    from {transform: scaleX(1);}
    to {transform: scaleX(0);}
}