@charset "utf-8";



/* 공통 */
.main_title h2 {
    font-size:1.88em;
    font-weight:400;
    line-height:1.17;
    font-family: 'SUITE';
}
.main_title h2 span {
    font-weight:800;
    font-family: 'SUITE';
    position: relative;
    width:fit-content;
}
.main_title h2 span::after {
    content:'';
    width:10px;
    height:10px;
    background-color:#00613E;
    border-radius:50%;
    position:absolute;
    right:-20px;
    bottom:5px;
}

/* section01 */
#section01 {
    position: relative;
}
#section01::after {
    content: "";
    width: 50%;
    max-width: 900px;
    height: 100%;
    max-height: 650px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
    border-radius: 150px 0px 0px;
    background: linear-gradient(90deg, rgba(237, 255, 215, 0.6) 0%, rgba(215, 237, 255, 0.6) 100%);
    background-size: 200% 200%; /* 애니메이션을 위한 배경 크기 조정 */
    animation: gradientMove 5s infinite alternate; /* 애니메이션 추가 */
}
#section01 .sec01 {
    display:flex;
    align-items:flex-end;
    gap:80px;
}
#visual {
    max-width:860px;
    border-radius: 30px 100px 30px 100px;
    box-shadow: 0px 5px 10px 5px rgba(49, 84, 114, 0.20);
    margin-top:20px;
}
#visual .main_visual .inner {
    display:block;
}
#visual .main_visual .banner_img_box img {
    border-radius: 30px 100px 30px 100px;
    width:100%;
}
#visual .main_visual .splide__arrows .splide__arrow {
    width:55px;
    height:55px;
    backdrop-filter: blur(2px);
    background:unset;
    background-color:rgba(255,255,255,0.8);
    opacity:1;
    box-shadow:0px 5px 5px rgba(49, 84, 114, 0.20);
}
#visual .main_visual .splide__arrows .splide__arrow--prev {
    left:-28px;
}
#visual .main_visual .splide__arrows .splide__arrow--next {
    right:-28px;
}
#visual .main_visual .splide__btns {
    position: absolute;
    right: -1px;
    bottom: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 50px;
    gap: 5px;
    border-radius: 29px 0px;
    background-color: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(25px);
}
#visual .main_visual .splide__btns .slideCounter {
    margin-right:5px;
}
#visual .main_visual .splide__btns .slideCounter span {
    font-size:1em;
}
#visual .main_visual .splide__btns .slideCounter .counter_point {
    font-weight:600;
}
#visual .main_visual .splide__btns button {
    background:unset;
    border:none;
}

#board_program {
    flex:1;
    max-width:580px;
    position: relative;
    width: 100%;
}
#board_program .mir_maintab {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px;
}
#board_program .tab_btns {
    display:flex;
    align-items:center;
    gap:5px;
}
#board_program .tab_btns li {}
#board_program .tab_btns button {
    font-size:1.11em;
    font-weight:600;
    display: block;
    width:120px;
    letter-spacing:-0.6px;
    color:#fff;
    border-radius: 9999px;
    background-color: #004F90;
    box-shadow: 2px 2px 5px 0px rgba(49, 84, 114, 0.20);
    padding:10px;
    text-align: center;
    border:none;
}
#board_program .tab_btns button.on {
    color:#222;
    background-color:#fff;
}
#board_program .tab_more {
    box-shadow:0 -10px 10px 0px rgb(49 84 114 / 6%);
    background-color:#fff;
    border-radius: 999px;
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    right:0;
    top:0;
}
#board_program .tab_more:hover svg path {
    fill: #004F90; /* 호버 시 색상 */
}

#board_program .tab_board {
    /* visibility:hidden; */
    height: 0;
    display: none;
    width: 100%;

}
#board_program .tab_board.on {
    display:unset;
}
#board_program .notice_board {
    box-shadow: 0px 0px 30px 5px rgba(49, 84, 114, 0.20);
    border-radius:50px;
    padding:30px;
    background-color:#fff;
}
#board_program .notice_board .nb_list {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#board_program .notice_board .nbl_first a {
    border-radius: 20px;
    background-color:#F9F9F9;
    padding:30px;
    display: block;
}
#board_program .notice_board .nbl_first a:hover {
    background-color:rgba(215, 237, 255, 0.20);
}
#board_program .notice_board .nbl_first .nblf_box {
    display:flex;
    gap:30px;
    align-items:flex-start;
}
#board_program .notice_board .nbl_first .nblf_box .nblf_date {
    border:1px solid #ddd;
    border-radius:10px;
    background-color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    width:80px;
    height:80px;
}
#board_program .notice_board .nbl_first .nblf_box .nblf_date span {
    font-size:1.66em;
    font-weight:600;
    font-family: 'S-CoreDream';
    line-height:1;
}
#board_program .notice_board .nbl_first .nblf_box .nblf_date p {
    font-size:0.77em;
    font-weight:200;
    letter-spacing:-0.7px;
    line-height:1;
}
#board_program .notice_board .nbl_first .nblf_box .nblf_contxt {
    flex:1;
    display:flex;
    flex-direction:column;
    gap:10px;
     word-break: break-all;
}
#board_program .notice_board .nbl_first .nblf_box .nblf_contxt .nblf_subject {
    font-size:1.11em;
    font-weight:500;
    line-height:100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#board_program .notice_board .nbl_first .nblf_box .nblf_contxt .nb_content {
    font-size:0.88em;
    font-weight:400;
    line-height:125%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 40px;
}
#board_program .notice_board .nbl_normal a {
    position:relative;
    padding-left:25px;
    padding-top:5px;
    padding-bottom:5px;
    display:block;
}
#board_program .notice_board .nbl_normal a::before {
    content:'';
    width:5px;
    height:5px;
    background-color:#ddd;
    border-radius:50%;
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
}
#board_program .notice_board .nbl_normal a:hover {
    text-decoration:underline;
}
#board_program .notice_board .nbl_normal a:hover::before {
    background-color:#004F90;
}
#board_program .notice_board .nbl_normal .nbln_box {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 0;
    gap:10px;
}
#board_program .notice_board .nbl_normal .nbln_box .nb_subject {
    font-size:0.88em;
    font-weight:400;
    flex:1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}
