@charset "utf-8";

@import url("font.css");
@import url("reset.css");
@import url("common.css");
@import url("form.css");
@import url("ui.css");


/*
    color variable
********************/
:root {

    /* gnb nav style */
    --header_bg: rgba(0, 0, 0, .0);
    --header_bg_line: rgba(255, 255, 255, .0);
    --depth1_txt: #001241;
    --depth2_txt: rgba(89, 89, 89, 1);
    --depth1_hover_txt: #001241;
    --depth2_hover_txt: #001241;
    --depth1_hover_bg: rgba(255, 255, 255, 1);
    --depth1_hover_round: 0.3rem;
    --phone_txt: #000c42;

    /* mobile nav style */
    --mobile_menu_bg: #09193e;
    --mobile_depth1_txt: #fff;
    --mobile_depth2_txt: #ebe7e3;
    --hamburger_color: #000c42;

    /* 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: #001241;
    --footer_txt: rgba(255, 255, 255, 1);
    --footer_copy: rgba(255, 255, 255, 0.3);
    --footer_comment: rgba(255, 255, 255, 1);
    --footer_link: rgba(255, 255, 255, .5);
    --footer_link_hover: rgba(255, 255, 255, 1);
    --gotop_bg: #fff;
    --gotop_txt: #001241;

}

/**************************************************************
	헤더 /풋터 / 서브 레이아웃 가이드
	변경하지 않는 기본 스타일시트 import
**************************************************************/
header {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
    transition: 0.3s ease top;
    background: none;
    transition: all 0.5s;
}
@media screen and (min-width: 1025px) {
    header { min-width: 1500px; }
}

.hover {background-color:#fff; border-bottom: 1px solid #e5e5e5;}
.sub_wrap header.sticky {
    position: fixed;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
header .header_con {
    max-width: 1740px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    height: 120px;
}
header .header_con h1 {
    position: relative;
    z-index: 9;
    height: 40px;
    top: 35px;
}
header .header_con h1 a {
    padding: 0 60px;
    display: block;
    width: 339px;
    height: 40px;
    background: url("/resources/img/common/top_logo.png") no-repeat 50% 50%;
    overflow: hidden;
    text-indent: -20000px;
}
header .header_con nav.gnb {
    width: 980px;
    position: relative;
    z-index: 9;
    top: 30px;
}
header .header_con nav.gnb .gnb_depth_1 { display: flex; justify-content: space-between;}
header .gnb_depth_1>li { position: relative;}
header .gnb_depth_1>li>a { display: inline-block; padding: 0 2rem; white-space: nowrap; width: 100%; text-align: center; position: relative; }
header .gnb_depth_1>li>a>strong  { font-size: 18px; color: #001241; display: inline-block; position: relative; font-weight: 600; padding: 12px 0; }

header .gnb_depth_1>li>a>strong::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: '';
    overflow: hidden;
    width: 0;
    height: 5px;
    background: url('../img/common/gnb_on_line.jpg') no-repeat;
    background-size: cover;
    transition: all .3s ease;
}
header .gnb_depth_1>li>a:hover>strong::after,
header .gnb_depth_1>li>a.current>strong::after {
    width: 100%;
}
header .gnb_depth_2 {
    position: absolute;
    top: 80px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    display: none;
    z-index: 29;
    left: 0;
    right: 0;
    overflow:hidden;
}
header .gnb_depth_2>ul>li>pre {
    font-family: "Noto Sans KR";;
}
header .gnb_depth_2>ul>li>pre>a {
    font-size: 1rem;
    font-weight: 400;
    color: #595959;
    display: inline-block;
    text-align: center;
    width: 100%;
    /* white-space: nowrap; */
    line-height: 1;
    padding: 0.625rem 0;
    letter-spacing: -1px;
    line-height: 1.4;
}
header .gnb_depth_2>ul>li>pre>a:hover,
header .gnb_depth_2>ul>li>pre>a.current { color: #001241; font-weight: 600; }

header .header_con .util_menu { display: none;}
header .header_con .header_util {
    position: relative;
    z-index: 9;
    top: 38px;
}
header .header_con .header_util .phone_num {transition: all .3s; width: 175px; }
header .header_con .header_util .phone_num a {
    position: relative;
    color: #2d3c46;
    cursor:default;
    font-size: 1.75rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 35px;
    display: block;
    padding: 0 0 0 40px;
}
header .header_con .header_util .phone_num a::before {
    content: "";
    display: block;
    top: 2px;
    left: 0px;
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #b6c5d0;
    border-radius: 100%;
    text-align: center;
    line-height: 25px;
    background: url("/resources/img/common/icon_gnb_tel.png") no-repeat 50% 50%;
}
header .header_con .header_util .grand_open {
    display: block;
    padding: 20px 0 0;
    opacity: 0;
}
header.hover .header_con .header_util .grand_open { opacity: 1; transition: all 0.5s;}
header .header_con .header_util .util_menu { display: none; }
header #navbg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    overflow: hidden;
    left: 0;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}
header #navbg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1740px;
    width: calc(100% - 140px);
    height: 100%;
    background: url("/resources/img/common/gnb_img.png") no-repeat 0 187px;
}
/* header #navbg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1740px;
    width: calc(100% - 140px);
    height: 100%;
    background: url("/resources/img/common/top_schedule.png") no-repeat right 175px;
} */
/* mobile */
header.temp_header_skin1 .hamburger_icon {
    /* width: 26px;
    height: 22px; */
    width: 8vw;
    height: 8vw;
    max-width: 26px;
    max-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 .hamburger_icon i:nth-child(2){margin: 8px 0;}

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);}


/* 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;
    left: -100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    transition: all ease .6s;
    padding: 25vw 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%;
    padding:15px 0;
    overflow:hidden;
    border-bottom: 1px solid rgba(255, 255, 225, 0.2);
    display: flex;
}
header.temp_header_skin1 .mobile_gnb > ul > li > a { width: 30%; font-size:4vw; font-weight:600; display:inline-block; color:var(--mobile_depth1_txt);  transition: transform ease .7s; }
header.temp_header_skin1 .mobile_gnb > ul > li > ul { width: 70%; }
/* header.temp_header_skin1 .mobile_gnb > ul > li > ul > li{margin-right:40px;} */
header.temp_header_skin1 .mobile_gnb > ul > li > ul > li > a{ width: 100%; color:var(--mobile_depth2_txt); position:relative; transition:all ease .3s; font-size: 4vw; font-weight: 400; padding: 0.3rem 0.7rem; display: block;}
header.temp_header_skin1 .mobile_gnb > ul > li > ul > li > a br { display: none; }

header.temp_header_skin1.nav-mo.active .mobile_gnb {opacity: 1;}
header.temp_header_skin1.nav-mo.active .allmenu_con {left: 0;}
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: 1024px) {
    header {background: #fff; position: fixed;}
    header .header_con { padding: 1.5rem 2rem; height: 7.5rem; border-bottom: 1px solid #dcdcdc; background-color: #fff; align-items: center;}
    header .header_con .gnb {display: none;}
    header .header_con .util_menu {
        width: 8vw;
        height: 8vw;
        max-width: 50px;
        max-height: 50px;
        position: relative;
        order: 2;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header .header_con h1 { order: 0;  top: 0; height: 100%; position: relative; width: 70vw;}
    header .header_con h1 a {
        display: block;
        width: 90%;
        max-width: 400px;
        height: 100%;
        position: relative;
        background-size: contain;
    }
    header .header_con .header_util { order: 0; }
    header .header_con .header_util { top: 0; }
    header .header_con .header_util .phone_num { width: 8vw; height: 8vw; max-width: 35px; max-height: 35px; }
    header .header_con .header_util .phone_num a {
        cursor: pointer;
        width: 100%;
        height: 100%;
        overflow: hidden;
        text-indent: -20000px;
        background: url("/resources/img/common/m_icon_gnb_tel.png") no-repeat 50% 50%;
        background-size: contain;
    }
    header .header_con .header_util .phone_num a::before { display: none; }
    header .header_con .header_util .grand_open { display: none; }
}
@media screen and (max-width: 640px) {
    header .header_con { padding: 3vw 4vw; height: 20vw; }
}

/* PAGE LOCATION NAV */
.page_location_nav {
    height: 4.375rem;
    text-align: center;
    position: relative;
    z-index: 40;
    width: 100%;
    left: 0;
    right: 0;
    background: #001241;
}
.page_location_nav[data-menu="5"] {background-color: #724F49;}
.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: 4.375rem;
    line-height: 4.375rem;
    font-size: 1rem;
    border-right: 1px solid rgba(255,255,255,.3);
}
.page_location_nav .path-item dt br { display: none; }
.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,1);
    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);
    transition: all .3s;
}
.page_location_nav .path-item ul li a {background: #001241; opacity: 0.7;}
.page_location_nav .path-item ul li a:hover { opacity: 1;}
.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.5rem;
    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 {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;}
}
@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;}
}


