.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    flex-flow: column;
    align-items: center;
    z-index: 10000;
    transition:all .8s;
    overflow: hidden;
    justify-content: flex-start;
}

.header.active {
    height: 330px;
    background-color: #fff;
    background-color: #fff;
}

.header .topWrap {
    width: 100%;
          padding-left: 70px;
          padding-right: 50px;
    height: 100px;
    display: flex;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    justify-content: space-between;
    align-items: center;
    transition:all .8s;
}

.header.sub .topWrap {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
}

.header .heBtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .heBtn img {
    transition: all .8s;
}

.header .heBtn img:last-child {
    position: absolute;
}

.header:not(.scroll):not(.active):not(.sub) .heBtn img:last-child,
.header.sub .heBtn img:first-child,
.header.scroll .heBtn img:first-child,
.header.active .heBtn img:first-child {
    opacity: 0;
}

.header .centerWrap {
    height: 100%;
}

.header .rightWrap {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.header .topWrap .menu {
    display: flex;
    align-items: center;
    gap: 0 50px;
    height: 100%;
}

.header .menu>li {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
}

.header .menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'NotoKrD';
    font-size: 19px;
    padding: 0 10px;
    height: 100%;
    color: #fff;
    position: relative;
    transition: all .5s;
}

.header .menu>li>a:before {
    content: '';
    width: 0;
    top: calc(100% - 3px);
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s;
    height: 3px;
    background-color: #ba8945;
    position: absolute;
}

.header.scroll .menu>li>a,
.header.active .menu>li>a {
    color: #fff;
}

/* .header.scroll .menu>li>a:before,
.header.active .menu>li>a:before {
    background-color: #fff;
} */

/* .header .menu>li:hover a {
    color: #00868a;
} */

.header .menu>li:hover>a:before {
    width: 100%;
}

.header.sub .topWrap .menu a,
.header.scroll .topWrap .menu a,
.header.active .topWrap .menu a {
    color: #111;
}

.header .depth2 {
    position: absolute;
    top: calc(100% + 20px);
    width: 180%;
    left: -40%;
}

.header .depth2 li {
    text-align: center;
    margin-bottom: 15px;
}

.header .depth2 li a {
    font-family: 'NotoKrD';
    font-size: 16px;
    color: #fff;
    position: relative;
    letter-spacing: -0.1em;
    opacity: .8;
}

.header .depth2 li a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: all .5s;
}

.header .depth2 li a:hover:before {
    width: 100%;
}

.header .depth2 li a:hover {
    color: #fff;
    font-family: 'NotoKrM';
}

.header.scroll {
    background-color: #fff;
}

.header.scroll .topWrap {
    border-color: transparent;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column; /* 세로 정렬 */
    gap: 30px 0;
    background-color: #121212;
    height: 460px;
}

.footer hr {
    width: 85%;
    height: 1px;
    background-color: #cccccc1f;
}

.footer .topWrap {
    position:relative;
    width: 85%;
    display: flex;
    justify-content: center;
}

.footer .topWrap .topBtn {
    position:absolute;
    bottom: 0;
    right: 0;
}