#board_program .notice_board .nbl_normal .nbln_box .nb_date {
    font-size:0.77em;
    color:#444;
}
#board_program .notice_board .new_icon {
    width:25px;
    height:25px;
    background-color:#004F90;
    color:#fff;
    border-radius:50%;
    font-size:0.77em;
    font-weight:800;
    letter-spacing:-0.7px;
    position:absolute;
    text-align:center;
    line-height:25px;
}
#board_program .notice_board .nblf_box {
    position: relative;
}
#board_program .notice_board .nblf_box .new_icon {
    left:-10px;
    top:-10px;
}
#board_program .notice_board .nbl_normal .new_icon {
    width:20px;
    height:20px;
    line-height:20px;
    left:0;
    top:50%;
    transform:translateY(-50%);
}
/*  */


#direct {
    padding-top:100px;
    display:flex;
    align-items:flex-start;
}

#direct .direct_btns {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex: 1;
}
#direct .direct_btns a {
    display: block;
    text-align:center;
}
#direct .direct_btns .direct_icon {
    border:1px solid #ddd;
    background-color:#fff;
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:130px;
    height:130px;
}
#direct .direct_btns a p {
    font-size:1.11em;
    font-weight:500;
    margin-top:15px;
}
#direct .direct_btns a:hover .direct_icon {
    background: rgb(35,235,143);
    background: linear-gradient(180deg, rgba(35,235,143,1) 0%, rgba(0,127,233,1) 100%);
}
#direct .direct_btns a:hover .direct_icon svg {
    filter: brightness(0) invert(1); /* 흰색 강제화 */
}



.hanam_welfare {
    background-attachment: fixed;
    background-image: url(../img/index/hanam_welfare.png);
    background-repeat: no-repeat;
    background-position-x: 95px;
    background-position-y: 450px;
    height: 200px;
    width: 947px;
    position: absolute;
    left: 95px;
    top: 475px;
    z-index: -1;
    background-size: 947px auto;
}




/* section02 */
#section02 {
    position: relative;
    margin-top:150px;
}
#section02 .sec02 {
    display:flex;
    align-items:flex-end;
    gap:50px;
}
#notice {
    flex:1;
    max-width:748px;
}
#notice .mir_maintab {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:0 50px;
}
#notice .mir_maintab .tab_btns {
    display:flex;
    align-items:center;
    flex:1;
    gap:5px;
}
#notice .mir_maintab .tab_btns li {
    flex:1;
    max-width: 195px;
}
#notice .mir_maintab .tab_btns li a {
    display:block;
    padding:15px 20px 10px;
    border-radius: 30px 30px 0px 0px;
    background-color:#00613E;
    font-size:1.22em;
    font-weight:500;
    color:#fff;
    font-family: 'S-CoreDream';
    text-align:center;
}
#notice .mir_maintab .tab_btns li a.on {
    background-color:#fff;
    color:#222;
    box-shadow:0 -10px 10px 0px rgb(49 84 114 / 6%);
}
#notice .mir_maintab .tab_more {
    box-shadow:0 -10px 10px 0px rgb(49 84 114 / 6%);
    background-color:#fff;
    border-radius: 30px 30px 0px 0px;
    width:60px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#notice .mir_maintab .tab_more:hover svg path {
    fill: #004F90; /* 호버 시 색상 */
}
#notice .tab_board {
    /* visibility:hidden; */
    height: 0;
    display: none;
    width: 100%;

}
#notice .tab_board.on {
    display:unset;
}
#notice .notice_board {
    box-shadow: 0px 0px 30px 5px rgba(49, 84, 114, 0.20);
    border-radius: 50px 50px 0px 50px;
    padding:30px;
}
#notice .notice_board .nb_list {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#notice .notice_board .nbl_first a {
    border-radius: 20px;
    background-color:#F9F9F9;
    padding:30px;
    display: block;
}
#notice .notice_board .nbl_first a:hover {
    background-color:rgba(215, 237, 255, 0.20);
}
#notice .notice_board .nbl_first .nblf_box {
    display:flex;
    gap:30px;
    align-items:flex-start;
}
#notice .notice_board .nbl_first .nblf_box .nblf_date {
    border:1px solid #ddd;
    border-radius:10px;
    background-color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    width:80px;
    height:80px;
}
#notice .notice_board .nbl_first .nblf_box .nblf_date span {
    font-size:1.66em;
    font-weight:600;
    font-family: 'S-CoreDream';
    line-height:1;
}
#notice .notice_board .nbl_first .nblf_box .nblf_date p {
    font-size:0.77em;
    font-weight:200;
    letter-spacing:-0.7px;
    line-height:1;
}
#notice .notice_board .nbl_first .nblf_box .nblf_contxt {
    flex:1;
    display:flex;
    flex-direction:column;
    gap:10px;
}
#notice .notice_board .nbl_first .nblf_box .nblf_contxt .nblf_subject {
    font-size:1.11em;
    font-weight:500;
    line-height:100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#notice .notice_board .nbl_first .nblf_box .nblf_contxt .nb_content {
    font-size:0.88em;
    font-weight:400;
    line-height:125%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#notice .notice_board .nbl_normal a {
    position:relative;
    padding-left:25px;
    padding-top:5px;
    padding-bottom:5px;
    display:block;
}
#notice .notice_board .nbl_normal a::before {
    content:'';
    width:5px;
    height:5px;
    background-color:#ddd;
    border-radius:50%;
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
}
#notice .notice_board .nbl_normal a:hover {
    text-decoration:underline;
}
#notice .notice_board .nbl_normal a:hover::before {
    background-color:#004F90;
}
#notice .notice_board .nbl_normal .nbln_box {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 0;
    gap:10px;
}
#notice .notice_board .nbl_normal .nbln_box .nb_subject {
    font-size:0.88em;
    font-weight:400;
    flex:1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}
