/* 공통 디자인 */
body {
    font-family: 'NanumSquareNeo';
    color: #333;
}
* {
    box-sizing: border-box;
}
main {
    padding: 8rem 1.5rem 2rem;
    background: #E1F1F2;
    min-height: 100vh;
}
main.search_sub {
    padding: 8rem 1.5rem 16rem;
}
main.home {
    background: #fff;
    padding: 6rem 0 2rem;
}
.main_tit {
    font-size: 2.2rem;
    font-weight: 800;
    padding-bottom: 2rem;
}
/* index */

#indexLoadImg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #fff;
}
.indexLogo {
    position: absolute;
    display: block;
    left: 50%; top: 30%;
    transform: translateX(-50%);
    width: 27rem;
}
.indexImg {
    position: absolute;
    display: block;
    left: 50%; bottom: 7rem;
    transform: translateX(-50%);
    width: 90%;
}

/* header */
header {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    /* box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px; */
    border-bottom: .1rem solid #CEE3E4;
    background: #fff;
}
header.on {
    background: #98D3D2;
    border-bottom: none;
}
header .logo {
    display: block;
    height: 2.5rem;
}
header .logo img {
    display: block;
    height: 100%;
}
header .menu_ico {
    display: block;
    position: absolute;
    right: 1.5rem; top: 50%;
    transform: translateY(-50%);
    width: 2.2rem; height: 2.2rem;
}
header .menu_ico img {
    width: 100%; height: 100%;
}


/* home */
.home_img {
    background-color: #98D3D2;
    height: 18rem;
    background-image: url(../img/main-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
}
.home_inner {
    padding: 0 1.5rem;
}
.main_tit.home {
    font-size: 1.8rem;
    padding: 2rem 0 1.5rem;
}
.home_box {
    padding: 1.5rem;
    border: .1rem solid #ccc;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
}
.home_box.home_b {
    border-color: #9CBDE4;
}
.home_box.home_y {
    border-color: #F6D691;
}
.main_tit.home.back {
    padding: 0;
    display: inline-block;
}
.home_b .back {
    background: linear-gradient(transparent 0%, transparent 80%, #D2E2F4 80%, #D2E2F4 100%);
}
.home_y .back {
    background: linear-gradient(transparent 0%, transparent 80%, #FBEED0 80%, #FBEED0 100%);
}
.home_box p {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #434343;
    padding: 1.5rem 0;
    letter-spacing: -.1rem;
    word-break: break-all;
}
.home_box a {
    display: block;
    text-align: right;
    padding: .5rem 0 1rem;
}
.home_box a span {
    font-size: 1.6rem;
    font-weight: 600;
    padding: .7rem 2.5rem;
    border-radius: 2rem;
}
.home_box.home_b a span {
    background: #A7C4E7;
}
.home_box.home_y a span {
    background: #F7DB9D;
}
.homeSwiper {
    padding-bottom: 3rem !important;
}
.homeSlide {
    display: block;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 1rem;
    border-radius: 1.5rem;
}
.homeSlide .news-img {
    width: 100%; height: 8rem;
    display: block;
    object-fit: cover;
    margin-bottom: 1rem;
}
.homeSlide h2 {
    font-size: 1.6rem;
    font-weight: 600;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}
.homeSlide span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #737C7B;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.main_tit.qna {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_tit.qna a {
    font-size: 1.7rem;
    background: #D0E2E1;
    border-radius: 2rem;
    font-weight: 600;
    padding: .7rem 1.5rem;
}
.home_box.qna {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-all;
    letter-spacing: -.1rem;
}
.home_select {
    margin-bottom: 4rem;
}




/* search */
.search_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
#nameInput {
    width: 80%;
    border: .2rem solid #343536;
    border-radius: 2rem;
    padding: .7rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}
#nameInput::placeholder {
    font-size: 1.6rem;
    font-weight: 600;
}
#searchBtn {
    width: 3.5rem; height: 3.5rem;
    display: block;
    background: url(../img/btn-search.png) no-repeat center/contain;
}
.select_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .7rem;
    margin-bottom: 3rem;
}
.select_wrap .flex {
    display: block;
}
.select_wrap .flex_a {
    width: 25%;
}
.select_wrap .flex_b {
    width: 40%;
}
.select_wrap .flex_c {
    width: 30%;
}
.select_wrap select {
    border: .2rem solid #343536;
    border-radius: 2rem;
    padding: .7rem 1.1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -.1rem;
    background-image: url(../img/search-arrow.png);
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-size: 1.3rem;
}
.select_wrap select option {
    font-size: 1.6rem;
}
.select_wrap button {
    background: #393A3B;
    border-radius: 2rem;
    padding: .9rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}
.loading {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    padding: 3rem 0;
    line-height: 1.3;
}
.all_count {
    font-size: 0;
    color: #E1F1F2;
}
.result_cont {
    position: relative;
    border: .1rem solid #DADCDC;
    border-radius: 1.5rem;
    background: #fff;
    padding: 1.5rem 1.5rem 5rem 1.5rem;
    margin-bottom: 1.5rem;
}
.result_tit {
    font-size: 1.7rem;
    font-weight: 800;
    padding-bottom: 1.5rem;
    line-height: 1.3;
    word-break: break-all;
}
.result_type {
    padding-bottom: 1rem;
}
.result_cont .gr {
    font-size: 1.6rem;
    font-weight: 600;
    color: #424242;
}
.result_gr {
    position: absolute;
    display: block;
    width: 30%;
    padding: .7rem 1.5rem;
    background: #DBDBDB;
    border-radius: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    right: 1.5rem; bottom: 1.5rem;
    text-align: center;
}
#pagination {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#pagination .page_link {
    font-size: 1.7rem;
    font-weight: 600;
}
#pagination .page_link.active {
    font-size: 2.3rem;
    color: #194E77;
    font-weight: 800
}
.next {
    background: url(../img/right3.png) no-repeat center/contain;
    width: 1.5rem; height: 1.5rem;
    display: block;
}
.prev {
    background: url(../img/right3.png) no-repeat center/contain;
    width: 1.5rem; height: 1.5rem;
    display: block;
    transform: rotate(180deg);
}
.none {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    padding: 3rem 0;
    line-height: 1.4;
}

