/* 공통 디자인 */
body {
    font-family: 'NanumSquareNeo';
    color: #333;
}
* {
    box-sizing: border-box;
}
main {
    padding: 8rem 1.5rem 2rem;
}
.no-scroll { overflow: hidden; height: 100%; }
.main_tit {
    font-size: 2.2rem;
    font-weight: 800;
    padding-bottom: 2rem;
}
/* index */

#indexLoadImg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #3545F0;
}
.indexLogo {
    position: absolute;
    left: 50%; top: 30%;
    transform: translateX(-50%);
    width: 18.8rem;
}
.indexImg {
    position: absolute;
    right: 1.5rem; bottom: 3.5rem;
    width: 22.5rem;
}

/* header */
.header_main {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: .1rem solid #C2C2C2;
    z-index: 995;
    background: #fff;
}
.header_main a {
    display: block;
    height: 2.5rem;
}
.header_main a img {
    display: block;
    height: 100%;
}
.header_main .menu_ico {
    display: block;
    width: 2rem; height: 2rem;
    background: url(../img/menu-btn.png) no-repeat center/contain;
}
.back {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 996;
    display: none;
}
.back.open {
    display: block;
}
nav {
    position: fixed;
    right: -56%; top: 0;
    width: 55%; height: 100vh;
    background: #fff;
    z-index: 999;
    transition: .3s;
}
nav.open {
    right: 0;
}
.nav_logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.nav_logo .close_ico {
    display: block;
    width: 2rem; height: 2rem;
    background: url(../img/x-btn.png) no-repeat center/contain;
}
.nav_menu a {
    display: block;
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}
.nav_menu li.on a {
    font-weight: 800;
    background: #C2C7FA;
}



/* home */
.blue_back {
    background: #3545F0;
    padding: 0 1.5rem;
    height: 21rem;
    width: 100%;
}
.blue_back .home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6rem; width: 100%;
}
.blue_back .home img {
    display: block;
    height: 2rem;
}
.home_tit {
    font-size: 2.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #fff;
    margin: 2rem 0 1.5rem;
}
.home_tit .ico {
    display: block;
    width: 2.3rem; height: 2.3rem;
    background: url(../img/main-icon.png) no-repeat center/contain;
}
.w_box {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin: -9.5rem 1.5rem 0;
}
.w_box p {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
    word-break: break-all;
}
.w_box p .green {
    font-size: 2rem;
    font-weight: 800;
    color: #6EB202;
}
.padding {
    padding: 0 1.5rem;
}
.sub_tit {
    margin: 3.5rem 0 1rem;
    font-size: 1.8rem;
    font-weight: 800;
}