#notice .notice_board .nbl_normal .nbln_box .nb_date {
    font-size:0.77em;
    color:#444;
}
#notice .notice_board .new_icon {
    width:25px;
    height:25px;
    background-color:#004F90;
    color:#fff;
    border-radius:50%;
    font-size:0.77em;
    font-weight:800;
    letter-spacing:-0.7px;
    position:absolute;
    text-align:center;
    line-height:25px;
}
#notice .notice_board .nblf_box {
    position: relative;
}
#notice .notice_board .nblf_box .new_icon {
    left:-10px;
    top:-10px;
}
#notice .notice_board .nbl_normal .new_icon {
    width:20px;
    height:20px;
    line-height:20px;
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.sec02_ri_wrap {
    flex:1;
    display:flex;
    align-items:center;
    gap:50px;
}
#newsletter {
    width:300px;
    position: relative;
}
#newsletter::after {
    content:'';
    width:100%;
    height:300px;
    border-radius: 0px 50px 50px 50px;
    background: rgb(237,255,215);
    background: linear-gradient(180deg, rgba(237,255,215,0.6) 21.32%, rgba(215,237,255,0.6) 79.37%);
    position: absolute;
    left:0;
    top:27px;
    z-index:-1;
}
#newsletter .book .box {
    margin-top:17px;
}
#newsletter .book .box a {
    display:block;
}
#newsletter .book .box .book_title {
    text-align:center;
    font-size:1em;
    font-weight:200;
    font-family: 'S-CoreDream';
}
#newsletter .book .img {
    text-align:center;
    margin-top:20px;
}
#newsletter .book .img img {
    box-shadow: 0px 0px 20px 0px rgba(0, 127, 82, 0.20);
}
#newsletter .book .img:hover img {
    box-shadow: 0px 0px 20px 0px rgba(0, 127, 82, 0.60);
}

#event {
    flex: 1;
    max-width: 372px;
}
#event .schedule .cal_month {
    border-radius: 9999px 9999px 0px 0px;
    background-color:#D7EDFF;
    box-shadow: -5px -5px 20px 0px rgba(49, 84, 114, 0.20) inset;
    display: flex;
    text-align:center;
    width: 182px;
    padding: 10px 30px 7px 30px;
    flex-direction: column;
    align-items: center;
    margin:0 60px 0 auto;
}
#event .schedule .cal_month p {
    font-size:1.22em;
    font-weight:500;
    font-family: 'S-CoreDream';
}
#event .schedule .schedule_container {
    display:flex;
    align-items:flex-start;
}
#event .schedule .schedule_wrap {
    flex:1;
}

