/*------------------------
input
------------------------*/

input:not([type="radio"], [type="checkbox"]) {
    appearance: none;
    border: 0;
    border: 1px solid #e3e7f7;
    padding: 1.0625rem 1.25rem;
    font-weight: normal;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0.625rem;
    width: inherit;
    font-size: 1.0625rem;
}

input[readonly],
input[disabled] {
    background-color: #f9f9f9;
    color: #5d5d5d
}

input[type="checkbox"][disabled],
input[type="checkbox"][readonly] {
    background: #edf6fc;
    color: #5d5d5d
}

textarea {
    border: 1px solid #e3e7f7;
    padding: 1.25rem;
    font-size: 1rem;
    width: 100%;
    line-height: 1.6;
    border-radius: 0.625rem;
}


/*------------------------
select
------------------------*/

select {
    appearance: none;
    padding: 1.1rem 1.25rem;
    border: 1px solid #e3e7f7;
    font-size: 1.0625rem;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0.625rem;
    background-image: url(../images/sub/arrow_icon_bt.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    position: relative;
    width: 15.625rem;
}

select[readonly],
select[disabled] {
    background-color: #f9f9f9;
    color: #5d5d5d
}



/*------------------------
check box
------------------------*/
.checkbox-wrap {
    position: relative;
}

input[type=checkbox] {
    opacity: 0;
    position: absolute;
    width: 1.3125rem;
    height: 1.3125rem;
}

input[type=checkbox]+label {
    display: flex;
    align-items: center;
    gap: 5px;
}

input[type=checkbox]:focus-visible+label:before {
    outline: 2px dashed #2b74d5;
    outline-offset: 2px;
}

input[type=checkbox]+label:before {
    content: "";
    width: 1.1875rem;
    height: 1.1875rem;
    border: 1px solid #c5c7cd;
    border-radius: 0.1875rem;
    background: #fff;
    flex-shrink: 0;
}

input[type=checkbox]:checked+label:before {
    background: #fff url(../images/sub/ic_check.svg) no-repeat 50% 50%;
    background-size: 70%;
    border-color: #1459f1;
}


/*------------------------
 radio
 ------------------------*/

.radio {
    position: relative;
    height: 1rem;
    line-height: 1rem;
    font-size: 1.06rem;
    cursor: pointer;
    display: inline-block;
    padding-left: 1.25rem
}

.radio input {
    appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid #ccc;
    border-radius: 100%;
    cursor: pointer;
    padding: 0px;
}

.radio input:checked {
    background-color: #fff;
    border: 5px solid #4c54eb;
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 1px;
}


/*버튼*/
.btn-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.btn-wrap.vCenter {
    justify-content: center;
    gap:10px;
}
.btn-bs {
    display: inline-block;
    border-radius: 0.625rem;
    padding:1.25rem 4.0625rem;
    background-color: #fff;
    color: #555;
    font-size: 1.375rem;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-white {
    background-color: #fff;
    border:1px solid #ddd;
    color: #555;
}
.btn-white:hover {
    background-color: #f4f4f4;
}
.btn-navy {
    background-color: #26346f;
    color: #fff;
}
.btn-navy:hover {
    background-color: #16214f;
}
.btn-gray {
    background-color: #e6e7ec;
    color: #555;
}
.btn-gray:hover {
    background-color: #d3d5df;
}
.btn-search {
    display: inline-block;
    color: #fff;
    background: #26346f;
    padding:1.2rem 3.4375rem;
    border-radius: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 500;
}
.btn-list {
    display: inline-flex;
    color: #444;
    background-color: #fff;
    border:1px solid #ddd;
    border-radius: 0.625rem;
    padding:1.5625rem 3rem;
    font-weight: 600;
    font-size: 1.375rem;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-list:before {
    content: "";
    width:22px;
    height:22px;
    background: url(../images/sub/ic_list.svg) no-repeat 50% 50%;
    background-size: 100%;
}
.btn-list.btn-navy {
    color: #fff;
    background-color: #26346f;
    border:1px solid #26346f;
}
.btn-list.btn-navy:before {
    background: url(../images/sub/ic_list_w.svg) no-repeat 50% 50%;
}
.btn-list.btn-navy:hover {
    background-color: #16214f;
}
.btn-reset {
    display: inline-flex;
    color: #444;
    background-color: #fff;
    border:1px solid #ddd;
    border-radius: 0.625rem;
    padding:1.5625rem 3rem;
    font-weight: 600;
    font-size: 1.375rem;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-reset:before {
    content: "";
    width:22px;
    height:22px;
    background: url(../images/sub/ic_reset.svg) no-repeat 50% 50%;
    background-size: 100%;
}
.btn-alarm,
.btn-noAlarm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-alarm:before {
    content: "";
    width:18px;
    height:18px;
    background: url(../images/sub/ic_alarm.svg) no-repeat 50% 50%;
    background-size: 100%;
}
.btn-noAlarm:before {
    content: "";
    width:19px;
    height:19px;
    background: url(../images/sub/ic_no_alarm.svg) no-repeat 50% 50%;
    background-size: 100%;
}
.modal .btn-bs {
    border-radius: 0.4rem;
    padding:1.1rem 2.5rem;
    font-size: 1.125rem;
    line-height: 1;
}
.btn-sm,
.modal .btn-sm {
    padding-left:1.5rem;
    padding-right:1.5rem;
}

/*etc*/
.super {vertical-align: super; line-height: 1;}


/*서브레이아웃*/
#sub {
    background-image: url(../images/sub/sub_bg.png);
    background-repeat: no-repeat;
    background-position: calc((100% - 1170px) / 2) 95px;
}
.subTitle {
    text-align: center;
    padding-top: 5.9375rem;
    position: relative;
}
.subTitle:before {
    content: "";
    width:200px;
    height:200px;
    position: absolute;
    left:calc((100% - 1330px) / 2);
    top:40px;
    background: url(../images/sub/sub_ic_01.png) no-repeat 0 0;
}
.subTitle.m01:before {background-image: url(../images/sub/sub_ic_01.png);}
.subTitle.m02:before {background-image: url(../images/sub/sub_ic_02.png);}
.subTitle.m03:before {background-image: url(../images/sub/sub_ic_03.png);}
.subTitle.m04:before {background-image: url(../images/sub/sub_ic_04.png);}
.subTitle.m05:before {background-image: url(../images/sub/sub_ic_05.png);}
.subTitle.m06:before {width:230px; background-image: url(../images/sub/sub_ic_06.png);}

.subTitle h2 {
    font-size: 2.6875rem;
    font-family: "Jalnan";
    font-weight: 300;
    color: #222;
}

#content {
    height: 100%;
    min-height: 700px;
    /*padding: 5.625rem 0 7.5rem 0;*/
    padding: 4rem 0 7.5rem 0;
    width: 100%;
    max-width: 1680px;
    margin: auto;
}


#content h3 {
    display: block;
    font-size: 1.6875rem;
    color: #222;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 5rem;
    margin-bottom: 1.875rem;
    padding-left: 2.9rem;
    position: relative;
}
#content h3:before {
    content: "";
    display: block;
    background: url(../images/sub/h3.png) no-repeat 50% 50%;
    background-size: 100%;
    width:2.25rem;
    height:1.4375rem;
    position: absolute;
    left:0;
    top:2px;
}

