@charset "UTF-8";

/* 공통 */
html {
    scroll-behavior: smooth;
}
body,
p,
a,
li,
span{
    font-family: var(--font-primary);
}
.c_blue{color: var(--mid-blue);}

/* 헤더 header */
header{
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 85px;
    background-color: #d4ed8e;
    border-bottom: 1px solid #cccccc;
    box-sizing: border-box;
}
.fixed_banner{
    height: 100%;
}
.fixed_banner div{
    height: 100%;
}
.fixed_banner ul {
    height: 100%;
}
.fixed_banner ul li{
    display: flex;
    align-items: center;
}
.fixed_banner ul li p{
    background: url(../img/fixed_banner_icon.png) no-repeat left center;
    font-size: 30px;
    color: #4b4b4b;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.fixed_banner ul li p span{
    padding-left: 70px;
    font-weight: 600;
}
.fixed_banner ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    box-sizing: border-box;
    border-radius: 50px;
    color: #fff;
    background-color: var(--mid-blue);
    font-size: 22px;
    font-family: var(--font-primary);
    font-weight: 500;
}
header .mobile_hd{
    display: none;
    height: 100%;
}
header .mobile_hd div a{
    width: 50%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    border-top: 1px solid #cccccc;
    box-sizing: border-box;
}
header .mobile_hd div a:nth-child(1){
    border-right: 1px solid #cccccc;;
}

/* 메인 배너 슬라이드 main banner slide */
.main{
    padding: 0;
}
.main .main_visual .swiper .swiper-slide .visual_wrap{
    width: 100%;
    max-height: 960px;
    height: auto;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}
.main .main_visual .swiper .swiper-slide .visual_wrap img{
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 960px;
}
.main .main_visual .swiper .swiper-slide .visual_wrap .visual_text{
    color: #ffffff;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main .main_visual .swiper .swiper-slide .visual_wrap .visual_text p{
    color: #fff;
}
.main .main_visual .swiper .swiper-slide .visual_wrap .visual_text .title{
    width: 70%;
    font-size: 50px;
    line-height: 55px;
    font-weight: 500;
    padding-bottom: 40px;
}
.main .main_visual .swiper .swiper-slide .visual_wrap .visual_text .sub{
    width: 60%;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
}
.main_visual .swiper-pagination{
    bottom: 40px;
}
.main_visual .swiper-pagination .swiper-pagination-bullet{
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.main_visual .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px;
}
.main_visual .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--mid-blue);
}