/* 스카이텔링 퀵메뉴 */
.skytelling_quick {
    width: 170px;
    height: 399px;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 999;
    transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
    .skytelling_quick { display: none; }
}
.skytelling_quick a {
    position: absolute;
    width: 80px;
    height: 100%;
    right: 0;
    top: 0;
    background: url("/resources/img/common/quick_skytelling.png") no-repeat right 0;
    transition: all 0.5s;
    overflow: hidden;
    text-indent: -300000px;
}
.skytelling_quick a:hover {
    width: 170px;
    background: url("/resources/img/common/quick_skytelling_hover.png") no-repeat right 0;
}

.sub_top_visual {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 380px;
    transition: all .3s;
    margin: 120px 0 0;
}
@media screen and (max-width: 1024px) {
    .sub_top_visual {
        margin: 7.5rem 0 0;
    }
}

.sub_top_visual .sub_top_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 10;
    background: url("../img/common/bgVisual_0.jpg") no-repeat center center;
    background-size: cover !important;
}
.sub_top_visual h2 {
    position: relative;
    text-align: center;
    font-weight: 600;
    color: #fff;
    z-index: 20;
    letter-spacing: 5px;
    font-family: "Noto Sans KR";
    font-size: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub_top_visual h2 br { display: none; }
.sub_top_visual h2 span { font-weight: 400; display: block; font-size: 36px; }
.sub_top_visual h2 strong { font-weight: 600; display: block; font-size: 48px;}

.sub_top_visual[data-menu="5"] h2 {color: #724F49;}

#bgVisual_0 {
    background: url("../img/common/bgVisual_0.jpg") no-repeat center center;
    background-size: cover !important;
}
#bgVisual_1 {
    background: url("../img/common/bgVisual_1.jpg") no-repeat center center;
    background-size: cover !important;
}
#bgVisual_2 {
    background: url("../img/common/bgVisual_2.jpg") no-repeat center center;
    background-size: cover !important;
}
#bgVisual_3 {
    background: url("../img/common/bgVisual_3.jpg") no-repeat center center;
    background-size: cover !important;
}
#bgVisual_4 {
    background: url("../img/common/bgVisual_4.jpg") no-repeat center center;
        background-size: cover !important;
}
#bgVisual_5 {
    background: url("../img/common/bgVisual_5.jpg") no-repeat center center;
    background-size: cover !important;
}

