/* 공통 디자인 */
body {
    font-family: 'NanumSquareNeo';
    color: #333;
}
* {
    box-sizing: border-box;
}
.inner{
    min-height: 100vh;
    margin-bottom: 6rem;
}

/* index */

#indexLoadImg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(40deg, #19B3BD, #036EB4);
}
.indexImg {
    position: absolute;
    top: 30%; left: 50%;
    transform: translateX(-50%);
}
.indexLogo {
    width: 100%;
}
.indexBtn {
    position: absolute;
    display: block;
    width: 100%;
    background: #D7E4F9;
    color: #1B439B;
    font-size: 2rem;
    font-weight: 700;
    bottom: 0; left: 0;
    text-align: center;
    padding: 2rem 0;
}
/* header.php */
.allHeader {
    display: flex;
    align-items: center;
    background: #036EB4;
    padding: 1.5rem 2rem;
}
.back {
    background: url(../img/next.png) no-repeat center/contain;
    width: 2rem; height: 2rem;
    transform: rotate(180deg);
    text-align: center;
}
.headerHome {
    display: block;
    text-align: center;
    width: 100%;
}
.headerHome img {
    display: inline-block;
    width: 20%;
}
/* home */
.cont_inner {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, #036EB4 50%, #19B3BD);
    padding-bottom: 15rem;
}
.home_header {
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_header_logo {
    display: block;
    width: 17%;
}
.home_top_text {
    padding: 3rem 2rem;
}
.home_top_text .thin {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
    padding-bottom: 1.5rem;
}
.home_top_text .bold {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.home_top_text .bold span {
    font-size: 2rem;
    font-weight: 700;
    color: #EFE56A;
}
.home_btn_area {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem 3rem;
}
.home_btn {
    width: calc(100% / 2 - 0.5rem);
    padding-bottom: 1rem;
}
.home_btn a{
    display: block;
    width: 100%;
}
.home_btn a img {
    width: 100%;
}
.news_area {
    background: #E7EAF1;
    margin: 0 2rem;
    border-radius: 1rem;
    padding-bottom: 2rem;
}
.top-txt {
    padding: 1.5rem 2rem;
}
.top-txt h2 {
    font-size: 2rem;
    color: #1D2084;
    font-weight: 700;
    border-bottom: 1px solid #8397C7;
    padding-bottom: 1rem;
}
.news-area {
    padding: 0 2rem;
}
.news-link {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.news-link img {
    display: block;
    width: 2rem; height: 2rem;
}
.news-txt {
    display: flex;
    align-items: center;
    padding-left: 1rem;
}
.news-txt h2{
    font-size: 1.4rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 20rem;
}
.news-txt span {
    font-size: 1.4rem;
}
/* jobless */
.jobless_contents {
    margin: 2rem 0;
}
.jobless_title {
    font-size: 2rem;
    font-weight: 700;
    color: #036EB4;
    padding: 3rem 2rem 2rem;
}
.system_contents {padding-bottom: 6rem;}
.jobless_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
}
.jobless_menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100%/4);
    padding: 1.5rem 0.5rem;
    height: 6.4rem;
    background: #036EB4;
    text-align: center;
}
.jobless_menu li.on {
    background-color: #fff;
}
.jobless_menu li a {
    font-size: 1.5rem;
    color: #fff;
}
.jobless_menu li.on a{
    color: #1C449C;
    font-weight: 700;
}



