@charset "utf-8";

/* ==========================================================================
    기존 코드
   ========================================================================== */
/* 스킵 네비게이션 */
#skip-nav {
    position: absolute; left: 0; right: 0; top: 0;
    z-index: 9999;
    & *{list-style: none; margin: 0; padding: 0;}
    a{display: block; width: 1px; height: 1px; overflow: hidden; color: #fff; white-space: nowrap; text-align: center;}
    a:focus,
    a:active{width: 100%; height: auto; padding: 0.5rem; background: #000;}
}
.wrap {position: relative;
    max-width: 1600px;
    margin: 0 auto;
    @media (width <= 1640px) {
        margin: 0 15px;
        max-width: 100%;
    }
}



/* header - snb - 사이트맵 / 모바일 메뉴 */
.menu_all_btn {
    position: relative;
    width: 26px; height: 40px;
    z-index: 99; cursor: pointer;
    margin-left: 20px;
    float: left;
    top: 50%;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.menu_all_btn span {
    display: block;
    position: absolute;
    width: 25px; height: 2px;
    background: #222; border-radius: 9px;
    opacity: 1;
    left: 50%;

    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -moz-transform: translateX(-50%) rotate(0deg);
    -o-transform: translateX(-50%) rotate(0deg);

    transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}
.menu_all_btn span:nth-child(1) {
    top: 9px;
}
.menu_all_btn span:nth-child(2),
.menu_all_btn span:nth-child(3) {
    top: 18px;
}
.menu_all_btn span:nth-child(4) {
    top: 27px;
}


/* 모바일 메뉴 오픈했을때 button */
.menu_all_btn.open span {

}
.menu_all_btn.open.dark span{
    background: #fff;
}
.menu_all_btn.open span:nth-child(1) {
    width: 0%;
    top: 11px; left: 50%;
}
.menu_all_btn.open span:nth-child(2) {
    margin-left: -10px;
    top: 19px;

    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.menu_all_btn.open span:nth-child(3) {
    margin-left: -10px;
    top: 19px;

    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.menu_all_btn.open span:nth-child(4) {
    width: 0%;
    top: 11px; left: 50%;
}


/* 사이트맵 / 모바일 메뉴 */
#sitemapBG {
    position: fixed;
    width: 95%; height: 95%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: #fff;
    z-index: 98; opacity: 0;
    transition: 1s;
    pointer-events: none; will-change: transform;
}
#sitemapBG.dark {
    background: #000;
}
#sitemapNAV{
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh; min-width: 320px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 98; opacity: 0;
    background: transparent;
    transition: all 1s;
    overflow: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
#sitemapNAV::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
#sitemapNAV:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 430px;
    height: 180px;
    background: url("/assets/newreal/img/common/logo_sitemap.png") no-repeat;
    background-size: contain;
    background-position: center top -180px;
    opacity: 0.3;
    transition: 0.5s;
}
#sitemapNAV .wrap{
    margin: 0 auto;
    width: 1600px; max-width: 90%;
}
ul.sitemap_list {
    position: fixed;
    position: absolute;
    display: flex; justify-content: space-between;
    width: 100%; min-width: 320px;
    left: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
ul.sitemap_list > li {
    display: inline-block;
    width: 26.333%; padding-left: 7%;
    /* 100 / 갯수 = width + padding-left */
    margin: 1.5rem 0;
    opacity: 0; vertical-align: top;
    transition: 0.4s cubic-bezier(0.365, 0.84, 0.44, 1);
}
ul.sitemap_list > li:nth-child(1){
    padding-left: 0;
}
ul.sitemap_list > li > a {
    display: block;
    box-sizing: border-box; padding: 0 0 1rem;
    position: relative;
    font-size: 2rem; font-weight: 800;
    color: #222; text-decoration: none;
    transition: 0.5s; pointer-events: none;
}
#sitemapNAV.dark ul.sitemap_list > li > a{
    color: #fff;
}
ul.sitemap_list > li > a::before{
    position: absolute;
    content: "";
    left: 0; bottom: 0;
    z-index: -1;
    width: 100%; height: 1px;
    background-color: #ddd;
}
#sitemapNAV.dark ul.sitemap_list > li > a::before{
    background-color: #fff;
}
ul.sitemap_list > li > a::after{
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    z-index: -1;
    width: 100%; height: 1px;
    background: #222;
    transform: scaleX(0.3); transform-origin: left;
    transition: transform 0.5s;
}
ul.sitemap_list > li:hover > a::after{
    transform: scaleX(1);
    transform-origin: left;
}
ul.sitemap_list .sub_menu{
    margin-top: 6px;
    padding-top: 14px;
}
.pc-gnb ul.sitemap_list .sub_menu{
    display: block !important;
}
ul.sitemap_list .sub_menu li{
    margin: 15px 0;
}
ul.sitemap_list .sub_menu li a{
    display: inline-block; vertical-align: middle;
    color: #333; font-size: 1.1rem;
    white-space: nowrap;
}
#sitemapNAV.dark ul.sitemap_list .sub_menu li a{
    color: #fff;
}
ul.sitemap_list .sub_menu li a:hover,
ul.sitemap_list .sub_menu li a:focus{
    font-weight: 600;
    color: #222;
}
ul.sitemap_list .sub_menu li a::before{
    display: none;
}


