@charset "utf-8";

/* 스타일 가이드 S */

:root {
    /* color */
    /* font-color - 900 : 제목, 600 : 본문, 400: 보조 */
    --color-main-blue:#26ADF8;
    --color-main-purple:#6755D4;
    --color-main-green: #2EC38E;
	--color-main-brown: #ff9337;
    --color-gradient:linear-gradient(45deg, #26ADF8, #03CF5D);
    --color-on:#2978ED;
    --color-deepblue:#182377;
    --color-alert-red:#f14343;
    --color-important:#FF7D05;
    --color-guide:#0E4997;
    --color-Gray-900:#1B1D1F;
    --color-Gray-800:#26282B;
    --color-Gray-600:#454C53;
    --color-Gray-500:#72787F;
    --color-Gray-400:#9EA4AA;
    --color-Gray-200:#C9CDD2;
    --color-Gray-100:#E8EBED;
    --color-Gray-50:#F7F8F9;

    /* font-size */
    --fontSize-title:36px;
    --fontSize-subtitle-1:24px;
    --fontSize-subtitle-2:20px;
    --fontSize-Body-1:16px;
    --fontSize-Caption:14px;

    /* font family */
    --font-jalnan:'JalnanGothic';

    /* line-height */
    --line-height12:1.2em;
    --line-height15:1.5em;

    /* header */
    --hd-height-main:80px;
    --hd-height-sub:64px;
    --hd-height-mo:80px;

    /* layout */
    --wrap-padding:20px;
    --wrap-margin:64px;

    /* ease */
    --ease1:cubic-bezier(0, 0.88, 0.45, 0.99);
    --ease2:cubic-bezier(0.69, 0.03, 0.19, 0.91);

    /* form */
    --input-height1:64px;

    /* loading */
    --loading-box:104px;
}
@media (max-width:1240px) {
    :root {
        --hd-height-mo:80px;
        --wrap-padding:40px;
        --wrap-margin:64px;
    }
}
@media (max-width:1024px) {
    :root {
        --hd-height-mo:80px;
        --wrap-padding:20px;
    }
}
@media (max-width:767px) {
    :root {
        --hd-height-mo:60px;
        --wrap-padding:16px;
        --input-height1:56px;
    }
}



/* media standard */
@media (max-width:1480px) {}
@media (max-width:1240px) {}
@media (max-width:1024px) {}
@media (max-width:767px) {}
@media (max-width:564px) {}
@media (max-width:390px) {}

body {
    padding-top: 140px;
    transition: 0.3s var(--ease2);
}
body.show {
    padding-top: 184px;
}

@media (max-width:1366px){
    body {
        padding-top: var(--hd-height-mo);
        transition: 0.3s var(--ease2);
    }
    body.show {
        padding-top: var(--hd-height-mo);
    }
}
.focus-visible {
    /* position: relative; */
    outline: green solid 3px;
}
/* .focus-visible:after {
    content:'';
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) scale(0.9);
    width:100%;
    height:100%;
    border: 2px solid var(--color-alert-red);
} */
.dim_box {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background: #64758d6b;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
}
.dim_box.on {
    opacity: 1;
    pointer-events: auto;
}
.condition_dim_box {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background: #64758d6b;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
}
.condition_dim_box.on {
    opacity: 1;
    pointer-events: auto;
}
.mobile_menu_move {
    transition: 0.6s var(--ease2);
}
.mobile_menu_move.on {
    transform: translateX(-100px);
}

/* scroll */
*::-webkit-scrollbar {width: 4px; height: 4px;}
*::-webkit-scrollbar-thumb {background:rgba(0,0,0,0.3); border-radius:30px; }
*::-webkit-scrollbar-track {background-color: transparent;}


/* swiper S */
.swiper-pagination-current {
    color: #fff;
    font-weight: 700;
}
.swiper-pagination span {
    padding: 0 4px;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 64px;
    height: 28px;
    background: #3333335c;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffffb5;
    font-size: 14px;
    backdrop-filter: blur(4px);
}

/* swiper E */

/* 회사 구분 */
.company_category_box {
    display: flex;
    justify-content: flex-start;
}
.company_category {
    padding: 4px 16px;
    background: #E7F6F6;
    border: 1px solid #ACD7D7;
    border-radius: 8px;
}
.company_category span {
    color:#285454;
    font-size:14px;
    font-weight:500;
}

/* paging S */
.paging_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 8px;
}