@media screen and (max-width: 1024px) {
    .sub_top_visual {
        height: 250px;
    }
    .sub_top_visual h2 {
        padding: 0;
        font-size: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .sub_top_visual {
        height: 35vw;
        margin-top:20vw;
    }
    .sub_top_visual h2 span { font-size: 5vw; }
    .sub_top_visual h2 strong { font-size: 6vw; }
}

/* 아이콘 퀵메뉴 */
.quick_menu {
    position: fixed;
    width: 52px;
    left: 50%;
    top: 150px;
    z-index: 333;
    margin: 0 0 0 -860px;
}
.sub_wrap .quick_menu ,
.main_wrap .quick_menu {
    top: 50%;
    transform: translate(0,-50%);
}
@media screen and (max-width: 1800px) {
    .quick_menu {
        left: 0;
        transform: translateX(0);
        margin: 0;
    }
}
.quick_menu ul li.util a {
    display:inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50px;
    color: #fff;
    padding: 10px 0 0 50px;
    font-weight: 400;
    transition: all 0.5s;
    overflow: hidden;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #daddde;
}
.quick_menu ul li.util a:hover {
    width: 160px;
    transition: all 0.5s;
}
.quick_menu ul li.util a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    z-index: 9;
    background: url("/resources/img/common/icon_channel.png") no-repeat 0 0;
}
.quick_menu ul li.util a.channel::before {background: url("/resources/img/common/icon_channel.png") no-repeat 0 0;}
.quick_menu ul li.util a.regist::before {background: url("/resources/img/common/icon_regist.png") no-repeat 0 0;}
.quick_menu ul li.util a.media::before {background: url("/resources/img/common/icon_movie.png") no-repeat 0 0;}
.quick_menu ul li.util a.mall::before {background: url("/resources/img/common/icon_mall.png") no-repeat 0 0;}