/* 오픈했을때 */
#sitemapBG.open{
    display: block; opacity: 1;
    pointer-events: auto;
    width: 100%; height: 100%;
    border-radius: 0;
}
#sitemapNAV.open{
    pointer-events: auto;
    opacity: 1;
    width: 100%; height: 100vh;
    border-radius: 0;
}
#sitemapNAV.dark.open{

}
#sitemapNAV.open:before{
    background-position: center center;
    transition-delay: 0.5s;
}
#sitemapNAV.open ul.sitemap_list > li{
    opacity: 1;
    /*transform: translateX(0);*/
}



/* 모바일 메뉴 - 스타일 */
.m-gnb {
    display: none;
    position: relative; min-width: 320px;
}
.m-gnb .gnb-top {
    color: #fff; background: #222;
    position: fixed; top: 0; right: 0;
    width: 100%; max-width: 500px; max-height: 165px; min-width: 320px;
    z-index: 1;
}
.m-gnb .gnb-top h2 {
    padding: 20px 15px;
}
.m-gnb .gnb-top h2 img {
    height: 25px;
}
.m-gnb .gnb-top h2 p {
    margin-top: 15px;
}
.m-gnb .gnb-top .gnb-quick {
    padding: 15px 0;
    border-top: 1px solid #555;
    overflow: hidden;
    background: #222;
}
.m-gnb .gnb-top .gnb-quick a {
    float: left;
    position: relative;
    display:block; width: 50%;
    text-align: center;
    color: #fff;
}
.m-gnb .gnb-top .gnb-quick a::after {
    content: '';
    display: block; width: 1px; height: 15px;
    position: absolute; right: 0; top: 50%;
    background: #555;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.m-gnb .gnb-top .gnb-quick a:last-child::after {
    content: none;
}
.m-gnb ul.sitemap_list {
    position: relative;
    top: 0; transform: translateY(0);
    display: block;
    width: auto;
    padding: 0 15px 150px;
    margin-top: 165px;
}
.m-gnb ul.sitemap_list > li {
    width: 100%;
    padding-left: 0;
    padding: 20px 0px; margin: 0;
    border-bottom: 1px solid #e8e8e8;
    opacity: 0;
    transform: translateX(50%);
}
.m-gnb ul.sitemap_list > li.active:before{
    width: 100%;
}
.m-gnb ul.sitemap_list > li:nth-child(1){
    transition-delay: 0.05s;
}
.m-gnb ul.sitemap_list > li:nth-child(2){
    transition-delay: 0.1s;
}
.m-gnb ul.sitemap_list > li:nth-child(3){
    transition-delay: 0.15s;
}
.m-gnb ul.sitemap_list > li:nth-child(4){
    transition-delay: 0.2s;
}
.m-gnb ul.sitemap_list > li:nth-child(5){
    transition-delay: 0.25s;
}
.m-gnb ul.sitemap_list > li:nth-child(6){
    transition-delay: 0.3s;
}
.m-gnb ul.sitemap_list > li:nth-child(7){
    transition-delay: 0.35s;
}
#sitemapNAV.open .m-gnb ul.sitemap_list > li{
    opacity: 1;
    transform: translateX(0);
}
.m-gnb ul.sitemap_list > li > a {
    display: block;
    font-size: 1.1rem; font-weight: 600; color: #222;
    padding: 0;
}
#sitemapNAV.open .m-gnb ul.sitemap_list > li > a {
    pointer-events: auto;
}
.m-gnb ul.sitemap_list > li > a::before{
    display: none;
}
.m-gnb ul.sitemap_list > li > a::after {
    transition: transform 0.5s;
    display: block;
    width: 10px; height: 6px;
    z-index: 9;
    top: 50%; bottom: auto; left: auto; right: 0;
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
    transform-origin: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.m-gnb ul.sitemap_list > li.active > a::after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat
}
.m-gnb ul.sitemap_list .sub_menu {
    display: none;
    margin-top: 15px; padding-top: 0; border-top: 0;
}
.m-gnb ul.sitemap_list .sub_menu li {
    margin: 0;
}
.m-gnb ul.sitemap_list .sub_menu li a {
    display: block; padding: 10px 0;
    color: #888;
}
.m-gnb ul.sitemap_list .sub_menu li a.on{
    color: #e60012;
}
.m-gnb ul.sitemap_list .sub_menu li a:hover,
.m-gnb ul.sitemap_list .sub_menu li a:focus{
    color: #e60012;
}
.m-gnb ul.sitemap_list .sub_menu li a::before {
    content: none;
}
.m-gnb ul.sitemap_list > li.active {

}