#event .schedule .schedule_wrap .event_table {
    border-radius: 30px 0px 30px 30px;
    border: 1px solid #DDD;
    background-color:#F9F9F9;
    padding:10px;
}
#event .schedule .schedule_wrap .event_table table {
    background-color:#fff;
    border-radius:30px 0 30px 30px;
    padding:15px 20px;
    text-align:center;
}
#event .schedule .schedule_wrap .event_table table th,
#event .schedule .schedule_wrap .event_table table td {
    padding:5px 0;
}
#event .schedule .schedule_wrap .event_table table .cal_day_bd th {
    font-size:1em;
    font-weight:200;
    font-family: 'S-CoreDream';
}
#event .schedule .schedule_wrap .event_table table .cal_day_bd .sunday {
    color:#B01515;
}
#event .schedule .schedule_wrap .event_table table .cal_day_bd .saturday {
    color:#004F90;
}
#event .schedule .schedule_wrap .event_table table p {
    width: fit-content;
    margin: 0 auto;
}
#event .schedule .schedule_wrap .event_table table .valid button {
    font-size:1em;
    font-weight:400;
}
#event .schedule .schedule_wrap .event_table table .today button {
    background-color:#004F90;
    border-radius:50px;
    display:block;
    width:26px;
    height:26px;
    font-weight:500;
    color:#fff;
    line-height: 26px;
}
#event .schedule .schedule_wrap .event_table table .writeday {
    color:#004F90;
    width:26px;
    height:26px;
    display:block;
    border-radius:50%;
    border:1px solid #004F90;
    line-height:24px;
}
#event .schedule .schedule_wrap .event_table table .writeday.noevent {
    color:#222;
    border:none;
}
#event .schedule .schedule_wrap .event_table table .active {
    background-color:#004F90;
    color:#fff;
    border:1px solid #004F90;
}
#event .schedule .schedule_wrap .event_cont_view {
    margin-top:5px;
}
#event .schedule .schedule_wrap .event_cont_view .message {
    display:flex;
    flex-direction:column;
    gap:8px;
}
#event .schedule .schedule_wrap .event_cont_view .message .subjbox {
    text-align:center;
}
#event .schedule .schedule_wrap .event_cont_view .message .subjbox .eventview_title {
    font-size:1.11em;
    font-weight:600;
    font-family: 'S-CoreDream';
}
#event .schedule .schedule_wrap .event_cont_view .message .subjbox .eventview_title span {
    font-size:1.11em;
    font-weight:200;
    font-family: 'S-CoreDream';
}
#event .schedule .schedule_wrap .event_cont_view .message .subjbox .mo_title {
    display:none;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox {
    border-radius: 30px 0px 30px 30px;
    border: 1px solid #DDD;
    background-color:#F9F9F9;
    padding:10px;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont {
    border-radius: 20px;
    background-color:#FFF;
    padding:10px;
    height:60px;
    overflow-y:scroll;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont p {
    font-size:0.88em;
    font-weight:400;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont p::after {
    content:'';
    width:100%;
    height:0;
    border-top:2px dashed #ddd;
    display:block;
    margin:10px 0;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont p:last-child::after {
    display:none;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont::-webkit-scrollbar {
    width:10px;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont::-webkit-scrollbar-thumb {
    background-color: #d6d6d6;
}
#event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont::-webkit-scrollbar-track {
    background-color:#ebebeb;
}
#event .schedule .event_more {
    writing-mode: vertical-lr;
    border-radius: 0px 5px 50px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding:20px 10px 30px;
    box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.10) inset;
    background: rgb(0, 127, 233);
    background: linear-gradient(0deg, rgba(0, 127, 233, 0.2) 21.32%, rgba(35, 235, 143, 0.2) 79.37%);
    font-size:1em;
    font-weight:400;
    line-height:1.11;
}

#section02 .sec02-busi {
    display:flex;
    align-items:center;
    gap:80px;
    margin-top:100px;
}
#life_busi {
    flex:1;
    display:flex;
    align-items:center;
    max-width:1000px;
    border:1px solid #ddd;
    border-radius:30px;
}
#life_busi .lb_title_wrap {
    width:160px;
    height:160px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:30px 30px 0 30px;
    background-color:#00613E;
    position: relative;
}
#life_busi .lb_title_wrap::after {
    content:'';
    width:39px;
    height:39px;
    background-color:#00613E;
    border-radius:50%;
    position:absolute;
    right:-20px;
    top:50%;
    transform:translateY(-50%);
}
#life_busi .lb_title_wrap .lb_tit {
    font-size:1.33em;
    font-weight:600;
    color:#fff;
    font-family: 'S-CoreDream';
    text-align:center;
}
#life_busi .lb_title_wrap .lb_tit span {
    font-weight:200;
    color:#fff;
    font-family: 'S-CoreDream';
    display:block;
}
#life_busi .lb_title_wrap a {
    display:flex;
    gap:10px;
    align-items:center;
    font-size:1em;
    font-weight:600;
    color:#fff;
    display: block;
    padding:10px 0;
}
#life_busi .lb_title_wrap a:hover img {
    transform:rotate(90deg);
}
#life_busi .lb_btns {
    display:flex;
    align-items:center;
    padding:0 20px;
    flex:1;
}
#life_busi .lb_btns a {
    flex:1;
    text-align:center;

}
#life_busi .lb_btns .lb_btn_icon {
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.5s;
}
#life_busi .lb_btns p {
    font-size:0.88em;
    font-weight:500;
    margin-top:5px;
}
#life_busi .lb_btns a:hover .lb_btn_icon {
    transform: rotateY(360deg);
    transition:.5s;
}
#life_busi .lb_btns a:hover p {
    color:#00613E;
}



