.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10000;
    transition:all .5s;
    overflow: hidden;
}

.header.active {
    height: 300px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.header .topWrap {
    width: calc(100% - 220px);
    height: 90px;
    display: flex;
    border-bottom: 1px solid #1123453b;
    justify-content: space-between;
    align-items: center;
    transition:all 1s;
}

.header .topWrap .centerWrap {
    height: 100%;
}

.header .topWrap .menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 65px;
}

.header .topWrap .menu>li {
    height: 100%;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}

.header .topWrap .menu>li.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #ebb788;
}

.header .topWrap .menu>li>a {
    color: #112345;
    font-family: 'NotoKrR';
    font-size: 16px;
}

.header .topWrap .menu .depth2 {
    position: absolute;
    top: calc(100% + 20px);
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 200%;
    gap: 15px 0;
}

.header .topWrap .menu .depth2 a {
    font-size: 15px;
    font-family: 'NotoKrR';
    color:#112345;
    display: flex;
    justify-content: center;
    text-align: center;
    position:relative;
    line-height: 1.2;
}

.header .topWrap .menu .depth2 a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #112345;
    transition: all .5s;
}

.header .topWrap .menu .depth2 a:hover:after,
.header .topWrap .menu .depth2 .active a:after {
    width: 100%;
}

.header .topWrap .rightWrap {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.header .topWrap .rightWrap .radioBtn {
    display: flex;
    position:relative;
    align-items: center;
    justify-content: center;
}

.header .topWrap .rightWrap .radioBtn img:last-child {
    position:absolute;
}

.header .topWrap .rightWrap .radioBtn.play img:first-child,
.header .topWrap .rightWrap .radioBtn.stop img:last-child {
    opacity: 0;
}

.header.scroll {
    background-color: #fff;
}

.header.scroll:not(.active) .topWrap {
    border-color: transparent;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column; /* 세로 정렬 */
    gap: 30px 0;
    background-color: #0e1b33;
    border-top:3px solid #ebb788;
    height: 567px;
}
.popupWrap {
    position:absolute;
    top: 150px;
    left: 0px;
     transition:all 1s; 
    z-index: 9;
    display:flex;
    flex-flow:row wrap;
     transform:translateX(-100%); 
}

.popupWrap.active {
     transform: translateX(0%); 
	
}

.popupWrap .contWrap {
    /*flex:1 1;
    display:flex;*/
    flex-flow:row wrap;
	float:left;
	position: relative;
	opacity: 1;
	transition: all 1s;
}
.popupWrap.active  .contWrap{ opacity: 1; }
.popupWrap .contWrap>div {
    /* flex:1 1; */
	float:left;
	position:relative;
}

.popupWrap .btnsWrap {
    float:left;
	display: block;
    width: 50px;
	height: 100%;
	background-color:#ABA197;
	top: 0px;
	right: -50px;
    position: absolute;
    cursor: pointer;
}

.popupWrap .btnsWrap p {
    color:#fff;
    font-size: 18px;
    font-family: 'NotoKrR';
    position:absolute;
    top:20px;
    left:70%;
	font-weight: bold;
    transform-origin: 0 0;
    transform: rotate(90deg);
}

.popupWrap .btnsWrap span {
    position:absolute;
    display:block;
    width: 100%;
    height: 70px;
    bottom: 0;
    left: 0;
    background:url(../images/common/img_popup_btn.png) no-repeat center center/20px;
    transition:all .3s;
}

.popupWrap.active .btnsWrap span {
    background:url(../images/common/img_popup_close_btn.png) no-repeat center center/25px;
}

	.popupWrap .btnsWrap::after { width: 20px; height: 4px; display: block; background: #fff; position: absolute; bottom: 17px; left: 15px; transform: rotate(-135deg); content: ""; transition: all .5s; z-index: 1}
	.popupWrap .btnsWrap::before { width: 20px; height: 4px; display: block; background: #fff; position: absolute; bottom: 29px; left: 15px; transform: rotate(135deg); content: "";  transition: all .5s; z-index: 1}
	.popupWrap.active .btnsWrap::after { width: 30px; height: 4px; display: block; background: #fff; position: absolute; bottom: 30px; left: 10px; transform: rotate(-45deg); content: ""; z-index: 1}
	.popupWrap.active .btnsWrap::before { width: 30px; height: 4px; display: block; background: #fff; position: absolute; bottom: 30px; left: 10px; transform: rotate(45deg); content: ""; z-index: 1}


.footer hr {
    width: 85%;
    height: 1px;
    background-color: #cccccc1f;
    display: block;
}

.footer .topWrap {
    position:relative;
    width: 85%;
    display: flex;
    justify-content: center;
}

.footer .topWrap .topBtn {
    position:absolute;
    bottom: 0;
    right: 0;
}