@media screen and (max-width:1280px) {
    #sitemapBG{
        background: rgba(0, 0, 0, 0.7);
        width: 100%; height: 100%;
        border-radius: 0;
    }
    #sitemapNAV{
        border-radius: 0;
        background: #fff;
        left: auto; right: 0;
        max-width: 500px;
        background: #fff;
        overflow-y: auto;

    }
    #sitemapNAV:before{
        display: none;
    }

    #sitemapNAV .pc-gnb {
        display: none;
    }
    .m-gnb {
        display: block;
        /* overflow: hidden; */
        overflow-y: scroll;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .m-gnb::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
    }
    .menu_all_btn.open span {
        background-color: #fff;
    }
}
@media screen and (max-width:500px) {
    #sitemapNAV {
        right: auto; left: 0;
    }
    .m-gnb .gnb-top {
        right: auto; left: 0;
    }
}
@media screen and (max-width:460px) {
    .m-gnb .gnb-top h2 {
        padding: 15px 15px;
    }
}




/*********** footer ***********/
footer {
    font-size: 14px; color: #a1a1a1;
    padding: 60px 0;
    background: #222;
}


/* footer - 약관 항목 리스트 */
footer .guide {
    display: inline-block;
}
footer .guide ul::after {
    content: ''; display: block; clear: both;
}
footer .guide ul li {
    float: left; margin-right: 25px;
    position: relative;
}
footer .guide ul li a {
    color: #fff;
}
footer .guide ul li::after {
    content: ''; display: block;
    width: 2px; height: 2px;
    position: absolute; right: -15px; top: 11px;
    background: #fff;
}
footer .guide ul li:last-child {
    margin-right: 0;
}
footer .guide ul li:last-child::after {
    content: none;
}


/* footer - 기본 정보 */
footer .address {
    margin-top: 10px;
}
footer .info em {
    margin-right: 15px;
}
footer .info em:last-child {
    margin-right: 0;
}


/* footer - 카피라이트 */
footer .copyright {
    letter-spacing: -0.2px; margin-top: 25px;
}