/* 섹션 section */
section{
    padding: 95px 0 105px;
    box-sizing: border-box;
}
.sec_text{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec_text .title{
    color: #2e2e2e;
    padding-bottom: 30px;
    line-height: 2.7rem;
}
.sec_text .sub_bot{
    color: #4b4b4b;
    padding-bottom: 65px;
    font-weight: 500;
    line-height: 1.5rem;
}
.sub_top{
    color: #2e2e2e;
    font-weight: 600;
    padding-bottom: 10px;
}
.sec_content img{
    width: 100%;
    object-fit: contain;
}
.sec_content .img_pc{display: flex;}
.sec_content .img_mo{display: none;}

.bg_gradi{
    background: linear-gradient(#ffffff 30%, #f2f4f7 70%);
}
.bg{
    background: #f2f4f7;
}
.sec04 .sec_text .title{
    padding-bottom: 50px;
}
.sec04_slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1320px;
    margin: auto;
}
.slide-item {
    width: 100%;
}
.sec04_slide .slick-dots{
    bottom: -40px;
}
.sec04_slide .slick-dots li{
    width: 46px;
    height: 38px;
}
.sec04_slide .slick-dots li button{
    font-size: 16px;
    color: #4b4b4b;
    background-color: #ffffff;
    width: 46px;
    height: 38px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 500;
}
.sec04_slide .slick-dots li.slick-active button{
    background-color: var(--mid-blue);
    color: #fff;
}
.sec04_slide .slick-dots li button:before{
    display: none;
}
.sec06 .sec_text .sub_bot{
    padding-bottom: 55px;
}
.sec06 .sec_content {
    flex-flow: row-reverse;
    justify-content: space-between;
}
.sec06 .sec_content .tab{
    margin-bottom: 15px;
}
.sec06 .sec_content .tab ul{
    gap: 15px;
}
.sec06 .sec_content .tab ul li{
    width: 80px;
    height: 45px;
    border-radius: 50px;
    overflow: hidden;
}
.sec06 .sec_content .tab ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #4b4b4b;
    background-color: #f2f4f7;
}
.sec06 .sec_content .tab ul li a.active{
    color: #fff;
    background-color: var(--mid-blue);
}
.sec06 .sec_content .map{
    width: 480px;
    height: 655px;
    margin-top: -5vw;
}
.sec06 .sec_content .member{
    max-width: 800px;
    width: 100%;
    min-width: 365px;
}
.sec07 .sec_text .title{
    padding-bottom: 80px;
}
.news_main{
    position: relative;
    margin-bottom: 53px;
}
.news_main .text_con{
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    font-family: var(--font-primary);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.news_main .text_con p{color: #fff;}
.news_main .text_con .tit{
    font-size: 28px;
    font-weight: 600;
}
.news_main .text_con .sub{
    font-size: 20px;
    line-height: 28px;
    padding: 20px 0 65px;
}
.news_main .text_con .sub span{
    font-size: 16px;
    line-height: 28px;
    display: block;
    color: #fff;
}
.news_main .text_con a{
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 10px 15px;
}
.news ul{
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.news ul li{
    width: calc(100% / 3 - 22px);
}
.news ul li a{
    font-family: var(--font-primary);
}
.news ul li .title{
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 15px 0 25px;
    height: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news ul li .date{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}
.news ul li .date span{
    width: 72px;
    height: 27px;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #f5e9ff;
    background-color: #926af0;
}
.news ul li .date p{
    font-size: 15px;
    font-weight: 500;
    color: #4b4b4b;
}

.section_bottom{
    background-color: #f2f4f7;
}
#counsel{
    width: 460px;
    margin: 0 80px 0 auto;
    padding: 70px 0 95px;
}
#counsel .txt_box{
    font-family: var(--font-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 55px;
}
#counsel .txt_box .tit{
    font-size: 38px;
    color: #2e2e2e;
    font-weight: 600;
}
#counsel .txt_box .con{
    font-size: 18px;
    line-height: 26px;
    color: #4b4b4b;
    font-weight: 500;
}
#counsel ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#counsel ul li div{
    display: flex;
    flex-direction: column;
    gap: 9px;
}
#counsel ul li div label{
    font-size: 16px;
    font-weight: 600;
    color: #2e2e2e;
    font-family: var(--font-primary);
}
#counsel ul li div input,
#counsel ul li div select{
    height: 48px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 0px 20px;
    font-family: var(--font-primary);
}
#counsel ul li div select{
    color: #858585;
}
#counsel ul li div input::placeholder,
#counsel ul li div select::placeholder{
    font-size: 16px;
    font-weight: 400;
    color: #858585;
}
#counsel ul li div select{
    appearance: none;
    background: url(../img/ico_arrow_down.png) no-repeat right 30px center;
    background-size: 18px;
    background-color: #fff;
}
#counsel ul li div.sms_sender_chk{
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
#counsel ul li div.sms_sender_chk,
#counsel ul li div.sms_sender_chk a{
    font-size: 14px;
    color: #606060;
    font-weight: 500;
    font-family: var(--font-primary);
}
#counsel ul li div.sms_sender_chk label{
    display: none;
}
#counsel ul li div.sms_sender_chk input{
    border-color: #606060;
    border-radius: 0;
    height: 16px;
}
.sms_btn{
    width: 100%;
    height: 38px;
    margin-top: 35px;
}
.sms_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: var(--mid-blue);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
}
#counsel .bar{
    width: 100%;
    height: 2px;
    background-color: #dedfe0;
    margin: 19px 0;
}
#counsel .call{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-primary);
}
#counsel .call span{
    font-size: 16px;
    font-weight: 500;
    color: #4b4b4b;
}
#counsel .call p{
    font-size: 26px;
    font-weight: 600;
    color: #2e2e2e;
}
.section_bottom .site_map{
    width: 1070px;
    height: auto;
}
.section_bottom .site_map .map_kakao{
    width: 100%;
    max-width: 1070px;
    height: 100%;
    max-height: 945px;
    padding-bottom: 0;
    position: initial;
    display: inline-block;
}
.section_bottom .site_map .map_kakao .wrap_map{
    height: 100%;
}
.section_bottom .site_map .root_daum_roughmap_landing{
    height: 100% !important;
}

/* 푸터 footer */
footer{
    background-color: #323232;
}
.foot{
    gap: 90px;
    padding: 50px 0 60px;
    box-sizing: border-box;
}
.foot p,
.foot a,
.foot span,
.foot ul li{
    color: #a5a5a5;
}
.foot .left{
    height: 190px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}