/* qna */
.qna {
    margin-bottom: 1.5rem;
    background: #C9DC45;
    border-radius: 1rem;
}
.question_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}
.question_box .ques {
    font-size: 1.6rem;
    font-weight: 600;
    max-width: 27rem;
    line-height: 1.3;
}
.question_box .arrow_ico {
    display: block;
    width: 1.8rem; height: 1.8rem;
    background: url(../img/qna-arrow-up.png) no-repeat center/contain;
}
.qna.on .question_box .arrow_ico {
    background-image: url(../img/qna-arrow-down.png);
}
.ans {
    display: none;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 1.5rem;
    background: #fff;
    border: .1rem solid #C6C6C7;
    word-break: break-all;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.qna.on .ans {
    display: block;
}
.pages {
    padding: 3rem 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.pages a {
    font-size: 1.7rem;
    font-weight: 500;
}
.pages .on {
    font-weight: 800;
    font-size: 1.8rem;
    color: #3444F0;
}

/* news */
.news_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: .1rem solid #C6C6C7;
    border-radius: 1rem;
    height: 14rem;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.news_box img {
    display: block;
    height: 100%;
    width: 45%;
    object-fit: cover;
}
.right_cont {
    width: 55%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_title {
    font-size: 1.6rem;
    font-weight: 800;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 1rem;
}
.news_cont {
    font-size: 1.6rem;
    font-weight: 500;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.3;
}
.day {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 500;
    color: #717175;
}


/* sub */
.border_tit {
    width: fit-content;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(transparent 0%, transparent 65%, #C9DC45 65%, #C9DC45 100%);
    margin-bottom: 2rem;
}
.sub_img {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}
.sub_cont {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 5rem;
}
.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}
.tabs li {
    width: calc(100% / 3);
}
.tabs li a {
    display: block;
    text-align: center;
    border: .1rem solid #9A9C9E;
    color: #96989A;
    border-radius: 2rem;
    padding: .7rem 1.5rem;
    font-size: 1.7rem;
    font-weight: 600;
}
.tabs li.on a {
    background: #3545F0;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.box_cont_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.box_cont_area a {
    display: block;
    width: calc(50% - 1rem);
    text-align: center;
    border: .1rem solid #3545F0;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 1rem;
    box-shadow: #3545F0 3px 3px 0;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}
.border_tit.margin {
    margin: 3rem 0 2rem;
}
.tab_cont {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 4rem;
}
.long_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: .1rem solid #999A9C;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 800;
}
.long_box span {
    display: block;
    background: #212426;
    border-radius: 2rem;
    padding: .7rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #fff;
}
.search_box {
    border: .2rem solid #212426;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}
#searchForm {
    margin-bottom: 3rem;
}
#queryInput {
    font-size: 1.5rem;
    font-weight: 500;
    padding: .7rem 0;
    letter-spacing: -.1rem;
    width: 80%;
}
#searchBtn {
    display: block;
    background: url(../img/search.png) no-repeat center/contain;
    width: 1.7rem; height: 1.7rem;
}
.loading {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    padding: 2rem 0;
}
.result_item {
    border: .1rem solid #C8C8C9;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.result_item .name {
    font-size: 1.8rem;
    font-weight: 800;
    padding-bottom: 1.5rem;
}
.result_item p {
    font-size: 1.6rem;
    padding-bottom: .5rem;
    line-height: 1.3;
}
.result_item .flex {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.result_item .flex .copy {
    display: block;
    width: 1.7rem; height: 1.7rem;
    background: url(../img/copy.png) no-repeat center/contain;
}
#pagination {
    padding: 3rem 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#pagination .page {
    font-size: 1.7rem;
    font-weight: 500;
}
#pagination .page.active {
    font-weight: 800;
    font-size: 1.8rem;
    color: #3444F0;
}
.none {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    padding: 2rem 0;
}
.homeSwiper, .homeSwiper2 {
    height: 10rem;
}
.homeSwiper2 {
    /* margin-bottom: 5rem; */
}
.list_slide {
    box-shadow: #3545F0 5px 5px 0px;
    border: .1rem solid #3545F0;
}
.benefit_slide {
    box-shadow: #C9DC45 5px 5px 0px;
    border: .1rem solid #C9DC45;
}
.banner {
    display: flex !important;
    justify-content: space-between !important;
    padding: 1.5rem 0 0 1.5rem;
    height: 9rem !important;
    border-radius: 1rem;
}
.banner span {
    display: flex;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.3;
    gap: .5rem;
}
.banner span .arrow {
    display: block;
    width: 2.2rem; height: 2.2rem;
    background: url(../img/btn-arrow.png) no-repeat center/contain;
}
.banner.a {
    background-image: url(../img/btn-icon-1.png);
    background-repeat: no-repeat;
    background-position: 90% 110%;
    background-size: 6rem;
}
.banner.b {
    background-image: url(../img/btn-icon-2.png);
    background-repeat: no-repeat;
    background-position: 90% 110%;
    background-size: 4rem;
}
.banner.c {
    background-image: url(../img/btn-icon-3.png);
    background-repeat: no-repeat;
    background-position: 100% 60%;
    background-size: 9rem;
}
.banner.d {
    background-image: url(../img/btn-icon-5.png);
    background-repeat: no-repeat;
    background-position: 100% 60%;
    background-size: 6.5rem;
}
.banner.e {
    background-image: url(../img/btn-icon-4.png);
    background-repeat: no-repeat;
    background-position: 100% 60%;
    background-size: 6.5rem;
}
.sub_tit.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub_tit.flex .more {
    background: #212426;
    border-radius: 2rem;
    padding: .7rem 1.5rem;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
}
.home_qna {
    border: .1rem solid #C6C6C7;
    border-radius: 1rem;
}
.home_qna li {
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom: .1rem solid #C6C6C7;
}
.home_qna li:last-child {
    border-bottom: none;
}
.homeSwiper3 {
    margin-bottom: 3rem;
}
.swiper-slide.news_box .news_img {
    width: 100%;
    height: 10rem;
    margin-bottom: 1rem;
}













@media screen and (min-width: 760px) and (max-width: 1024px) {
    .blue_back { 
        height: 19rem;
    }
    .w_box {
        margin: -7.5rem 1.5rem 0;
    }
}