.quick_menu ul li.util a.channel:hover::before {background: url("/resources/img/common/icon_channel_w.png") no-repeat 0 0;}
.quick_menu ul li.util a.regist:hover::before {background: url("/resources/img/common/icon_regist_w.png") no-repeat 0 0;}
.quick_menu ul li.util a.media:hover::before {background: url("/resources/img/common/icon_movie_w.png") no-repeat 0 0;}
.quick_menu ul li.util a.mall:hover::before {background: url("/resources/img/common/icon_mall_w.png") no-repeat 0 0;}

.quick_menu ul li.util a.channel:hover { background: #2d3d47; border: 1px solid #2d3d47;}
.quick_menu ul li.util a.regist:hover { background: #2d3d47; border: 1px solid #2d3d47;}
.quick_menu ul li.util a.media:hover { background: #2d3d47; border: 1px solid #2d3d47;}
.quick_menu ul li.util a.mall:hover { background: #6e4731; border: 1px solid #6e4731;}


@media screen and (max-width: 1440px) {
    .quick_menu { display: none; }
}

/*********************************************
    풋터
*********************************************/
footer {
    padding: 50px;
    background: #000d43;
    position: relative;
}
footer .footer_con {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    justify-content: space-between;
    flex-direction: row;
}
footer .footer_con .logo_sec {
    width: 150px;
    position: relative;
}
footer .footer_con .txt_sec {
    position: relative;
    width: calc(100% - 360px);
    color: #fff;
    padding: 0 40px;
    opacity: 0.8;
    line-height: 1.4;
}
footer .footer_con .txt_sec::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 100%;
    background: #fff;
    opacity: 0.2;
}
footer .footer_con .txt_sec .summary p { position: relative; padding: 0 0 0 20px; font-size: 14px;}
footer .footer_con .txt_sec .summary p::before {
    content: "※";
    position: absolute;
    left: 0;
}
footer .footer_con .cons_info {
    padding: 10px 0;
}
footer .footer_con .cons_info span {position:relative;}
footer .footer_con .cons_info span:before {display:inline-block; content:''; width:1px; height:12px; margin:0 8px; background-color:rgba(255,255,255,0.5)}
footer .footer_con .cons_info p span:first-child::before {display: none}
footer .footer_con .gotop {
    width: 210px;
    position: relative;
}
.gotop ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* .gotop ul li:nth-of-type(1) { width: 100%; } */
/* .gotop ul li:nth-of-type(2) { width: 111px; }
.gotop ul li:nth-of-type(3) { width: 73px; } */
.gotop a.privacyBtn {
    margin: 0;
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 0;
    width: 130px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    margin: 0 0 25px;
}
.gotop a.privacyBtn span {
    margin-right: 0;
    position: relative;
    padding: 0 15px 0 0;
    display: block;
}
.gotop a.privacyBtn span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 5px;
    height: 100%;
    background: url("/resources/img/common/arrow2.png") no-repeat 100% 50%;
}
.gotop a.top {
    width: 73px;
    height: 85px;
    text-align: center;
    transition: all .3s;
    z-index: 20;
    background: var(--gotop_bg);
    color: var(--gotop_txt);
    font-weight: 600;
    display: inline-block;
    font-size: 13px;
    padding-top: 1.3rem;
    font-family: 'Montserrat';
}
.gotop a.top i {
    display: block;
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
    footer { padding: 20px 20px 160px; }
    footer .footer_con { max-width: 100%; flex-wrap: wrap; align-items: center;}
    footer .footer_con .logo_sec {
        order: 0;
        max-width: 50%;
        min-width: 110px;
    }
    footer .footer_con .txt_sec {
        order: 2;
        width: 100%;
        padding: 20px 0 0;
    }
    footer .footer_con .txt_sec::before { display: none; }
    footer .footer_con .gotop {
        order: 1;
        width: 340px;
    }
    .gotop a.privacyBtn { margin: 0; }
    .gotop ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    .gotop ul li:nth-of-type(1) { width: auto; }
    .gotop ul li:nth-of-type(2) { width: auto; }
    .gotop ul li:nth-of-type(3) { width: auto; }
}
@media screen and (max-width: 640px) {
    footer { padding: 5vw 5vw 24vw; }
    footer .footer_con .logo_sec { max-width: auto; min-width: auto; width: 15vw; }
    footer .footer_con .logo_sec img { width: 100%;}
    footer .footer_con .txt_sec .summary p { font-size: 2.5vw; }
    footer .footer_con .txt_sec .cons_info p { font-size: 2.8vw; }
    footer .footer_con .txt_sec p.copyright { font-size: 2.8vw; }
    footer .footer_con .gotop {
        width: 60vw;
    }
    .gotop a.privacyBtn { font-size: 2.2vw; width: auto; }
    .gotop ul li:nth-of-type(1) { width: 20vw; }
    .gotop ul li:nth-of-type(2) { width: 22vw; margin: 0 2vw; }
    .gotop ul li:nth-of-type(2) img { width: 100%; }
    .gotop ul li:nth-of-type(3) { width: 12vw; }
    .gotop ul li:nth-of-type(3) a { width: 100%; }
    .gotop a.top { height: 16.5vw; padding: 4vw 0 0; font-size: 3vw; }
}



/*sub page register button*/
#subRegisterBtn {
    position: fixed;
    right: 40px;
    top: 500px;
    letter-spacing: 0.23rem;
    z-index: 50;
    transition: all .3s ease
}
#subRegisterBtn a {display: block;}

.foot #subRegisterBtn  {
    top: calc(500px - 300px);
}