.paging_btn{
    display: flex;
    align-items: center;
}

.paging_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.paging_box .paging_num {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.paging_box .paging_num li {
    border-radius: 50%;
    background: var(--color-Gray-100);
    margin-right: 8px;
}

.paging_box .paging_num li:last-child {
    margin-right: 0px;
}

.paging_box .paging_num li:hover {
    background: var(--color-Gray-200);
}

.paging_box .paging_num li.on {
    background: var(--color-deepblue);
    border: 1px solid transparent;
}

.paging_box .paging_num li a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #6B6B6B;
    font-weight: 400;
}

.paging_box .paging_num li.on a {
    color: #fff;
    font-weight: 500;
}

@media (max-width:1480px) {}
@media (max-width:1240px) {}
@media (max-width:1024px) {}
@media (max-width:767px) {}
@media (max-width:564px) {
    .paging_box {
        margin-top:40px;
    }
}
@media (max-width:390px) {}



/* paging E */

/* more btn S */
.more_btn_box {
    width:86px;
    height:32px;
    border:1px solid var(--color-Gray-100);
    border-radius: 30px;
    background: #fff;
}
.more_btn_box a {
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
}
.more_btn_box a .icon {
    position:relative;
    width:11px;
    height:11px;
    margin-right:8px;
    transition: 0.3s;
}
.more_btn_box a .icon:before {
    content:'';
    position:absolute;
    top:4px;
    left:0;
    width:10px;
    height:2px;
    background:var(--color-Gray-600);
}
.more_btn_box a .icon:after {
    content:'';
    position:absolute;
    top:0px;
    left:4px;
    width:2px;
    height:10px;
    background:var(--color-Gray-600);
}
.more_btn_box a span {
    font-size:14px;
    font-weight:500;
    color:var(--color3);
    transition: 0.3s;
    letter-spacing: 2px;
}
.more_btn_box:hover {
    background: #eef9ff;
    border: 1px solid #7eb5d3;
}
.more_btn_box:hover a span {
    letter-spacing: 0px;
}
.more_btn_box:hover a .icon {
    transform: rotate(180deg);
}
/* more btn E */






/* form S */
input, select, button {
    outline: 0;
}
select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/jobs/site/basic/img/arw_ico.svg);
    background-position: right 12px center;
    background-repeat: no-repeat;
}

.form_btn_box {}
.form_btn_box button {
    width:100%;
    height:var(--input-height1);
    display:flex;
    align-items: center;
    justify-content: center;
    background: #182377;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: 0;
}
.form_btn_box button:hover {
    background: #2535b3;
}
.form_btn_box button:active {
    background: #0f1549;
}
.form_btn_box button span {
    color:#fff;
    font-size:20px;
    font-weight:700;
}

.form_tit_box {
    margin-bottom:64px;
}
.form_tit_box p {
    font-size:48px;
    font-weight:700;
    color:#1B1D1F;
    text-align: center;
}

@media (max-width:1024px) {
    .form_tit_box {
        margin-bottom:32px;
    }
    .form_tit_box p {
        font-size: 36px;
    }

}
@media (max-width:767px) {
    .form_tit_box {
        margin-bottom:24px;
    }
    .form_tit_box p {
        font-size: 28px;
    }
    .form_btn_box button span {
        font-size:18px;
    }
}