#content h4 {
    font-size: 1.5rem;
    color: #4c54eb;
    font-weight: 700;
    margin-top: 3.125rem;
    margin-bottom: 1.25rem
}

#content h3:first-of-type {
    margin-top: 0;
}



.box {
    background: rgba(236, 240, 255, 0.5);
    border: 1px solid rgba(218, 224, 247, 0.7);
    border-radius: 0.9375rem;
    padding: 2.5rem;
    margin-bottom: 4.06rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}
.box-02 {
    background: #f7f7fc;
    border-radius: 0.9375rem;
    padding: 3.125rem;
    margin-bottom: 3.125rem;
}
.box-03 {
    border:2px dotted #3b72ed;
    border-radius: 0.5rem;
    padding:1.5rem;
    display: flex;
    gap: 0 1rem;
    background: #fff;
    margin-bottom: 3.125rem;
}
.box-04 {
    border: 1px solid rgb(190 199 233);
    border-radius: 0.9375rem;
    padding: 2.5rem;
    margin-bottom: 4.06rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}
.box ul:last-of-type,
.box-02 ul:last-of-type,
.box-04 ul:last-of-type,
.box-04 li:last-of-type {
    margin-bottom:0;
}

.box-timg {
    background: rgba(236, 240, 255, 0.5);
    border: 1px solid rgba(218, 224, 247, 0.7);
    border-radius: 0.9375rem;
    padding: 1.5625rem;
    margin-bottom: 5.9375rem;
    display: flex;
    align-items: center;
}
.box-timg img {
    display: block;
    width:300px;
    aspect-ratio: 1 / 0.65;
}
.box-timg dl {
    margin-left:3%;
    color: #333;
}
.box-timg dt {
    font-family: "Jalnan";
    font-weight: 300;
    font-size: 1.75rem;
    margin: 2px 0 1.25rem 0;
}
.box-timg dd {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
}

.inputWrap {
    display: flex;
    gap: 1.25rem 1.875rem;
    justify-content: center;
}

.inputIn {
    display: inline-flex;
    align-items: center;
}

.inputIn .tit {
    display: block;
    margin-right: 1.125rem;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    padding-left:0.75rem;
    flex-shrink: 0;
}
.inputIn .tit:before {
    content: "";
    width:4px;
    height: 4px;
    border-radius: 100%;
    background: #26346f;
    position: absolute;
    top:13px;
    left:0;
}


.tbTop {
    margin-bottom: 1.5625rem;
}
.tbNum {
    font-size: 1.0625rem;
    color: #555555;
    display: flex;
    align-items: center;
}

.tbBasic {
    border-top: 2px solid #25336d;
}

.tbBasic thead th {
    border-bottom: 1px solid #25336d;
}

.tbBasic th,
.tbBasic td {
    border-bottom: 1px solid #ccc;
    padding: 1.3rem;
    line-height: 1.5;
}
.tbBasic th {
    font-size: 1.1875rem;
}
.tbBasic td {
    font-size: 1.1875rem;
}


.tbConBasic thead th {
    background: #7f7f89;
    color: #fff;
}
.tbConBasic tr:nth-child(2n) {
    background-color:#f8f8f8
}
.tbConBasic th,
.tbConBasic td {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 1.2rem;
    line-height: 1.3;
}
.tbConBasic th {
    font-size: 1.0625rem;
}
.tbConBasic td {
    font-size: 1.0625rem;
    color: #333;
}
.tbConBasic td:first-of-type {
    border-left: none;
}


.vCenter th,
.vCenter td {
    text-align: center;
}
table .no-data {
    padding:1rem;
    color: #666;
    width: 100%;
    text-align: center;
}
table .l_line {
    border-left: 1px solid #ccc !important;
}

.ic_file {
    width:23px;
    vertical-align: middle;
}