/* search_sub */
.main_tit.sub {
    line-height: 1.3;
}
.sub_cont {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.sub_cont li {
    font-size: 1.6rem;
    color: #3B556C;
    border: .2rem solid #3B556C;
    border-radius: 2rem;
    padding: .7rem 1.5rem;
    background: #fff;
    font-weight: 800;
}
.w_box {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: .1rem solid #D8D7D7;
    margin-bottom: 1.5rem;
}
.s_cont {
    font-size: 1.6rem;
    font-weight: 500;
    color: #656568;
    line-height: 1.3;
    padding-bottom: 1.5rem;
    word-break: break-all;
}
.w_box .s_cont:last-child {
    padding-bottom: 0;
}
footer{
    position: fixed;
    left: 0; bottom: 0;
    width: 100%; height: 13rem;
    background: #E1F1F2;
}
.footer_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 100%;
}
.footer_area li {
    width: calc(100% / 2 - .7rem);
}
.footer_area li a {
    display: block;
    width: 100%; height: 100%;
    padding: 2rem 0;
    border-radius: 3.5rem;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.footer_area li .more {
    background: #194E77;
}
.footer_area li .up {
    background: #858A8D;
}




/* menu */
.menu_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.menu_area li {
    width: calc(100% / 2 - .6rem);
    margin-bottom: 1.3rem;
}
.menu_area li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 3.5px;
    height: 8.7rem;
}
.menu_area li a span {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}
/* .menu_area li a img {
    display: block;
    height: 3rem;
} */
.menu_area li a .menu {
    display: block;
    width: 3.5rem; height: 3.5rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.menu_area li a .menu.a {
    background-image: url(../img/btn-icon-1.png);
}
.menu_area li a .menu.b {
    background-image: url(../img/btn-icon-2.png);
}
.menu_area li a .menu.c {
    background-image: url(../img/btn-icon-3.png);
}
.menu_area li a .menu.d {
    background-image: url(../img/btn-icon-4.png);
}
.menu_area li a .menu.e {
    background-image: url(../img/btn-icon-5.png);
}
.menu_area li a .menu.f {
    background-image: url(../img/btn-icon-6.png);
}

/* sub1,sub2 */
.subSwiper {
    margin-bottom: 2.5rem;
}
.subSwiper .subSlide .swiper-slide {
    display: inline-block;
    font-size: 1.8rem;
    border: .1rem solid #D1D7D7;
    color: #B4B6B6;
    padding: .7rem 2rem;
    border-radius: 2rem;
    text-align: center;
    background-color: #fff;
    width: auto !important;
}
.subSwiper .subSlide .swiper-slide.on {
    border: .2rem solid #344F67;
    color: #3B556C;
    font-weight: 800;
}
.sub_box {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    border: .1rem solid #D1D7D7;
}
.sub_box.sub2 {
    margin-bottom: 1.5rem;
}
.sub_title {
    background: linear-gradient(transparent 0%, transparent 80%, #BBE1E1 80%, #BBE1E1 100%);
    font-size: 1.9rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 2rem;
}
.sub_cont {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #737375;
}
.sub_cont.sub_page {
    margin-bottom: 0;
}
.sub_link {
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #194E77;
    padding: 1.5rem 0;
    border-radius: 2.5rem;
    gap: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 1.95px 1.95px 2.6px;
}
.sub_link span {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}
.sub_link .ico {
    display: block;
    width: 2.5rem; height: 2.5rem;
    background: url(../img/btn-arrow.png) no-repeat center/contain;
}


/* news */
.news_box {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: .1rem solid #DCDBDB;
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 14rem;
    gap: .5rem;
    margin-bottom: 1.5rem;
}
.news_box img {
    display: block;
    width: 48%;
    height: 100%;
    object-fit: cover;
}
.right_cont {
    width: 49%;
    height: 100%;
}
.right_cont .news_title {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.right_cont .news_cont {
    font-size: 1.6rem;
    line-height: 1.4;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #5F5F61;
}
.page_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 3rem;
}
.page_inner a {
    font-size: 1.8rem;
    font-weight: 600;
}
.page_inner a.on {
    font-size: 2.4rem;
    font-weight: 800;
    color: #134974;
}
.qna_box {
    background: #fff;
    border: .1rem solid #D1D7D7;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}
.question_inner {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.qna_box.on .question_inner {
    border-bottom: .1rem solid #D1D7D7;
}
.question {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 27rem;
    word-break: break-all;
    letter-spacing: -.1rem;
}
.question_inner .ico {
    display: block;
    width: 1.8rem; height: 1.8rem;
    background: url(../img/qna-arrow-down.png) no-repeat center/contain;
}
.qna_box.on .question_inner .ico {
    background-image: url(../img/qna-arrow-up.png);
}
.answer {
    display: none;
    padding: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #646466;
}
.qna_box.on .answer {
    display: block;
}