.foot .left .name{
    margin-top: auto;
}
.foot .left ul{
    margin: 5px 0 15px;
    flex-wrap: wrap;
}
.foot .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.foot .hours .title{
    font-size: 22px;
    color: #d8d8d8;
    font-weight: 600;
}
.foot .hours .sub{
    margin-top: 20px;
    gap: 25px;
    flex-wrap: wrap;
}
.foot .hours .sub li{
    font-size: 20px;
    color: #d8d8d8;
    font-weight: 600;
}
.foot .hours .sub li:nth-child(2), 
.foot .hours .sub li:nth-child(5){
    font-weight: 400;
}
.foot .top{
    font-size: 16px;
}
.foot .goTo{
    font-size: 16px;
}
.foot .goTo ul{
    gap: 20px;
}

.foot_mo{
    display: none;
    flex-direction: column;
}
@media only screen and (max-width: 1660px) {
    #counsel{margin: 0 80px 0 5%;}
}
@media only screen and (max-width: 1280px) {
    /* 푸터 footer */
    .foot .hours .sub li{
        flex-basis: calc(30% - 12.5px);
    }
    .foot .hours .sub li:nth-child(2), 
    .foot .hours .sub li:nth-child(5){
        flex-basis: calc(50% - 12.5px);
    }
    .foot .hours .sub li:has(.bar){
        display: none;
    }
}
@media only screen and (max-width: 1080px) {
    /* 헤더 header */
    header{
        height: 65px;
    }
    .fixed_banner ul li p{
        font-size: 22px;
    }
    .fixed_banner ul li a{
        font-size: 20px;
        padding: 11px 16px;
    }

    /* 섹션 section */
    section{
        padding: 60px 0 70px;
    }
    .sec_text .sub_bot{
        padding-bottom: 45px;
        line-height: 24px;
    }
    .sec06 .sec_text .sub_bot{
        padding-bottom: 40px;
    }
    .sec05 .sec_content.mo_none img{
        content: url(../img/sec05_pc.png);
    }
    .sec06 .sec_content .tab{
        margin-bottom: 12px;
    }
    .sec06 .sec_content .tab ul{
        gap: 12px;
    }
    .sec06 .sec_content .tab ul li a{
        font-size: 16px;
    }
    .sec06 .sec_content{
        align-items: flex-end;
    }
    .sec06 .sec_content .member{
        max-width: 635px;
    }
    .sec06 .sec_content .map{
        width: 370px;
        height: auto;
        margin-top: 0;
        margin-left: 5vw;
    }
    .sec07 .sec_text .title{
        padding-bottom: 60px;
    }
    .news_main{
        margin-bottom: 40px;
    }
    .news_main .text_con .tit{
        font-size: 22px;
    }
    .news_main .text_con .sub{
        font-size: 16px;
        line-height: 22px;
        padding: 15px 0 50px;
    }
    .news_main .text_con .sub span{
        font-size: 12px;
        line-height: 22px;
    }
    .news_main .text_con a{
        font-size: 16px;
    }
    .news ul{
        gap: 24px;
    }
    .news ul li {
        width: calc(100% / 3 - 16px);
    }
    .news ul li .title{
        height: 52px;
        font-size: 18px;
        line-height: 26px;
        margin: 12px 0 20px;
    }
    .news ul li .date{
        gap: 8px;
        padding-bottom: 14px
    }
    .news ul li .date span{
        font-size: 12px;
        width: 54px;
        height: 20px;
    }
    .news ul li .date p{
        font-size: 14px;
    }
    #counsel {
        width: 345px;
        margin: 0 116px 0 5%;
    }

    /* 메인 배너 슬라이드 main banner slide */
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text{
        text-align: center;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text p{
        width: 95% !important;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text .title{
        font-size: 38px;
        line-height: 45px;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text .sub{
        font-size: 25px;
        line-height: 35px;
    }

    /* 푸터 footer */
    .foot{
        gap: 70px;
        padding: 40px 0 40px;
    }
    .foot .left{
        height: 155px;
        font-size: 12px;
    }
    .foot .hours .title{
        font-size: 18px;
    }
    .foot .hours .sub{
        font-size: 16px;
        gap: 20px;
    }
    .foot .top{
        font-size: 12px;
    }
    .foot .goTo{
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    /* 헤더 header */
    header .fixed_banner{
        display: none;
    }
    header .mobile_hd{
        display: block;
    }
    header{
        background-color: var(--mid-blue);
        top: inherit;
        bottom: 0;
    }
    /* 메인 배너 슬라이드 main banner slide */
    .main .main_visual .swiper .swiper-slide .visual_wrap{
        max-height: 640px;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap img{
        height: 640px;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text{
        text-align: center;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text .title{
        font-size: 27px;
        line-height: 40px;
    }
    .main .main_visual .swiper .swiper-slide .visual_wrap .visual_text .sub{
        font-size: 18px;
        line-height: 25px;
    }

    /* 섹션 section */
    section{
        padding: 60px 0;
    }
    .sec_content .img_pc{display: none;}
    .sec_content .img_mo{display: flex;}
    .sec_text{
        text-align: center;
    }

    .sec04_slide {
        display: block;
    }
    .slide-item {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
    .sub_top{
        padding-bottom: 5px;
    }
    .sub_top.f_22{
        font-size: 18px;
    }
    .sec05 .sec_text .title{
        letter-spacing: -1.5px;
    }
    .sec06 .sec_text .sub_bot{
        padding-bottom: 35px;
    }
    .sec06 .sec_text{
        text-align: center !important; 
        align-items: center !important;
    }
    .sec06 .sec_content {
        flex-flow: column;
        align-items: center;
    }
    .sec06 .sec_content .tab{
        margin-bottom: 8px;
    }
    .sec06 .sec_content .tab ul{
        gap: 8px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        margin: 0;
    }
    .sec06 .sec_content .tab ul li{
        width: 64px;
        height: 38px;
        flex: 0 0 auto;
    }
    .sec06 .sec_content .tab ul li a{
        white-space: nowrap;
    }
    .sec06 .sec_content .map{
        max-width: 370px;
        width: 90%;
        margin-left: 0;
        margin-bottom: 5vw;
    }
    .sec06 .sec_content .member{
        min-width: auto;
    }
    .sec07 .sec_text .title{
        padding-bottom: 40px;
    }
    .news_main{
        margin-bottom: 32px;
    }
    .news_main .text_con{
        position: initial;
        background-color: #f2f4f7;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        text-align: left;
        padding: 20px;
        box-sizing: border-box;
        align-items: flex-start;
    }
    .news_main .text_con .tit{
        color: #2e2e2e;
        line-height: 30px;
    }
    .news_main .text_con .sub{
        padding: 15px 0 35px;
        color: #4b4b4b;
        font-weight: 500;
    }
    .news_main .text_con .sub span{
        color: #4b4b4b;
    }
    .news_main .text_con a{
        color: #2e2e2e;
        border-color: #2e2e2e;
    }
    .news ul{
        flex-direction: column;
    }
    .news ul li{
        width: 100%;
    }
    .news ul li .title{
        height: 44px;
        margin: 14px 0;
        font-size: 16px;
        line-height: 22px;
    }
    .news ul li .date{
        padding-bottom: 10px;
        font-size: 14px;
    }
    .section_bottom > div{
        flex-direction: column;
    }
    #counsel {
        width: 100%;
        margin: 0;
        padding: 55px 5% 70px;
        box-sizing: border-box;
    }
    #counsel .txt_box{
        gap: 22px;
        margin-bottom: 35px;
    }
    #counsel .txt_box .tit{
        font-size: 28px;
    }
    #counsel .txt_box .con{
        font-size: 16px;
    }
    #counsel ul li div.sms_sender_chk, #counsel ul li div.sms_sender_chk a{
        font-size: 16px;
    }
    .sms_btn{
        height: 44px;
    }
    .section_bottom .site_map{
        width: 100%;
        height: 520px;
    }

    /* 푸터 footer */
    .foot_pc{
        display: none;
    }
    .foot_mo{
        display: flex;
    }
    .foot{
        gap: 60px;
        padding: 40px 0 50px;
    }
    .foot .hours{
        margin-top: 25px;
    }
    .foot .hours .title{
        font-size: 16px;
    }
    .foot .hours .sub li{
        font-size: 14px;
        flex-basis: inherit !important;
    }
    .foot .hours .sub li:has(.bar) {
        display: block;
    }
    .foot .bot{
        font-size: 12px;
    }
    .foot .bot > ul{
        flex-direction: column;
        gap: 3px;
    }
    .foot .goTo ul {
        gap: 15px;
    }
    .foot .name{
        margin-bottom: 3px;
    }
    .foot .copy{
        margin: 10px 0 25px;
    }
}