#header {
    width: 100%;
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: 999;
}

.h01 {
    width: 100%;
    height: 40px;
    background-color: var(--darkblue);
    color: white;
    display:flex;
    justify-content: space-between;
}

.h01 .center{
    display: flex;
    justify-content: space-between;
}

.h01 .rollingbanner{
    display: flex;
    align-items: center;
}

.h01 .rollingbanner title{
    font-family: 'Pretendard-SemiBold', sans-serif;
    font-size: 14px;
}

.h01 .rollingbanner .title span{
    margin:0 14px;
}

.h01 .rollingbanner .wrap{
    font-family: 'Pretendard-Light', sans-serif;
    font-size: 14px;
    display: flex;
}

.h01 .header_right{
    display: flex;
    align-items: center;
}

.h01 .header_right ul{
    display: flex;
}

.h01 .header_right ul li a {
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
}

.h01 .header_right ul li:first-child:before {
    content: "";
}

.h01 .header_right ul li:before {
    position: relative;
    content: "|";
    color: #fff;
    top: -1px;
}

     /* 배너 컨테이너 */
     .rollingbanner{
        position: relative;
        width: 800px;
        height: 40px; 
    }
    /* 타이틀 */
    .rollingbanner > .title{
        float: left;
        padding-right: 10px;
    }
    /* 롤링 배너 */
    .rollingbanner > .wrap{
        position: relative;
        width: 600px;
        height: 40px;
        margin-top: 24px;
        overflow: hidden;
    }        
    .rollingbanner ul{
        list-style: none;
    }
    .rollingbanner li{
        position: absolute;
        top: -36px;
        left: 0;
    }
    /* 이전, 현재, 다음 롤링 배너 표시 */
    .rollingbanner li.prev{
        top: 36px;
        transition: top 0.5s ease;
    }
    .rollingbanner li.current{
        top: 0;
        transition: top 0.5s ease;
    }
    .rollingbanner li.next{
        top: -36px;
    }
    .rollingbanner a{
        display: block;
        display: -webkit-box;
        text-decoration: none;
        -webkit-line-clamp: 1;
        -webkit-box-orient:vertical;
        overflow: hidden;
        color: #000;
    }
    /* 반대 방향으로 진행 */
    .rollingbanner.reverse li.prev{
        top: -36px;
        transition: top 0.5s ease;
    }
    .rollingbanner.reverse li.next{
        top: 36px;
    }

.h02 {
    width: 100%;
    background-color: white;
}

#header .h02 .center{
    width: 1220px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .h02 ul{
    display: flex;
    gap: 10px;
    align-items: center;
}

#header .h02 ul li{
    border-radius: 10px;
    background-color: var(--blue);
    font-family: "SCDream-Medium", sans-serif;
    font-size: 20px;
    line-height: 20px;
    cursor: pointer;
}

#header a{
    color: white;
}

.h02 ul li{
    padding: 15px 18px;
}



.top {
    width: 58px;
    height: 58px;
    /* position: relative; */
    background-color: #666666;
    position: absolute;
    right: 3%;
    /* top: -6%; */
      top: -28px;
    z-index: 99;
    cursor: pointer;
}

.top i {
    color: #fff;
    font-size: 20px;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
