@charset "utf-8";

/* header */
#header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(15.300000190734863px);
    z-index: 100;
    max-width: 1920px;
    transition: all 0.3s ease-in-out;
}

#header.active {
    background-color: #EEE;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header .h_logo {
    position: relative;
}

#header .h_logo img {
    transition: all 0.3s ease-in-out;

}

#header .h_logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}

#header .h_logo:hover img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    mask: linear-gradient(to right, transparent, black, transparent);
    -webkit-mask: linear-gradient(to right, transparent, black, transparent);
    pointer-events: none;
}

#header .h_gnb {
    height: 100%;
    margin-left: 50px;
}

#header .h_gnb>ul {
    display: flex;
    gap: 40px;
    height: 100%;
}

#header .h_gnb>ul>li>a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    color: #222;
    position: relative;
    overflow: hidden;
}

#header .h_gnb>ul>li>a span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

#header .h_gnb .basic {
    transform: translateY(0);
}

#header .h_gnb .rolling {
    transform: translateY(100%);
    position: absolute;
    color: #FF0707;
    font-weight: 500;
    text-shadow: 0px 5px 20px rgba(255, 7, 7, 0.50);
    left: 0;
    top: 0;
}

#header .commonBtn01+.commonBtn01 {
    margin-left: 20px;
}

#header .headerMenuBtn {
    margin-left: 40px;
    width: 20px;
    height: 20px;
    position: relative;
}

#header .headerMenuBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #222;
    transition: all 0.3s ease-in-out;
}

#header .headerMenuBtn span:first-child {
    top: 0;
}

#header .headerMenuBtn span:nth-child(2) {
    top: 50%;
    width: 75%;
    transform: translateY(-50%);
}

#header .headerMenuBtn span:last-child {
    bottom: 0;
}

#header.active .headerMenuBtn span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#header.active .headerMenuBtn span:nth-child(2) {
    opacity: 0;
}

#header.active .headerMenuBtn span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

@media all and (max-width:1760px) {
    #header {
        height: 90px;
    }

    #header .h_logo img {
        height: 40px;
    }

    #header .h_gnb>ul {
        gap: 20px;
    }

    #header .h_gnb>ul>li>a {
        font-size: 15px;
    }

    #header .commonBtn01+.commonBtn01 {
        margin-left: 15px;
    }

    #header .headerMenuBtn {
        margin-left: 25px;
    }
}

@media all and (max-width:1400px) {
    #header {
        height: 80px;
    }

    #header .h_logo img {
        height: 35px;
    }

    #header .h_gnb>ul {
        gap: 12px;
    }

    #header .h_gnb>ul>li>a {
        font-size: 14px;
    }

    #header .commonBtn01+.commonBtn01 {
        margin-left: 5px;
    }

    #header .headerMenuBtn {
        margin-left: 10px;
    }
}

@media all and (max-width:1200px) {

    #header .h_gnb,
    #header .h_right_box .commonBtn01 {
        display: none;
    }
}

/* END header */

/* inner */
.inner {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    position: relative;
}

@media all and (max-width:1760px) {
    .inner {
        width: 93.75%;
    }
}

/* END inner */

/* footer */
#footer {
    padding: 125px 0 50px;
    background-color: #222;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: -45px;
}

#footer .f_top_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#footer .f_top_btn {
    text-align: center;
    font-size: 20px;
    color: #f7f7f7;
    font-weight: 500;
    line-height: 1em;
}

#footer .f_top_btn .img {
    margin-bottom: 10px;
}

#footer .f_logo img {
    transition: all 0.3s ease-in-out;
}

#footer .f_logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.2));
}

#footer .f_logo:hover img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    mask: linear-gradient(to right, transparent, black, transparent);
    -webkit-mask: linear-gradient(to right, transparent, black, transparent);
    pointer-events: none;
}

#footer .f_body_box {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

#footer .f_tit {
    font-size: 16px;
    color: #ccc;
    font-weight: 400;
    line-height: 1.5em;
}

#footer .f_alt {
    color: #f7f7f7;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 20px;
}

#footer .f_alt_box+.f_alt_box {
    margin-top: 10px;
}

#footer .f_body_box .box {
    width: 45%;
}

#footer .f_body_box .f_btn_flex_box {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    justify-content: space-between;
    margin-top: auto;
}