/* .gotop a.privacyBtn img {
    display: none;
} */


/*
footer {
    background: var(--footer_bg);
    clear: both;
    padding: 0 4rem;
    position: relative;
    width: 100%;
}

footer .footer_con {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    padding: 3rem 0;
}

footer .footer_con .logo_sec {
    align-items: flex-start;
    display: flex;
    padding-right: 40px;
    padding-top: 10px;
}

footer .footer_con .txt_sec {
    font-size: 13px;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer_con .txt_sec .summary {
    padding: 0px 0 10px;
}

footer .footer_con .txt_sec .summary p {
    padding: 2px 0;
    color: var(--footer_comment);
    font-weight: 100;
    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 .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;
}

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 .copyright {
    color: var(--footer_copy);
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    margin-top: 10px
}

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: var(--footer_link);
    display: inline-block;
    padding: 0 15px;
    position: relative;
    transition: all .2s;
}

footer .footer_con .privacy_link a:hover {
    color: var(--footer_link_hover);
}

footer .footer_con .privacy_link a::before {
    content: "";
    width: 1px;
    height: 11px;
    position: absolute;
    right: -2px;
    top: 5px;
    background: rgba(255, 255, 255, .2);
}

footer .footer_con .privacy_link a:last-child::before {
    background: none;
}

.greenCampain {
    display: inline-block;
    width: 6.9375rem;
    ;
    height: 5.3125rem;
    line-height: 75px;
    text-align: center;
    margin: -8px 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    vertical-align: middle;
}

.greenCampain img {
    width: 75px;
    vertical-align: middle;
}



@media screen and (min-width:1025px) and (max-width:1250px) {
    footer {
        padding: 0 3rem;
    }

    footer .footer_con .logo_sec {
        padding-right: 20px;
    }

    footer .footer_con .txt_sec {
        padding-left: 20px;
        margin-right: 200px;
    }
}

@media screen and (max-width: 1024px) {
    footer {
        padding: 0;
    }

    footer .footer_con {
        padding: 6.5rem 2rem;
        display: block;
    }

    footer .footer_con .logo_sec {
        padding: 0 0 1.125rem 0;
    }

    footer .footer_con .txt_sec {
        padding: 2rem 0 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .greenCampain {
        margin: 0;
        border: none;
        line-height: 47px;
        margin-right: 12px;
    }

    .greenCampain img {
        width: 100%;
    }

    .gotop {
        right: 20px;
        top: 2rem;
    }

    .gotop .privacyBtn {
        margin: 0 0 1rem 0;
    }

    #goTop {
        top: 1rem;
        right: 3rem;
    }

    #goTop a.gotoTop {
        position: absolute;
        top: -100px;
        right: 2rem;
    }

    #goTop a.privacyBtn {
        margin: 0;
        font-size: 0.9rem;
        display: inline-block;
        padding: 5px 0;
        width: 120px;
        text-align: center;
        position: absolute;
        right: 0;
        bottom: -70px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.7);
        margin-left: 0;
    }

    #goTop a.privacyBtn span {
        margin-right: 0;
    }

    #goTop a.privacyBtn img {
        display: none;
    }

    .m-only.mobileBtnBox {
        display: none;
    }

    #subRegisterBtn {
        display: none;
    }

}

@media screen and (max-width: 640px) {
    .m-only.mobileBtnBox {
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 21;
        width:100%;
    }

    .m-only.mobileBtnBox>ul {}

    .m-only.mobileBtnBox li {
        float: left;
        background-color: #0f245b;
        width: 33.3%;
        height: 80px;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
    }

    .m-only.mobileBtnBox li>a {
        display: block;
        color: #fff;
        font-weight: 500;
        text-align: center;
        font-size: 0.75rem;
        padding: 20px 0;
    }

    .m-only.mobileBtnBox li>a>strong {
        display: block;
        color: #fff;
    }

    .m-only.mobileBtnBox li>a img {
        margin-bottom: 12px;
        width: 20px;
    }

    .m-only.mobileBtnBox li:first-child {}

    .m-only.mobileBtnBox li:first-child .monthDay {
        font-family: 'SUIT';
        font-size: 1.25rem;
    }

    .m-only.mobileBtnBox li:first-child .monthDay strong {
        font-weight: 800;
    }

    .m-only.mobileBtnBox li:first-child {
        border-left: 0;
        color: #fff;
        text-align: center;
        font-size: 1rem;
        font-weight: 400;
        padding: 20px 0;
    }

}
*/