.agree_btn .check_box {width:100%;}
.agree_btn .check_box .check {display:none;}
.agree_btn .check_box .check_ck {width: 100%; display: flex; align-items: center; cursor: pointer;}
.agree_btn .check_box .check_ck .ch_img {border:2px solid #bfbfbf; border-radius: 50%; width:20px; height:20px; display:flex; align-items: center; justify-content: center; margin-right: 12px;}
.agree_btn .check_box .check_ck .ch_img svg {}
.agree_btn .check_box .check_ck .ch_img path {fill: none; stroke: #20C2E0; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 71px; stroke-dashoffset: 71px; transition: all 0.6s ease;}
.agree_btn .check_box .check_ck .ch_img polyline {fill: none; stroke: var(--color-main-blue); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 18px; stroke-dashoffset: 18px; transition: all 0.3s ease;}
.agree_btn .check_box .check_ck span {font-size: 16px; color: #72787f; word-break: keep-all; line-height: var(--line-height12);}
.agree_btn .check_box input:checked + .check_ck {color:var(--color-main-blue);}
.agree_btn .check_box input:checked + .check_ck .ch_img {background: #fff; border:2px solid var(--color-main-blue);}
.agree_btn .check_box input:checked + .check_ck path {fill: transparent;}
.agree_btn .check_box input:checked + .check_ck polyline {stroke-dashoffset: 0;}
.agree_btn .check_box input:checked + .check_ck span {color:#1B1D1F; font-weight:600;}

.basic_btn_box {
    border-top: 2px solid var(--color-Gray-900);
    padding-top:40px;
}

.basic_btn_box.border_none {
    border:none;
}

.basic_btn_box ul {
    display:flex;
    justify-content: center;
    gap: 16px;
    width:100%;
}
.basic_btn_box ul .btn_list {
    width:100%;
    max-width:184px;
    height:52px;
    border-radius: 8px;
    background: var(--color-Gray-400);
}
.basic_btn_box ul .btn_list a {
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
}
.basic_btn_box ul .btn_list a span {
    font-size:20px;
    font-weight:500;
    color:#fff;
}
.basic_btn_box ul .btn_list button {
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border:none
}
.basic_btn_box ul .btn_list button span {
    font-size:20px;
    font-weight:500;
    color:#fff;
}
.basic_btn_box ul .btn_list.complete {
    background: var(--color-Gray-900);
}
.basic_btn_box ul .btn_list:hover {
    background: var(--color-gradient);
}
@media (max-width:1480px) {}
@media (max-width:1240px) {}
@media (max-width:1024px) {}
@media (max-width:767px) {
    .basic_btn_box ul .btn_list {
        height:48px;
    }
    .basic_btn_box ul .btn_list a span {
        font-size:18px;
    }
}
@media (max-width:564px) {}
@media (max-width:390px) {}
/* form E */

.arw_btn {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-Gray-100);
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.arw_btn .arw {
    width: 22px;
    height: 22px;
    position: relative;
}
.arw_btn .arw:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    transform: translate(-50%, -50%) rotate(45deg);
    border-image: linear-gradient(45deg, var(--color-Gray-200) 0%, var(--color-Gray-200) 100%);
    border-image-slice: 1;
    transition: 0.6s var(--ease2);
}
/* .arw_btn .arw:after {
    border-image: var(--color-gradient);
    border-image-slice: 1;
    transform: translate(-50%, -50%) rotate(765deg);
} */



/* 서브 팝업입력창 S */
.pw_popup_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pw_popup_wrap.on {
    pointer-events: auto;
}
.pw_popup_wrap .pw_popup_box {
    background: #fff;
    position: relative;
    z-index: 9999;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 480px;
    margin:0 16px;
    opacity: 0;
    transform: scale(0.7);
}
.pw_popup_wrap.on .pw_popup_box {
    display:block;
    animation: view3 0.3s forwards cubic-bezier(0, 0.49, 0.25, 1);
}
@keyframes view3 {
    0% {transform: scale(0.7); opacity: 0;}
    70% {transform: scale(1.05);}
    100% {transform: scale(1); opacity: 1;}
}
.pw_popup_wrap.off .pw_popup_box {
    opacity: 0;
    transform: scale(0.7);
    animation: hide 0.3s forwards cubic-bezier(0, 0.49, 0.25, 1);
}
@keyframes hide {
    0% {transform: scale(1); opacity: 1;}
    30% {transform: scale(1.05); opacity: 1;}
    100% {transform: scale(0.7); opacity: 0;}
}
.pw_popup_wrap .pw_popup_box .tit_box {
    margin-bottom:20px;
}
.pw_popup_wrap .pw_popup_box .tit_box img {
    margin-bottom: 8px;
}
.pw_popup_wrap .pw_popup_box .tit_box .tit_txt {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-Gray-900);
}
.pw_popup_wrap .pw_popup_box .ip_box {
    display:flex;
    flex-direction: column;
    max-height: 360px;
    overflow-y: auto;
}
.pw_popup_wrap .pw_popup_box .ip_box input {
    height: var(--input-height1);
    background: var(--color-Gray-50);
    border: 1px solid var(--color-Gray-100);
    padding: 0 16px;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Pretendard', 맑은 고딕;
    font-weight: 500;
    color: var(--color-Gray-600);
    text-align: center;
}
.pw_popup_wrap .pw_popup_box .ip_box input:focus {
    background: #eef9ff;
    border: 1px solid #7eb5d3;
    color:var(--color-deepblue);
    font-weight:700;
}

.pw_popup_wrap .pw_popup_box .ip_box textarea {
    height: var(--input-height1);
    background: var(--color-Gray-50);
    border: 1px solid var(--color-Gray-100);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Pretendard', 맑은 고딕;
    font-weight: 500;
    color: var(--color-Gray-600);
    width:100%;
    min-height:140px;
}
.pw_popup_wrap .pw_popup_box .ip_box textarea:focus {
    background: #eef9ff;
    border: 1px solid #7eb5d3;
    color:var(--color-deepblue);
    font-weight:700;
}


.pw_popup_wrap .pw_popup_box .ip_box .guide_txt {
    color: var(--color-guide);
    font-weight: 500;
    line-height: var(--line-height12);
    font-size: 14px;
    margin-top: 8px;
    display: block;
}
.pw_popup_wrap .pw_popup_box .ip_box .fail_txt {
    text-align: left;
    line-height: var(--line-height12);
}
.pw_popup_wrap .basic_btn_box ul .btn_list {
    width:calc(100% - 8px);
    max-width: unset;
}

.pw_popup_wrap .pw_popup_dim_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #64758d6b;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
}
.pw_popup_wrap.on .pw_popup_dim_box {
    opacity: 1;
    pointer-events: auto;
}
/* 서브 팝업입력창 E */


/* bullet */
.bullet {
    position: relative;
    padding-top:20px;
}
.bullet::before {
    content: url(/jobs/site/basic/img/sub_bullet.svg);
    position: absolute;
    top: -8px;
    left: 0;
    height: 8px;
    width: 18px;
    display: block;
}

/* loading */
.loading_wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
.loading_wrap .loading_box {
    width: 100%;
    max-width: 520px;
    height: 360px;   
    background: #fff;
    position: fixed;
    z-index: 9999;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: load_view1 1s 0s forwards cubic-bezier(0.19, 1, 0.22, 1);
    margin-top:-20px;
    opacity: 0;    
    overflow: hidden;
}
.loading_wrap .loading_box .loading_ico_box {
    width: 520px;    
    height: var(--loading-box);
    background-image: url(/jobs/site/basic/img/loading_off.svg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: loading_move1 3s both infinite ease;
}
.loading_wrap .loading_box .loading_ico_box .loading_on {
    width: var(--loading-box);
    height: var(--loading-box);
    border-radius: 50%;
    background-color: var(--color-Gray-100);
    background-image: url(/jobs/site/basic/img/loading_on.svg);
    animation: loading_move2 3s both infinite ease;
    background-position: 0px; transform: scale(1);
}
.loading_wrap .loading_box p {
    font-size:24px;
    color: var(--color-Gray-900);
    font-weight:700;
    margin-top:40px;    
}
.loading_wrap .loading_dim_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #64758d6b;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;   
    animation: load_view3 0.3s 0s forwards cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes load_view1 {
    0% {
        margin-top:-20px;
        opacity: 0;
    }
    100% {
        margin-top:0px;
        opacity: 1;
    }       
}
@keyframes load_view2 {
    0% {
        margin-top:20px;
        opacity: 0;
    }
    100% {
        margin-top:40px;
        opacity: 1;
    }       
}
@keyframes load_view3 {
    0% {       
        opacity: 0;
    }
    100% {
        opacity: 1;
    }       
}

@keyframes loading_move1 {
    0% {background-position: 0px;}
    20% {background-position: calc(var(--loading-box) * -1); }
    40% {background-position: calc(var(--loading-box) * -2);}
    60% {background-position: calc(var(--loading-box) * -3);}
    80% {background-position: calc(var(--loading-box) * -4);}
    100% {background-position: calc(var(--loading-box) * -5);}       
}
@keyframes loading_move2 {
    0% {background-position: 0px; transform: scale(1);}
    20% {background-position: calc(var(--loading-box) * -1); transform: scale(1.1);}
    30% {transform: scale(1);}
    40% {background-position: calc(var(--loading-box) * -2); transform: scale(1.1);}
    50% {transform: scale(1);}
    60% {background-position: calc(var(--loading-box) * -3); transform: scale(1.1);}
    70% {transform: scale(1);}
    80% {background-position: calc(var(--loading-box) * -4); transform: scale(1.1);}
    90% {transform: scale(1);}
    100% {background-position: calc(var(--loading-box) * -5); transform: scale(1.1);}       
}

@media (max-width:564px) {    
    .loading_wrap .loading_box {
        max-width:320px;
        height:320px;
    }
    
}