#footer .f_btm_box {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.77em;
    color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #828282;
}

#footer .f_btm_box .right {
    color: #DEDEDE;
}

@media all and (max-width:1760px) {
    #footer .f_top_btn {
        font-size: 18px;
    }

    #footer .f_top_btn img {
        height: 40px;
    }

    #footer .f_logo img {
        height: 75px;
    }

    #footer .commonBtn02 {
        flex: 1;
        height: 60px;
        font-size: 18px;
    }

    #footer .commonBtn02 img {
        height: 15px;
    }
}

@media all and (max-width:1400px) {
    #footer .f_top_btn {
        font-size: 16px;
    }

    #footer .f_logo img {
        height: 65px;
    }

    #footer .f_tit {
        font-size: 14px;
    }

    #footer .f_alt {
        font-size: 16px;
    }

    #footer .f_body_box {
        margin-top: 40px;
    }

    #footer .commonBtn02 {
        height: 50px;
        font-size: 16px;
        padding: 0 20px;
    }

    #footer .commonBtn02 img {
        height: 13px;
    }

    #footer .f_btm_box {
        font-size: 14px;
        padding-top: 15px;
        margin-top: 15px;
    }
}

@media all and (max-width:1024px) {
    #footer .f_top_btn img {
        height: 30px;
    }

    #footer .f_top_btn {
        font-size: 14px;
    }

    #footer .f_logo img {
        height: 40px;
    }

    #footer .f_body_box {
        gap: 40px;
    }

    #footer .f_body_box .box,
    #footer .f_body_box .f_btn_flex_box {
        width: 100%;
    }
}

@media all and (max-width:700px) {
    #footer .f_btm_box {
        flex-direction: column;
    }

    #footer .commonBtn02.type02 {
        flex: unset;
        width: 100%;
    }
}

/* END footer */

/* siteMap */
#siteMap {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1920px;
    width: 100%;
    height: 74vh;
    max-height: 800px;
    background-color: #EEE;
    border-radius: 0 0 50px 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 102;
}

#siteMap.active {
    visibility: visible;
    opacity: 1;
}

.siteMapMenuBox {
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
    gap: 48px;
    max-height: 95%;
}

.button_newnew {
    width: 152px;
    height: 152px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #EEE;

    box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.50) inset, 2px 2px 4px 0px rgba(188, 188, 188, 0.25) inset, 5px 5px 10px 0px rgba(188, 188, 188, 0.50) inset, -5px -5px 10px 0px #FFF inset;
    transition: box-shadow 0.6s ease-in-out, transform 0.6s ease-in-out;
    cursor: pointer;

    margin: 0 auto;
}

/* .button_newnew img {
    width: 50px;
    opacity: 0.6;
} */

.text {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #555;
}

.button_newnew:hover {
    box-shadow: 8px 8px 15px #bebebe, -8px -8px 15px #ffffff;
    transform: translateY(-1px);

}