/*********************************************
    TOP 버튼
*********************************************/

/*
#goTop {position: absolute; right: 0; top: 0; z-index:999; }
#goTop.on {position: fixed;}
#goTop.stop {position: absolute !important;}
#goTop a {
    width: 12vw;
    height: 12vw;
    max-width: 50px;
    max-height: 50px;
    border-radius: 100%;
    text-align: center;
    transition: all .3s;
    z-index: 20;
    background: url("/resources/img/common/go_top.png") no-repeat 50% 50%;
    background-size: 100% auto;
    font-weight: 600;
    display: inline-block;
    padding-top: 1rem;
    text-indent: -20000px;
    overflow: hidden;
}
#goTop a i {display: block; font-size: 1rem;}
@media screen and (max-width: 1024px) {
    #goTop { top: -100px; }
}
@media screen and (max-width: 640px) {
    #goTop {right: 1rem; top: -23vw; }
    #goTop a {
        width: 15vw;
        height: 15vw;
        border-radius: 15vw;
        padding-top: 2vw;
        font-size: 0.87rem;
    }
    #goTop a i {font-size: 0.9rem;}
}
*/
/* 공통 */
#wrap { min-width: 1440px; margin: 0 auto;}
#wrap.sub_wrap { max-width: 100%; }

@media screen and (max-width: 1395px) { #subRegisterBtn {display: none;}}
@media screen and (max-width: 1024px) {
    #wrap { min-width: auto;}
}

.mobile_quick {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 130px;
    z-index: 9999;
    background: url("/resources/img/common/m_quick_bg.jpg") repeat-y 50% 50%;
    background-size: 100% auto;
}
.mobile_quick::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: 0.2;
}
.mobile_quick ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.mobile_quick ul li {
    text-align: center;
}
.mobile_quick ul li img {
    width: 100%;
    height: 100%;
    max-width: 240px;
    max-height: 130px;
}


@media screen and (min-width: 1025px) {
    .mobile_quick { display: none; }
}