/* footer - 관련사이트 */
.family_site {
    display: block;
    width: 230px;
    position: absolute;
    bottom: 0; right: 0;
}
.family_site > .btn_fs_toggle {
    position: relative; display: block;
    line-height: 45px;
    padding: 0 80px 0 20px; color: #fff;
    background: #444;
}
.family_site > .btn_fs_toggle .plus {
    display: block;
    width: 18px; height: 18px;
    margin: -1px 0 0;
    position: absolute;
    top: 50%; right: 22px;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.family_site > .btn_fs_toggle .plus:before {
    content: "";
    display: block;
    width: 100%; height: 2px;
    background: #aaa;
    position: absolute;
    top: 50%; left: 50%;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.family_site > .btn_fs_toggle .plus:after {
    content: "";
    display: block;
    width: 2px; height: 100%;
    background: #aaa;
    position: absolute;
    top: 50%; left: 50%;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.family_site .site_list {
    display: none;
    position: absolute;
    bottom: 45px; left: 0;
    width: 100%; max-height: 230px;
    overflow-y: auto; z-index: 1;
    border: 1px solid #e9e9e9; box-sizing: border-box;
    color: #555; background: #fff;
    word-break: break-all;
}
.family_site .site_list li:hover {
    background: rgba(0, 0, 0, 0.05);
}
.family_site .site_list li a {
    position: relative; display: block;
    padding: 13px 20px; font-size: 13px;
}
.family_site .site_list li a:before {
    content: "";
    display: block;
    width: 85%; height: 1px;
    box-sizing: border-box; border-bottom: 1px dashed #e8e8e8;
    position: absolute;
    bottom: 0; left: 50%;

    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.family_site .site_list li:last-child a:before {
    display: none;
}


/* footer - SNS */
footer .sns {
    position: absolute;
    top: 0; right: 0;
}
footer .sns::after {
    content: ''; display: block; clear: both;
}
footer .sns li {
    float: left;
    margin: 0 0 0 16px;
}
footer .sns li:first-child {
    margin: 0;
}
footer .sns li a {
    display: block; width: 40px; height: 40px;
    border: 1px solid rgba(0,0,0,0); box-sizing: border-box;
    font-size: 0; text-indent: -9999px; border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #444444;
    background-size: 28px;
}
footer .sns li a.in {
    background-image: url("../img/common/ico-sns-in.png");
}
footer .sns li a.fb {
    background-image: url("../img/common/ico-sns-fb.png");
}
footer .sns li a.nb {
    background-image: url("../img/common/ico-sns-nb.png");
}
footer .sns li a.yt {
    background-image: url("../img/common/ico-sns-yt.png");
    background-size: 26px;
}


@media screen and (max-width:1280px) {
    footer {
        font-size: 12px;
        padding: 40px 0;
    }
    footer .sns {
        position: relative;
        margin-top: 20px;
    }
    footer .copyright {
        margin-top: 10px;
    }
    .family_site {
        position: relative; margin-top: 20px;
        width: 100%;
    }
    .family_site > .btn_fs_toggle {
        background: none;
        border-bottom: 1px solid #444;
        padding: 0 80px 0 0;
    }
    .family_site > .btn_fs_toggle .plus {
        right: 0;
    }
    .family_site .site_list {
        bottom: 46px;
    }
    .family_site .site_list li a:before {
        width: calc( 100% - 40px );
    }
}




/*********** floating - 우측 하단 고정메뉴 ***********/
.floating_menu {
    position: fixed;
    right: 50px; bottom: 73px;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    z-index: 2;
 }
.floating_menu ul.sns {
    display: block;
    clear: both; transition: all 200ms linear;
    margin-bottom: 15px;
}
.floating_menu ul.sns li {
    position: relative;
    height: 46px; line-height: 46px;
    margin: 0 0 10px 0; text-align: center;
    transition: all 200ms linear;
}
.floating_menu ul.sns li::after {
    content: ''; display: block; clear: both;
}
.floating_menu ul.sns li:last-child {
    margin: 0;
}
.floating_menu ul.sns li a {
    float: right;
    display: block;
    border-radius: 58px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.35);
}
.floating_menu ul.sns li.naver_talktalk a {
    background: #00c63b; color: #fff;
}
.floating_menu ul.sns li.kakao a {
    background: #fae100; color: #111;
}
.floating_menu ul.sns li.ars {
    display: none;
}
.floating_menu ul.sns li.ars a {
    background: #b01e46; color: #fff;
}
.floating_menu ul.sns li.inquiry a {
    background: #111; color: #fff;
}
.floating_menu ul.sns li a span {
    position: relative;
    display: block; width: 0px; height: 46px;
    color: rgba(0,0,0,0); text-align: left;
    overflow: hidden;
    padding: 0 0 0 46px;
}
.floating_menu ul.sns li a:hover span,
.floating_menu ul.sns li a:focus span{
    width: 100px;  transition: all 200ms linear;
    font-size: 14px; font-weight: 500; color: #fff;
}
.floating_menu ul.sns li.kakao a:hover span,
.floating_menu ul.sns li.kakao a:focus span {
    color: #3c1e1e;
}
.floating_menu ul.sns li a span:before {
    content: "";
    position: absolute; top: 0; left: 0;
    display: block; width: 46px; height: 46px;
    border-radius: 50%;
    background: url("../img/common/floating_menu01.png") no-repeat;
    background-size: 40px; background-position: center center;
}
.floating_menu ul.sns li a:hover span:before,
.floating_menu ul.sns li a:focus span:before {
    border-radius: 50% 0 0 50%; transition: all 200ms linear;
}
.floating_menu ul.sns li.naver_talktalk a span:before {
    background-image: url("../img/common/floating_menu01.png");
}
.floating_menu ul.sns li.kakao a span:before {
    background-image: url("../img/common/floating_menu02.png");
}
.floating_menu ul.sns li.ars a span:before {
    background-image: url("../img/common/floating_menu04.png");
}
.floating_menu ul.sns li.inquiry a span:before {
    background-image: url("../img/common/floating_menu03.png");
}


/* 상단 바로가기 */
.progress-wrap {
    display: block;
    width: 46px; height: 46px;
    border-radius: 50px; box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
    opacity: 0; z-index: 101;
    visibility: hidden; cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #fff;
    float: right;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
    content: '';
    display: block;
    width: 16px; height: 16px;
    position: absolute;
    left: 50%; top: 32%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 1;
    background: url(../img/common/scroll_top_ic.png) no-repeat center;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%; top: 32%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 16px; height: 16px;
    background: url(../img/common/scroll_top_ic_hover.png) no-repeat center;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    opacity: 0; z-index: 2;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #444;
	stroke-width: 5;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


@media screen and (max-width:1280px) {
    .floating_menu {
        right: 20px; bottom: 40px;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }
    .progress-wrap {
        width: 40px; height: 40px;
    }
}




/*********** Sub Visual ***********/
.sub_visual {
    position: relative; overflow: hidden;
    width: 100%; height: 320px;
    margin: 0 auto; margin-top: 90px;
    transition:all .1s linear; z-index:8;
}
.sub_visual .wrap {
    position: absolute;
    width: 100%; height: 100%; max-width: 1280px;
    top: 0; left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    margin:0 !important;
    z-index: 5;
}
.sub_visual .text{
    position: absolute;
    width: 100%;
    top: 50%; left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    padding: 0; margin-top: -30px;
    color: #fff;
}
.sub_visual h2 {
    font-size: 40px; font-weight: 500;
}
.sub_visual p {
    color: #aaa;
}


/* Sub nav - PC */
.subdepth {
    position: relative;
    width: 100%; height: 65px; max-width: 1600px;
    margin: 0 auto; margin-top: -64px;
    background: #fff;
    z-index: 10;
}
.subdepth .inner{
    width: 1600px; margin: auto;
}
.subdepth .bgn {
    position: relative;
    text-align: center;
}
.subdepth .bgn span {
    display: inline-block;
    line-height: 65px;
}
.subdepth .bgn span a {
    display: block; position: relative;
    margin: 0 25px;
    white-space: nowrap;
    transition: 0.2s;
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
}
.subdepth .bgn span a.on {
    color: #222;
    font-weight: 700;
}
.subdepth .bgn span a.on::after {
    content: '';
    display: block; position: absolute;
    bottom: 0;
    width: 100%;  height: 3px;
    background: #222;
}


/* Sub nav - Mobile */
.submenu_select {
    display: none;
    text-align: left;
    border-bottom: 1px solid #ddd; box-sizing: border-box;
}
.submenu_select .inner {
    width: 100%;
}
.submenu_select .home {
    display: inline-block;
    width: 60px; height: 52px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .main_menu {
    position: relative;
    display: inline-block;
    width: 250px; height: 52px;
    vertical-align: middle;
}
.submenu_select .sub_menu {
    display: inline-block;
    width: 250px;
    vertical-align: middle;
    position: relative;
}
.submenu_select .home::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .home a {
    display: block; text-indent: -9999px; margin: 0 auto;
    width: 100%; height: 100%;
    background: url('../img/sub/home_ic.png') no-repeat center;
}
.submenu_select .main_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select .sub_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #ddd;
    right: 0; top: 0;
}
.submenu_select button {
    border: none; outline: none; cursor: pointer;
    font-size: 14px; color: #222; letter-spacing: -0.8px; line-height: 52px;
    background: url('../img/sub/submenu_arr.png') transparent no-repeat 88% center;
    width: 100%; text-align: left; box-sizing: border-box;
    padding: 0 20px;
}
.submenu_select .main_menu ul,
.submenu_select .sub_menu ul {
    display: none;
    position: absolute;
    top: 52px; left: -2px;
    width: 100%;
    padding: 10px 0;
    text-align: left;
    background: #fff;
    border-top: 1px solid #eee; box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9;
}
.submenu_select .main_menu ul li:hover,
.submenu_select .sub_menu ul li:hover{
    background: #f7f7f7;
}
.submenu_select .main_menu ul li a,
.submenu_select .sub_menu ul li a{
    display: block;
    font-size: 14px; color: #222; letter-spacing: -0.8px;
    box-sizing: border-box; padding: 5px 20px;
}


.sub_visual .visual_img {
    display:block;
    position:absolute;
    z-index:3;
    width: 100%;
    height:100%;
    margin:0 0 0 -50%;
    left:50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sub_visual .visual_img::after {
    content: '';
    display: block;
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    background: rgba(0,0,0,.45);
}
.sub_visual .visual_img img{
    animation:ani_slide1 3s ease-in-out;
    display:block;
    margin:0 auto;
    z-index:8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes ani_slide1 {
    0% {margin-top: 0px;}
    50% {margin-top: -40px;}
    100% {margin-top: 0;}
}
@media screen and (max-width:1600px) {
    .subdepth {
        width: 95%;
    }
    .subdepth .inner {
        width: 100%;
    }
}

@media screen and (max-width:1280px) {
    .sub_visual {
        margin-top: 80px;
    }
}

@media screen and (max-width:1024px) {
    .sub_visual {
      height: auto;
      padding-bottom: 20%;
      margin-top: 80px;
    }
    .subdepth {
        display: none;
    }
    .submenu_select {
        display: block;
    }
    .sub_visual .text {
        margin-top: 0;
    }
    .sub_visual h2 {
        font-size: 30px;
    }
}

@media screen and (max-width:860px) {
    .sub_visual {
        margin-top: 65px;
    }
    .submenu_select .home {
        width: 10%;
    }
    .submenu_select .main_menu {
        width: 42%;
    }
    .submenu_select .sub_menu {
        width: 42%;
    }
    .submenu_select .sub_menu::after {
        content: none;
    }
}
@media screen and (max-width:640px) {
    .sub_visual .text {
        display: none;
    }
}
@media screen and (max-width:460px) {
    header {
        height: 55px;
    }
    .sub_visual {
        margin-top: 55px;
        padding-bottom: 30%;
    }
    .submenu_select .main_menu ul,
    .submenu_select .sub_menu ul {
        top: 45px;
    }
    .submenu_select .main_menu {
        height: 45px;
    }
    .submenu_select .home {
        height: 45px;
    }
    .submenu_select button {
        height: 45px; line-height: 45px;
    }

}




/*********** Sub Layout ***********/
.sub_container {
    position:relative;
    overflow:hidden ;
    min-height:400px;
 }




/*********** Popup ***********/
.div_popup{
    z-index: 99 !important;
    border: 1px solid rgba(0,0,0,.1); box-sizing: border-box;
    min-width: 320px;
}
.div_popup table {
    width: 100%;
}
.div_popup .divpop-img img {
    width: 100%;
}
.div_popup .divpop-bottom{
    background: #fff;
}
.div_popup .divpop-bottom a td::after {
    content: ''; display: block; clear: both;
}
.div_popup .divpop-bottom a{
    display: inline-block;
    color: #222;
    font-size: 14px; letter-spacing: -0.5px; vertical-align: middle;
    margin: 0 20px; line-height: 40px;

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);
}
.div_popup .divpop-bottom a:hover {
    color: #999;
}
.div_popup .divpop-bottom a.close {
    float: right;
    position: relative;
    padding: 0 25px 0 0;
}
.div_popup .divpop-bottom a.close::before {
    content: ''; display: inline-block;
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);

    width: 17px; height: 1px;
    background: #222;
}
.div_popup .divpop-bottom a.close::after {
    content: ''; display: inline-block;
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);

    transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);

    width: 17px; height: 1px;
    background: #222;
}
.div_popup .divpop-bottom a.close:hover::before,
.div_popup .divpop-bottom a.close:hover::after {
    background: #999;
}
.div_popup .divpop-bottom a.today {
    float: left;
}

@media screen and (max-width:640px){
    .div_popup{
        z-index: 999999 !important;
        width: 90% !important;
        top: 50% !important; left: 50% !important;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
    }
}


/********** 서브페이지 타이틀 **********/
.sub_tit{
  position: relative;
}
.sub_tit strong{
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 2rem;
}
.sub_tit_s span{
    display: block;
    font-size: 1.125rem;
    color: #666;  letter-spacing: -0.8px;
    line-height: 1;
}

.section_title{
  border-bottom: 2px solid #ccc;
}
.section_title span{
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 1% 6px 1%;
  letter-spacing: -1px;
  margin-bottom: -2px;
  border-bottom: 2px solid #444;
  color: #222;
}

@media screen and (max-width:1440px){
  .sub_tit::before{
    top: -88px;
  }
}
@media screen and (max-width:860px){
  .sub_tit::before{
    top: -90px;
  }
  .sub_tit strong{
    font-size: 2.2rem;
  }
  .sub_tit_s span{
    font-size: 1rem;
  }
}
@media screen and (max-width:860px){
  .sub_tit strong{
    font-size: 1.8rem;
    margin-bottom : 1.5rem;
  }
}

/* ==========================================================================
    new NEW REAL
   ========================================================================== */
#content {
    position: relative;
    padding-right: var(--sidebar-width);
    transition: .3s ease-out;
    @media (width <= 1360px) {
        padding-right: 0;
    }
    @media (width <= 860px) {
        padding-top: var(--header-height);
    }
}

/* ==========================================================================
    Global
   ========================================================================== */
/*Scrollbar*/
@media (hover: hover) and (pointer: fine) {
    body::-webkit-scrollbar {width: 0; height: 0;}
    /*_foot에 위치*/
    .custom-scroll {
        position: fixed; top: 0; right: 0; z-index: 101;
        width: 6px; height: 100%;
        border-radius: 999px; background: rgba(255, 255, 255, .1); opacity: 0;
        transition: opacity .2s; pointer-events: none;
        .thumb {position: absolute; right: 0; width: 100%; border-radius: 999px; background: rgba(255, 255, 255, .3); height: 40px; transform: translateY(0);}
    }
    body:hover .custom-scroll {opacity: 1;}
}
@media (hover: none), (pointer: coarse) {
    .custom-scroll { display: none !important; }
}
/*Backdrop*/
.ui-backdrop{position:fixed;inset:0;opacity:0;pointer-events:none;transition:.2s;background:rgba(0,0,0,.5); z-index:999;}
.ui-backdrop.show{opacity:1;pointer-events:auto;}

/* ==========================================================================
    GRID
   ========================================================================== */
.main-grid{
    position: relative;
    padding-left: var(--main-gap);
    padding-right: var(--main-gap);
}


/* ==========================================================================
    HEADER
   ========================================================================== */
header {
    position: fixed; top: 0; z-index: 100;
    width: 100%; padding-right: var(--sidebar-width);
    pointer-events: none;
    .header-inner {display: flex; justify-content: space-between; align-items: center; height: 100%; padding: calc(var(--main-gap) - 7px) calc(var(--main-gap) - 7px);}
    .logo{
        pointer-events: auto;
        .m-logo{display: none;}
        .m-logo img{width: 140px;}
    }
    .btn-sidebar{display: none; justify-content: center; align-items: center; width: 76px; aspect-ratio: 1 / 1; font-size: 0; background: url("/assets/newreal/img/common/btn-sidebar.svg") no-repeat center; pointer-events: auto;}
    @media (width <= 1360px) {
        padding-right: 0;
        .header-inner{padding: calc(var(--main-gap) - 17px) calc(var(--main-gap) - 7px);}
        .btn-sidebar{display: flex;}
    }
    @media (width <= 860px) {
        height: var(--header-height);
        background-color: var(--point-color01);
        .header-inner{padding: 0 26px;}
        .btn-sidebar{width: 36px; background-image: url("/assets/newreal/img/common/btn-sidebar-m.svg");}
        .logo{
            .symbol{display: none}
            .m-logo{display: block;}
        }
    }
}

/* ==========================================================================
    Fixed Sidebar
   ========================================================================== */
.fixed-sidebar {
    position: fixed; top: 0; right: 0; z-index: 1000;
    width: var(--sidebar-width); height: 100%; overflow-y: auto;
    font-size: 18px; line-height: 22px; border-left: 1px solid var(--point-color01); background-color: var(--point-color01);
    &::-webkit-scrollbar {display: none;}
    .sidebar-inner {display: flex; flex-direction: column; height: 100%; padding: 30px 12px 8px;}
    .logo .g-img{display: none;}
    .sidebar-top{display: flex; justify-content: space-between;}
    .sidebar-top .btn-x{display: none; padding-right: 8px;}
    .sidebar-panel {display: none;}
    .btn-container{display: flex; flex-direction: column; gap: 16px;}
    .nav-panel {
        flex: 1; flex-direction: column;
        margin-top: 40px;
        &.open {display: flex;}
        .sidebar-desc{margin-bottom: 20px;}
        .sidebar-desc p:not(:last-child){margin-bottom: 22px;}
        .project-nav{display: none; margin: 55px 0 80px;}
        .project-nav > ul > li:not(:last-child){margin-bottom: 6px;}
        .project-nav > ul > li > a{position: relative; display: inline-flex;}
        .project-nav > ul > li > a > span{line-height: 13px;}
        .project-nav > ul > li > a::before,
        .project-nav > ul > li > a::after{content: ""; display: block; border-radius: 50%;}
        .project-nav > ul > li > a::before{width: 13px; height: 13px; border: 1px solid var(--basic-color); margin-right: 7px;}
        .project-nav > ul > li > a::after{position: absolute; left: 2px; top: 2px; width: 9px; height: 9px; background-color: transparent;}
        .project-nav > ul > li > a.on::after{background-color: var(--basic-color);}
        .sidebar-contact{margin-top: auto;}
        .sidebar-contact > :not(.co-name){font-size: 14px; line-height: 17px;}
        .address{margin-top: 24px;}
        .contact-list{margin-top: 17px;}
        .btn-container{margin-top: 29px;}
    }
    .contact-panel {
        margin-top: 26px;
        &.open {display: block;}
        .btn-back button{display: block; font-size: 14px; padding-left: 20px; background: url("/assets/newreal/img/common/arr01.svg") no-repeat 0 center;}
        .form-title{font-size: 21px; padding-bottom: 12px; border-bottom: 1px solid #131313; margin-top: 24px;}
        .input-container{margin-top: 15px;}
        .input-row:not(:last-child){margin-bottom: 11px;}
        .ip-item{position: relative; font-size: 14px; margin-bottom: 7px;}
        .ip-item.req::after{content: " *"; position: absolute; top: -3px; font-size: 9px; color: #E71825; margin-left: 2px;}
        .refer{font-size: 11px; line-height: 16px; margin-top: 9px;}
        .btn-container{margin-top: 69px;}
    }

    @media (width > 1360px) {
        &.black-bar {
            color: var(--point-color01);
            background-color: var(--bg-color);
            .logo .d-img{display: none;}
            .logo .g-img{display: inline;}
            .button01{color: var(--basic-color); border-color: var(--point-color01); background-color: var(--point-color01);}
            .nav-panel {
                .project-nav > ul > li > a::before{border-color: var(--point-color01);}
                .project-nav > ul > li > a.on::after{background-color: var(--point-color01);}
            }
            .contact-panel {
                .btn-back button{background-image: url("/assets/newreal/img/common/arr01g.svg")}
                .form-title,
                .form-ip{border-color: var(--point-color01);}
                .form-ip{color: var(--point-color01);}
                textarea.form-ip{color: var(--basic-color);}
            }
        }
    }
    @media (width <= 1360px) {
        translate: 100%; transition: .3s ease-out;
        &.open{translate: 0;}
        .sidebar-top .btn-x{display: block;}
    }
    @media (width <= 640px) {
        max-width: var(--sidebar-width); width: 100%;
        font-size: 17px; line-height: 21px;
        .sidebar-inner {padding: 21px 28px 20px;}
        .sidebar-top .logo img{width: 140px;}
        .sidebar-top .btn-x{padding-right: 0;}
        .btn-container{gap: 12px;}
        .button01{font-size: 20px;}
        .nav-panel {
            margin-top: 40px;
            .project-nav{margin: 56px 0 50px;}
            .sidebar-contact{font-size: 13px; line-height: 20px;}
            .sidebar-contact .co-name{display: none;}
            .btn-container{margin-top: 40px;}
        }
        .contact-panel {
            margin-top: 34px;
            .ip-item{font-size: 13px;}
            .btn-container{margin-top: 40px;}
        }
    }
}
/* ==========================================================================
    Project
   ========================================================================== */
.pg-plist {
    padding-top: 140px; padding-bottom: 140px;
    @media (width <= 1024px) {
        padding-bottom: 120px;
    }
    @media (width <= 860px) {
        padding-top: var(--main-gap);
    }
    @media (width <= 640px) {
        padding-bottom: 100px;
    }
}
.pg-pview {
    padding-top: 140px; padding-bottom: 140px;
    @media (width <= 1024px) {
        padding-bottom: 120px;
    }
    @media (width <= 860px) {
        padding-top: var(--main-gap);
    }
    @media (width <= 640px) {
        padding-bottom: 100px;
    }
}