#welfare_info {
    flex:1;
    max-width:440px;
    position: relative;
}
#welfare_info::after {
    content:'';
    width:93px;
    height:97px;
    background-image:url(../img/index/wi_point01.png);
    background-repeat:no-repeat;
    background-size:100%;
    position:absolute;
    right:-25px;
    top:-35px;
    animation: flyIcon 6s infinite linear; /* linear로 변경하여 일정한 속도 */
    animation-direction: alternate; /* 순방향과 역방향 번갈아 재생 */
}
#welfare_info .welfare_info_top {
    border-radius: 30px 30px 0px 0px;
    background-color: #3784C3;
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.40) inset;
    display:flex;
    align-items:center;
    gap:20px;
    padding:10px 20px;
}
#welfare_info .welfare_info_top .wi_top_dot {
    display:flex;
    align-items:center;
    gap:10px;
}
#welfare_info .welfare_info_top .wi_top_dot span {
    width:10px;
    height:10px;
    border-radius: 50%;
    background: rgb(0,79,144);
    background: linear-gradient(180deg, rgba(0,79,144,0.6) 0%, rgba(25,45,96,0.6) 100%);
    backdrop-filter: blur(2px);
}
#welfare_info .welfare_info_top .wi_top_bar {
    flex:1;
    height:10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
}
#welfare_info .welfare_info_bot {
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    border-radius: 0px 0px 30px 30px;
    background: rgb(34,148,244);
    background: linear-gradient(94deg, rgba(34,148,244,0.02) 11.07%, rgba(50,153,238,0.5) 115.11%);
    box-shadow: 0px 0px 10px 0px #FFF inset;
    position: relative;
}
#welfare_info .welfare_info_bot::after {
    content:'';
    width:105px;
    height:122px;
    background-image:url(../img/index/wi_point02.png);
    background-repeat:no-repeat;
    background-size:100%;
    position:absolute;
    right:0px;
    bottom:-20px;
    animation: flyIcon 6s infinite linear; /* linear로 변경하여 일정한 속도 */
    animation-direction: alternate; /* 순방향과 역방향 번갈아 재생 */
}
#welfare_info .welfare_info_bot::before {
    content:'';
    width:102px;
    height:109px;
    background-image:url(../img/index/wi_point03.png);
    background-repeat:no-repeat;
    background-size:100%;
    position:absolute;
    left:-15px;
    bottom:-5px;
    animation: flyIcon02 6s infinite linear; /* linear로 변경하여 일정한 속도 */
    animation-direction: alternate; /* 순방향과 역방향 번갈아 재생 */
}
#welfare_info .welfare_info_bot .wi_title {
    font-size:1.11em;
    font-weight:200;
    font-family: 'S-CoreDream';
    text-align:center;
}
#welfare_info .welfare_info_bot .wi_title span {
    font-weight:600;
    font-family: 'S-CoreDream';
    display:block;
}
#welfare_info .welfare_info_bot .wi_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:5px 20px;
    border-radius: 9999px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0px 4px 10px 0px rgba(34, 148, 244, 0.20);
    backdrop-filter: blur(2px);
    margin-top:10px;
}
#welfare_info .welfare_info_bot a:hover .wi_btn {
    background-color:#fff;
}
#welfare_info .welfare_info_bot .wi_btn p {
    font-size:1.11em;
    font-weight:400;
}


#section03 {
    margin-top:150px;
    position: relative;
}
#section03::after {
    content:'';
    width:100%;
    max-width:1800px;
    height:195px;
    border-radius:100px 100px 0 100px;
    position:absolute;
    right:0;
    bottom:-37px;
    background: rgb(215,237,255);
    background: linear-gradient(240deg, rgba(215,237,255,0.6) 0%, rgba(237,255,215,0.6) 145.23%);
    z-index:-1;
}
#story .stroy_title {
    position: relative;
}
#story .main_title {
    text-align:center;
}
#story .story_cont .inner {
    display:block;
}
#story .splide__arrows {
    position:absolute;
    right:0;
    top:0;
    display:flex;
    align-items:center;
    gap:10px;
}
#story .splide__arrows .splide__arrow,
#story .splide__arrows .more_btn {
    width:38px;
    height:38px;
    border:1px solid #ddd;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:unset;
    position: unset;
    transform:unset;
    opacity:1;
}
#story .splide__arrows .splide__arrow--prev:hover img {
    transform:translateX(-5px);
    transition:.3s;
}
#story .splide__arrows .splide__arrow--next:hover img {
    transform:translateX(5px);
    transition:.3s;
}
#story .splide__arrows .more_btn:hover img {
    transform:rotate(90deg);
    transition:.3s;
}
#story .story_cont {
    margin-top:15px;
}
#story .story_cont .splide__track {
    padding-top:15px;
}
#story .story_cont .splide__slide {
    position: relative;
}
#story .story_cont .splide__slide .sub {
    position:absolute;
    left:0;
    top:-12px;
    font-size:0.88em;
    font-weight:700;
    border:1px solid #ddd;
    background-color:#fff;
    border-radius:10px 10px 10px 0;
    padding:4px 10px;
    z-index:1;
}
#story .story_cont .splide__slide .sub01 {
    color:#972020;
    border-color:#CB3939;
}
#story .story_cont .splide__slide .sub02 {
    color:#91551a;
    border-color:#FF8102;
}
#story .story_cont .splide__slide .sub03 {
    color:#7e7519;
    border-color:#FFEA00;
}
#story .story_cont .splide__slide .sub04 {
    color:#427218;
    border-color:#7DE721;
}
#story .story_cont .splide__slide .sub05 {
    color:#216088;
    border-color:#219EEC;
}
#story .story_cont .splide__slide .sub06 {
    color:#182879;
    border-color:#2142E9;
}
#story .story_cont .splide__slide .sub07 {
    color:#3b1366;
    border-color:#8121E9;
}
#story .story_cont .splide__slide .sub00 {
    color:#444;
    border-color:#444;
}

