@charset "utf-8";

@import url("reset.css");
@import url("font.css");
@import url("common.css");
@import url("form.css");
@import url("ui.css");

@import url("high_work_edition.css");
@import url("premium_community.css");


/**************************************************************
	헤더 /풋터 / 서브 레이아웃 가이드
	변경하지 않는 기본 스타일시트 import
	작성일 : 2024.01.11 / 작성자 : ㈜넥스미디어
**************************************************************/

/*
    color variable
********************/
:root {

    /* gnb nav style */
    --header_bg:rgba(0,0,0,.5);
    --header_bg_line:rgba(255,255,255,.1);
    --depth1_txt:rgba(0,0,0,1);
    --depth2_txt:rgba(0,0,0,1);
    --depth1_hover_txt:rgba(0,0,0,1);
    --depth2_hover_txt:rgba(0,0,0,1);
    --depth1_hover_bg:rgba(0,0,0,.5);
    --depth1_hover_round:0.3rem;
    --phone_txt:#000;

    /* mobile nav style */
    --mobile_menu_bg:#fff;
    --mobile_depth1_txt:#000;
    --mobile_depth2_txt:#000;
    --hamburger_color:#000;

    /* location nav style */
    --location_nav_bg:rgba(0,0,0, .5);
    --location_nav_menubg: rgba(73,73,73,.6);
    --location_nav_menuhover: rgba(73,73,73,.8);

    /* footer style */
    --footer_bg:#fff;
    --footer_txt:#000;
    --footer_copy:rgba(255,255,255,0.3);
    --footer_comment:#000;
    --footer_link:rgba(255,255,255,.5);
    --footer_link_hover:rgba(255,255,255,1);
    --gotop_bg:rgba(201,219,237,1);
    --gotop_txt:rgba(0,0,0,1);

}

/********************************************
      SUBWRAP
********************************************/
.sub_wrap {
    background-color: #000;
}
/*********************************************
    GNB (Global Navigation Bar)
*********************************************/

header.temp_header_skin1 {
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    /* overflow: hidden; */
    transition: 0.3s ease all;
    padding: 3rem 2rem;
    margin-bottom: 0;
}

header.temp_header_skin1:hover {
    transition: 0.3s ease all;
    background: #fff;
}
@media screen and (max-width: 1024px) {
    header.temp_header_skin1:hover {
        transition: 0.3s ease all;
        background: none;
    }
}
header.temp_header_skin1.scrollTop {
    opacity: 1;
}
header.temp_header_skin1.scrollDown {
    position: absolute;
    /* top: -150px; */
    top: 0;
    transform: translateY(-100%);
    transition: all 0.5s;
    opacity: 0;
}
header.temp_header_skin1.scrollUp {
    position: fixed;
    top: 0;
    transform: translateY(0);
    transition: all 0.8s;
    opacity: 1;
}

