
/* Reset Style */

* {-webkit-box-sizing: border-box;box-sizing: border-box;}

@media screen and (min-width:1360px) {

}
@media screen and (min-width:768px) and (max-width:1359px) {

}
@media screen and (max-width:767px) {

}
input { -webkit-appearance: none; -webkit-border-radius: 0; }
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-border-radius: 0;
}
input::-ms-clear {display: none;}
html { overflow-x: hidden; }
html, button, input {font-family: 'notokr-regular', sans-serif;color: #232323;}
button, select { cursor: pointer; }
ol, ul { list-style: none; list-style-type: none; padding: 0; margin: 0;}
h1, h2, h3, h4, h5, h6 { margin: 0; padding:0;}
a { text-decoration: none; }
a:active, a:focus, a:hover { text-decoration: underline; }
a:-webkit-any-link {color: -webkit-link;cursor: pointer;text-decoration: underline;}
input:focus, select:focus, textarea:focus, button:focus {outline: none;}
button{border: 0;border-radius: 0;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
select{ -moz-appearance: none; appearance: none; -webkit-appearance: none; }
select::-ms-expand {display: none;}
input[type=checkbox] + label{display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */display: -ms-flexbox; /* TWEENER - IE 10 */display: flex;-webkit-box-align: center;-webkit-flex-align: center;-ms-flex-align: center;align-items: center;}
hr { background-color: #e5e5e5; color: #e5e5e5; }
label { cursor: pointer; }
select:disabled, input[type="text"]:disabled {background-color: #f8f8f8;opacity:1!important; -webkit-text-fill-color: inherit!important; }

@media screen and (min-width:1360px) {
    html, button, input {font-size: 16px;}
}
@media screen and (min-width:768px) and (max-width:1359px) {
    html, button, input {font-size: 14px;}
}
@media screen and (max-width:767px) {
    html, button, input {font-size: 14px;}
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    z-index: 1;
    position: absolute;
}


/* 블록설정 */

::-moz-selection {
    background: #7147a9;
    color: #FFF;
    text-shadow: none;
}

::selection {
    background: #7147a9;
    color: #FFF;
    text-shadow: none;
}

/* scrollbar */

body {
    overflow-x: auto;
    overflow-y: scroll;
}

body::-webkit-scrollbar {width: 5px;height: 5px;}
body::-webkit-scrollbar-button {width: 0;height: 0;}
body::-webkit-scrollbar-thumb {background: #7147a9;border: 0 none #ffffff;border-radius: 0;}
body::-webkit-scrollbar-thumb:hover {background: #7147a9;}
body::-webkit-scrollbar-thumb:active {background: #7147a9;}
body::-webkit-scrollbar-track {background: #f8f8f8;border: 0 none #ffffff;border-radius: 0;}
body::-webkit-scrollbar-track:hover {background: #f8f8f8;}
body::-webkit-scrollbar-track:active {background: #f8f8f8;}
body::-webkit-scrollbar-corner {background: transparent;}


/* 플로팅 메뉴에 따른 조정 */

.page1 {

}

@media screen and (min-width:1360px) {
    .page1 {
        margin-top: 72px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {

}
@media screen and (max-width:767px) {

}

/* guide font style */
.title_h1{
    font-family: 'gyb_bold', Sans-Serif;
    color: #373a5b;
}
.title_h2{
    font-family: 'notokr-medium', Sans-Serif;
}
.title_h3{
    font-family: 'notokr-medium', Sans-Serif;
    color: #7147a9;
}
.title_h5{
    color: #666666;
}
@media screen and (min-width:1360px) {
    .title_h1{
        font-size: 32px;
    }
    .title_h2{
        font-size: 24px;
    }
    .title_h3{
        font-size: 20px;
    }
    .title_h4{
        font-size: 16px;
    }
    .title_h5{
        font-size: 16px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .title_h1{
        font-size: 26px;
    }
    .title_h2{
        font-size: 20px;
    }
    .title_h3{
        font-size: 18px;
    }
    .title_h4{
        font-size: 14px;
    }
    .title_h5{
        font-size: 14px;
    }
}
@media screen and (max-width:767px) {
    .title_h1{
        font-size: 22px;
    }
    .title_h2{
        font-size: 20px;
    }
    .title_h3{
        font-size: 18px;
    }
    .title_h4{
        font-size: 14px;
    }
    .title_h5{
        font-size: 14px;
    }
}


/* Common Checkbox */

.common_checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #cccccc;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.common_checkbox:checked {
    background-color: #7147a9 !important;
    border: none;
}

.common_checkbox:checked::after {
    content: " ";
    display: block;
    width: 7px;
    height: 4px;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-48%, -70%) rotate(-48deg);
    -ms-transform: translate(-48%, -70%) rotate(-48deg);
    transform: translate(-48%, -70%) rotate(-48deg);
}

/* 라디오 체크박스 */
.common_checkbox_radio{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px!important;
    height: 20px!important;
    border: 1px solid #cccccc;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
}

.common_checkbox_radio:checked {
    background-color: #7147a9;
    border: none;
}

.common_checkbox_radio:checked::after {
    content: " ";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    position: absolute;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Container */
.container {}

@media screen and (min-width:1360px) {
    .container {width: 1360px;margin: 0 auto;}
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .container {width: 100%;padding-left: 32px;padding-right: 32px;}
}
@media screen and (max-width:767px) {
    .container {width: 100%;padding-left: 16px;padding-right: 16px;}
}


/* 반응형 태그 */
@media screen and (min-width:1360px) {
    .pc_hide { display: none !important; }
    .tablet_show { display: none !important; }
    .mobile_show { display: none !important; }
    .tm_show { display: none !important; }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .pc_show { display: none !important; }
    .tablet_hide { display: none !important; }
    .mobile_show { display: none !important; }
}
@media screen and (max-width:767px) {
    .pc_show { display: none !important; }
    .tablet_show { display: none !important; }
    .mobile_hide { display: none !important; }
}

/* 로딩바 */

.page_loading {display: none;}
.page_loading.showing {display: block;width: 100%;height: 4px;background-color: white;position: fixed;top: 0;left: 0;right: 0;}
.page_loading.showing .page_loading_bar {background-color: #7147a9;height: 4px;}


/* 해더 left 영역 */
.common_header .common_header_left{
    float: left;
}
.common_header .header_logo{
    display: inline-block;
}
.common_header .header_logo img{
    vertical-align: middle;
    cursor: pointer;
}
.common_header .header_title{
    font-family: 'gyb_regular',sans-serif;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}
.common_header .header_title span{
    font-family: 'gyb_bold',Sans-Serif;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .common_header .header_title span{
        display: block;
        padding-top: 10px;
    }
    .common_header .header_title.ie_pc{
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 6px;
        display: none;
    }
    .common_header .header_title.ie_pc span{
        padding-top: 11px;
    }
    .common_header .header_title.ie_tablet{
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 11px;
        display: none;
    }
    .common_header .header_title.ie_mobile{
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 2px;
        display: none;
    }
    .common_header .header_title.ie_mobile span{
        padding-top: 4px;
    }
    .common_menu_wrapper{
        width: calc(100% - 17px)!important;
    }
}
@media screen and (min-width:1360px) {
    .common_header{
        height: 112px;
    }
    .common_header .header_logo{
        margin-right: 20px;
        line-height: 112px;
    }
    .common_header .header_title{
        font-size: 20px;
        letter-spacing: -0.44px;
        margin-left: 20px;
        line-height: 22px;
    }
    .common_header .header_title span{
        height: 22px;
        display: block;
        padding-top: 6px;
    }
    .common_header .header_title .header_title_p2 {
        font-weight: bold;
    }
    .common_header .header_title::before {
        content: "";
        width: 2px;
        height: 42px;
        background-color: #e5e5e5;
        position: absolute;
        left: -20px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .common_header .header_title.ie_pc{
        display: inline-block;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .common_header{
        height: 70px;
    }
    .common_header .header_logo{
        margin-right: 20px;
        line-height: 70px;
    }
    .common_header .header_title{
        font-size: 16px;
        letter-spacing: -0.36px;
        margin-left: 20px;
    }
    .common_header .header_title .header_title_p2 {
        font-weight: bold;
    }
    .common_header .header_title::before {
        content: "";
        width: 2px;
        height: 32px;
        background-color: #e5e5e5;
        position: absolute;
        left: -20px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .common_header .header_title.ie_tablet{
        display: inline-block;
    }
}
@media screen and (max-width:767px) {

    .common_header{
        height: 70px;
    }
    .common_header .common_header_left{
        width: calc(100% - 72px);
    }
    .common_header .header_logo{
        float: left;
        margin-right: 16px;
    }
    .common_header .header_logo img{
        width: 37px;
        margin-top: 16px;
    }

    .common_header .header_title{
        font-size: 14px;
        letter-spacing: -0.32px;
        line-height: 20px;
        margin-top: 17px;
        width: calc(100% - 60px);
    }
    .common_header .header_title .header_title_p2 {
        font-weight: bold;
    }
    .common_header .header_title.ie_mobile{
        display: inline-block;
    }
}


/* 해더 right 영역 */

.common_header .common_header_right{
    float: right;
}

/* 해더 서치박스 */
.common_header .header_top_search{
    display: inline-block;
}
.common_header .header_top_search .nav_btn_search:focus{
    border: none;
    outline:none;
}
.common_header .header_top_search .nav_btn_search{
    border:0 none;
    background-color:transparent;
    padding: 0;
    line-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.common_header .header_tob_menu{
    display: none;
}
@media screen and (min-width:1360px) {

    /* 해더 서치박스 */
    .common_header .header_top_search{
        width: 300px;
        height: 40px;
        margin-top: 36px;
        position: relative;
    }
    .common_header .header_top_search .nav_search_input{
        width: 100%;
        border: 1px solid #ccc;
        padding: 0;
        padding-left: 15px;
        padding-right: 45px;
        line-height: 38px;
        height: 38px;
        font-size: 12px;
        border-radius: 22px;
    }
    .common_header .header_top_search .nav_search_input::-webkit-input-placeholder{
        color: #888;
    }
    .common_header .header_top_search .nav_search_input::-moz-placeholder{
        color: #888;
    }
    .common_header .header_top_search .nav_search_input:-ms-input-placeholder{
        color: #888;
    }
    .common_header .header_top_search .nav_search_input::-ms-input-placeholder{
        color: #888;
    }
    .common_header .header_top_search .nav_search_input::placeholder{
        color: #888;
    }
    .common_header .header_top_search .nav_search_input:focus{
        border: 1px solid #7147a9;
        outline: none;
    }
    .common_header .header_top_search .nav_btn_search{
        position: absolute;
        top: 0;
        right: 17px;
        height: calc(100% - 2px);
    }

    /* 해더 탑 네비 */
    .common_header .header_top_nav_wrapper{
        position: relative;
        display: inline-block;
        margin-left: 40px;
    }
    .common_header .header_top_nav_wrapper .header_top_nav{
        display: inline-block;
        font-size: 14px;
        color: #666666;
        cursor: pointer;

    }
    .common_header .header_top_nav_wrapper .header_top_line{
        display: inline-block;
        width: 1px;
        height: 10px;
        background-color: #cccccc;
        margin: 0px 15px;
    }

    /* 해더 탑 메뉴 */
    .common_header .common_menu_icon{
        display: none;
    }

    /* 로그인 이후 시간 표시 */
    .common_header .header_active_time{
        box-sizing: border-box;
        position: absolute;
        left: -7px;
        top: 35px;
        width: 78px;
        height: 20px;
        border-radius: 10px;
        border: 1px solid #a450ad;
    }

    .common_header .header_active_time::after{
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 0 5px 5px;
        border-color: white transparent;
        display: block;
        width: 0;
        z-index: 1;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
    }

    .common_header .header_active_time::before{
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 0 6px 6px;
        border-color: #a450ad transparent;
        display: block;
        width: 0;
        z-index: 1;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
    }

    .common_header .header_active_time .time_digit{
        font-family: notokr-regular, sans-serif;
        font-size: 12px;
        letter-spacing: -0.24px;
        color: #a851ad;
        line-height: 18px;
        float: left;
        margin-left: 5px;
    }

    .common_header .header_active_time .time_extension{
        width: 39px;
        height: 18px;
        padding: 0;
        border-radius: 10px;
        float: right;
        margin-right: -1px;
        background: linear-gradient(45deg, #7147a9, #a951ad);
        position: relative;
    }

    .common_header .header_active_time .time_extension span {
        color: white;
        font-family: notokr-regular, sans-serif;
        font-size: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        line-height: 1;
    }
    .common_header .header_top_nav_remote{
        font-size:15px; 
        padding:2px 2px;
        margin-left: -110px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    /* 해더 서치박스 */
    .common_header .header_top_search{
        line-height: 70px;
        margin-right: 13px;
    }
    .common_header .header_top_search .nav_search_input{
        display: none;
    }
    .common_header .nav_btn_search img{
        vertical-align: middle;
        width: 24px;
    }

    /* 해더 탑 네비 */
    .common_header .header_top_nav_wrapper{
        display: none;
    }

    /* 해더 탑 메뉴 버튼 */
    .common_header .common_menu_icon{
        display: inline-block;
        line-height: 70px;
    }
    .common_header .common_menu_icon img{
        vertical-align: middle;
    }
    .common_header .common_menu_icon img{
        width: 24px;
    }

    .common_header .header_top_search .nav_btn_search {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
    }
    .common_header .header_top_nav_remote {
		display: none;
	}
}
@media screen and (max-width:767px) {
    /* 해더 서치박스 */
    .common_header .header_top_search{
        line-height: 70px;
        margin-right: 13px;
    }
    .common_header .header_top_search .nav_search_input{
        display: none;
    }
    .common_header .header_top_search .nav_btn_search img{
        vertical-align: middle;
        width: 24px;
    }
    .common_header .header_top_nav_wrapper{
        display: none;
    }
    .common_header .common_menu_icon{
        display: inline-block;
        line-height: 70px;
    }
    .common_header .common_menu_icon img{
        vertical-align: middle;
    }
    .common_header .common_menu_icon img{
        width: 24px;
    }

    .common_header .header_top_search .nav_btn_search {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
    }
    .common_header .header_top_nav_remote {
		display: none;
	}
}

.remote-button {
    background-color: #7147a9; 
    border: none;
    border-radius: 15px;
    color: white;
    margin-top : 2px;
    padding: 2px 6px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    font-size: 15px;
}

/* 메인 메뉴 바 */
.common_menu_wrapper .common_menu_list li{
    cursor: pointer;
}
.common_menu_wrapper .common_menu_list .common_menu_item.clicked {
    color: #7147a9;
}
@media screen and (min-width:1360px) {
    .common_menu_wrapper{
        width: calc(100% - 5px);
        height: 72px;
        border-top: 1px solid #ccc;
        position: fixed;
        top: 112px;
        background-color: white;
        z-index: 99;
    }
    .common_menu_wrapper .common_menu_list{
        text-align: center;
        padding: 0px;
        margin: 0px;
    }
    .common_menu_wrapper .common_menu_list li{
        list-style: none;
        display: inline-block;
        margin: 0px 48px;
        line-height: 72px;
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .common_menu_wrapper .container{
        position: relative;
    }
    .common_menu_wrapper .common_menu_icon{
        position: absolute;
        top: 23px;
        right: 0px;
        cursor: pointer;
    }
    .common_menu_wrapper .common_menu_icon img{
        width: 24px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .common_menu_wrapper{
        display: none;
    }
}

@media screen and (max-width:767px) {
    .common_menu_wrapper{
        display: none;
    }
}


/* 메인 메뉴 바 - PC 서브 */

@media screen and (min-width:1360px) {
    .common_submenu_list {display: none;}
    .common_submenu_list.showing {background-color: #7147a9;padding: 16px 0;display: inline-block;position: absolute;margin-top: -10px; z-index: 99;}
    .common_submenu_list .common_submenu_item {width: 200px;height: 40px;line-height: 40px;padding-left: 32px;font-family: notokr-regular, sans-serif;font-size: 16px;letter-spacing: -0.32px;white-space: nowrap;color: rgba(255, 255, 255, 0.5);cursor: pointer;-webkit-animation-name: roll_down;animation-name: roll_down;-webkit-animation-duration: 0.3s;animation-duration: 0.3s;}
    @-webkit-keyframes roll_down { from { color: rgba(255, 255, 255, 0); height: 0; } to { color: rgba(255, 255, 255, 0.5);  } }
    @keyframes roll_down { from { color: rgba(255, 255, 255, 0); height: 0; } to { color: rgba(255, 255, 255, 0.5);  } }
    .common_submenu_list .common_submenu_item:hover{color: rgb(255,255,255);}
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .common_submenu_list {display: none;}
}

@media screen and (max-width:767px) {
    .common_submenu_list {display: none;}
}

/*카드뷰*/
.home_card_slide {
    font-size: 0;
}
.home_card_slide .home_card_title{
    font-family: 'notokr-medium', Sans-Serif;
}
.home_card_slide .home_card_item{
    display: inline-block;
    outline: none;
    cursor: pointer;
}
.home_card_slide .home_card_item:last-child{
    margin-right: 0;
}
.home_card_slide .home_card_item .card_item_img{
    width: 100%;
    background-image: url("/res/home/img/stop/common/img_sample01.png");
    background-size: cover;
    position: relative;
    background-position: center;
}
.homecard{
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(55, 58, 91, 0.4);
    text-align: center;
    color: #ffffff;
}
.home_card_slide .home_card_item .card_item_content{
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.home_card_slide .home_card_item .card_item_content .card_item_category{
    color: #7147a9;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home_card_slide .home_card_item .card_item_content .card_item_title{
    font-family: 'notokr-medium', Sans-Serif;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home_card_slide .home_card_item .card_item_info div{
    color: #666666;
    position: relative;
    margin-left: 22px;
}
.home_card_slide .home_card_item .card_item_info div:last-child{
    margin-bottom: 0px;
}
.home_card_slide .home_card_item .card_item_info div::before{
    content: "";
    width: 14px;
    height: 14px;
    background-size: cover;
    position: absolute;
    left: -22px;
}

.home_card_slide .home_card_item .card_item_info .card_item_info_register_period::before{
    background-image: url("/res/home/img/stop/common/ico_ready2.png");
}
.home_card_slide .home_card_item .card_item_info .card_item_info_period::before{
    background-image: url("/res/home/img/stop/common/ico_time2.png");
}
.home_card_slide .home_card_item .card_item_info .card_item_info_personnel::before{
    background-image: url("/res/home/img/stop/common/ico_person2.png");
}
.home_card_slide .home_card_more{
    margin: 0px auto;
    text-align: center;
    border: 1px solid #e5e5e5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #666666;
    cursor: pointer;
}
/* 모집 상태 */
.card_item_enroll {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    width: 80px;
}
.card_item_enroll_end.active {
    background-color : #aaaaaa;
    width: 100%;
}
.card_item_enroll_ing.active {
    background-color : #ffc423;
    width: 100%;
}
.card_item_enroll_plan.active {
    background-color : #373a5b;
    width: 100%;
}

.card_item_enroll_end:not(.active) {
    display: none;
    font-size: 14px;
    background-color : #aaaaaa;
    padding: 8px 16px 8px 16px;
}
.card_item_enroll_ing:not(.active) {
    display: none;
    font-size: 14px;
    background-color : #ffc423;
    padding: 8px 16px 8px 16px;
}
.card_item_enroll_plan:not(.active) {
    display: none;
    font-size: 14px;
    background-color : #373a5b;
    padding: 8px 16px 8px 16px;
}

.card_item_state {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background-color: rgba(55, 58, 91, 0.4);
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}
@media screen and (min-width:1360px) {

}
@media screen and (min-width:768px) and (max-width:1359px) {
    .card_item_enroll {
        position: absolute;
        top: 16px;
        left: 16px;
        color: #ffffff;
        text-align: center;
        font-size: 12px;
        line-height: 27px;
        width: 65px;
    }
}
@media screen and (max-width:767px) {
    .card_item_enroll {
        position: absolute;
        top: 16px;
        left: 16px;
        color: #ffffff;
        text-align: center;
        font-size: 12px;
        line-height: 27px;
        width: 65px;
    }
}
/* 온,오프라인 예시 */
.card_item_state_offline{
    display: none;
}
/* 온,오프라인 예시 끝 */
@media screen and (min-width:1360px) {
    .home_card_item_wrapper{
        margin-bottom: 60px;
    }
    .home_card_slide .home_card_title{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 40px;
        text-align: center;
    }
    .home_card_slide .home_card_item{
        width: 319px;
        margin-right: 28px;
        font-size: 14px;

    }
    .home_card_slide .home_card_item .card_item_img{
        height: 212px;
    }
    .home_card_slide .home_card_item .card_item_img .card_item_state{
        width: 90px;
        line-height: 30px;
        border-radius: 15px;
    }
    .home_card_slide .home_card_item .card_item_content{
        margin-top: 24px;
        height: 96px;
    }
    .home_card_slide .home_card_item .card_item_content .card_item_category{
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 11px;
        padding-top: 2px;
        letter-spacing: -0.28px;
    }
    .home_card_slide .home_card_item .card_item_content .card_item_title{
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.36px;
    }
    .home_card_slide .home_card_item .card_item_info{
        margin-top: 20px;
    }
    .home_card_slide .home_card_item .card_item_info div{
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -0.28px;
        margin-bottom: 8px;
    }
    .home_card_slide .home_card_item .card_item_info div::before{
        top: 0;
    }
    .home_card_slide .home_card_more{
        width: 140px;
        line-height: 54px;
        font-size: 14px;
        letter-spacing: -0.28px;
    }

}
@media screen and (min-width:768px) and (max-width:1359px) {
    .home_card_item_wrapper{
        margin-bottom: 40px;
        width: 100vw;
    }
    .home_card_slide .home_card_title{
        font-size: 20px;
        line-height: 40px;
        text-align: left;
        margin-bottom: 24px;
    }
    .home_card_slide .home_card_item{
        display: inline-block !important;
        width: calc(50vw - 104px);
        margin-right: 20px;
        font-size: 12px;
    }
    .home_card_slide .home_card_item .card_item_img{
        height: calc(33.33vw - 69px);
    }
    .home_card_slide .home_card_item .card_item_img .card_item_state{
        width: 80px;
        line-height: 27px;
        border-radius: 14px;
    }
    .home_card_slide .home_card_item .card_item_content{
        margin-top: 20px;
        height: 78px;
    }
    .home_card_slide .home_card_item .card_item_content .card_item_category{
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 8px;
        padding-top: 2px;
        letter-spacing: -0.24px;
    }
    .home_card_slide .home_card_item .card_item_content .card_item_title{
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
    }
    .home_card_slide .home_card_item .card_item_info{
        margin-top: 16px;
    }
    .home_card_slide .home_card_item .card_item_info div{
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -0.24px;
        margin-bottom: 10px;
    }
    .home_card_slide .home_card_item .card_item_info div::before{
        top: -1px;
    }
    .home_card_slide .home_card_more{
        width: 120px;
        line-height: 44px;
        font-size: 12px;
        letter-spacing: -0.24px;
    }
    .card_item_enroll_ing.active,
    .card_item_enroll_end.active {
        font-size: 12px;
    }
}
@media screen and (max-width:767px) {
    .home_card_item_wrapper{
        margin-bottom: 40px;
        width: 100vw;
    }
    .home_card_slide .home_card_title{
        font-size: 20px;
        line-height: 40px;
        text-align: left;
        margin-bottom: 24px;
    }
    .home_card_slide .home_card_item{
        display: inline-block !important;
        width: calc(100vw - 80px);
        margin-right: 20px;
        font-size: 12px;
    }
    .home_card_slide .home_card_item .card_item_img{
        height: calc(66.66vw - 53px);
    }
    .home_card_slide .home_card_item .card_item_img .card_item_state{
        width: 80px;
        line-height: 27px;
        border-radius: 14px;
    }
    .home_card_slide .home_card_item .card_item_content{
        margin-top: 20px;
        height: 78px;
    }
    .home_card_slide .home_card_item .card_item_content .card_item_category{
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 8px;
        padding-top: 2px;
        letter-spacing: -0.24px;
    }
    .home_card_slide .home_card_item .card_item_content .card_item_title{
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
    }
    .home_card_slide .home_card_item .card_item_info{
        margin-top: 16px;
    }
    .home_card_slide .home_card_item .card_item_info div{
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -0.24px;
        margin-bottom: 10px;
    }
    .home_card_slide .home_card_item .card_item_info div::before{
        top: -1px;
    }
    .home_card_slide .home_card_more{
        width: 120px;
        line-height: 44px;
        font-size: 12px;
        letter-spacing: -0.24px;
    }
    .card_item_enroll_ing.active,
    .card_item_enroll_end.active {
        font-size: 12px;
    }
}

/* 카드뷰 버튼 */
.home_card_slide .container{
    position: relative;
}
.home_card_slide .home_card_btn_prev_wrapper,
.home_card_slide .home_card_btn_next_wrapper{
    position: absolute;
}
.home_card_slide .home_btn_icon_img{
    width: 12px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

.home_card_slide .home_card_btn_prev,
.home_card_slide .home_card_btn_next{
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.home_card_slide .home_card_btn_prev:hover,
.home_card_slide .home_card_btn_next:hover{
    background-color: #f8f8f8;
    border-radius: 50%;
}
.home_card_slide .home_card_btn_prev > img:last-child,
.home_card_slide .home_card_btn_next > img:last-child{
    display: none;
}
.home_card_slide .home_card_btn_prev:hover > img:last-child,
.home_card_slide .home_card_btn_next:hover > img:last-child{
    display: inline-block;
}
.home_card_slide .pressed{
    display: block;
}
@media (min-width:1495px) {
    .home_card_slide .home_card_btn_prev_wrapper{
        top: 50%;
        left: -80px;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .home_card_slide .home_card_btn_next_wrapper{
        top: 50%;
        right: -80px;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}
/*@media screen and (min-width:1360px) and (max-width:1439px) {*/
/*    .home_card_slide .home_card_btn_prev_wrapper{*/
/*        top: 0;*/
/*        right: 72px;*/
/*    }*/
/*    .home_card_slide .home_card_btn_next_wrapper{*/
/*        top: 0;*/
/*        right: 32px;*/
/*    }*/
/*}*/
@media (min-width:768px) and (max-width:1494px) {
    .home_card_slide .home_card_btn_prev_wrapper{
        top: 0;
        right: 72px;
    }
    .home_card_slide .home_card_btn_next_wrapper{
        top: 0;
        right: 32px;
    }
}
@media (max-width:767px) {
    .home_card_slide .home_card_btn_prev_wrapper{
        top: 0;
        right: 56px;
    }
    .home_card_slide .home_card_btn_next_wrapper{
        top: 0;
        right: 16px;
    }
}




/* 리스트 카드뷰 */


.course_main_list{
    width:100%;
}
.course_list_wrapper{
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
}
.home_card_slide > .course_list_wrapper:last-child{
    border-bottom: none;
}
.home_card_slide > .course_list_wrapper:nth-child(2){
    padding-top: 0;
}
.course_list_wrapper .course_list_image{
    display: inline-block;
    width: 260px;
    height: 173px;
    background-image: url("/res/home/img/stop/common/img_sample01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.course_list_wrapper .course_list_image .list_item_enroll{
    position: absolute;
    top: 16px;
    left: 16px;
}
.course_list_wrapper .course_list_image .list_item_enroll div{
    width: 70px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}
.course_list_wrapper .course_list_image .list_item_enroll .list_item_enroll_end{
    background-color: #aaaaaa;
}
.course_list_wrapper .course_list_image .list_item_enroll .list_item_enroll_ing{
    background-color: #ffc423;
}
.course_list_wrapper .course_list_image .list_item_enroll .list_item_enroll_plan{
    background-color: #373a5b;
}
/* 모집상태 디스플레이 논 */
.course_list_wrapper .course_list_image .list_item_enroll > div{
    display: none;
}
.course_list_image .list_item_enroll .list_item_enroll_end.active {
    display: block;
}
.course_list_image .list_item_enroll .list_item_enroll_ing.active {
    display: block;
}
.course_list_image .list_item_enroll .list_item_enroll_plan.active {
    display: block;
}


.course_list_wrapper .course_list_image .list_item_state{
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.course_list_wrapper .course_list_image .list_item_state div{
    background: rgba(55, 58, 91, 0.4);
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    color: #ffffff;
    border-radius: 15px;
}
.course_list_wrapper .course_list_image .list_item_state .list_item_state_online{
    width: 90px;
}
.course_list_wrapper .course_list_image .list_item_state .list_item_state_offline{
    width: 80px;
    display: none;
}
.course_list_wrapper .course_list_desc{
    display: inline-block;
    vertical-align: top;
    margin-top: 34px;
    margin-left: 40px;
    width: calc(100% - 300px);
}
.course_list_wrapper .course_list_desc .list_item_category{
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.28px;
    color: #7147a9;
    margin-bottom: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.course_list_wrapper .course_list_desc .list_item_title{
    font-family: 'notokr-medium', Sans-Serif;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.36px;
    margin-bottom: 20px;
}
.course_list_wrapper .course_list_desc .list_item_info_register_period{
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.28px;
    color: #666666;
    margin-left: 22px;
    margin-bottom: 8px;
    position: relative;
}
.course_list_wrapper .course_list_desc .list_item_info_register_period::before{
    content: "";
    position: absolute;
    background-image: url("/res/home/img/stop/common/ico_ready2.png");
    background-size: contain;
    width: 14px;
    height: 14px;
    top: 0;
    left: -22px;
}
.course_list_wrapper .course_list_desc .list_item_info_period{
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.28px;
    color: #666666;
    margin-left: 22px;
    margin-bottom: 8px;
    position: relative;
}
.course_list_wrapper .course_list_desc .list_item_info_period::before{
    content: "";
    position: absolute;
    background-image: url("/res/home/img/stop/common/ico_time2.png");
    background-size: contain;
    width: 14px;
    height: 14px;
    top: 0;
    left: -22px;
}
.course_list_wrapper .course_list_desc .list_item_info_personnel{
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -0.28px;
    color: #666666;
    margin-left: 22px;
    position: relative;
}
.course_list_wrapper .course_list_desc .list_item_info_personnel::before{
    content: "";
    position: absolute;
    background-image: url("/res/home/img/stop/common/ico_person2.png");
    background-size: contain;
    width: 14px;
    height: 14px;
    top: 0;
    left: -22px;
}
@media screen and (min-width:1360px) {
    .course_list_wrapper{
        width: 100%;
        padding: 24px 0;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .course_list_wrapper{
        display: none !important;
    }
}
@media screen and (max-width:767px) {
    .course_list_wrapper{
        display: none !important;
    }


}




/* 푸터 전체 영역 */
.footer{
    background-color: #212429;
    padding: 60px 0;
    position: relative;
}
.footer ul{
    padding: 0;
    margin: 0;
}
.footer li{
    list-style: none;
}
.footer .container{
    position: relative;
}
/* 푸터 로고 */
.footer .footer_logo img{
    width: 149px;
    cursor: pointer;
}
@media screen and (min-width:1360px) {
    .footer .footer_logo{
        display: inline-block;
        vertical-align: top;
        margin-right: 80px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .footer .footer_logo{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px) {
    .footer .footer_logo{
        margin-bottom: 40px;
    }
}

/* 푸터 컨텐츠_메뉴 */
.footer_content{
    display: inline-block;
}
.footer_content .footer_content_menu{
    color: #ffffff;
}
.footer_content .footer_content_menu li{
    display: inline-block;
    cursor: pointer;
}
@media screen and (min-width:1360px) {
    .footer_content .footer_content_menu{
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -0.28px;
        margin-bottom: 30px;
    }
    .footer_content .footer_content_menu li{
        margin-right: 25px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .footer_content .footer_content_menu{
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -0.24px;
        margin-bottom: 30px;
    }
    .footer_content .footer_content_menu li{
        margin-right: 20px;
    }
}
@media screen and (max-width:767px) {
    .footer_content .footer_content_menu{
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -0.24px;
        marign-bottom: 30px;
    }
    .footer_content .footer_content_menu li{
        margin-right: 20px;
        margin-bottom : 18px;
    }
}


/* 푸터 컨텐츠_정보 */
.footer_content .footer_content_info{
    color: #666666;
    position: relative;
}
.footer_content .footer_content_info .footer_info_num{
    float: left;
    position: relative;

    /*for a tag vertical align*/
    display: inline-block;
    vertical-align: middle;
}
.footer_info_num::after {
    content: " ";
    display: block;
    width: 1px;
    background-color: #666666;
    position: absolute;
}
.footer_content .footer_content_info .footer_info_num:last-child{
    margin-right: 0;
    float: none;
    -webkit-transform: translate(-3px, -1px);
    -ms-transform: translate(-3px, -1px);
    transform: translate(-3px, -1px);
}
.footer_content .footer_content_info .footer_info_num:last-child::after{
    display: none;
}

.footer_content .footer_content_info .footer_info_num a{
    text-decoration: none;
    color: #666666;
    cursor: pointer;
}

@media screen and (min-width:1360px) {
    .footer_content .footer_content_info{
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 24px;
    }
    .footer_content .footer_content_info{
        margin-bottom: 30px;
    }
    .footer_content .footer_content_info .footer_info_address{
        margin-bottom: 10px;
    }
    .footer_content .footer_content_info .footer_info_num{
        margin-right: 40px;
    }
    .footer_info_num::after {
        height: 10px;
        right: -20px;
        top: 7px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .footer_content .footer_content_info{
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 22px;
    }
    .footer_content .footer_content_info{
        margin-bottom: 10px;
    }
    .footer_content .footer_content_info .footer_info_address{
        margin-bottom: 5px;
    }
    .footer_content .footer_content_info .footer_info_num{
        margin-right: 30px;
    }
    .footer_info_num::after {
        height: 10px;
        right: -16px;
        top: 6px;
    }
}
@media screen and (max-width:767px) {
    .footer_content .footer_content_info{
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 22px;
    }
    .footer_content .footer_content_info{
        margin-bottom: 10px;
    }
    .footer_content .footer_content_info .footer_info_address{
        margin-bottom: 5px;
    }
    .footer_content .footer_content_info .footer_info_num{
        margin-right: 30px;
    }
    .footer_info_num::after {
        height: 10px;
        right: -16px;
        top: 6px;
    }
}


/* 푸터 컨텐츠_카피라이트 */
.footer_content .footer_content_copy{
    color: #666666;
}

@media screen and (min-width:1360px) {
    .footer_content .footer_content_copy{
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 22px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .footer_content .footer_content_copy{
        font-size: 10px;
        letter-spacing: -0.2px;
        line-height: 20px;
    }
}
@media screen and (max-width:767px) {
    .footer_content .footer_content_copy{
        font-size: 10px;
        letter-spacing: -0.2px;
        line-height: 20px;
    }
}


/* 푸터 SNS */
.footer_sns{
    position: absolute;
    top: 0;
    right: 0;
}
.footer_sns .footer_sns_box{
    display: inline-block;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.footer_sns .footer_sns_box img{
    width: 16px;
    vertical-align: top;
}
@media screen and (min-width:1360px) {
    .footer_sns .footer_sns_box{
        margin-left: 12px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .footer_sns .footer_sns_box{
        margin-left: 20px;
    }
    .footer_sns{
        right: 30px;
    }
}
@media screen and (max-width:767px) {
    .footer_sns .footer_sns_box{
        margin-left: 20px;
    }
    .footer_sns{
        right: 15px;
    }
}



/* TOP 버튼 */
.top_helper {
    background: -o-linear-gradient(45deg, #7147a9, #a951ad);
    background: linear-gradient(45deg, #7147a9, #a951ad);
    text-align: center;
    position: absolute;
    cursor: pointer;
}

.top_helper:hover {
    background: -o-linear-gradient(45deg, #a951ad, #7147a9);
    background: linear-gradient(45deg, #a951ad, #7147a9);
}


.top_helper span {
    display: inline-block;
    font-family: notokr-regular, sans-serif;
    font-size: 12px;
    letter-spacing: 0.6px;
    color: white;
}




@media screen and (min-width:1360px) {
    .top_helper {
        width: 50px;
        height: 50px;

        right: calc(50vw - 680px);
        top: -20px;

    }

    .top_helper span {
        line-height: 50px;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .top_helper {
        width: 50px;
        height: 50px;

        right: 16px;
        top: -20px;

    }


    .top_helper span {
        line-height: 50px;
    }
}
@media screen and (max-width:767px) {
    .top_helper {
        width: 50px;
        height: 50px;

        right: 16px;
        top: -20px;

    }

    @-webkit-keyframes scroll_show {
        from {
            bottom: calc(100vh - 100px);
        }
        to {
            bottom: 100px;
        }
    }

    @keyframes scroll_show {
        from {
            bottom: calc(100vh - 100px);
        }
        to {
            bottom: 100px;
        }
    }

    .top_helper span {
        line-height: 50px;
    }
}


/*모바일 메뉴*/
/* 숨김처리 */

@media screen and (min-width:1360px) {
    .womens_menu_wrapper{
        display: none;
    }
}
@media screen and (min-width:768px) and (max-width:1359px) {
    .womens_menu_wrapper{
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #ffffff;
        z-index: 999;
        display: none;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .common_header .common_header_right{
        position: relative;
        height: 100%;
    }
    .common_header .common_header_right .header_close{
        background-image: url("/res/home/img/stop/common/btn_close.png");
        background-size: contain;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width:24px;
        height: 24px;
        cursor: pointer;
    }
}
@media screen and (max-width:767px) {
    .womens_menu_wrapper{
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #ffffff;
        z-index: 999;
        display: none;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .common_header .common_header_right{
        position: relative;
        height: 100%;
    }
    .common_header .common_header_right .header_close{
        background-image: url("/res/home/img/stop/common/btn_close.png");
        background-size: contain;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width:24px;
        height: 24px;
        cursor: pointer;
    }
}

/* 메뉴 해더 영역 */
.womens_header_login{
    display: none;
}
@media screen and (min-width:1360px) {

}
@media screen and (min-width:768px) and (max-width:1359px) {
    .womens_menu_wrapper .womens_menu_header{
        border-top: 1px solid #e5e5e5;
        height: 95px;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_login{
        line-height: 95px;
        position: relative;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_name {
        display: inline-block;
        vertical-align: top;
        color: #666666;
        font-size: 12px;
        height: 95px;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_name span{
        font-family: 'notokr-medium', Sans-Serif;
        font-size: 18px;
        color: #232323;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content {
        position: absolute;
        right: 32px;
        top: 0;
        font-size: 14px;
        color: #666666;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content li{
        display: inline-block;
        cursor: pointer;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content .womens_member_logout{
        margin-left: 40px;
        position: relative;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content .womens_member_logout::before{
        content: "";
        position: absolute;
        top: 50%;
        left: -20px;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 1px;
        height: 10px;
        background-color: #cccccc;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_basic{
        height: 95px;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn{
        width: 100%;
        margin: 20px 0px;
        display: inline-block;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn div{
        width: calc(50% - 5px);
        height: 54px;
        display: inline-block;
        font-size: 0;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn .womens_btn_join{
        border: 1px solid #7147a9;
        font-size: 14px;
        line-height: 54px;
        color: #7147a9;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn .womens_btn_login{
        background-color: #7147a9;
        font-size: 14px;
        line-height: 54px;
        float: right;
        color: #ffffff;
    }
}
@media screen and (max-width:767px) {
    .womens_menu_wrapper .womens_menu_header{
        border-top: 1px solid #e5e5e5;
        height: 95px;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_login{
        line-height: 95px;
        position: relative;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_name {
        display: inline-block;
        vertical-align: top;
        color: #666666;
        font-size: 12px;
        height: 95px;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_name span{
        font-family: 'notokr-medium', Sans-Serif;
        font-size: 18px;
        color: #232323;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content {
        position: absolute;
        right: 32px;
        top: 0;
        font-size: 14px;
        color: #666666;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content li{
        display: inline-block;
        cursor: pointer;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content .womens_member_logout{
        margin-left: 40px;
        position: relative;
    }
    .womens_menu_wrapper .womens_menu_header .womens_member_content .womens_member_logout::before{
        content: "";
        position: absolute;
        top: 50%;
        left: -20px;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 1px;
        height: 10px;
        background-color: #cccccc;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_basic{
        height: 95px;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn{
        width: 100%;
        margin: 20px 0px;
        display: inline-block;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn div{
        width: calc(50% - 5px);
        height: 54px;
        display: inline-block;
        font-size: 0;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn .womens_btn_join{
        border: 1px solid #7147a9;
        font-size: 14px;
        line-height: 54px;
        color: #7147a9;
    }
    .womens_menu_wrapper .womens_menu_header .womens_header_btn .womens_btn_login{
        background-color: #7147a9;
        font-size: 14px;
        line-height: 54px;
        float: right;
        color: #ffffff;
    }
}




/* 메뉴 컨텐츠 부분 */
@media screen and (min-width:1360px) {

}
@media screen and (min-width:768px) and (max-width:1359px) {
    .womens_menu_content{
        border-top: 12px solid #f8f8f8;
    }
    .womens_menu_content .womens_depth_wrapper{
        border-bottom: 1px solid #e5e5e5;
        display: inline-block;
        width: 100%;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_title{
        width: 100%;
        line-height: 58px;
        font-size: 18px;
        position: relative;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_title .womens_depth_btn{
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 16px;
        height: 16px;
        background-image: url("/res/home/img/stop/common/btn_more.png");
        background-size: contain;
        cursor: pointer;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_title .womens_depth_btn.active{
        background-image: url("/res/home/img/stop/common/btn_fold.png");
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title{
        background-color: #7147a9;
        padding: 16px 0px;
        position: relative;
        display: none;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title.active{
        background-color: #7147a9;
        padding: 16px 0px;
        position: relative;
        display: block;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: -9999px;
        right: -9999px;
        height: 100%;
        z-index: -1;
        background-color: #7147a9;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title .womens_sub_title{
        color: #c1b3d7;
        font-size: 14px;
        line-height: 38px;
        cursor: pointer;
    }

    .womens_menu_content .womens_depth_wrapper .womens_depth_title .menu_main_point{
        color: #7147a9;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title .menu_sub_point{
        color: #ffffff;
    }
}
@media screen and (max-width:767px) {
    .womens_menu_content{
        border-top: 12px solid #f8f8f8;
    }
    .womens_menu_content .womens_depth_wrapper{
        border-bottom: 1px solid #e5e5e5;
        display: inline-block;
        width: 100%;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_title{
        width: 100%;
        line-height: 58px;
        font-size: 18px;
        position: relative;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_title .womens_depth_btn{
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 16px;
        height: 16px;
        background-image: url("/res/home/img/stop/common/btn_more.png");
        background-size: contain;
        cursor: pointer;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_title .womens_depth_btn.active{
        background-image: url("/res/home/img/stop/common/btn_fold.png");
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title{
        background-color: #7147a9;
        padding: 16px 0px;
        position: relative;
        display: none;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title.active{
        background-color: #7147a9;
        padding: 16px 0px;
        position: relative;
        display: block;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: -9999px;
        right: -9999px;
        height: 100%;
        z-index: -1;
        background-color: #7147a9;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title .womens_sub_title{
        color: #c1b3d7;
        font-size: 14px;
        line-height: 38px;
        cursor: pointer;
    }

    .womens_menu_content .womens_depth_wrapper .womens_depth_title .menu_main_point{
        color: #7147a9;
    }
    .womens_menu_content .womens_depth_wrapper .womens_depth_sub_title .menu_sub_point{
        color: #ffffff;
    }
}


/* 기본 테이블 표 */
.table_panel {border-top: 1px solid #232323;}
.table_panel table{
    color: #232323;
    width: 100%;
    border-collapse: collapse;
    word-break: keep-all;
    text-align: center;
}
.table_panel table th{
    background-color: #f8f8f8;
    border: 1px solid #E5E5E5;
    font-weight: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 0;
}
.info_table td {border: 1px solid #E5E5E5;-webkit-box-sizing: border-box;box-sizing: border-box; text-align: center;}
.info_table th:last-child {border-right: none;}
.info_table td:last-child {border-right: none;}
.info_table th:first-child {border-left: none;}
.info_table td:first-child {border-left: none;}
.info_table td ul {margin-bottom: 0 !important; text-align: left;}
.table_panel table ul li{
    position: relative;
    padding-left: 16px;
}
.table_panel table ul li::before{
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #232323;
}
@media screen and (min-width:1360px) {
    .table_panel table{
        font-size: 16px;
        line-height: 26px;
    }
    .table_panel table th{
        height: 60px;
        background-color: #f8f8f8;
        color: #232323;
    }
    .table_panel table td{
        padding: 15px 20px;
    }
    .table_panel table ul li::before{
        top: 11px;
    }

}
@media screen and (min-width:768px) and (max-width:1359px) {
    .table_panel table{
        font-size: 14px;
        line-height: 24px;
    }
    .table_panel table th{
        height: 50px;
    }
    .table_panel table td{
        padding: 10px 15px;
    }
    .table_panel table ul li::before{
        top: 10px;
    }
}
@media screen and (max-width:767px) {
    .table_panel{
        overflow-x:scroll;
        overflow-y:hidden;
        white-space:nowrap;
        overflow:auto;
        -webkit-overflow-scrolling: touch;
    }
    .table_panel table{
        font-size: 14px;
        line-height: 24px;
    }
    .table_panel table th{
        height: 50px;
    }
    .table_panel table td{
        padding: 10px 15px;
    }
    .table_panel table ul li::before{
        top: 10px;
    }
}



@media screen and (min-width:1360px) {
    .myinfo_info_cert {font-size: 0;}
    .myinfo_info_cert span {margin-left: 0 !important;}

    .myinfo_info_cert label{display: inline-block;position: relative;padding-left: 35px; /*margin-bottom: 12px;*/cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; width: 33%; font-size: 14px; letter-spacing: -0.28px; margin-bottom: 20px; }
    .myinfo_info_cert label input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}
    .myinfo_info_cert label .checkmark {position: absolute;top: 0;left: 0;height: 20px;width: 20px;border: 1px solid #ccc;border-radius: 2px;background-color: #ffffff;-webkit-appearance: none;-moz-appearance: none;appearance: none;display: inline-block;vertical-align: middle;cursor: pointer;margin: 0;}

    .myinfo_info_cert label input:checked ~ .checkmark {background-color: #7147a9;border: none;}


    /* Create the checkmark/indicator (hidden when not checked) */
    .myinfo_info_cert label .checkmark:after {content: "";position: absolute;display: none;}
    .myinfo_info_cert label .checkmark.changed:after {content: "";position: absolute;display: none;}

    /* Show the checkmark when checked */
    .myinfo_info_cert label input:checked ~ .checkmark:after {display: block;}
    .myinfo_info_cert label input:checked ~ .checkmark.changed:after {display: block;}
    /* Style the checkmark/indicator */
    .myinfo_info_cert label .checkmark:after {
        content: " ";
        display: block;
        width: 7px;
        height: 4px;
        border-bottom: 2px solid white;
        border-left: 2px solid white;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-48%, -70%) rotate(-48deg);
        -ms-transform: translate(-48%, -70%) rotate(-48deg);
        transform: translate(-48%, -70%) rotate(-48deg);
    }
    .myinfo_info_cert label .checkmark.changed:after {left: 6px;top: 3px;width: 4px;height: 7px;border: solid white;border-width: 0 2px 2px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);}


}
@media screen and (min-width:768px) and (max-width:1359px) {

    .myinfo_info_cert {font-size: 0;}
    .myinfo_info_cert span {margin-left: 0 !important;}

    .myinfo_info_cert label{display: inline-block;position: relative;padding-left: 35px; /*margin-bottom: 12px;*/cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; width: 33%; font-size: 14px; letter-spacing: -0.28px; margin-bottom: 20px;}
    .myinfo_info_cert label input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}
    .myinfo_info_cert label .checkmark {position: absolute;top: 0;left: 0;height: 20px;width: 20px;border: 1px solid #ccc;border-radius: 2px;background-color: #ffffff;-webkit-appearance: none;-moz-appearance: none;appearance: none;display: inline-block;vertical-align: middle;cursor: pointer;margin: 0;}

    .myinfo_info_cert label input:checked ~ .checkmark {background-color: #7147a9;border: none;}


    /* Create the checkmark/indicator (hidden when not checked) */
    .myinfo_info_cert label .checkmark:after {content: "";position: absolute;display: none;}
    .myinfo_info_cert label .checkmark.changed:after {content: "";position: absolute;display: none;}

    /* Show the checkmark when checked */
    .myinfo_info_cert label input:checked ~ .checkmark:after {display: block;}
    .myinfo_info_cert label input:checked ~ .checkmark.changed:after {display: block;}
    /* Style the checkmark/indicator */
    .myinfo_info_cert label .checkmark:after {
        content: " ";
        display: block;
        width: 7px;
        height: 4px;
        border-bottom: 2px solid white;
        border-left: 2px solid white;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-48%, -70%) rotate(-48deg);
        -ms-transform: translate(-48%, -70%) rotate(-48deg);
        transform: translate(-48%, -70%) rotate(-48deg);
    }
    .myinfo_info_cert label .checkmark.changed:after {left: 6px;top: 3px;width: 4px;height: 7px;border: solid white;border-width: 0 2px 2px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);}

}
@media screen and (max-width:767px) {

    .myinfo_info_cert {font-size: 0;}
    .myinfo_info_cert span {margin-left: 0 !important;}

    .myinfo_info_cert label{display: inline-block;position: relative;padding-left: 35px; /*margin-bottom: 12px;*/cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; width: 50%; font-size: 14px; letter-spacing: -0.28px; margin-bottom: 20px; }
    .myinfo_info_cert label input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}
    .myinfo_info_cert label .checkmark {position: absolute;top: 0;left: 0;height: 20px;width: 20px;border: 1px solid #ccc;border-radius: 2px;background-color: #ffffff;-webkit-appearance: none;-moz-appearance: none;appearance: none;display: inline-block;vertical-align: middle;cursor: pointer;margin: 0;}

    .myinfo_info_cert label input:checked ~ .checkmark {background-color: #7147a9;border: none;}


    /* Create the checkmark/indicator (hidden when not checked) */
    .myinfo_info_cert label .checkmark:after {content: "";position: absolute;display: none;}
    .myinfo_info_cert label .checkmark.changed:after {content: "";position: absolute;display: none;}

    /* Show the checkmark when checked */
    .myinfo_info_cert label input:checked ~ .checkmark:after {display: block;}
    .myinfo_info_cert label input:checked ~ .checkmark.changed:after {display: block;}
    /* Style the checkmark/indicator */
    .myinfo_info_cert label .checkmark:after {
        content: " ";
        display: block;
        width: 7px;
        height: 4px;
        border-bottom: 2px solid white;
        border-left: 2px solid white;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-48%, -70%) rotate(-48deg);
        -ms-transform: translate(-48%, -70%) rotate(-48deg);
        transform: translate(-48%, -70%) rotate(-48deg);
    }
    .myinfo_info_cert label .checkmark.changed:after {left: 6px;top: 3px;width: 4px;height: 7px;border: solid white;border-width: 0 2px 2px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);}

}


.text_yellow{
    color: #ffc423;
    text-decoration: underline;
}