#story .story_cont .img {
    border-radius:0 30px 30px 30px;
    overflow:hidden;
    position: relative;
}
#story .story_cont .img img {
    width:100%;
}
#story .story_cont .inner:hover .img {
    border-radius:0;
}
#story .story_cont .img::before,
#story .story_cont .img::after {
    content:"";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    background:#00613E;
}
#story .story_cont .img .img_inhover::before,
#story .story_cont .img .img_inhover::after {
    content:"";
    width:2px;
    height:0;
    position: absolute;
    transition: all 0.2s linear;
    background: #00613E;
}
#story .story_cont .inner:hover .img::before,
#story .story_cont .inner:hover .img::after{
    width: 100%;
}
#story .story_cont .inner:hover .img .img_inhover::before,
#story .story_cont .inner:hover .img .img_inhover::after{
    height: 100%;
}
#story .story_cont .inner .img::before {
    transition-delay: 0.15s;
    left: 0;
    top: 0;
}
#story .story_cont .inner .img .img_inhover::before {
    transition-delay: 0.1s;
    right: 0;
    top: 0
}
#story .story_cont .inner .img::after {
    transition-delay: 0.05s;
    right: 0;
    bottom: 0;
}
#story .story_cont .inner .img .img_inhover::after {
    transition-delay: 0s;
    left: 0;
    bottom: 0;
}
#story .story_cont .inner:hover .img::before {
    transition-delay: 0s;
}
#story .story_cont .inner:hover .img .img_inhover::before {
    transition-delay: 0.2s;
}
#story .story_cont .inner:hover .img::after {
    transition-delay: 0.4s;
}
#story .story_cont .inner:hover .img .img_inhover::after {
    transition-delay: 0.6s;
}
#story .story_cont .slide_txt {
    margin-top:15px;
}
#story .story_cont .slide_txt .slide_tit {
    font-size:1em;
    font-weight:500;
    color:#444;
    font-family: 'S-CoreDream';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#story .story_cont .inner:hover .slide_txt .slide_tit {
    color:#004F90;
}

#section04 {
    margin-top:150px;
    position: relative;
    padding-bottom:100px;
}
#section04::before {
    content:'';
    width:30%;
    max-width:307px;
    height:525px;
    background-color:#f9f9f9;
    border-radius:0 30px 0 0;
    position:absolute;
    left:0;
    bottom:0;
}
#nanum {
    display:flex;
    align-items:flex-start;
    gap:30px;
}
#nanum .nanum_le_box {
    flex:1;
    max-width:230px;
    display:flex;
    flex-direction:column;
    gap:80px;
    padding-top:30px;
    position: relative;
    z-index: 1;
}
#nanum .nanum_le_box .main_title {
    display:flex;
    flex-direction:column;
    gap:15px;
}
#nanum .nanum_le_box .main_title h2 span::after {
    right:auto;
    left:0;
    bottom:auto;
    top:-15px;
}
#nanum .nanum_le_box .splide__arrows {
    display:flex;
    align-items:center;
    gap:10px;
}
#nanum .nanum_le_box .splide__arrows .splide__arrow,
#nanum .nanum_le_box .splide__arrows .more_btn {
    width:38px;
    height:38px;
    border:1px solid #ddd;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:unset;
    position: unset;
    transform:unset;
    opacity:1;
    background-color:#fff;
}
#nanum .nanum_le_box .splide__arrows .nanum-slide-prev:hover img {
    transform:translateX(-5px);
    transition:.3s;
}
#nanum .nanum_le_box .splide__arrows .nanum-slide-next:hover img {
    transform:translateX(5px);
    transition:.3s;
}
#nanum .nanum_le_box .splide__arrows .more_btn:hover img {
    transform:rotate(90deg);
    transition:.3s;
}
#nanum .nanum_le_box .tab_btns {
    display:flex;
    flex-direction:column;
    gap:15px;
}
#nanum .nanum_le_box .tab_btns li a {
    display:block;
    font-size:1.11em;
    font-weight:500;
    color:#444;
    font-family: 'S-CoreDream';
    background-image:url(../img/index/nanum_off.png);
    background-repeat:no-repeat;
    background-position:85% center;
    padding:20px 30px 20px 0;
}
#nanum .nanum_le_box .tab_btns li.on a {
    background-color:#004F90;
    border-radius:30px 50px 50px 0;
    color:#fff;
    background-image:url(../img/index/nanum_on.png);
    padding:20px 30px;
}
#nanum .nanum_le_box .tab_btns li a:hover {
    background-position:88% center;
    transition:.3s;
}
#nanum .tab_contents {
    flex:1;
    max-width:1260px;
}
#nanum .tab_contents .bs_cont .inner {
    display: block;
}
#nanum .tab_contents .bs_cont {
    display: none;
    width: 100%;
}
#nanum .tab_contents .bs_cont.active {
    display:block;
}

#nanum .tab_contents .bs_cont .img img {
    border-radius:20px;
    width:100%;
    border:2px solid transparent;
}
#nanum .tab_contents .bs_cont .img:hover img {
    background-image: linear-gradient(#fff, #fff), linear-gradient(to bottom, #23EB8F, #007FE9);
    background-origin: border-box;
    background-clip: content-box, border-box;
}