.tbView {
    margin-bottom: 3.75rem;
}
.tbView-head {
    border-top: 2px solid #25336d;
    border-bottom: 1px solid #25336d;
    padding:3rem;
    text-align: center;
}
.tbView-head .title {
    display: block;
    font-size: 2rem;
    margin-bottom: 1.4rem;
    color: #222;
}
.tbView-head .list {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: #666;
}
.tbView-head .list li {
    margin-right:23px;
    padding-right:23px;
    position: relative;
}
.tbView-head .list li:nth-child(2) {
    padding-right:0;
}
.tbView-head .list li:first-of-type:after {
    content: "";
    width:1px;
    height:14px;
    background: #ddd;
    position: absolute;
    right:0;
    top:3px;
}
.attach-area {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
    gap:0.7rem 0.5rem;
    flex-wrap: wrap;
}
.attach-area .btn-down {
    display: flex;
    align-items: center;
    border-radius: 7px;
    border: 1px solid rgb(196 208 251);
    background: rgba(236, 240, 255, 0.5);
    padding: 1rem 0.9rem;
    transition: all 0.2s;
}
.attach-area .btn-down:after {
    content: "";
    margin-left: 1.5rem;
    background: url(../images/sub/ico_download.svg) no-repeat 50% 50%;
    width: 1.2rem;
    aspect-ratio: 1 / 1;
    background-size: 100%;
    flex-shrink: 0;
}
.attach-area .btn-down:hover {
    background: rgba(224, 231, 255, 0.8);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.urlCopy {
    border:1px solid #ccc;
    width:2.1875rem;
    height:2.1875rem;
    border-radius: 100%;
    background: url(../images/sub/ic_url.svg) no-repeat 50% 50%;
    background-size: 45%;
}
.tbView-body {
    padding:3.5rem 3.25rem;
    border-bottom: 1px solid #e8e8e8;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #333;
}
.tbView-foot {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
}
.tbView-foot li {
    width:49%;
    padding:1.875rem 3.25rem;
}
.tbView-foot li a {
    color: #888;
    font-size: 1.125rem;
    font-weight: 500;
}
.tbView-foot li a strong {
    color: #555;
    font-size: 1.25rem;
    display: inline-flex;
    gap: 0 1.125rem;
    align-items: center;
}
.tbView-foot li:last-of-type a strong {
    flex-direction: row-reverse;
}
.tbView-foot li a strong:before {
    content: "";
    width:11px;
    height:19px;
    background: url(../images/sub/tb_arrow.svg) no-repeat 50% 50%;
    background-size: 100%;
    flex-shrink: 0;
}
.tbView-foot li:last-of-type a strong:before {
    transform: scale(-1);
}
.tbView-foot li:first-of-type a span {
    display: inline-block;
    margin-left: 3.375rem;
}
.tbView-foot li:last-of-type {
    text-align: right;
}
.tbView-foot li:last-of-type a span {
    display: inline-block;
    margin-right: 3.375rem;
}
.tbView-foot li a:hover span {
    text-decoration: underline;
    color: #000;
}


/* 페이지네이션 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1.5625rem;
    width: 100%;
    margin-top: 5.625rem;
    color: #555;
}
.page-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination .page-navi,
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 1.1875rem;
    width:3.125rem;
    height:3.125rem;
    text-align: center;
    flex-shrink: 0;
    border-radius: 100%;
    transition: all 0.2s;
}
.page-link.active,
.page-link:hover {
    background: #f2f3ff;
    color: #4c54eb;
    font-weight: 600;
}
.pagination .page-navi {
    border:1px solid #ddd;
    background: url(../images/sub/page-navi.svg) no-repeat 50% 50%;
    background-size: 36%;
}
.pagination .page-navi.next {
    transform: scaleX(-1);
}
.pagination .page-navi.disabled {
    background-image: url(../images/sub/page-navi-dis.svg);
    cursor: initial;
}


/*리스트*/
.list-01 {
    /*color: #333;*/
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 3.125rem;
}
.list-01 > li {
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 16px;
}
.list-01 > li:before {
    content: "";
    width: 5px;
    height:5px;
    background: #646cf4;
    border-radius: 100%;
    position: absolute;
    top:0.625rem;
    left:0;
}
.list-02 {
    /*color: #555;*/
    font-size: 1.0625rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 2.5rem;
}
.list-02 > li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 12px;
}
.list-02 > li:before {
    content: "";
    width: 6px;
    height:2px;
    background: #888;
    position: absolute;
    top:0.63rem;
    left:0;
}
.list-03 {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 2.5rem;
}
.list-03 > li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 10px;
}
.list-03 > li:before {
    content: "";
    width: 3px;
    height:3px;
    border-radius: 100%;
    background: #999;
    position: absolute;
    top:0.45rem;
    left:0;
}

.list-ck {
    color: #555;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 3.125rem;
}
.list-ck > li {
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.5625rem;
    font-weight: 700;
}
.list-ck > li:before {
    content: "";
    width: 1.125rem;
    height:1.125rem;
    background: url(../images/sub/bull_ck.png) no-repeat 50% 50%;
    background-size: 100%;
    border-radius: 100%;
    position: absolute;
    top:0.3125rem;
    left:0;
}

.list-01 .list-02,
.list-02 .list-03,
.list-ck .list-02 {
    margin: 0.625rem 0 0 0;
}


/*절차step*/
.step {
    background: #f7f7fc;
    border-radius: 0.9375rem;
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0;
}
.step li {
    background: #fff;
    border-radius: 0.9375rem;
    padding:9.5rem 1rem 2.5rem 1rem;
    text-align: center;
    margin-right:3.125rem;
    position: relative;
    width:calc((100% / 6) - 2.604rem);
    min-width: 135px;
    font-size: 1.125rem;
    color: #555;
    font-weight: 600;
}
.step li:before {
    content: "";
    width:5.3125rem;
    height:5.3125rem;
    background: #f7f7fc url(../images/sub/step_01.svg) no-repeat 50% 50%;
    background-size: 45%;
    border-radius: 100%;
    border:1px solid #e3e7f7;
    position: absolute;
    left:50%;
    top:2.5rem;
    transform: translateX(-50%);
}
.step li.step-01:before {background-image: url(../images/sub/step_01.svg)}
.step li.step-02:before {background-image: url(../images/sub/step_02.svg)}
.step li.step-03:before {background-image: url(../images/sub/step_03.svg)}
.step li.step-04:before {background-image: url(../images/sub/step_04.svg)}
.step li.step-05:before {background-image: url(../images/sub/step_05.svg)}
.step li.step-06:before {background-image: url(../images/sub/step_06.svg)}
.step li.step-07:before {background-image: url(../images/sub/step_07.svg)}
.step li.step-08:before {background-image: url(../images/sub/step_08.svg)}
.step li.step-09:before {background-image: url(../images/sub/step_09.svg)}
.step li.step-10:before {background-image: url(../images/sub/step_10.svg)}
.step li:after {
    content: "";
    width:15px;
    height:25px;
    background: url(../images/sub/step_arrow.svg) no-repeat 50% 50%;
    background-size: 100%;
    position: absolute;
    right:-1.5625rem;
    top:50%;
    transform: translate(50%, -50%);
}
.step li:last-of-type {
    margin-right:0;
}
.step li:last-of-type:after {
    display: none;
}


/*탭메뉴*/
.tab-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:25px 55px;
    margin:1.25rem 0 5.9375rem 0;
    flex-wrap: wrap;
}
.tab-list li {
    position: relative;
}
.tab-list li:not(:first-of-type):before {
    content: "";
    position: absolute;
    width:6px;
    height: 6px;
    background: #b4b5c1;
    border-radius: 100%;
    top:50%;
    left:-28px;
    transform: translateY(-50%);
}
.tab-list li a {
    font-size: 1.35rem;
    color: #444;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    padding-bottom: 0.6rem;
    transition: all 0.2s;
}
.tab-list li a:hover,
.tab-list li.active a {
    color: #4c54eb;
    font-weight: 700;
}
.tab-list li a:after {
    content: "";
    position: absolute;
    width:0;
    height: 2px;
    background: #4c54eb;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    transition: all 0.2s;
}
.tab-list li a:hover:after,
.tab-list li.active a:after {
    width:100%;
}