.contents {
    white-space: pre-wrap;
    font-size: 1.7rem;
    line-height: 1.4;
    padding: 0 2rem 6rem;
    width: 100vw;
}
.contents b {
    font-weight: bold;
    font-size: 1.6rem;
    display: block;
    width: fit-content;
    line-height: 1.4;
    background: linear-gradient(transparent 0%, transparent 30%, #fffbd8 30%, #fffbd8 100%);
}
.contents em {
    font-weight: bold;
    font-size: 1.6rem;
    display: block;
    line-height: 1.4;
    width: fit-content;
}


.sub_title {
    font-size: 1.7rem;
    font-weight: 700;
    padding: 2rem;
}
.point1 {
    display: block;
    position: relative;
    padding: 2.5rem 2rem 1.5rem;
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 0 0 3rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 4px;
    border-radius: 1rem;
}
.point1:after {
    display: block;
    position: absolute;
    content: '';
    background: url(../img/arrow1.png) no-repeat center/contain;
    width: 5rem; height: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.point2 {
    background: #D7E4F9;
    font-size: 1.6rem;
    color: #3D628E;
}
.point3 {
    display: block;
    font-weight: 700;
    font-size: 1.8rem;
}
.jobless_contents .contents:nth-child(2) .point1 {
    display: block;
    background: #D7E4F9;
    color: #3A608C;
}
.jobless_contents .contents:nth-child(2) .point1 .point3 {
    color: #3A608C;
}
.jobless_contents .contents:nth-child(3) .point1 {
    background: #B2C9EA;
    color: #fff;
}
.jobless_contents .contents:nth-child(3) .point1 .point3 {
    color: #fff;
}
.jobless_contents .contents:nth-child(3) .point1:after{
    background-image: url(../img/arrow2.png);
}
.jobless_contents .contents:nth-child(4) .point1 {
    background: #6A85AD;
    color: #fff;
}
.jobless_contents .contents:nth-child(4) .point1 .point3 {
    color: #fff;
}
.jobless_contents .contents:nth-child(4) .point1:after {
    background-image: url(../img/arrow3.png);
}
.jobless_contents .contents:last-child .point1 {
    background: #3D628E;
    color: #fff;
}
.jobless_contents .contents:last-child .point1 .point3 {
    color: #fff;
}
.jobless_contents .contents:last-child .point1:after {
    display: none;
}
/* step */
.step_title {
    font-weight: 700;
    font-size: 1.8rem;
    padding: 2rem;
}
.step_header_inner {
    display: flex;
    justify-content: center;
}
.stepHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F4F4;
    border-radius: 2rem;
    width: 70%;
}
.stepHeader div {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border-radius: 2rem;
    color: #F3F4F4;
}
.stepHeader .on {
    background: #2F98CD;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    border-radius: 2rem;
}
.innerWrapper {
    width: 100%;
}
.stepBox {
    width: 100%;
    padding-top: 3rem;
    text-align: center;
}
.stepBox h2 {
    font-size: 1.8rem;
    color: #063293;
    padding-bottom: 1.5rem;
}
.stepBox p {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 3.5rem;
}
.step1Form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 2rem 2rem;
}
.step1Form label {
    font-size: 2rem;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.5px;
    display: block;
    width: 100%;
    padding: 2rem 0;
    border-radius: 1rem;
    margin-right: 1.5rem;
}
.step1Form label:last-child {
    margin-right: 0;
}
input[type="radio"]:checked + label {
    background-color: #EBEEF6;
    color: #0D3795;
}
.s-text {
    display: block;
    padding: 2rem;
    color: #646262;
    font-size: 1.3rem;
}
.Bottom {
    text-align: center;
    padding: 0 2rem;
}
.wrap-btn {
    display: block;
    background: #2F98CD;
    color: #fff;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.7rem;
    border-radius: 1rem;
}
/* result */
.resultBox h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 2rem 0;
}
.resultText {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.5px;
    margin: 0 2rem;
    border-radius: 1.5rem;
    padding: 2.5rem 0;
}
.resultText span {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
}
.result_link {
    display: block;
    text-align: center;
    background: #BF3131;
    color: #fff;
    margin: 2rem 2rem 0;
    padding: 1.5rem;
    font-size: 1.7rem;
    border-radius: 1rem;
}
/* system */
.system_content .point2 {
    display: block;
    background: #D7E4F9;
    margin-bottom: 2rem;
    padding: 2rem;
    line-height: 1.4;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.5px;
    font-size: 1.6rem;
    color: #416591;
}
.system_content .point3 {
    color: #416591;
}

.system_content {
    font-size: 1.7rem;
    line-height: 1.4;
    padding: 0 2rem 2rem;
}





/* footer */
footer {
    position: fixed;
    left: 0; bottom:0;
    background: #FFFFFF;
    width: 100vw;
}
footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
footer ul li:first-child a {
    font-size: 1.7rem;
}
footer ul li:first-child a span {
    font-size: 1.5rem;
    color: #EFE56A;
    font-weight: 700;
}
footer ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100%/4);
    padding: 1.5rem 2rem;
    height: 6.4rem;
}
footer ul li.on {
    background: #036EB4;
}
footer ul li.on a {
    color: #fff;
}
footer ul li a {
    display: block;
    color: #1C1F84;
    font-size: 1.7rem;
    font-weight: 700;
}

/* calc */
.calc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 2rem 3rem;
    background: #dbe3fa;
    border-radius: 1rem;
    padding: 2rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}
.calc .calc_arrow {
    -webkit-filter: grayscale(100%) brightness(0);
    filter: grayscale(100%) brightness(0);
    width: 3%;
}
.calc_cont h4 {
    font-size: 1.4rem;
    padding: 0 2rem;
    color: #666;
}
.calc_contetns {
    padding: 1.5rem 2rem;
}
.salary_text {
    font-size: 1.8rem;
    font-weight: 700;
    background: #dbe3fa;
    border-radius: 1rem;
    padding: 1rem;
    display: inline-block;
}
.input_wrap {
    padding-bottom: 2rem;
}
#input_salary {
    padding: 1.5rem;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    width: 100%;
}
#input_salary::placeholder {
    font-size: 1.6rem;
}
.result_btn {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: center;
    background: #e4ebfd;
    color: #444;
    padding: 1.5rem 0;
    border-radius: .7rem;
}

@media screen and (min-width: 700px) and (max-width: 750px) {
    .home_top_text .thin {
        font-size: 1.8rem;
    }
    .home_top_text .bold {
        font-size: 3rem;
    }
    .home_top_text .bold span {
        font-size: 3rem;
    }
    .news-txt h2 {
        width: 100%;
        font-size: 1.7rem;
    }
    .news-txt span {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 751px) and (max-width: 800px) {
    .home_top_text .thin {
        font-size: 1.8rem;
    }
    .home_top_text .bold {
        font-size: 3rem;
    }
    .home_top_text .bold span {
        font-size: 3rem;
    }
    .news-txt h2 {
        width: 36rem;
        font-size: 1.7rem;
    }
    .news-txt span {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 820px) and (max-width: 1024px) {
    .home_top_text .thin {
        font-size: 1.8rem;
    }
    .home_top_text .bold {
        font-size: 3rem;
    }
    .home_top_text .bold span {
        font-size: 3rem;
    }
    .news-txt h2 {
        width: 38rem;
        font-size: 1.7rem;
    }
    .news-txt span {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 1024px) {
    .home_top_text .thin {
        font-size: 1.8rem;
    }
    .home_top_text .bold {
        font-size: 3rem;
    }
    .home_top_text .bold span {
        font-size: 3rem;
    }
    .news-txt h2 {
        width: 53rem;
        font-size: 1.9rem;
    }
    .news-txt span {
        font-size: 1.8rem;
    }
}