header.temp_header_skin.up {transform: translateY(-50%);}
header.temp_header_skin1 .header_con .header_inner {
    zoom: 1;
    position: relative;
    margin:0 auto;
    text-align: left;
    z-index: 201;
    display: flex;
    overflow: hidden;
    min-height: 110px;
    max-width: 1800px;
}
.sub header.temp_header_skin1.scrollUp::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    transition: all 0.2s;
}
.main header.temp_header_skin1.scrollUp::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.9;
    transition: all 0.8s;
}
header.temp_header_skin1 .header_con {zoom: 1; position: relative; min-width: 1380px; margin:0 auto; text-align: left; z-index: 201; padding: 0 4rem; display: flex; align-items: flex-start;}
header.temp_header_skin1 .header_con .header_logo {flex:none; position: relative; display: flex; align-items: center;}
header.temp_header_skin1 .header_con .header_logo a {
    display: block;
    width: 187px;
    height: 64px;
    background-image: url("/resources/img/common/top_logo.png");
    background-size: cover;
}
.sub header.temp_header_skin1 .header_con .header_logo a {
    background-image: url("/resources/img/common/top_logo_w.png");
}
header.temp_header_skin1 .header_con .header_logo div {position: absolute; left: 0; top: 150px;}
header.temp_header_skin1 .header_con .header_logo div p {color: rgba(255,255,255, .5); font-size: 15px; white-space: pre;}
header.temp_header_skin1 .header_con .header_logo div p:nth-child(1) {margin-bottom: 40px;}
header.temp_header_skin1 .header_con .header_logo div p span {display: block; color: #fff; margin-bottom: 5px;}
header.temp_header_skin1 .header_con .gnb {display: flex; flex-direction: row; justify-content: center; flex: 1;}
header.temp_header_skin1 .header_con .gnb_depth_1 {display: flex;}
header.temp_header_skin1 .header_con .gnb_depth_1>li {position: relative;}
header.temp_header_skin1 .header_con .gnb_depth_1>li:first-child::before {background:none;}
header.temp_header_skin1 .header_con .gnb_depth_1>li>a {
    display: flex;
    color: var(--depth1_txt);
    font-size: 1.14rem;
    text-align: center;
    align-items: center;
    margin:0 1.5rem;
    letter-spacing: 0.5px;
    height: 70px;
    font-weight: 600;
    white-space: nowrap;
    justify-content: center;
    transition: all ease 0.2s;
    position: relative;
}

.sub header.temp_header_skin1 .header_con .gnb_depth_1>li>a {
    color: #fff;
}
.sub header.temp_header_skin1:hover .header_con .gnb_depth_1>li>a {
    color: #000;
}
.sub header.temp_header_skin1.scrollUp:hover .header_con .gnb_depth_1>li>a {
    color: #fff;
}



header.temp_header_skin1 .header_con .gnb_depth_1>li>a strong { display: inline-block; position: relative; letter-spacing: 1px; padding: 0.6rem 1.3rem; border-radius:var(--depth1_hover_round); transition: all ease 0.3s; font-size: 20px; }
header.temp_header_skin1 .header_con .gnb_depth_1>li>a::after, header.temp_header_skin1 .header_con .gnb_depth_1>li>a::after {content: ""; width: 100%; height: 1px; background: var(--depth1_hover_txt); position: absolute; bottom: 0; transform: scaleX(0); transition: transform 0.3s;}
.sub header.temp_header_skin1 .header_con .gnb_depth_1>li>a::after, .sub header.temp_header_skin1 .header_con .gnb_depth_1>li>a::after {background: #fff;}
.sub header.temp_header_skin1:hover .header_con .gnb_depth_1>li>a::after, .sub header.temp_header_skin1:hover .header_con .gnb_depth_1>li>a::after {background: #000;}


header.temp_header_skin1 .header_con .gnb_depth_1>li>a.on::after, header.temp_header_skin1 .header_con .gnb_depth_1>li.on>a::after {transform: scaleX(1);}
header.temp_header_skin1 .header_con .gnb_depth_1>li>a.on strong, header.temp_header_skin1 .header_con .gnb_depth_1>li.on>a strong {color: var(--depth1_hover_txt);}
.sub header.temp_header_skin1 .header_con .gnb_depth_1>li>a.on strong, .sub header.temp_header_skin1 .header_con .gnb_depth_1>li.on>a strong {color: #fff;}
.sub header.temp_header_skin1:hover .header_con .gnb_depth_1>li>a.on strong, .sub header.temp_header_skin1:hover .header_con .gnb_depth_1>li.on>a strong {color: #000;}
.sub header.temp_header_skin1.scrollUp:hover .header_con .gnb_depth_1>li>a.on strong, .sub header.temp_header_skin1.scrollUp:hover .header_con .gnb_depth_1>li.on>a strong {color: #fff;}

@media screen and (min-width: 1025px) {
    .sub header.temp_header_skin1:hover .header_con .header_logo a {
        background-image: url("/resources/img/common/top_logo.png");
    }
    .sub header.temp_header_skin1.nav-mo.active .header_con .header_logo a {
        background-image: url("/resources/img/common/top_logo_w.png");
    }

    .sub header.temp_header_skin1.scrollUp .header_con .header_logo a {
        background-image: url("/resources/img/common/top_logo_w.png");
    }
    .sub header.temp_header_skin1.scrollUp.hover:hover .header_con .header_logo a {
        background-image: url("/resources/img/common/top_logo_w.png");
    }
}

header.temp_header_skin1 .header_con .gnb_depth_2 {
    /* position: absolute; */
    top: 140px;
    padding: 1rem 0.7rem 0;
    text-align: center;
    white-space: nowrap;
    display: none;
    z-index: 29;
    left: 0;
    right: 0;
}
header.temp_header_skin1 .header_con .gnb_depth_2 ul {padding-bottom: 2rem;}
header.temp_header_skin1 .header_con .gnb_depth_2 li {text-align: center;}
header.temp_header_skin1 .header_con .gnb_depth_2 li a { color: #000; }

.sub header.temp_header_skin1 .header_con .gnb_depth_2 li a { color: #fff; }
.sub header.temp_header_skin1:hover .header_con .gnb_depth_2 li a { color: #000; }
.sub header.temp_header_skin1.scrollUp:hover .header_con .gnb_depth_2 li a { color: #fff; }


sub header.temp_header_skin1.scrollUp.hover .header_con .gnb_depth_1>li>a::after,
sub header.temp_header_skin1.scrollUp.hover .header_con .gnb_depth_1>li>a::after {background: #fff;}
sub header.temp_header_skin1.scrollUp.hover .header_con .gnb_depth_1>li>a.on strong,
sub header.temp_header_skin1.scrollUp.hover .header_con .gnb_depth_1>li.on>a strong {color: #fff;}
sub header.temp_header_skin1.scrollUp.hover .header_con .gnb_depth_2 li a {
    color: #fff;
}


header.temp_header_skin1 .header_con .gnb_depth_2 li a pre {display: inline-block; padding: 12px 0 8px; color:var(--depth2_txt); position: relative; font-size: 1rem; font-weight: 300; transition: all ease 0.2s;}

header.temp_header_skin1.hover .header_con .gnb_depth_1 li .gnb_depth_2 li a pre {color: #fff; padding: 20px 0 12px;}
header.temp_header_skin1 .header_con .gnb_depth_1 li.on .gnb_depth_2 li.on a pre {color: var(--depth2_hover_txt);}
header.temp_header_skin1.hover .header_con .gnb_depth_2 li a {
    padding: 0.5rem 0;
}
header.temp_header_skin1 .header_con .gnb_depth_2 li a.current,
header.temp_header_skin1 .header_con .gnb_depth_2 li a:hover { font-weight: 600;}
header.temp_header_skin1 .header_con .header_util {white-space: nowrap; margin-left: auto; display: flex; align-items: center; height: 70px;}
header.temp_header_skin1 .header_con .header_util .open {font-size: 20px; color: #000; font-weight: 700; padding: 12px 18px; background: #fff; border-radius: 25px; line-height: 18px; font-family: "Poppins", sans-serif;}
header.temp_header_skin1 .header_con .header_util .sns_box a {margin-left: 50px;}
header.temp_header_skin1 .header_con .header_util .sns_box a img {vertical-align: middle;}
header.temp_header_skin1 .header_con .header_util span {vertical-align: middle; margin-left: 1.5rem;}
header.temp_header_skin1 .header_con .header_util span.phone_num {font-size: 24px; font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: 1px; transition: all .3s; letter-spacing: -1px;}

header.temp_header_skin1 .header_con .header_util span.phone_num span { display: none; }
header.temp_header_skin1 .header_con .header_util span.phone_num .top_tel_1.pc-only {
    position: relative;
    width: 121px;
    height: 121px;
    background: url("/resources/img/common/top_tel_num.png?v=250526") no-repeat 50% 50%;
    background-size: contain;
    display: block;
}
header.temp_header_skin1 .header_con .header_util span.phone_num .top_tel_2.pc-only {
    position: relative;
    width: 121px;
    height: 121px;
    background: url("/resources/img/common/top_tel_num_1.png?v=250526") no-repeat 50% 50%;
    background-size: contain;
    display: none;
}


.sub header.temp_header_skin1.scrollUp .header_con .header_util span.phone_num a.pc-only {
    filter: invert(1);
}
.sub header.temp_header_skin1.scrollUp:hover .header_con .header_util span.phone_num a.pc-only,
.sub header.temp_header_skin1.scrollUp.hover .header_con .header_util span.phone_num a.pc-only,
.sub header.temp_header_skin1.scrollUp.hover:hover .header_con .header_util span.phone_num a.pc-only {
    filter: invert(1);
}
.sub header.temp_header_skin1 .header_con .header_util span.phone_num {
    filter: invert(1);
}
.sub header.temp_header_skin1 .header_con .header_util span.phone_num a img{
    filter: invert(1);
}
.sub header.temp_header_skin1:hover .header_con .header_util span.phone_num {
    filter: invert(0);
    transition: 0.3s ease all;
}


header.temp_header_skin1 .header_con .header_util span.phone_num::after {
    content: "";
    display: block;
    position: absolute;
    top: -25px;
    right: 61px;
    width: 121px;
    height: 121px;
    background: url("/resources/img/common/top_tel.png") no-repeat 50% 50%;
    background-size: contain;
    animation: rotateBanner 20s linear infinite;
}
.sub header.temp_header_skin1 .header_con .header_util span.phone_num::after {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    right: 0;
    width: 121px;
    height: 121px;
    background: url("/resources/img/common/top_tel.png") no-repeat 50% 50%;
    background-size: contain;
    animation: rotateBanner 20s linear infinite;
}

@keyframes rotateBanner {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@media screen and (max-width: 1024px) {
header.temp_header_skin1 .header_con .header_util span.phone_num .top_tel_1.pc-only {
    display: none;
}

header.temp_header_skin1 .header_con .header_util span.phone_num::after,
.sub header.temp_header_skin1 .header_con .header_util span.phone_num::after {
    display: none;
}
}
header.temp_header_skin1 .header_con .header_util span.phone_num a {color: #000; cursor:default;}
header.temp_header_skin1 .header_con .header_util span.phone_num a.top_tel_2m {display: none;}

.sub header.temp_header_skin1.scrollUp .header_con .header_util span.phone_num a,
.sub header.temp_header_skin1.scrollUp.hover .header_con .header_util span.phone_num a {color: #fff; cursor:default;}


.main header.temp_header_skin1.scrollUp .header_con .header_util span.phone_num a,
.main header.temp_header_skin1.scrollUp.hover .header_con .header_util span.phone_num a {color: #000; cursor:default;}

header.temp_header_skin1 .header_con .header_util .util_menu a {text-align:center;}
header.temp_header_skin1 .header_con .header_util .util_menu {
    display: inline-flex;
    padding-right: 0;
    margin-left: 1rem;
    display: none;
}
header.temp_header_skin1 .hamburger_icon {
    width: 26px;
    height: 22px;
    transition: all .3s;
    z-index: 99;
    align-items: center;
    position: relative;
    justify-content: space-between;
    display: block;
}
header.temp_header_skin1  .hamburger_icon i {
    width: 100%;
    height: 2px;
    background-color: var(--hamburger_color);
    display: block;
    transition: transform ease .3s;
}
header.temp_header_skin1 .mobile_gnb_open .hamburger_icon i {
    background-color: #000;
}
.sub header.temp_header_skin1 .hamburger_icon i {
    background-color: #fff;
}
.sub header.temp_header_skin1 .mobile_gnb_open .hamburger_icon i {
    background-color: #000;
}
header.temp_header_skin1 .hamburger_icon i:nth-child(2){margin: 8px 0 8px -8px;}
header.temp_header_skin1.active .btn  {padding-top: 22px;}
header.temp_header_skin1.active .btn i {margin:-3px 0;}
header.temp_header_skin1.active .btn i:nth-child(1){transform:rotate(45deg);}
header.temp_header_skin1.active .btn i:nth-child(2){display:none;}
header.temp_header_skin1.active .btn i:nth-child(3){transform:rotate(-45deg);}


header.temp_header_skin1 #navbg {
    position: absolute;
    width: 100%;
    background:#001041;
    z-index: 26;
    display: none;
    overflow: hidden;
    right: 0;
    transform: translateY(70px);
}
header.temp_header_skin1.nav-mo .header_con::before {
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    width: 0;
    top: 116px;
    background: rgba(255,255,255,0);
    transition: all .3s ease;
    transition-delay: 0.4s;
}
header.temp_header_skin1.nav-mo.active .header_con::before {width: 100%; background: rgba(255,255,255,.5);  }

/* mobile */
header.temp_header_skin1.nav-mo .mobile_gnb > ul > li > ul{display:none;}
header.temp_header_skin1 .allmenu_con {
    overflow-y:auto;
    align-items:start;
    flex-direction: column;
    justify-content: space-between;
    background:var(--mobile_menu_bg);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    display: flex;
    transition: all ease .3s;
    padding:137px 7% 0;
}

header.temp_header_skin1 .mobile_gnb { width:100%; opacity:0; transition:opacity ease .3s;}
header.temp_header_skin1 .mobile_gnb > ul > li { position:relative; width:100%; margin:35px 0; overflow:hidden;  display: grid; grid-template-columns: 1fr 1fr;}
header.temp_header_skin1 .mobile_gnb > ul > li > a {font-size:2.4rem; font-weight:400; display:inline-block; color:var(--mobile_depth1_txt);  transition: transform ease .7s; padding-bottom: 0.5rem; position: relative;}
header.temp_header_skin1 .mobile_gnb > ul > li.on > a::after {content: ""; background: url('/resources/img/common/mob_menu_on.png') no-repeat; width: 10vw; height: 10vw; position: absolute; right: 0; top: -6px; background-size: contain;}
header.temp_header_skin1 .mobile_gnb > ul > li > ul > li{margin-right:40px;}
header.temp_header_skin1 .mobile_gnb > ul > li > ul > li > a{color:var(--mobile_depth2_txt); position:relative; transition:all ease .3s; font-size: 1.4rem; padding: 0.3rem 0.7rem; display: block;}
header.temp_header_skin1.nav-mo.active .mobile_gnb {opacity: 1;}
header.temp_header_skin1.nav-mo.active .allmenu_con {right: 0%; z-index: 99;}
header.temp_header_skin1.nav-mo.active .mobile_gnb > ul > li > a {
    transform: translateY(0);
    transition-delay: .5s;
    opacity: 1;
}
@media screen and (max-width: 1600px) {
    header.temp_header_skin1 .header_con {padding-left: 1rem; min-width:auto;}
    header.temp_header_skin1 .header_con .header_util {display: flex; justify-content:center;}
    header.temp_header_skin1 .header_con .header_util span {margin-left: 0;}
    header.temp_header_skin1 .header_con .header_util .allmenu_btn_in {margin-left: 0;}
    /* header.temp_header_skin1 .header_con h1 a {width: 150px;} */
}
@media screen and (max-width: 1127px) {
    header.temp_header_skin1 .header_con {padding:0;}
    header.temp_header_skin1 .header_con .header_util span.phone_num {font-size: 1.6rem; margin-right: 1rem;}
}
@media screen and (max-width: 1024px) {
    header.temp_header_skin1 { padding: 0 2rem;}
    header.temp_header_skin1 .header_con { padding: 1rem 0;}
    header.temp_header_skin1 .header_con .header_logo { display: flex; align-items: center;}
    header.temp_header_skin1 .header_con .header_logo a {width: 29vw;  height: 4vh; display: block; background-repeat: no-repeat; background-size: contain;}
    header.temp_header_skin1 .header_con .header_logo a img { width: 100%;}
    .sub header.temp_header_skin1 .header_con .header_logo a {
        background-image: url("/resources/img/common/top_logo_w.png");
    }
    .sub .active .header_con .header_logo a {
        background-image: url("/resources/img/common/top_logo.png");
    }
    header.temp_header_skin1.active .header_con .header_util span.phone_num {
        mix-blend-mode: difference;
    }

    .sub header.temp_header_skin1:hover .header_con .header_util span.phone_num {
        filter: invert(1);
        transition: 0.3s ease all;
    }
    .sub header.temp_header_skin1 .header_con .header_util span.phone_num a img{
        filter: none;
    }
    .sub header.temp_header_skin1.active .header_con .header_util span.phone_num a img{
        filter: invert(1);
    }

    header.temp_header_skin1 .header_con .gnb {display: none;}
    header.temp_header_skin1.nav-mo.active .header_con::before {display: none;}
    header.temp_header_skin1 .header_con .header_util .util_menu {display: flex; margin-left: 1.7rem;}
    header.temp_header_skin1 .header_con .header_util .sns_box {display: none;}
    header.temp_header_skin1.up {backdrop-filter: none;}
    header.temp_header_skin1 .mobile_gnb > ul {position: relative;}
    header.temp_header_skin1 .mobile_gnb > ul > li {overflow: inherit; }
    header.temp_header_skin1 .mobile_gnb > ul > li > ul {margin-bottom: 30px;}
    header.temp_header_skin1 .allmenu_con {justify-content: flex-start;}
    header.temp_header_skin1 #mob_header_info {margin-top: 30px;}
    header.temp_header_skin1 #mob_header_info p {font-size: 3.356vw; color: #7a7b7d; margin-bottom: 20px;}
    header.temp_header_skin1 #mob_header_info p span {display: block; color: #fff;}
    header.temp_header_skin1 #mob_header_info p:last-child span {display: inline-block; color: #fff;}
    header.temp_header_skin1 #mob_header_info p:last-child a {display: inline-block; width: 14px; height: 13px; background: url('/resources/img/common/icon_download.png') no-repeat; margin-left: 10px;}
}
@media screen and (max-width: 1024px) {

    .sub header.temp_header_skin1.nav-mo.active .header_con .header_logo a { background-image: url("/resources/img/common/top_logo.png"); }
}
@media screen and (max-width: 600px) {
    header.temp_header_skin1 { padding: 0 4vw;}
    header.temp_header_skin1 .header_con { padding: 4vw 0; align-items: center;}
    header.temp_header_skin1 .header_con .header_logo a img {width: 30vw;}
    header.temp_header_skin1 .allmenu_con { padding:24vw 7% 0;}
    header.temp_header_skin1 .mobile_gnb > ul > li > a {font-size:6.389vw; line-height: 6vw; font-family: "Noto Sans KR";}
    header.temp_header_skin1 .mobile_gnb > ul > li > ul {margin-top: -10px;}
    header.temp_header_skin1 .mobile_gnb > ul > li > ul > li > a {font-size: 3.889vw; padding: 0.7rem 0.2rem;}
    header.temp_header_skin1 .mobile_gnb > ul > li > ul > li:last-child > a {padding: 0.7rem 0.2rem 0 0.2rem;}
    header.temp_header_skin1 .header_con .header_util span.phone_num a img {width: 18vw;}
}
@media screen and (max-width: 480px) {
    header.temp_header_skin1 .header_con .header_util .util_menu {margin-left: 1rem;}
    header.temp_header_skin1 .header_con .header_util span.phone_num a img {width: 18vw; margin-right: 0.5rem; vertical-align: text-top; position: relative; top: 0;}
    header.temp_header_skin1 .hamburger_icon i:nth-child(2) {margin: 6px 0 6px -6px;}
    header.temp_header_skin1 .header_con .header_util span.phone_num a::before {font-size: 1.6rem;}
    header.temp_header_skin1 .header_con .header_util .util_menu {margin-left: 0.5rem;}
}

.go_reg_sub {background: #000; padding-top: 25px; max-width: 238px; width: 100%; height: 80px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; border-radius: 20px; position: absolute; top: 8rem; right: 2rem; overflow: hidden; z-index: 10;}
.go_reg_sub.fixed {position: fixed; top: calc(2rem + 70px);}
.go_reg_sub > div {width: 100%; text-align: right;}
.go_reg_sub > div > div {display: flex; flex-direction: row; justify-content: space-between; padding: 0 2rem; margin-bottom: 19px;}
.go_reg_sub > div > div > p {font-size: 20px; font-weight: 600; color: #fff; text-align: center;}
.go_reg_sub > div > div > span {display: inline-block; width: 30px; height: 30px; background: #fff url('/resources/img/main/btn_reg_go.png') no-repeat; border-radius: 30px; background-position: center;}


/* .go_reg_sub {background: #26355e; padding-top: 25px; width: 100%; height: 80px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; border-radius: 20px; position: absolute; top: 600px;}
.go_reg_sub.fixed {position: fixed; top: calc(2rem + 70px);}
.go_reg_sub > div {display: flex; flex-direction: row; justify-content: space-between; width: 100%; padding: 0 1rem;}
.go_reg_sub > div > p {font-size: 20px; font-weight: 600; color: #fff;}
.go_reg_sub > div > span {display: inline-block; width: 30px; height: 30px; background: #fff url('/resources/img/main/btn_reg_go.png') no-repeat; border-radius: 30px; background-position: center;}
 */

/*********************************************
    브레드크럼 (Breadcrumbs) 네비게이션
    사용자의 현재위치 / 사이트 이동경로
*********************************************/
.page_location_nav {
    height: 4rem;
    text-align: center;
    position: absolute;
    z-index: 8;
    width: 100%;
    left: 0;
    right: 0;
    margin-top: -4rem;
    background: #222;
}
.page_location_nav.topfix {position: fixed; top: 0; left: 0; right: 0;z-index: 90;}
.page_location_nav nav {font-size: 1rem; text-align: left; white-space: nowrap; position: relative; display: flex; max-width: 1100px; margin: 0 auto;}
.page_location_nav button {border: 0; background: transparent; outline: 0; font-size: 0;}
.page_location_nav .home {display: inline-block; width: 4rem; height: 4rem; overflow: hidden; position: relative;border-right: 1px solid rgba(255, 255, 255, 0.3);}
.page_location_nav .home a {display: flex; color:#fff; align-items: center; justify-content: center; height: 100%; font-size: 1.1rem; opacity: .5;}
.page_location_nav .path-item {position: relative; min-width: 250px;}
.page_location_nav .path-item dt {
    color: #fff;
    border-bottom: 0;
    border-top: 0;
    height: 4rem;
    line-height: 4rem;
    font-size: 1rem;
    border-right: 1px solid rgba(255,255,255,.3);
}
.page_location_nav nav span.open {margin-left: auto; align-items: center; display: flex;}

.page_location_nav .path-item.path_depth_1 dt {border-left: 0;}
.page_location_nav .path-item dt,
.page_location_nav .path-item li {padding: 0 1.1rem;}
.page_location_nav .path-item ul {position: absolute; left: 0; right: 0; margin-left:-1px;}
.page_location_nav .path-item ul li {line-height: 1.6; padding: 0; text-align: left;}
.page_location_nav .path-item dd {display: none; width: 100%;}
.page_location_nav .path-item li a {
    color: rgba(255,255,255,.7);
    display: block;
    position: relative;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(255,255,255,.2);
    font-size: 0.92rem;
    /* background: var(--location_nav_menubg); */
    background: #000;
    opacity: 0.7;
    transition: all .3s;
}
.page_location_nav .path-item li a:hover {
    background: #000;
    opacity: 1;
    border-bottom: 1px solid rgba(255,255,255,0);
}
.page_location_nav .path-item.path_depth_1 ul {margin-left: 0;}
.page_location_nav .path-item.path_depth_1 li a {border-left: 0;}
.page_location_nav .path-item li.on a {color: rgba(255,255,255,1);}
.page_location_nav .path-item .btn-open,
.page_location_nav .path-item .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.page_location_nav .path-item .btn-open:after,
.page_location_nav .path-item .btn-close:after {
    content: "\e878";
    position: absolute;
    top: 1.4rem;
    right: 1rem;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1rem;
    color: #fff;
    font-family: 'Linearicons-Free';
    transition: all .3s cubic-bezier(.25, .46, .45, 1);
}

.page_location_nav .path-item .btn-close {display: none;}
.page_location_nav .path-item .btn-close:after {transform: rotate(180deg);}
.page_location_nav .path-item.active {z-index: 22;}
.page_location_nav .path-item.active .btn-open {display: none;}
.page_location_nav .path-item.active .btn-close {display: block;}

@media screen and (max-width: 1024px) {
    .page_location_nav {margin-top: -3.2rem; height: 3.2rem;}
    .page_location_nav .path-item dt {height: 3.2rem; line-height: 3.2rem;}
    .page_location_nav .home {height: 3.2rem; width: 3.2rem;}
    .page_location_nav .path-item .btn-open:after, .page_location_nav .path-item .btn-close:after {top: 1rem;}
    .page_location_nav .path-item li a {padding: 0.7rem 1rem;}
    .page_location_nav .path-item dt, .page_location_nav .path-item li {font-size: 0.87rem;}

    .go_reg_sub {display: none;}
}
@media screen and (max-width: 768px) {
    .page_location_nav .path-item {min-width: auto; flex: 1;}
    .page_location_nav .path-item:last-child dt {border-right: 0;}
}

/*********************************************
    서브비주얼
*********************************************/
.sub_top_visual {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 540px;
    transition: all .3s;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.sub_top_visual .copy {
    font-size: min(calc(230/1920 * 100vw), 230px);
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    text-align: center;
    color: #fff;
    opacity: 0.1;
    line-height: 1.1;

}
.sub_top_visual .copy strong {
    font-weight: 900;
}
.sub_top_visual .copy span {
    font-weight: 700;
}
/* .sub_top_visual::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: min(calc(394/1920 * 100vw), 394px);
    aspect-ratio: 394/316;
    background: url("/resources/img/common/sub_model.png") no-repeat 0 0;
    background-size: contain;
    z-index: 9;
} */
@media screen and (max-width: 1600px) {
    .sub_top_visual::after { display: none; }
}
.sub_top_visual .sub_top_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 10;
    background: url(../img/main/main_visual2.jpg) no-repeat center center;
    background-size: cover !important;
    display: none;
}
.sub_top_visual h2 {
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 56px;
    color: #fff;
    z-index: 20;
    letter-spacing: 2px;
    padding-bottom: 4rem;
    padding-top: 80px;
}
.sub_top_visual .sub_visual_title {color: #fff; position: relative; z-index: 20; text-align: center;}
.sub_top_visual .sub_visual_title strong {
    font-weight: 500;
}
.sub_top_visual #bgVisual_0 {background: url('/resources/img/sub/sub_visual_00.jpg'); background-position: center;}
.sub_top_visual #bgVisual_1 {background: url('/resources/img/sub/sub_visual_01.jpg'); background-position: center;}
.sub_top_visual #bgVisual_2 {background: url('/resources/img/sub/sub_visual_02.jpg'); background-position: center;}
.sub_top_visual #bgVisual_3 {background: url('/resources/img/sub/sub_visual_03.jpg'); background-position: center;}
.sub_top_visual #bgVisual_4 {background: url('/resources/img/sub/sub_visual_04.jpg'); background-position: center;}
.sub_top_visual #bgVisual_5 {background: url('/resources/img/sub/sub_visual_05.jpg'); background-position: center;}

.sub_top_visual #bgVisual_1::after {content: "※ 상기 이미지는 소비자의 이해를 돕기 위해 제작된 것으로 실제와 차이가 있으며, 인·허가 과정 및 시행사, 시공사의 사정 등 기타 사유에 의하여 변경될 수 있습니다."; position: absolute; right: 10px; bottom: 10px; font-size: 0.87rem; word-break: keep-all; color: #fff;}

@media screen and (max-width: 1024px) {
    .sub_top_visual {height: 300px;}
    .sub_top_visual h2 {padding: 0; font-size: 2rem;}
    .sub_top_visual #bgVisual_1 {background: url('/resources/img/sub/sub_visual_01.jpg'); background-position: 80%;}

}
@media screen and (max-width: 580px) {
    .sub_top_visual #bgVisual_1::after {font-size: 2vw;}
}


/*********************************************
    TOP 버튼
*********************************************/
#goTop {position: absolute; right: 2rem; top: 4rem; z-index:30;}
#goTop.on {position: fixed;}
#goTop.stop {position: absolute !important;}
#goTop a {
    width: 4.8rem;
    height: 4.8rem;
    text-align: center;
    transition: all .3s;
    z-index: 20;
    background: #fff;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;

}
#goTop a i {display: block; font-size: 1rem;}
@media screen and (max-width: 1320px) {
    #goTop {right: 2rem;}
}
@media screen and (max-width: 480px) {
    #goTop {right: 1rem;}
    #goTop a {
        width: 3.8rem;
        height: 3.8rem;
        border-radius: 3.8rem;
        padding-top: 0.8rem;
        font-size: 0.87rem;
    }
    #goTop a i {font-size: 0.9rem;}
}



/*********************************************
    풋터
*********************************************/
footer { clear: both; padding: 0 2rem; position: relative; width: 100%; z-index: 999; background-color: #000;}
footer::after {
    content: "";
    display: block;
    position: relative;
    margin: 0 auto;
    width: 96%;
    aspect-ratio: 1920/115;
    background: url("/resources/img/common/footer_highwork.png") no-repeat 50% 0;
    background-size: contain;
}
@media screen and (max-width: 1024px) {
    footer::after {
        aspect-ratio: 720/100;
        width: 100%;
        background: url("/resources/img/common/footer_highwork.png") no-repeat 0 0;
        background-size: auto 100%;
    }
}
footer  * { color: #fff; }

footer .footer_con { display: flex; justify-content: flex-start; flex-direction: row; padding: 3.5rem 2rem 3rem; }
footer .footer_con .logo_sec {align-items: flex-start; display: flex; padding-right: 40px; padding-top: 5px;}
footer .footer_con .txt_sec {font-size:13px;}
footer .footer_con .txt_sec .summary {padding:5px 0 10px;}
footer .footer_con .txt_sec .summary p {padding: 2px 0; color: #fff; font-weight: 300; font-size: 0.92rem; position: relative; padding-left: 1.2rem;}
footer .footer_con .txt_sec .summary p::before { content: "※"; position: absolute; left:0; }
footer .footer_con .txt_sec img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
footer .footer_con .txt_sec .cons_info {color:var(--footer_txt);}
footer .footer_con .txt_sec .cons_info p {padding: 3px 0;}
footer .footer_con .txt_sec .cons_info p span {display: inline-block; padding: 0 10px; position: relative; font-size: 14px;}
footer .footer_con .txt_sec .cons_info p span a {color: #fff;}
footer .footer_con .txt_sec .cons_info p span strong {font-weight: 600;}
footer .footer_con .txt_sec .cons_info p span::before {content: ""; width: 1px; height: 11px; position: absolute; right: 0; top: 5px; background:rgba(255,255,255,.2);}
footer .footer_con .txt_sec .cons_info p span:last-child::before {background: none;}
footer .footer_con .txt_sec .cons_info p span:first-child {padding-left: 0;}
footer .footer_con .txt_sec .cons_info p img {vertical-align: middle; position: relative;}
footer .footer_con .txt_sec .cons_info p span:nth-child(2) img, footer .footer_con .txt_sec .cons_info p span:nth-child(3) img {top: -1px;}
footer .footer_con .copyright { font-family: "Roboto", sans-serif; text-transform: uppercase;}
footer .footer_con .link_sec {align-items: center; display: flex; flex-direction: column; justify-content: center; margin-left: auto;}
footer .footer_con .privacy_link {padding-bottom: 2rem;}
footer .footer_con .privacy_link a {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    position: absolute;
    right: 9rem;
    transition: all .2s;
    padding-bottom: 3px;
}
footer .footer_con .privacy_link a::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    background:#000;
}

@media screen and (max-width: 1320px) {
    footer {padding: 0 2rem;}
    footer .footer_con .link_sec {justify-content: flex-start;}
    footer .footer_con .privacy_link {display: flex; white-space: nowrap;}
}
@media screen and (max-width: 1127px) {
    footer .footer_con {display: grid; grid-template-columns: 1fr;}
    footer .footer_con .logo_sec {padding:0 0 1rem 0;}
    footer .footer_con .txt_sec {padding: 0px; border: none;}
    footer .footer_con .txt_sec .cons_info p {padding: 1px 0;}
    footer .footer_con .txt_sec .summary p {padding-top: 1px; padding-bottom: 1px; font-size: 0.87rem;}
    footer .footer_con .link_sec {grid-row-start: 1;}
    footer .footer_con .privacy_link {padding-bottom: 0;}
}
@media screen and (max-width: 768px) {
    footer .footer_con {padding: 2rem 0;}
    footer .footer_con .logo_sec {justify-content: center; padding-bottom: 1rem;}
    footer .footer_con .txt_sec .cons_info {text-align: center; font-size: 0.92rem; }
    /* footer .footer_con .txt_sec .cons_info p:first-child {display: grid; grid-template-columns: 1fr 1fr;} */
    footer .footer_con .txt_sec .cons_info {text-align: left;}
    footer .footer_con .txt_sec .cons_info p span {padding:0; padding-right: 10px;}
    footer .footer_con .txt_sec .cons_info p span:last-child img {width: 10vw;}
    footer .footer_con .copyright {text-align: center;}
    footer .footer_con .txt_sec .summary {text-align: left; word-break: keep-all;}
    footer .footer_con .link_sec {padding-bottom: 1rem;}
    footer .footer_con .copyright {font-size: 0.87rem;}
    footer .footer_con .txt_sec .cons_info p:nth-child(2) {margin-top: 10px;}

    footer .footer_con .abs_box {display: flex; flex-direction: row; align-items: flex-end; justify-content: flex-end;}
    footer .footer_con .privacy_link a {position: relative; right: 0;}
    #goTop {position: relative; top: 0; right: 0; margin-left: 10px;}
    #goTop a {border-radius: 0; font-size: 4vw; padding-top: 0;}
}
@media screen and (max-width: 560px) {
    footer .footer_con .txt_sec .cons_info p img {width: 20vw;}
    footer .footer_con .txt_sec .cons_info p span:nth-child(3) {padding-left: 0;}
    footer .footer_con .txt_sec .cons_info p:nth-child(2) img {width: 10vw; top: -2px;}
}

@media screen and (max-width: 480px) {
    footer .footer_con .link_sec {grid-row-start: auto;  margin-left: inherit; padding:1rem 0 0;}
}

/********************************************
    모바일 퀵링크
********************************************/
.mobile_qlink {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
.mobile_qlink::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background: #000;
}
.mobile_qlink::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background: #fff;
}
.mobile_qlink ul {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    display: grid;
    z-index: 11;
    grid-template-columns: 1fr 1fr;
}
.mobile_qlink ul li .bottom_tel1 {
    display: block;
    width: 100%;
    height: clamp(40px, calc(100/720 * 100vw), 55px);
}
.mobile_qlink ul li .bottom_tel2 {
    display: none;
    width: 100%;
    height: clamp(40px, calc(100/720 * 100vw), 55px);
}
.mobile_qlink ul a img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 800px) {
    .mobile_qlink {
        display: block;
    }
}