/*faq아코디언*/
.accordion {
    display: flex;
    flex-direction: column;
    gap:1.5rem;
}
.accordion h5 {
    background: #fff;
    box-shadow: 0 0 18px rgba(26, 38, 159, 0.1);
    border-radius: 1.25rem;
    position: relative;
}
.accordion h5.active {
    background: #5C63F7;
    background: linear-gradient(180deg, rgba(92, 99, 247, 1) 0%, rgba(69, 77, 237, 1) 100%);
    box-shadow: 0 8px 24px rgba(26, 38, 159, 0.27);
    z-index: 2;
}
.accordion h5:before {
    content: "Q";
    width:2.5rem;
    height:2.5rem;
    line-height:2.5rem;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    left:4rem;
    top:50%;
    transform: translateY(-50%);
    background: #eeeffe;
    color: #4c54eb;
    font-size: 1.5625rem;
}
.accordion h5.active:before {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.accordion h5:after {
    content: "";
    width:2.5rem;
    height:2.5rem;
    border-radius: 100%;
    position: absolute;
    right:4rem;
    top:50%;
    transform: translateY(-50%);
    background: #9c9dac url(../images/sub/arrow_icon_bt_w.svg) no-repeat 50% 55%;
    background-size: 40%;
    transition: all 0.2s;
}
.accordion h5.active:after {
    background: rgba(255, 255, 255, 0.3) url(../images/sub/arrow_icon_bt_w.svg) no-repeat 50% 55%;
    background-size: 40%;
    transform: translateY(-50%) rotate(180deg);
    box-shadow: 0 -3px 10px rgba(27, 22, 109, 0.47);
}
.accordion-btn {
    font-size: 1.4rem;
    color: #222;
    font-weight: 700;
    padding:3rem 15rem 3rem 7.3rem;
    width:100%;
    text-align: left;
    line-height: 1.3;
}
.active .accordion-btn {
    color: #fff;
}
.accordion-panel {
    background: #f6f6fc;
    border-radius: 0 0 1.25rem 1.25rem;
    padding:4.25rem 4rem 3rem 4rem;
    margin-top: -1.25rem;
    color: #333;
    font-size: 1.1875rem;
    line-height: 1.5;
}

/*자격요건검증*/
.qf-wrap {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.qf-nav {
    width: 250px;
    position: absolute;
    top:0;
    left:0;
    will-change: transform; /* GPU 최적화 */
}
.qf-nav > .qf-nav-list > li {
    margin-bottom: 2.7rem;
    position: relative;
    padding-left:1.875rem;
}
.qf-nav > .qf-nav-list > li:last-of-type {
    margin-bottom: 0;
}
.qf-nav:before {
    content: "";
    position: absolute;
    left:4px;
    top:4px;
    width:1px;
    height: 100%;
    background: #e4e4e4;
}
.qf-nav > .qf-nav-list > li:after {
    content: "";
    position: absolute;
    left:0;
    top:4px;
    width:8px;
    height:8px;
    background: #4c54eb;
    border-radius: 100%;
}
.qf-nav > .qf-nav-list > li > span {
    display: block;
    color: #b4b4b4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 7px;
}
.qf-nav > .qf-nav-list > li.active span {
    color: #4c54eb;
}
.qf-nav > .qf-nav-list > li > a {
    display: block;
    color: #666666;
    font-weight: 700;
    font-size: 1.4375rem;
}
.qf-nav > .qf-nav-list > li.active > a {
    color: #222;
}
.qf-nav-slist {
    margin-top: 0.8rem;
    background: #eaeeff;
    padding:1rem;
    border-radius: 0.5rem;
}
.qf-nav-slist li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left:0.8rem;
}
.qf-nav-slist li:last-of-type {
    margin-bottom: 0;
}
.qf-nav-slist li:after {
    content: "";
    position: absolute;
    left:0;
    top:0.437rem;
    width:6px;
    height:2px;
    background: #aaa;
    border-radius: 100%;
}
.qf-nav-slist a {
    color: #666;
}
.qf-nav-slist .active a {
    color: #000;
    font-weight: 500;
}

.qf-con {
    width:calc(100% - 300px);
    flex-shrink: 0;
    flex-grow: 0;
}
#content h3.qf-tit {
    font-size: 2.1875rem;
    color: #222;
    padding-left:0;
    vertical-align: middle;
}
#content h3.qf-tit:before {display: none;}
#content h3.qf-tit b {
    color: #4c54eb;
    font-size: 3.125rem;
    vertical-align: middle;
    display: inline-block;
    margin:0 10px;
}
.qf-txt {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
}
.qf-dec {
    font-size: 1.625rem;
    color: #222;
    font-weight: 700;
}
.qf-list {
    display: flex;
    flex-wrap: wrap;
    /*margin-top: 4.375rem;*/
    margin: 2rem 0 3.5rem 0;
    gap:2rem 3.2%;
}
.qf-box {
    background: #fff;
    border-radius: 1.25rem;
    width:31.2%;
    box-shadow: 0 0 18px rgba(26, 38, 159, 0.1);
    padding:3.75rem 3.8rem 3.75rem 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    border:2px solid #fff;
    position: relative;
    min-height: 8rem;
    transition: all 0.2s;
}
.qf-box.active {
    border:2px solid #4c54eb;
    box-shadow: 0 9px 18px rgba(26, 38, 159, 0.2);
}
.qf-box input[type="radio"] {display: none;}
.qf-box input[type="radio"] + .qf-label:after {
    content: "";
    display: block;
    position: absolute;
    top:50%;
    right:1.875rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #f1f1f1 url(../images/sub/ic_check_off.svg) no-repeat 50% 50%;
    background-size: 45%;
    border-radius: 100%;
    transform: translateY(-50%);
}
.qf-box.active input[type="radio"] + .qf-label:after,
.qf-box input[type="radio"]:checked + .qf-label:after {
    background: #4c54eb url(../images/sub/ic_check_w.svg) no-repeat 50% 50%;
    background-size: 45%;
}
.qf-label {
    display: block;
    font-size: 1.4rem;
    color: #222;
    font-weight: 600;
    cursor: pointer;
}
.qf-btn {
    color: #4c54eb;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    text-underline-offset:3px;
}
.qf-btn:before {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background: #e4e6fc url(../images/sub/ic_qf.svg) no-repeat 50% 50%;
    background-size: 60%;
    border-radius: 100%;
    margin-right:5px;
}
/*자격요건검증-결과*/
.qf-rs {
    display: flex;
    flex-direction: column;
    gap:1.8rem 0;
    margin-top: 4.6875rem;
}
.qf-rs-box {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 0 18px rgba(26, 38, 159, 0.1);
    padding:1.5rem 4.6875rem;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 9.375rem;
    transition: all 0.2s;
}
.qf-rs-box:hover {
    background: #5a61f7;
    box-shadow: 8px 8px 24px rgba(26, 38, 159, 0.27);
}
.qf-rs-box .year {
    display: block;
    width:10%;
    flex-shrink: 0;
}
.qf-rs-box .year i {
    display: inline-block;
    padding:0.625rem 0;
    border-radius: 3rem;
    flex-shrink: 0;
    min-width: 105px;
    text-align: center;
    background: #eeeffe;
    color:#4c54eb;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
}
.qf-rs-box:hover .year i {
    background: #8c91f9;
    color:#fff;
}
.qf-rs-box .title {
    width:25%;
    font-size: 1.5625rem;
    color: #222;
    line-height: 1.3;
    margin-right: 30px;
    flex-shrink: 0;
}
.qf-rs-box .text {
    width:calc(55% - 30px);
    font-size: 1.2625rem;
    color: #222;
    line-height: 1.3;
}
.qf-rs-box:hover .title,
.qf-rs-box:hover .text {
    color: #fff;
}
.qf-rs-box:after {
    content: "";
    width:2.78rem;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background: #9c9dac url(../images/sub/ckbd_arrow.svg) no-repeat 50% 50%;
    background-size: 40%;
    position: absolute;
    right:4.6875rem;
    top:50%;
    transform: translateY(-50%);
}
.qf-rs-box:hover:after {
    background-color: #8a8ff9;
    box-shadow: 3px 3px 10px rgba(27, 22, 109, 0.47);
}