/*---------------반응형 미디어쿼리----------------*/
@media (max-width:1600px) {
    #section01 .sec01 {
        gap:40px;
    }
}
@media (max-width:1440px) {
    #visual {
        margin-left:10px;
        margin-right:10px;
        max-width: 640px;
        border-radius:20px 50px 30px 50px;
    }
    #visual .main_visual .banner_img_box img {
        border-radius:20px 50px 30px 50px;
    }
    #visual .main_visual .splide__arrows .splide__arrow {
        width:40px;
        height:40px;
    }
    #visual .main_visual .splide__arrows .splide__arrow--prev {
        left:-20px;
    }
    #visual .main_visual .splide__arrows .splide__arrow--next {
        right:-20px;
    }
    .hanam_welfare {
        top: 345px;
        background-position-y: 345px;
    }

    #board_program .mir_maintab {
        margin:10px;
    }
    #board_program .notice_board .nb_list {
        gap:5px;
    }


    #direct {
        padding-top:80px
    }
    #section02,
    #section03,
    #section04 {
        margin-top:120px;
    }
    #section02 .sec02-busi {
        gap:30px;
        margin-top:80px;
    }
    #welfare_info::after {
        right:-20px;
    }


    
    #nanum .tab_contents {
        flex:none;
        width:100%;

    }
}
@media (max-width:1200px) {
    #section01::after {
        max-height: 900px;
    }
    #section01 .sec01 {
        flex-direction:column;
        align-items: center;
    }
    #visual {
        max-width:860px;
        width:100%;
    }
    .hanam_welfare {
        background-position-x: 0;
        background-position-y: 500px;
        left: 0;
        background-size: 50% auto;
    }
    #direct {
        gap:20px;
    }
    #direct .direct_btns {
        gap:20px;
    }
    #direct .direct_btns .direct_icon {
        width:80px;
        height:80px;
        border-radius:20px;
    }
    #direct .direct_btns .direct_icon img {
        width:50%;
    }
    #section02 .sec02 {
        flex-direction:column;
        align-items: center;
    }
    #notice {
        max-width:100%;
        width:100%;
        flex:none;
    }
    .sec02_ri_wrap {
        flex:none;
        width:100%;
    }
    #event {
        max-width:100%;
    }

    #notice .mir_maintab .tab_btns li a.on {
        position: relative;
        top:2px;
    }

    #life_busi .lb_btns .lb_btn_icon img {
        width:65%;
    }
    #welfare_info {
        max-width:400px;
    }
    #welfare_info .welfare_info_bot::before,
    #welfare_info .welfare_info_bot::after {
        width:80px;
        height:90px;
    }
    #welfare_info::after {
        width:70px;
        height:80px;
    }


    #nanum {
        flex-direction: column;
    }
    #nanum .nanum_le_box {
        gap: 20px;
        max-width: 100%;
        flex: none;
        width: 100%;
    }
    #nanum .nanum_le_box .main_title {
        flex-direction:row;
        justify-content: space-between;
    }
    #nanum .nanum_le_box .tab_btns {
        flex-direction:row;
        width: 100%;
    }
    #nanum .nanum_le_box .tab_btns li {
        flex:1;
    }
}
@media (max-width:1024px) {
    #section01::after {
        max-width: 90%;
        width: 100%;
    }


    #visual .main_visual .splide__arrows .splide__arrow--prev {
        left:-10px;
    }
    #visual .main_visual .splide__arrows .splide__arrow--next {
        right:-10px;
    }


    .hanam_welfare {
        display:none;
    }
    #life_busi .lb_btns {
        overflow-x: scroll;
        gap: 10px;
        padding-bottom:10px;
    }
    #life_busi .lb_btns::-webkit-scrollbar {
        height:5px;
        background-color:#ccc;
    }
    #life_busi .lb_btns::-webkit-scrollbar-thumb {
        background-color:#999;
    }
    #life_busi .lb_btns a {
        flex: none;
    }

    #welfare_info::after {
        right:-10px;
    }
    #welfare_info .welfare_info_bot::after {
        bottom:-40px;
        right: -10px;
    }

}
@media (max-width:991px) {
    #direct .direct_btns {
        overflow-x:scroll;
        padding-bottom: 10px;
    }
    #direct .direct_btns::-webkit-scrollbar {
        height:10px;
        background-color:#ccc;
    }
    #direct .direct_btns::-webkit-scrollbar-thumb {
        background-color:#999;
    }
    #direct .direct_btns a p {
        font-size:1em;
    }
    #life_busi {
        border:none;
        flex:none;
    }
    #life_busi .lb_title_wrap {
        border-radius:20px;
    }
    #life_busi .lb_title_wrap::after {
        display:none;
    }
    #life_busi .lb_btns {
        display:none;
    }
    #welfare_info {
        max-width:100%;
    }

    #story .main_title {
        text-align:left;
    }

    #section04::before {
        display:none;
    }

}
@media (max-width:768px) {
    #newsletter {
        width:260px;
    }
}
@media (max-width:640px) {
    #section01 .sec01 {
        gap:30px;
    }
    #section01::after {
        max-width: 90%;
        width: 100%;
        max-height: 350px;
        top: auto;
        bottom: 275px;
    }
    #visual {
        margin-top:10px;
        margin-bottom:10px;
        box-shadow:none;
    }
    #visual .main_visual .splide__btns {
        height:30px;
    }
    #visual .main_visual .splide__btns button img {
        width:20px;
    }
    #visual .main_visual .splide__arrows .splide__arrow {
        width:30px;
        height:30px;
    }

    #board_program .tab_btns button {
        width: fit-content;
        font-size:1rem;
    }
    #board_program .tab_more {
        width:40px;
        height:40px;
            top: 10px;
    }
    
    #board_program .notice_board {
        padding:10px;
        border-radius:30px;
    }
    #board_program .notice_board .nbl_first a {
        padding:10px;
    }
    #board_program .notice_board .nbl_first .nblf_box {
        gap:10px;
        align-items: center;
    }
    #board_program .notice_board .nbl_first .nblf_box .nblf_date {
        width:55px;
        height:55px;
    }
    #board_program .notice_board .nbl_first .nblf_box .nblf_contxt .nb_content {
        display:none;
    }



    #direct {
        padding-top:50px;
        flex-direction:column;
        gap:15px;
    }
    #direct .main_title h2 br {
        display:none;
    }
    #direct .direct_btns {
        width:100%;
    }

    #section02, #section03, #section04 {
        margin-top:50px;
    }

    #notice .notice_board {
        padding:15px;
        border-radius: 0px 0px 30px 30px;
    }

    #notice .mir_maintab {
        margin-left:0;
        margin-right:0;
    }
    #notice .mir_maintab .tab_btns {
        gap:10px;
    }
    #notice .mir_maintab .tab_btns li {
        max-width: 130px;
    }
    #notice .mir_maintab .tab_btns li a {
        font-size: 0.94em;
        padding: 12px 10px 8px;
        border-radius:20px 20px 0 0;
        position: relative;
        top:5px;
        line-height:1;
    }
    #notice .mir_maintab .tab_btns li a.on {
        top:6px;
    }
    #notice .mir_maintab .tab_more {
        width:45px;
        height:45px;
        position: relative;
        top: 5px;
    }
    #notice .notice_board .nbl_first {
        padding:0;
    }
    #notice .notice_board .nbl_first a {
        padding:10px;
    }
    #notice .notice_board .nbl_first .nblf_box {
        align-items:center;
        gap:20px;
    }
    #notice .notice_board .nbl_first .nblf_box .nblf_date {
        width:65px;
        height:65px;
        border-radius:10px;
    }
    #notice .notice_board .nbl_first .nblf_box .nblf_contxt .nblf_subject {
        font-size:1em;
        line-height:1.5;
    }
    #notice .notice_board .nbl_first .nblf_box .nblf_contxt .nb_content {
        display:none;
    }
    #notice .notice_board .nbl_normal {
        padding-right:10px;
    }
    #notice .notice_board .nb_list {
        gap:3px;
    }
    #notice .notice_board .nbl_normal .nbln_box .nb_subject {
        letter-spacing:-0.9px;
    }

    .sec02_ri_wrap {
        flex-direction:column;
    }
    #section02 .sec02-busi {
        margin-top:50px;
        gap:15px;
    }
    #newsletter {
        width:300px;
    }
    #newsletter .main_title {
        text-align:center;
    }
    #newsletter .book .box {
        margin-top:10px;
    }
    #newsletter .book .img {
        margin-top:15px;
    }
    #event {
        width:100%;
    }
    #event .schedule .cal_month {
        display:none;
    }
    #event .schedule .schedule_container {
        flex-direction:column;
    }
    #event .schedule .schedule_wrap {
        width:100%;
    }
    #event .schedule .schedule_wrap .event_table {
        display:none;
    }
    #event .schedule .schedule_wrap .event_cont_view .message .schedbox .subcont {
        height:120px;
    }
    #event .schedule .schedule_wrap .event_cont_view .message .subjbox .mo_title {
        display:block;
    }
    #event .schedule .schedule_wrap .event_cont_view .message .subjbox .pc_title {
        display:none;
    }
    #event .schedule .event_more {
        writing-mode: unset;
        width: 180px;
        text-align: center;
        justify-content: center;
        padding: 8px 10px;
        margin: 0 auto;
        border-radius: 0 0 30px 30px;
        font-size:0.94em;
        line-height: 1;
    }
    #event .schedule .event_more img {
        width:12px;
        height:12px;
    }

    #life_busi .lb_title_wrap {
        width:100px;
        height:120px;
    }
    #life_busi .lb_title_wrap .lb_tit {
        font-size:0.94em;
    }
    #life_busi .lb_title_wrap a {
        font-size:0.88em;
    }
    #welfare_info .welfare_info_bot {
        height:90px;
    }
    #welfare_info .welfare_info_bot .wi_title {
        font-size:0.94em;
    }
    #welfare_info .welfare_info_bot .wi_btn p {
        font-size:0.88em;
    }
    #welfare_info .welfare_info_bot .wi_btn {
        margin-top:3px;
    }

    #welfare_info .welfare_info_bot::before {
        left: -30px;
        bottom: -35px;
    }

    #story {
        padding-left:10px;
        padding-right:10px;
    }

    #nanum {
        padding-left:10px;
        padding-right:10px;
    }
    #nanum .nanum_le_box .tab_btns li a,
    #nanum .nanum_le_box .tab_btns li.on a {
        background-image:none;
        text-align:center;
    }
}
@media (max-width:480px) {
    .main_title h2 {
        font-size:1.55em;
    }
    #notice .notice_board .nbl_first .nblf_box .nblf_date {
        width:55px;
        height:55px;
    }
    #welfare_info .welfare_info_bot .wi_btn {
        padding: 5px;
        max-width: 145px;
        margin-left:auto;
        margin-right:auto;
    }
    #welfare_info .welfare_info_bot::before,
    #welfare_info .welfare_info_bot::after {
        width:60px;
        height:70px;
    }
    #welfare_info::after {
        width:55px;
        height:65px;
        right: 0;
    }
}
@media (max-width:320px) {}