/* 공통 디자인 */
body {
    font-family: 'NanumSquareNeo';
    color: #333;
}
* {
    box-sizing: border-box;
}
:root {
    --swiper-navigation-size: 2.5rem !important;
    --swiper-navigation-top-offset: 50% !important;
    --swiper-navigation-sides-offset: 4px !important;
}
.inner {
    padding-bottom: 9rem;
}

/* index */
#indexLoadImg {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    padding: 0 2rem;
    background: linear-gradient(45deg, #0c99e8 5%, #4615bc 95%);
}
.indexImg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 50%;
    text-align: center;
}
.home_btn {
    position: absolute;
    bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 90%;
    color: #fff;
    background: #043763;
    font-size: 1.7rem;
    padding: 2rem 0;
    border-radius: 1rem;
    text-align: center;
}
/* header */
.all_header {
    background: linear-gradient(90deg, #0c99e8 5%, #4615bc 95%);
    padding: 2rem;
}
.all_header > a {
    display: block;
    text-align: center;
}
.all_header > a img {
    width: 25%;
}
/* home */

.home_top {
    position: relative;
    width: 100%; height: 100%;
    overflow: hidden;
}
.home_header {
    background: linear-gradient(90deg, #0c99e8 5%, #4615bc 95%);
    height: 11rem;
    padding: 1.5rem;
    text-align: center;
}
.home_header > img {
    display: inline-block;
    width: 20%;
}
.header_banner {
    position: absolute;
    top: 20%; left: 1.5rem;
    width: 100%; 
}
.header_banner > img {
    width: 92%;
    box-shadow: rgba(0, 0, 0, 0.13) 7px 7px 9px;
    border-radius: 1rem;
}
.home_btn_mid {
    display: block;
    padding: 0 1.5rem;
    width: 100%;
    margin-top: 9rem;
}
.home_btn_mid > img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 2px;
    border-radius: 1rem;
}
.home_slide_title {
    padding: 4rem 1.5rem 2rem;
    font-size: 2rem;
    font-weight: 800;
}
.home-slide {
    position: relative;
}
.swiper.homeSwiper {
    padding: 0 2rem;
}
.banner > a{
    display: block;
    width: 100%; height: 100%;
}
.banner > a > img {
    width: 100%;
}
.swiper-button-prev {
    background: url(../img/arrow.png) no-repeat center/contain;
    transform: rotate(90deg);
}
.swiper-button-prev::after {
    display: none;
}
.swiper-button-next {
    background: url(../img/arrow.png) no-repeat center/contain;
    transform: rotate(-90deg);
}
.swiper-button-next::after {
    display: none;
}
.home_btm_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}
.home_btm_area li {
    width: calc(100% / 2 - 0.3rem);
    padding-bottom: 0.5rem;
}
.home_btm_area li > a {
    display: block;
    width: 100%;
}
.home_btm_area li > a > img {
    width: 100%;
}