/*자격요건검증-결과-박스형*/
.qf-rsbx-wrap {
    display: flex;
    flex-wrap: wrap;
    gap:2.5rem 2.5rem;
    margin-top: 4.6875rem;
}
.qf-rsbx {
    width:calc(25% - 1.875rem);
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 0 18px rgba(26, 38, 159, 0.1);
    padding:2.2rem 2.2rem 1.5rem 2.2rem;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.qf-rsbx:hover {
    box-shadow: 0 0 18px rgb(68 80 209 / 50%);
}
.qf-rsbx .pic {
    width:100%;
}
.rsbx-con {
    margin-top: 1.9rem;
}
.rsbx-con .title {
    font-size: 1.562rem;
    font-weight: 700;
    color: #222;
    vertical-align: middle;
}
.qf-rsbx .year {
    display: inline-flex;
    margin-right: 8px;
    position: absolute;
    right:3rem;
    top:3.2rem;
}
.qf-rsbx .year i {
    /*display: inline-block;*/
    padding:0.3rem 0.6rem;
    border-radius: 3rem;
    flex-shrink: 0;
    text-align: center;
    background: #4c54eb;
    color:#fff;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
}
.rsbx-con .text {
    line-height: 1.5;
    margin-top: 1rem;
}
.rsbx-con .sp-text {
    margin-top: 0.3rem;
    line-height: 1.3;
    font-size: 0.9rem;
    color: #003668;
}
.rsbx-box {
    margin-top: 1rem;
    background: #eeeffe;
    border-radius: 0.6rem;
    padding:1rem 1.2rem;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap:8px;
}
.rsbx-box:not(:first-of-type) {margin-top: 0.5rem;}
.rsbx-box:last-of-type {
    margin-bottom: 1.5rem;
}
.rsbx-box .l-title {
    font-size: 0.9rem;
}
.rsbx-box-in {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:5px 10px;
}
.rsbx-box-in .text {
    font-size: 1rem;
    font-weight: 600;
}
.qf-rsbx .btn {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    text-align: center;
    margin-top: auto;
    padding: 1.1rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.qf-rsbx .btn:after {
    content: "";
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background: #4c54eb url(../images/sub/ckbd_arrow.svg) no-repeat 50% 50%;
    background-size: 40%;
    flex-shrink: 0;
    margin-left: 10px;
    position: relative;
    transition: all 0.2s;
}
.qf-rsbx .btn:hover {
    background-color: #4c54eb;
    color: #fff;
}
.qf-rsbx .btn:hover:after {
    background-color: #fff;
    background-image: url(../images/sub/ckbd_arrow_blue.svg);
    transform: translateX(15px);
}

.img-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:1.3rem 0;
}
.img-list li {
    width:24%;
    background: #f7f7fc;
    border-radius: 0.8rem;
    padding:1.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    line-height: 1.3;
    font-size: 1rem;
}
.img-list .img {
    display: block;
    width:30%;
    margin:0 auto;
}

.ic-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:1.3rem 0;
}
.ic-list li {
    width:49%;
    background: #f7f7fc;
    border-radius: 0.8rem;
    padding:1.5rem 2rem;
    display: flex;
    align-items: center;
    gap:0 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}
.ic-list li:before {
    content: "";
    width:5rem;
    height:5rem;
    border-radius: 100%;
    flex-shrink: 0;
}
.ic-list li.except-01:before {
    background:#fff url(../images/sub/except_01.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.except-02:before {
    background:#fff url(../images/sub/except_02.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.except-03:before {
    background:#fff url(../images/sub/except_03.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.except-04:before {
    background:#fff url(../images/sub/except_04.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.except-05:before {
    background:#fff url(../images/sub/except_05.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.except-06:before {
    background:#fff url(../images/sub/except_06.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.except-07:before {
    background:#fff url(../images/sub/except_07.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-01:before {
    background:#fff url(../images/sub/comply_01.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-02:before {
    background:#fff url(../images/sub/comply_02.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-03:before {
    background:#fff url(../images/sub/comply_03.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-04:before {
    background:#fff url(../images/sub/comply_04.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-05:before {
    background:#fff url(../images/sub/comply_05.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-06:before {
    background:#fff url(../images/sub/comply_06.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-07:before {
    background:#fff url(../images/sub/comply_07.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-08:before {
    background:#fff url(../images/sub/comply_08.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-09:before {
    background:#fff url(../images/sub/comply_09.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-10:before {
    background:#fff url(../images/sub/comply_10.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-11:before {
    background:#fff url(../images/sub/comply_11.png) no-repeat 50% 50%;
    background-size: 45%;
}
.ic-list li.comply-12:before {
    background:#fff url(../images/sub/comply_12.png) no-repeat 50% 50%;
    background-size: 45%;
}
.ic-list li.comply-13:before {
    background:#fff url(../images/sub/comply_13.svg) no-repeat 50% 50%;
    background-size: 50%;
}
.ic-list li.comply-14:before {
    background:#fff url(../images/sub/comply_14.svg) no-repeat 50% 50%;
    background-size: 50%;
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:1.1rem 0;
}
.info-list li {
    width:100%;
    background: #fff;
    border:1px solid #ccc;
    border-radius: 0.8rem;
    padding:2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:0 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}
.info-list li > * {
    flex-shrink: 0;
}
.info-list a:focus {
    outline-offset: 2px;
}
.info-hwp,
.info-pdf,
.info-link {
    display: inline-block;
    width:1.7rem;
    height:1.7rem;
}
.info-hwp img {
    width:100%;
}

.link-btn {
    display: inline-flex;
    padding:1.1rem;
    border-radius: 0.5rem;
    border:1px solid #ccc;
    font-weight: 600;
    position: relative;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}
.link-btn:after {
    content: "";
    width:1.5rem;
    height:1.5rem;
    background: url(../images/sub/ic_link.svg) no-repeat 50% 50%;
    background-size: 100%;
    margin-left:0.8rem;
    opacity: 0.5;
}
.link-btn:hover {
    border-color: #4c54eb;
    color: #4c54eb;
}
.link-btn:hover:after {
    opacity: 1;
    background: url(../images/sub/ic_link_on.svg) no-repeat 50% 50%;
    background-size: 100%;
}