.button_newnew:active {
    box-shadow: inset 8px 8px 15px #bebebe, inset -8px -8px 15px #ffffff;
    transform: translateY(1px);
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.button_newnew_wrapper {
    position: relative;
}

.button_newnew_wrapper .not_sun {
    width: 100%;
    position: relative;
    z-index: 50;
}

.btn_red_sun {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 28px;
    height: 28px;
    color: #DBDBDB;
    transition: color 0.2s ease-in-out;
}

.not_sun {
    color: #C7C7C7;
    transition: color 0.2s ease-in-out;
}

.button_newnew.type8:hover path {
    stroke: #000 !important;
}

.button_newnew:hover .not_sun {
    color: #000000;
}

.button_newnew:hover .btn_red_sun {
    color: #FF0707;
}

.button_newnew:active .not_sun {
    color: #C7C7C7;
}

.button_newnew:active .btn_red_sun {
    color: #DBDBDB;
}


.btn_newnew_reverse {
    box-shadow: 8px 8px 15px #bebebe, -8px -8px 15px #ffffff;
    transform: translateY(-1px);
}



.btn_newnew_reverse .not_sun {
    color: #000000;

}

.btn_newnew_reverse .btn_red_sun circle {
    fill: transparent;
    transition: fill 0.3s ease-in-out;

}

/* .btn_newnew_reverse:hover {
    box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.50) inset, 2px 2px 4px 0px rgba(188, 188, 188, 0.25) inset, 5px 5px 10px 0px rgba(188, 188, 188, 0.50) inset, -5px -5px 10px 0px #FFF inset;
} */
.button_newnew.type02 .btn_red_sun circle {
    fill: transparent;
    transition: fill 0.3s ease-in-out;
}

.button_newnew.type02:hover .btn_red_sun circle {
    fill: #FF0707;

}

.button_newnew.type02:active .btn_red_sun {
    color: #DBDBDB;
    stroke: unset;
    fill: unset;
    stroke-width: unset;
}

.buttonTit {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.buttonTit span {
    font-size: 17px;
    font-weight: 400;
    line-height: 2.47em;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.buttonTit span.rolling {
    position: absolute;
    color: #FF0707;
    font-weight: 500;
    text-shadow: 0px 5px 20px rgba(255, 7, 7, 0.50);
    left: 0;
    top: 0;
    transform: translateY(100%);
}

.siteMapItem.reverse .buttonTit span {
    color: #FF0707;
    font-weight: 500;
    text-shadow: 0px 5px 20px rgba(255, 7, 7, 0.50);
}

.siteMapItem.reverse .buttonTit span.rolling {
    position: absolute;
    color: #666;
    font-weight: 400;
    text-shadow: unset;
    left: 0;
    top: 0;
    transform: translateY(100%);
}

@media all and (max-width:1760px) {
    #siteMap .inner {
        justify-content: center;
        overflow: auto;
    }

    #siteMap {
        top: 90px;
    }

    .siteMapMenuBox {
        gap: 40px;
    }

    .siteMapMenuBox .siteMapItem {
        max-width: 178px;
        width: calc(25% - 30px);
    }

    .button_newnew {
        width: 100%;
        height: unset;
        aspect-ratio: 1/1;
    }
}

@media all and (max-width:1400px) {
    #siteMap {
        top: 80px;
    }

}

@media all and (max-width:700px) {
    .siteMapMenuBox {
        gap: 30px;
        justify-content: center;
    }

    .siteMapMenuBox .siteMapItem {
        width: calc(50% - 15px);
    }
}

/* END siteMap */

/* 20250514 추가 */
/* 2뎁스 드롭다운 */
#header .h_gnb li.has-depth {
    position: relative;
}

#header .h_gnb .depth2 {
    display: none;
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(238, 238, 238, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    min-width: 150px;
    z-index: 10;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.40);
}

/* 마우스 오버 시 드롭다운 표시 */
#header .h_gnb li.has-depth:hover .depth2 {
    display: block;
}

/* 드롭다운 항목 기본 스타일 */
#header .h_gnb .depth2 li {
    /* margin: 10px 0; */
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
}

#header .h_gnb .depth2 li:last-child {
    border-bottom: none;
}

/* 드롭다운 텍스트 롤링 구조 */
#header .h_gnb .depth2 li a {
    position: relative;
    display: block;
    overflow: hidden;
    /* height: 24px; */
    padding: 0 10px;
    color: #222;
    font-family: 'Montserrat';
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    /* 247.059% */
    text-decoration: none;
    white-space: nowrap;
    height: 100%;
}

/* 기본/롤링 텍스트 공통 속성 */
#header .h_gnb .depth2 li a span {
    display: block;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

/* 기본 텍스트 (처음 보이는) */
#header .h_gnb .depth2 li a .basic {
    transform: translateY(0);
}

/* 롤링 텍스트 (hover 시 올라오는) */
#header .h_gnb .depth2 li a .rolling {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    color: #FF0707;
    font-weight: 500;
    text-shadow: 0px 5px 20px rgba(255, 7, 7, 0.5);
}

/* Hover 시 텍스트 롤링 효과 */
#header .h_gnb .depth2 li a:hover .basic {
    transform: translateY(-100%);
}

#header .h_gnb .depth2 li a:hover .rolling {
    transform: translateY(0);
}


/* 퀙메뉴 테스트 */
.quick_icon {
    position: fixed;
    right: 80px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick_icon a {
    width: 44px;
    height: 44px;

}

.quick_icon a img {
    width: 100%;
    height: 100%;
}