/* info */
.info_area {
    padding: 2rem 0;
}
.info_title {
    padding: 0 1.5rem 2rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2A3A60;
}
.info_inner {
    padding: 2rem 1.5rem;
    border: 1px solid #C4CFE0;
    border-radius: 1rem;
    margin: 0 1.5rem 3rem;
}
.info_cont {
    font-size: 1.5rem;
    color: #2A3A60;
    line-height: 1.4;
    word-break: break-all;
}
.info-slide {
    position: relative;
}
.swiper.infoSwiper {
    /* padding: 0 2rem; */
}
.banner > a{
    display: block;
    width: 100%; height: 100%;
}
.banner > a > img {
    width: 100%;
}
/* qna *//* 
.qna_area .box:first-child {
    margin-top: 2rem;
} */
.box {
    margin: 0 1.5rem;
    background: #F7F9FC;
}
.qna_area .box:first-child .qna_inner {
    border-top: 1px solid #ABB6C1;
}
.qna_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ABB6C1;
    padding: 1.5rem 1rem;
}
.qna {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 800;
    max-width: 30rem;
}
.box.open i {
    background-image: url(../img/qna-up-arrow.png);
}
.qna_inner i {
    display: inline-block;
    background: url(../img/qna-down-arrow.png) no-repeat center/contain;
    width: 1.5rem; height: 1.5rem;
}
.answer {
    display: none;
    color: #7F7577;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #ABB6C1;
}
.box.open .answer {
    display: block;
}
/* news */
.news-cont {
    margin-top: 2rem;
}
.news-area {
    padding: 1rem 1.5rem;
}
.news-link {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
.news-img {
    width: 49%;
    height: 10rem;
}
.news-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
    height: 10rem;
}
.news-txt h2 {
    font-size: 1.5rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.news-txt span {
    font-size: 1.3rem;
    color: #073965;
}
/* search */
.search_inner {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid #BAC1CA;
    margin: 0 1.5rem;
    border-radius: 1.5rem;
}
.search_inner > button {
    margin-right: 0.5rem;
}
.search_inner > button img {
    width: 2rem;
}
#name_search {
    width: 90%;
    font-size: 1.3rem;
    color: #C7C7C7;
    padding: 1rem 0;
}
#name_search:focus {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
}
.area_inner {
    padding: 2rem 1.5rem;
}
#area {
    width: 15rem;
    padding: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 1rem;
    border-color: #BECADD;
    background: url(../img/arrow.png) no-repeat;
    background-position: 90% 50%;
    background-size: 1.5rem;
}
.result {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}
.result_inner {
    display: flex;
    justify-content: center;
    background: #F5F7FA;
    border-radius: 1rem;
    border: 1px solid #C2CDDF;
    width: calc(100% / 2 - 0.5rem);
    padding: 3rem 1.5rem;
    margin-bottom: 1rem;
}
.info {
    background: #394151;
    color: #fff;
    font-size: 1.4rem;
    display: inline-block;
    border-radius: 30rem;
    padding: .5rem 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.name {
    font-size: 1.6rem;
    line-height: 1.3;
    max-width: 15.5rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.pagination .page {
    font-size: 1.8rem;
    color: #8B8B8B;
}
.pagination .page.on {
    color: #333;
}
.pagination a img {
    width: .7rem;
}
.page-prev {
    transform: rotate(180deg);
}
.page-next {
    margin-top: .3rem;
}
/* search_sub */
.tabs {
    display: flex;
    border-bottom: 1px solid #909EB0;
    margin-top: 1.5rem;
    justify-content: space-between;
}
.tab {
    display: inline-block;
    padding: 0 1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #909090;
}
.tabs .tab:first-child {
    padding-left: 1.5rem;
}
.tab.on {
    color: #0349B2;
    font-weight: 800;
    border-bottom: 2px solid #8695A9;
}
.partners {
    background: #F7F9FC;
    padding: 2.5rem 1.5rem 0;
}
.partner > h1 {
    font-size: 1.6rem;
    color: #0148B1;
    font-weight: 800;
    padding-bottom: 1rem;
}
.partner > pre {
    font-size: 1.4rem;
    color: #5d6c83;
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.3;
}
.inner .partners .partner {
    display: none;
}
.inner .partners .partner.on {
    display: block;
}
.search_title {
    line-height: 1.3;
}
.direct {
    display: block;
    background: #043763;
    color: #fff;
    padding: 1.8rem 0;
    text-align: center;
    font-size: 1.6rem;
    border-radius: 1rem;
}








/* footer */
footer {
    width: 100%;
    position: fixed;
    left: 0; bottom:0;
    background: #FFFFFF;
    z-index: 999;
}
footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
    border-top: 1px solid #BECADD;
    background: #fff;
}
footer ul li {
    align-items: center;
    width: calc(100%/4);
    height: 100%;
    padding:0 2rem;
    border-top: 3px solid #fff;
}
footer ul li.on {
    border-color: #8997AB;
}
footer ul li.on span {
    color: #8695A9;
}
footer ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
footer ul li a img {
    width: 50%;
}
footer ul li span {
    display: block;
    color: #B3B3B3;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.7rem;
    height: 1.5rem;
}
@media screen and (min-width: 700px) and (max-width: 750px) {
    .header_banner {
        top: 13%;
    }
    .home_btn_mid {
        margin-top: 22rem;
    }
    footer ul {
        height: 9rem;
    }
    footer ul li a img {
        width: 30%;
    }
}
@media screen and (min-width: 760px) and (max-width: 830px) {
    .header_banner {
        top: 15%;
    }
    .home_btn_mid {
        margin-top: 15rem;
    }
    footer ul {
        height: 8rem;
    }
    footer ul li a img {
        width: 30%;
    }
}
@media screen and (min-width: 831px) and (max-width: 1024px) {
    .header_banner {
        top: 12%;
    }
    .home_btn_mid {
        margin-top: 18rem;
    }
    footer ul {
        height: 8rem;
    }
    footer ul li a img {
        width: 30%;
    }
}