.double-wrap {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    flex-wrap: wrap;
    gap:3rem 2%;
}
.double-wrap > * {
    width:49%;
}

.double-wrap2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:4rem 6%;
}
.double-wrap2 > * {
    width:47%;
}

.exam,
.exam .list-02 {
    font-size: 1rem;
    line-height: 1.4;
    margin:0;
}
.exam .list-02 {
    color: #403a7b;
}
.exam .list-02 li:last-of-type {
    margin-bottom: 0;
}
.exam .list-02 > li:before {
    top: 0.55rem;
}
.exam {
    border:2px dotted #b4b4d3;
    border-radius: 0.5rem;
    padding:1.5rem;
    display: flex;
    gap: 0 1rem;
    background: #f0f1ff;
}
.exam dt {
    background: #7474b5;
    color: #fff;
    font-weight: 600;
    padding:0.3rem 1.7rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

.movie {
    width:100%;
    aspect-ratio: 1.77 / 1;
    overflow: hidden;
    border-radius: 1rem;
}


/*공용모달창*/
.modal {
    position: fixed;
    z-index: 3000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(7px);
    transition: all 0.2s;
    display: none;
}
.modal-in {
    background: #fff;
    width:64%;
    max-width: 1090px;
    border-radius: 0.9375rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.modal-head {
    padding:1.5625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 12px rgba(33, 56, 121, 0.15);
}
.modal-head h2 {
    font-size: 1.5rem;
}
.modal-close {
    width:20px;
    height:20px;
    background: url(../images/common/close_black2.svg) no-repeat 50% 50%;
    background-size: 100%;
}
.modal-con {
    padding:1.5rem 1.5625rem;
    min-height:30vh;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.modal-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    margin-top: 2rem;
}
.modal-con .box {
    border-radius: 0.6rem;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-size: 1rem;
}
.modal-con .inputIn .tit {
    font-size: 1.0625rem;
}
.modal-con .inputIn input,
.modal-con .inputIn textarea,
.modal-con .inputIn select {
    padding: 0.8rem;
    border-radius: 0.4rem;
    font-size: 1rem;
}
.modal-con .inputIn .btn-search {
    padding: 0.8rem 2.5rem;
    border-radius: 0.4rem;
}
.modal-con .pagination {
    margin-top: 2.5rem;
    gap: 1rem;
}
.modal-con .pagination .page-navi,
.modal-con .pagination .page-link {
    font-size: 1.1rem;
    width: 3rem;
    height: 3rem;
}

/*신청현황조회*/
.check-board {
    display: flex;
    gap:2.5rem 2.6%;
    flex-wrap: wrap;
}
.check-board-box {
    width:23%;
    box-shadow: 0 0 18px rgba(26, 38, 159, 0.1);
    border-radius: 1.25rem;
    padding:2.1875rem 2.1875rem 6.875rem 2.1875rem;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}
.check-board-box * {
    position: relative;
    z-index: 1;
}
.check-board-box:hover {
    color:#fff;
    box-shadow: 8px 8px 24px rgba(26, 38, 159, 0.27);
}
.check-board-box:before {
    content: "";
    width:100%;
    height:100%;
    background: red;
    position: absolute;
    top:0;
    left:0;
    opacity: 0;
    background: linear-gradient(180deg,rgba(92, 99, 247, 1) 0%, rgba(53, 58, 212, 1) 100%);
    transition: all 0.3s;
    z-index: 0;
}
.check-board-box:hover:before {
    opacity: 1;
}
.check-board-box:after {
    content: "";
    width:2.78rem;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background: #26346f url(../images/sub/ckbd_arrow.svg) no-repeat 50% 50%;
    background-size: 40%;
    position: absolute;
    right:2.1875rem;
    bottom:2.1875rem;
}
.check-board-box:hover:after {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 3px 3px 10px rgba(27, 22, 109, 0.47);
}
.status {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}
.status > * {
    display: inline-block;
    padding:0.625rem 0;
    border-radius: 3rem;
    flex-shrink: 0;
    width: 100px;
    text-align: center;
}
.status .line {border:1px solid #4c54eb; color:#4c54eb;}
.status .ing {border:1px solid #4c54eb; color:#fff; background: #4c54eb;}
.status .exept {border:1px solid #e67892; color:#fff; background: #e67892;}
.status .fin {border:1px solid #999aa6; color:#fff; background: #999aa6;}
.status .alarm {
    width:33px;
    aspect-ratio: 1 / 1;
    border:1px solid #ebecff;
    color:#fff;
    background: #ebecff url(../images/sub/ic_alarm_blue.svg) no-repeat 50% 50%;
    background-size: 44%;
    margin-left:auto;
}
.status .alarm.deactive {
    border:1px dashed #ccc;
    background-color: transparent;
    background-image: url(../images/sub/ic_alarm_gray.svg);
}
.check-board-box .status {
    margin-bottom: 1.875rem;
}
.check-board-box:hover .status .line {border:1px solid #fff; color:#fff;}
.check-board-box:hover .status .ing,
.check-board-box:hover .status .exept,
.check-board-box:hover .status .fin {border:1px solid #fff; color:#4c54eb; background: #fff;}
.check-board-box:hover .status .alarm.deactive {border-color:#fff; background-image: url(../images/sub/ic_alarm.svg);}
.check-board-box .title {
    margin-bottom: 1.875rem;
    font-size: 1.5625rem;
    font-weight: 600;
    color: #000;
}
.check-board-box:hover .title {
    color:#fff;
}
.check-board-box .detail {
    font-size: 1.0625rem;
}
.check-board-box .detail-list {
    display: flex;
    margin-bottom: 0.7rem;
}
.check-board-box .detail-list:last-of-type {
    margin-bottom:0;
}
.check-board-box .detail-list dt {
    min-width:25%;
    margin-right:1rem;
    font-weight: 600;
    color: #000;
    flex-shrink: 0;
}
.check-board-box:hover .detail-list dt {
    color:#fff;
}

.modal h3 {
    display: block;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1.7rem;
    position: relative;
}
.modal h3:before {
    content: "";
    display: block;
    background: url(../images/sub/h3_2.png) no-repeat 50% 50%;
    background-size: 100%;
    width:1.25rem;
    aspect-ratio: 1 / 1;
    position: absolute;
    left:0;
    top:1px;
}
.modal h3:first-of-type {margin-top: 0}
.check-step-list {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.check-step-list li {
    width:16%;
    background: #e6e7ec;
    border-radius: 0.9375rem;
    padding:2.1875rem 0;
    text-align: center;
    color: #666;
    font-weight: 500;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:15px 0;
}
.check-step-list li:before {
    content: "";
    width:35px;
    aspect-ratio: 1 / 1;
    background: #fff url(../images/sub/ic_check_off.svg) no-repeat 50% 50%;
    background-size: 53%;
    border-radius: 100%;
}
.check-step-list li.active {
    background: #4c54eb;
    color: #fff;
}
.check-step-list li.active:before {
    background-image: url(../images/sub/ic_check.svg);
}

.check-amount {
    background: rgba(236, 240, 255, 0.5);
    border: 1px solid rgba(218, 224, 247, 0.7);
    border-radius: 0.9375rem;
    padding: 0.5rem 2.5rem;
    display: flex;
}
.check-amount > * {
    width:50%;
    text-align: center;
    display: flex;
    align-items: center;
    gap:1rem;
    justify-content: center;
    padding: 0.7rem 0;
}
.check-amount > *:first-of-type {
    border-right: 1px solid rgba(218, 224, 247, 0.7);
}
.check-amount .expect {

}
.check-amount .actual {

}
.check-amount dt {
    font-size: 1.0625rem;
    font-weight: 600;
    flex-shrink: 0;
}
.check-amount dd {
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.check-amount dd b {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.check-amount .actual dd b {
    color: #4c54eb;
}

.tbPopBasic {
    border-top: 1px solid #25336d;
}
.tbPopBasic th,
.tbPopBasic td {
    border-bottom: 1px solid #ddd;
    padding: 1.2rem;
    line-height: 1.3;
    font-size: 1.0625rem;
    color: #222;
}
.tbPopBasic th {
    background: #f5f7ff;
    font-weight: 600;
}

.duty {
    display: flex;
    justify-content: space-between;
}
.duty dl {
    display: flex;
    flex-direction: column;
    text-align: center;
    width:100%;
    overflow: hidden;
}
.duty dt {
    background: #7f7f89;
    color: #fff;
    font-size: 1.2rem;
    padding:1.3rem;
    font-weight: 600;
    border-radius: 0.7rem 0.7rem 0 0;
}
.duty dd {
    background: #fff;
    font-size: 1.1rem;
    padding:2rem 1.3rem;
    border:1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
    border-radius: 0 0 0.7rem 0.7rem;
    border-top: none;
}
.duty dl.duty-basic {
    width:30%;
}
.duty dl.duty-choice {
    width:calc(70% - 30px);
}
.duty-choice-list {
    display: flex;
    gap:5px;
    width:100%;
    justify-content: center;
}
.duty-choice-list li {
    max-width:15rem;
    width:30%;
    font-size: 1rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap:8px 0;
    align-items: center;
}
.duty-choice-list li:before {
    content: "";
    width:40%;
    width: 96px;
    aspect-ratio: 1 / 1;
    background-color: #f7f7fc;
    border-radius: 100%;
    flex-shrink: 0;
}
.duty-etc-list {
    display: flex;
    gap:1.5rem 0;
    width:100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.duty-etc-list li {
    width: calc((100% / 4) - 5px);
    font-size: 1rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap:8px 0;
    align-items: center;
}
.duty-etc-list li:before {
    content: "";
    width: 96px;
    aspect-ratio: 1 / 1;
    background-color: #f7f7fc;
    border-radius: 100%;
    flex-shrink: 0;
}
.duty li:before {
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 50% 50%;
}
.duty li.duty-01:before {background-image: url(../images/sub/duty_01.svg);}
.duty li.duty-02:before {background-image: url(../images/sub/duty_02.svg);}
.duty li.duty-03:before {background-image: url(../images/sub/duty_03.svg);}
.duty li.duty-04:before {background-image: url(../images/sub/duty_04.svg);}
.duty li.duty-05:before {background-image: url(../images/sub/duty_05.svg);}
.duty li.duty-06:before {background-image: url(../images/sub/duty_06.svg);}
.duty li.duty-07:before {background-image: url(../images/sub/duty_07.svg);}
.duty li.duty-08:before {background-image: url(../images/sub/duty_08.svg);}
.duty li.duty-09:before {background-image: url(../images/sub/duty_09.svg);}
.duty li.duty-10:before {background-image: url(../images/sub/duty_10.svg);}
.duty li.duty-11:before {background-image: url(../images/sub/duty_11.svg);}

.img-box {border:1px solid #ddd; text-align: center;}
.img-box img {max-width: 100%;}


/*2차탭메뉴*/
.tabs-nav {margin-bottom: 3.5rem;}
.tabs-nav ul {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
}
.tabs-nav li a {
    display: block;
    padding:1.4rem 1.8rem;
    font-size: 1.25rem;
    border:1px solid #ccc;
    font-weight: 500;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.2s;
    text-align: center;
    line-height: 1.3;
}
.tabs-nav li:hover a,
.tabs-nav li.active a {
    border:1px solid #26346f;
    background: #26346f;
    color: #fff;
}

/*개인정보처리방침*/
.priv-label-wrap {
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}
.priv-label {
    width:calc(16.6% - 1.25rem);
    box-shadow: 0 0 18px rgba(26, 38, 159, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    background: #fff;
    text-align: center;
}
.priv-label b {
    display: block;
    margin-top: 1rem;
}
.priv-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:1rem 0;
}
.priv-index a {
    width:calc(50% - 0.5rem);
    border:1px solid #ddd;
    border-radius: 0.5rem;
    padding:1rem;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}
.priv-index a:hover {border-color:#4c54eb;}
.priv-index a img {
    width:25px;
    margin-right: 3px;
}
.priv-index a img:last-of-type {margin-right: 10px;}
.priv-con {
    margin-bottom: 4rem;
}
.priv-con h4 img {width:30px; margin-right:3px;}
.priv-con h4 img:last-of-type {margin-right: 10px;}








/*반응형*/
@media all and (max-width:1680px) {
    #content {
        width:96%;
        margin:0 auto;
    }
    .inputWrap {flex-wrap: wrap;}
}

@media all and (max-width:1380px) {
    .tab-list {
        width:80%; margin:1.25rem auto 5.9375rem auto;
        border:1px solid #ddd; gap:0;
        border-radius: 0.8rem;
        overflow: hidden;
    }
    .tab-list li {
        width:50%;
        border-top:1px solid #ddd;
        height: 70px;
    }
    .tab-list li:not(:first-of-type):before {display: none;}
    .tab-list li:nth-child(2n) {
        border-left:1px solid #ddd;
    }
    .tab-list li:nth-child(1),
    .tab-list li:nth-child(2) {
        border-top:none;
    }
    .tab-list li a {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
        padding:0 0.5rem;
        text-align: center;
        font-size: 1.3rem;
    }
    .tab-list li a:after {display: none;}
    .tab-list li a:hover, .tab-list li.active a {
        background: #4c54eb;
        color: #fff;
    }
    .modal-in {width: 80%;}
    .qf-wrap {flex-direction: column;}
    .qf-nav,
    .qf-con {width:100%;}
    .qf-nav {position: relative; margin-bottom: 3rem;}
    .qf-nav .qf-nav-list {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    .qf-nav .qf-nav-list > li {
        margin-bottom: 0;
        position: relative;
        padding-left: 0;
        text-align: center;
        padding:1.5rem 1.2rem;
        border:1px solid #ddd;
        border-radius: 0.7rem;
        background: #f4f4f4;
    }
    .qf-nav .qf-nav-list > li.active {background:#e8e9ff; border-color: #d2d4fd;}
    .qf-nav .qf-nav-list > li:after,
    .qf-nav:before,
    .qf-nav-slist {display: none !important;}
    #content h3.qf-tit {font-size: 1.6rem; margin-bottom: 1.3rem;}
    .qf-box {width: 48%;}
    .accordion-btn {padding: 3rem 8rem 3rem 5.3rem;}
    .accordion h5:before {left: 2rem;}
    .accordion h5:after {right: 2rem;}
    .accordion-panel {padding: 4.25rem 2rem 3rem 2rem;}
    .qf-rsbx {width: calc(33.3% - 1.875rem);}
}

@media all and (max-width:1190px) {
    .check-board-box {width: 31.5%;}
    .check-step-list li {width: 25%;}
    .modal-in {width:90%;}
    .check-amount {padding:1.5rem;}
    .check-amount > * {flex-direction: column;}
    .check-amount > * {flex-direction: column;}
    .tbBasic thead {display: none;}
    .tbBasic tbody tr {
        display: block;
        border-bottom: 1px solid #ccc;
        padding: 1rem 0;
    }
    .tbBasic tbody tr td {
        display: flex;
        border:none;
        padding: 0.5rem 1rem;
        text-align: left;
        line-height: 1.3;
    }
    .tbBasic tbody tr td:not(.no-data-line):before {
        margin-right: 1rem;
        display: table-caption;
        width: 60px;
        font-weight: 500;
        text-align: left;
        content: attr(data-label);
        color: #26346f;
        font-size: 1rem;
    }
    .tbView-head {padding: 2rem 1.5rem;}
    .tbView-head .title {line-height: 1.3; margin-bottom: 1rem;}
    .tbView-body {padding: 2rem 1.5rem;}
    .tbView-foot li {padding: 1.875rem 1.5rem;}
    .tbView-foot li a span {display: none !important;}
    .qf-rs-box {padding: 3rem 2.5rem;}
    .qf-rs-box:after {right: 2rem;}
    .qf-rsbx {width: calc(50% - 1.875rem);}
    .priv-label {width: calc(33.3% - 1rem);}
    .priv-label img {width: 60px;}
}

@media all and (max-width:970px) {
    .tab-list {width:100%;}
    .img-list li {width: 32%;}
    .double-wrap > * {width: 100%;}
    .double-wrap2 > * {width: 100%;}
    .check-board-box {width: 48.5%;}
    #content h3.qf-tit {line-height: 1;}
    #content h3.qf-tit b {font-size: 2.5rem;}
    .qf-rs-box {flex-wrap: wrap; padding: 2rem 2rem;}
    .qf-rs-box .year {width: auto; margin-right: 15px;}
    .qf-rs-box .year i {min-width: 80px;}
    .qf-rs-box .title {width: calc(100% - 95px); margin-right: 0;}
    .qf-rs-box .text {width:calc(100% - 5rem); margin-top: 1rem;}

}

@media all and (max-width:767px) {
    .subTitle {padding-top: 4rem;}
    .subTitle h2 {font-size: 2.3rem;}
    #content {
        padding: 2rem 0 4rem 0;
    }
    #content h3,
    #content h4 {line-height: 1.2;}
    .box-02 {padding: 2rem;}
    .tab-list {margin: 0 auto 4rem auto}
    .box-timg {flex-direction: column;}
    .box-timg img {margin-bottom: 2rem;}
    .box-timg dd br {display: none;}
    .img-list li {width: 49%;}
    .img-list .img {width: 35%;}
    .img-list .txt br {display: none;}
    .ic-list li {width:100%;}
    .step {padding: 1.5rem; gap:3rem 0}
    .step li {
        margin-right: 0;
        width: 100%;
        min-width: auto;
        padding: 8.5rem 1rem 2rem 1rem;
    }
    .step li:before {top: 2rem;}
    .step li:after {
        right: 50%;
        top: auto;
        bottom: -2.4rem;
        transform: translate(50%, 0%) rotate(90deg);
    }
    .box {padding: 1.5rem; margin-bottom: 3rem;}
    .inputIn,
    .inputIn select,
    .inputIn input {width:100%;}
    .inputIn .btn-search {margin: 0 auto;}
    .check-board {gap: 1.5rem 0;}
    .check-board-box {width: 100%; padding: 2.1875rem 2.1875rem 5rem 2.1875rem;}
    .check-board-box .title {font-size: 1.8rem;}
    .check-board-box .detail {font-size: 1.2rem;}
    .check-board-box:after {right: 1.7rem; bottom: 1.7rem;}
    .modal-in {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .check-amount {padding:1rem;}
    .qf-nav li {padding:1.5rem;}
    .qf-list {
        gap:1.5rem 0; margin-top: 2.5rem;
        justify-content: space-between;
    }
    .qf-box {
        padding: 3rem 1.5rem 2rem 1.5rem;
        min-height: 154px;
    }
    .qf-box input[type="radio"] + .qf-label:after {
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        transform: unset;
    }
    .accordion-btn {padding: 2rem 7.5rem 2rem 4.8rem;}
    .accordion h5:before {left: 1.5rem;}
    .accordion h5:after {right: 1.5rem;}
    .accordion-panel {padding: 3rem 1.5rem 2rem 1.5rem;}
    .duty {flex-direction: column; gap: 2rem;}
    .duty dl.duty-basic,
    .duty dl.duty-choice {width:100%;}
    .tabs-nav li a {padding: 1.2rem 1.6rem;}
    .tab-list li {height: 65px;}
    .qf-rsbx-wrap {margin-top: 3rem;}
    .qf-rsbx {width: 100%;}
    .btn-reset,
    .btn-list {padding: 1.5625rem 1.7rem;}
    .scroll {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .scroll .tbConBasic th,
    .scroll .tbConBasic td {white-space: nowrap;}
}

@media all and (max-width:600px) {
    .img-list .img {width: 50%;}
    .duty li:before {width:80px;}
}

@media all and (max-width:360px) {

}
