@charset "utf-8";

#index {}
#index section {
    width: 100%;
    height: 100vh;
    padding-top:100px /* 헤더 높이만큼 */;
}



/* indicatior 인디케이터 */
#indicator {
    position:fixed;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    z-index:20;
}
#indicator ul {
    display:flex;
    flex-direction:column;
    border-radius: 10px;
    border: 1px solid #FFF;
    background-color: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(2px);
    width:80px;
}
#indicator ul li {
    width:100%;
    height:80px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position: relative;
    cursor: pointer;
}
#indicator ul li .indicator_icon {
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#indicator ul li span {
    font-size:0.77rem;
    font-weight:600;
    line-height:128%;
    letter-spacing: 0.3px;
    color:#757575;
    text-align:center;
}
#indicator ul li.on::before {
    content:'';
    width:5px;
    height:45px;
    border-radius:2px;
    background-color:#173C7B;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}
#indicator ul li.on .indicator_icon svg path {
    fill:#173C7B;
}
#indicator ul li.on span {
    color:#173C7B;
}

/* section01 */
#section01 {
    position: relative;
    height:100%;
}
#section01 .sec01 {
    height:100%;
}
/* section01 - visual */
#visual {
    position: relative;
    height:100%;
}
#visual .visual_bnn {
    height:100%;
}
#visual .visual_bnn .splide__track {
    height:100%;
}
#visual .visual_bnn .splide__track a {
    display:block;
    height:100%;
}
#visual .visual_bnn .splide__slide .txt.pc_bnn {
    height:100%;
}
#visual .visual_bnn .splide__slide .txt.mo_bnn {
    display:none;
}
#visual .visual_bnn .splide__slide .txt img {
    border-radius:100px 100px 0 0;
    width:100%;
    height:100%;
}
#visual .visual_bnn .splide__arrows {
    display:flex;
    align-items:stretch;
    gap:10px;
    position:absolute;
    right:50%;
    transform:translateX(50%);
    bottom:34%;
}
#visual .visual_bnn .splide__arrows .splide__arrow {
    position:unset;
    width:50px;
    height:50px;
    border-radius:50%;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 5px 5px 0 rgba(49, 84, 114, 0.20);
    backdrop-filter: blur(2px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:1;
    transform:unset;
}
#visual .visual_bnn .splide__arrows .splide__arrow:hover {
    background:#fff;
}
#visual .visual_bnn .splide__arrows .control_btn_wrap {
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 5px 5px 0 rgba(49, 84, 114, 0.20);
    backdrop-filter: blur(2px);
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:5px;
    border-radius:20px;
}
#visual .visual_bnn .splide__arrows .control_btn_wrap .slideCounter {
    display:flex;
    align-items:center;
    gap:3px;
}
#visual .visual_bnn .splide__arrows .control_btn_wrap .slideCounter span {
    font-size:1rem;
    font-weight:400;
    color:#222;
}
#visual .visual_bnn .splide__arrows .control_btn_wrap .slideCounter .counter_point {
    font-weight:700;
}
#visual .visual_bnn .splide__arrows .control_btn_wrap button {
    width:27px;
    height:27px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#fff;
}


/* section01 - direct */
#direct {
    position:absolute;
    left:50%;
    bottom:50px;
    transform:translateX(-50%);
    padding:30px 70px;
    border-radius: 50px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(7.5px);
    display: flex;
    align-items:center;
    justify-content:center;
    gap:100px;
}
#direct .direct_box {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#direct .direct_box .direct_icon {
    width:100px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#direct .direct_box .direct_ti {
    font-size:1.11rem;
    font-weight:600;
    line-height:150%;
    text-align:center;
}
#direct .direct_box:hover .direct_icon {
    animation: topdown .5s;
}


/* section02 */
#section02 {}
#section02 .sec02 {
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px 100px 0 0;
    background: #EDF6FB;
    background: linear-gradient(101deg,rgba(237, 246, 251, 0.9) 0.22%, rgba(234, 238, 255, 1) 99.78%);
    position: relative;
}
#section02 .sec02::before {
    content:'';
    width:672px;
    height:807px;
    background-image:url(../img/index/section02_left_bg.png);
    background-repeat:no-repeat;
    position:absolute;
    left:0;
    top:0;
}
#section02 .sec02::after {
    content:'';
    width:689px;
    height:776px;
    background-image:url(../img/index/section02_right_bg.png);
    background-repeat:no-repeat;
    position:absolute;
    right:0;
    bottom:0;
}
#section02 .sec02 .mircenter {
    display:flex;
    align-items:flex-end;
}

/* section02 - notice */
#notice {
    width:1000px;
    position:relative;
    z-index: 1;
    margin-bottom:40px;
}
#notice .mir_maintab {
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    padding-left:70px;
    padding-right:90px;
}
#notice .mir_maintab .tab_btns {
    display:flex;
    align-items: stretch;
}
#notice .mir_maintab .tab_btns li {
    width:140px;
}
#notice .mir_maintab .tab_btns li a {
    display:flex;
    align-items:center;
    justify-content:center;
    height:60px;
    padding:15px 20px 20px;
    border-radius: 20px 20px 0 0;
    margin-left:-10px;
    position: relative;
    background-color:#fff;
    top:10px;
    font-size:1.11rem;
    font-weight:500;
    font-family: "Gmarket Sans";
    color:#fff;
}
#notice .mir_maintab .tab_btns li:nth-child(1) a {
    background-color:#C0D2F0;
    color:#173C7B;
    z-index:4;
}
#notice .mir_maintab .tab_btns li:nth-child(2) a {
    background-color:#426DB7;
    z-index:3;
}
#notice .mir_maintab .tab_btns li:nth-child(3) a {
     background-color:#173C7B;
    z-index:2;
}
#notice .mir_maintab .tab_btns li:hover a {
    top:5px;
    transition:top .3s;
}
#notice .mir_maintab .tab_btns li a.on {
    background-color:#fff;
    z-index:5;
    transition:all .3s;
}
#notice .mir_maintab .tab_btns li:nth-child(1) a.on {
    color:#173C7B;
}
#notice .mir_maintab .tab_btns li:nth-child(2) a.on {
    color:#426DB7;
}
#notice .mir_maintab .tab_btns li:nth-child(3) a.on {
    color:#173C7B;
}
#notice .mir_maintab .tab_more {
    width:80px;
} 
#notice .mir_maintab .tab_more a {
    display:flex;
    align-items:center;
    justify-content:center;
    height:60px;
    padding:15px 20px 20px;
    border-radius: 20px 20px 0 0;
    margin-left:-10px;
    position: relative;
    background-color:#fff;
    top:10px;
}
#notice .mir_maintab .tab_more:hover a {
    top:5px;
    transition:top .3s;
}
#notice .mir_maintab .tab_more:hover a svg {
    animation: revolve .3s;
}
#notice .mir_maintab .tab_more:hover a svg path {
    fill: #173C7B;
}


#notice .tab_contents .tab_board {
    display:none;
    background-color:#fff;
    padding:40px 90px 40px 40px;
    border-radius:50px 100px 50px 50px;
    position: relative;
    z-index:6;
}
#notice .tab_contents .tab_board.on {
    display:block;
}
#notice .tab_contents .notice_board {
    display:flex;
    align-items:center;
    gap:40px;
}
#notice .tab_contents .notice_board .firat_list {
    width:370px;
    border:7px solid #EDF6FB;
    border-radius:30px 80px 30px 40px;
    padding:40px;
    background-image:url(../img/index/notice_bg.png);
    background-repeat:no-repeat;
    background-position:right top;
}
#notice .tab_contents .notice_board .firat_list .board_link {
    display:flex;
    flex-direction:column;
    gap:50px;
}
#notice .tab_contents .notice_board .firat_list .laC_title {
    display:flex;
    flex-direction:column;
    gap:20px;
    position: relative;
}
#notice .tab_contents .notice_board .firat_list .laC_title::before {
    content:'';
    width:100%;
    height:0px;
    border-top:2px dashed #E0E0E0;
    position:absolute;
    left:0;
    bottom:-26px;
}
#notice .tab_contents .notice_board .firat_list .laC_title .laC_date1 {
    font-size:1.66rem;
    font-weight:500;
    line-height:1;
    color:#173C7B;
    font-family:'Gmarket Sans';
}
#notice .tab_contents .notice_board .firat_list .laC_title .laC_sbjt1 {
    font-size:1.11rem;
    font-weight:500;
    line-height:150%;
    font-family:'Gmarket Sans';
    height:60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#notice .tab_contents .notice_board .firat_list .list_cont .laC_content {
    font-size:0.88rem;
    font-weight:400;
    line-height:162%;
    letter-spacing:0.2px;
    color:#757575;
    height:105px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
#notice .tab_contents .notice_board .wrap_list {
    flex:1;
    margin:30px 0;
    display:flex;
    flex-direction:column;
    gap:30px;
    align-self:flex-start;
}
#notice .tab_contents .notice_board .wrap_list .board_link {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-left:20px;
    position: relative;
}
#notice .tab_contents .notice_board .wrap_list .board_link::before {
    content:'';
    width:7px;
    height:7px;
    background-color:#173C7B;
    border-radius:50%;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}
#notice .tab_contents .notice_board .wrap_list .board_link .laC_sbjt2 {
    flex:1;
    max-width:360px;
    font-size:1rem;
    font-weight:400;
    line-height:155%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  /* 말줄임 적용 */
}
#notice .tab_contents .notice_board .board_link:hover .laC_sbjt1 {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
#notice .tab_contents .notice_board .board_link:hover .laC_sbjt2 {
    color:#173C7B;
    font-weight:700;
}




/* section02 - newsletter */
#newsletter {
    flex:1;
    width:610px;
    margin-left:-50px;
    position: relative;
    z-index: 2;
    background-image:url(../img/index/newsletter_bg.png);
    background-repeat:no-repeat;
    background-size:100% 100%;
    border-radius:50px;
    padding:50px 30px 50px 50px;
    position: relative;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
#newsletter .newsletter_title {
    color: #fff;
    text-align: center;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #0F5DA5;
    font-family: "Ttangsbudaejjigae";
    font-size: 2.66rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    position:absolute;
    left:50%;
    top:-28px;
    transform:translateX(-50%);
}
#newsletter .newsletter_title br {
    display:none;
}
#newsletter .ebook_board .ebook_cont {
    display: flex;
    align-items:center;
    gap:40px;
}
#newsletter .ebook_board .ebook_thumb img {
    border:3px solid #fff;
    border-radius:30px;
}
#newsletter .ebook_board .ebook_box {
    display:flex;
    flex-direction:column;
    gap:50px;
}
#newsletter .ebook_board .ebook_box .ebook_text {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#newsletter .ebook_board .ebook_box .ebook_text .ebook_vol {
    background-color:#fff;
    border-radius:20px 20px 20px 0;
    padding:5px 10px;
    font-size:0.88rem;
    font-weight:700;
    letter-spacing:0.2px;
    width:fit-content;
}
#newsletter .ebook_board .ebook_box .ebook_text .ebook_title {
    display:flex;
    flex-direction:column;
}
#newsletter .ebook_board .ebook_box .ebook_text .ebook_title .ebook_ti {
    font-size:2rem;
    font-weight:700;
    line-height:133%;
    color:#fff;
    font-family:'Gmarket Sans';
}
#newsletter .ebook_board .ebook_box .ebook_text .ebook_title .ebook_subject {
    font-size:1.11rem;
    font-weight:500;
    line-height:150%;
    color:#fff;
    font-family:'Gmarket Sans';
}
#newsletter .ebook_board .ebook_box .ebook_btns {
    display:flex;
    flex-direction:column;
    gap:15px;
}
#newsletter .ebook_board .ebook_box .ebook_btns a {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.11rem;
    font-weight:700;
    line-height:140%;
    color:#fff;
    padding:5px 10px;
    position: relative;
    z-index: 1;
}
#newsletter .ebook_board .ebook_box .ebook_btns a::before {
    content:'';
    width:0;
    height:100%;
    background-color:#0F3388;
    border-radius:5px;
    position: absolute;
    left:0;
    top:0;
    z-index: -1;
}
#newsletter .ebook_board .ebook_box .ebook_btns a:hover::before {
    width:100%;
    transition:all .3s;
}



/* section 03*/
#section03 .sec03 {
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px 100px 0 0;
    background-image:url(../img/index/section03_bg.png);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center top;
    position: relative;
}
#section03 .sec03::before {
    content:'';
    width:895px;
    height:445px;
    background-image:url(../img/index/section03_left_bg.png);
    background-repeat:no-repeat;
    position:absolute;
    left:0;
    top:0;
}
#section03 .sec03::after {
    content:'';
    width:628px;
    height:458px;
    background-image:url(../img/index/section03_right_bg.png);
    background-repeat:no-repeat;
    position:absolute;
    right:0;
    bottom:0;
}
#section03 .sec03 .sec03_wrap {
    display: flex;
    align-items:flex-start;
    gap:40px;
    border-radius: 60px;
    border: 2px solid #FFF;
    background-color: rgba(255, 255, 255, 0.70);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
    padding:40px;
    position: relative;
    z-index:1;
}
#section03 .sec03 .sec03_wrap .sec03_title {
    display:flex;
    align-items:center;
    justify-content:space-between;
}
#section03 .sec03 .sec03_wrap .sec03_title p {
    font-size:2rem;
    font-weight:500;
    letter-spacing:0.5px;
    font-family:'Gmarket Sans';
}
#section03 .sec03 .sec03_wrap .sec03_title p span {
    color:#2F63A1;
}

/* section03 - news */
#news {
    flex:1;
    width:1168px;
    display:flex;
    flex-direction:column;
    gap:20px;
}
#news .splide__arrows {
    display:flex;
    align-items:center;
    gap:10px;
}
#news .splide__arrows .splide__arrow {
    position:unset;
    transform:unset;
    width:50px;
    height:50px;
    border-radius: 50px;
    background-color: #FDFDFD;
    box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.15) inset;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:1;
}
#news .splide__arrows .splide__arrow--prev svg {
    transform:unset;
}
#news .splide__arrows .more_btn a {
    width:50px;
    height:50px;
    border-radius: 50px;
    background-color: #FDFDFD;
    box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.15) inset;
    display:flex;
    align-items:center;
    justify-content:center;
    transition: 0.3s;
}
#news .splide__arrows .splide__arrow:hover {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}
#news .splide__arrows .more_btn a:hover svg {
    animation: revolve .3s;
}
#news .splide__arrows .more_btn a:hover svg path {
    fill:#173C7B;
}
#news .news_cont .splide__slide .inner {
    position: relative;
}
#news .news_cont .splide__slide .inner .img {
    border-radius:20px;
    overflow:hidden;
}
#news .news_cont .splide__slide .inner .img img {
    width:100%;
    transition:all .3s;
}
#news .news_cont .splide__slide .inner .slide_txt {
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    padding:30px;
    background: #000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 63.09%, rgba(0, 0, 0, 1) 98.77%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 5px;
    border-radius:20px;
}
#news .news_cont .splide__slide .inner .slide_txt .slide_tit {
    font-size:1.11rem;
    font-weight:700;
    line-height:140%;
    color:#fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
#news .news_cont .splide__slide .inner .slide_txt .slide_date {
    font-size:0.88rem;
    font-weight:400;
    line-height:162%;
    color:#fff;
    letter-spacing:0.2px;
}
#news .news_cont .splide__slide .inner:hover .img img {
    transform:scale(1.3);
    transition:all 0.3s;
}



/* section03 - event */
#event {
    width:312px;
    display:flex;
    flex-direction:column;
    gap:20px;
} 
#event .more_btn a {
width:50px;
    height:50px;
    border-radius: 50px;
    background-color: #EDF6FB;
    box-shadow: 1px 2px 5px 0 #C6DDEA inset;
    display:flex;
    align-items:center;
    justify-content:center;
    transition: 0.3s;
}
#event .more_btn a svg path {
    fill:#173C7B;
}
#event .more_btn a:hover svg {
    animation: revolve .3s;
}
#event .event_cont .schedule {
    display:flex;
    flex-direction: column;
    gap:22px;
}
#event .event_cont .schedule .cal_month {
    background-color:#fff;
    border-radius:30px;
    padding:5px;
    box-shadow: 0 0 5px 0 #D7E6FF;
}
#event .event_cont .schedule .cal_month p {
    font-size:1rem;
    font-weight:500;
    text-align:center;
    font-family: "Gmarket Sans";
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#event .event_cont .schedule .schedule_wrap {
    display:flex;
    flex-direction:column;
    gap:22px;
}
#event .event_cont .schedule .schedule_wrap .event_table {
    margin:0 10px;
}
#event .event_cont .schedule .schedule_wrap .event_table table {
    table-layout:fixed;
}
#event .event_cont .schedule .schedule_wrap .event_table table th {
    font-size:0.88rem;
    font-weight:700;
    color:#222;
    letter-spacing: 0.2px;
    text-align:center;
    height:33px;
}
#event .event_cont .schedule .schedule_wrap .event_table table th.sunday {
    color:#B01515
}
#event .event_cont .schedule .schedule_wrap .event_table table th.saturday {
    color:#004F90;
}
#event .event_cont .schedule .schedule_wrap .event_table table td {
    height:28px;
}
#event .event_cont .schedule .schedule_wrap .event_table table td p {
    text-align:center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#event .event_cont .schedule .schedule_wrap .event_table table td a {
    text-align:center;
    font-size:0.88rem;
    font-weight:400;
    letter-spacing:0.2px;
    color:#222;
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: initial;
}
#event .event_cont .schedule .schedule_wrap .event_table table td a.writeday {
    border-radius:7px;
    border:1px solid #173C7B;
    background-color:#fff;
    color:#173C7B;
    cursor: pointer;
}
#event .event_cont .schedule .schedule_wrap .event_table table td.today a {
    border-radius:7px;
    background-color:#FF9434;
    font-weight:700;
    color:#fff;
    border-color:#FF9434;
}

#event .event_cont .schedule .schedule_wrap .event_cont_view .message {
    background-color:#2F63A1;
    border-radius:10px;
    padding: 10px;
    height:115px;
}
#event .event_cont .schedule .schedule_wrap .event_cont_view .schedbox {
    height:100%;
    overflow-y:scroll;
    scroll-behavior: smooth;
    scrollbar-color: #BDBDBD transparent;
    scrollbar-width:thin;
}
#event .event_cont .schedule .schedule_wrap .event_cont_view .schedbox .subcont {
    display:flex;
    flex-direction:column;
    padding:0 5px;
}
#event .event_cont .schedule .schedule_wrap .event_cont_view .schedbox .subcont p {
    padding:5px 0;
    border-bottom:1px dashed #fff;
    font-size:0.88rem;
    font-weight:700;
    line-height:137%;
    letter-spacing: 0.3px;
    color:#fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  /* 말줄임 적용 */
}

/* section04 */
#section04 {}
#section04 .sec04 {
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px 100px 0 0;
    background-image:url(../img/index/section04_bg.png);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center top;
    position: relative;
}
#section04 .sec04 .sec04_wrap {
    display:flex;
    align-items:center;
    gap:60px;
}

/* section04 - happy */
#happy {
    width:560px;
    display:flex;
    flex-direction:column;
    gap:170px;
}
#happy .happy_text {
    display:flex;
    flex-direction:column;
    gap:25px;
}
#happy .happy_text .haapy_title {
    font-size:3.333rem;
    font-weight:500;
    color:#173C7B;
    line-height:120%;
    letter-spacing:0.5px;
    font-family: "Gmarket Sans";
}
#happy .happy_text .haapy_title .point_heart {
    position: relative;
}
#happy .happy_text .haapy_title .point_heart::before {
    content:'';
    width:30px;
    height:30px;
    background-image:url(../img/index/heart_point.svg);
    background-repeat:no-repeat;
    position:absolute;
    left:50%;
    top:-30px;
    transform:translateX(-50%);
}
#happy .happy_text .haapy_title .highlight {
    display:block;
    color:#346BCA;
    position: relative;
    width:fit-content;
    z-index:1;
}
#happy .happy_text .haapy_title .highlight::before {
    content:'';
    width:100%;
    height: 25px;
    border-radius:50px;
    background-color: rgba(255, 255, 255, 0.60);
    position:absolute;
    left:0;
    bottom:8px;
    z-index: -1;
}
#happy .happy_text .happy_co {
    font-size:1.11rem;
    font-weight:500;
    line-height:160%;
    font-family: "Gmarket Sans";
}
#happy .happy_btns {
    display:flex;
    align-items:flex-end;
    gap:40px;
} 
#happy .happy_btns .happy_btn {
    position: relative;
    flex:1;
}
#happy .happy_btns .happy_btn .happy_icon {
    position:absolute;
    left: 50%;
    bottom: 65px;
    transform: translateX(-50%);
}
#happy .happy_btns .happy_btn .happy_ti {
    border-radius: 70px;
    border: 1px solid #FFF;
    background-color: rgba(255, 255, 255, 0.30);
    padding:60px 20px 20px;
}
#happy .happy_btns .happy_btn .happy_ti p {
    font-size: 1.33rem;
    font-weight:500;
    color:#222;
    font-family: "Gmarket Sans";
    text-align:center;
}
#happy .happy_btns .happy_btn .happy_icon:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% / 100%;
    height: 10px;
    width: 60%;
    opacity: 0;
    background: radial-gradient(circle,rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,0) 100%);
    /* W3C */
    transition-duration: 0.3s;
    transition-property: transform opacity;

}
#happy .happy_btns .happy_btn:hover .happy_icon {
  transform: translateX(-50%) translateY(-9px);
  animation-name: hover;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
#happy .happy_btns .happy_btn:hover .happy_icon:before {
  opacity: 0.4;
  transform: translateX(-50%) translateY(9px);
  animation-name: hover-shadow;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
#happy .happy_btns .happy_btn:hover .happy_ti p {
    color:#173C7B;
}

/* section04 - nanum */
#nanum {
    flex:1;
    max-width:900px;
}
#nanum .nanum_slide {
    border-radius: 50px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.50);
    padding:20px;
}
#nanum .nanum_slide .txt {
    box-shadow: 0 0 35px 0 rgba(255, 255, 255, 0.80) inset;
    border-radius: 30px;
}
#nanum .nanum_slide .txt img {
    width:100%;
    border-radius: 30px;
}
#nanum .nanum_slide .splide__arrows {
    display:flex;
    align-items:stretch;
    gap:10px;
    position:absolute;
    right: 30px;
    bottom:30px;
}
#nanum .nanum_slide .splide__arrows .splide__arrow {
    position:unset;
    width:50px;
    height:50px;
    border-radius:50%;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 5px 5px 0 rgba(49, 84, 114, 0.20);
    backdrop-filter: blur(2px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:1;
    transform:unset;
}
#nanum .nanum_slide .splide__arrows .splide__arrow:hover {
    background:#fff;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap {
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 5px 5px 0 rgba(49, 84, 114, 0.20);
    backdrop-filter: blur(2px);
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:5px;
    border-radius:20px;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap .slideCounter {
    display:flex;
    align-items:center;
    gap:3px;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap .slideCounter span {
    font-size:1rem;
    font-weight:400;
    color:#222;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap .slideCounter .counter_point {
    font-weight:700;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap button {
    width:27px;
    height:27px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#fff;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap .slideCounter3 {
    display:flex;
    align-items:center;
    gap:3px;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap .slideCounter3 span {
    font-size:1rem;
    font-weight:400;
    color:#222;
}
#nanum .nanum_slide .splide__arrows .control_btn_wrap .slideCounter3 .counter_point {
    font-weight:700;
}


/* 반응형 미디어쿼리 css */
@media(max-width:1600px) {
    #visual .visual_bnn .splide__slide .txt img {
        border-radius:100px;
    }
    #notice {
        width:auto;
        max-width:800px;
    }
    #notice .tab_contents .notice_board .firat_list {
        padding:30px;
        width:320px;
    }
    #notice .tab_contents .notice_board .wrap_list .board_link .laC_sbjt2 {
        max-width:200px;
    }
}
@media(max-width:1440px) {
    #section02 .sec02 .mircenter {
        flex-direction: column;
        align-items:center;
    }
    #notice {
        width: 100%;
        max-width:1024px;
    }
    #notice .tab_contents .tab_board {
        padding:40px;
        width:100%;;
    }
    #notice .tab_contents .notice_board .firat_list {
        border-radius: 20px 60px 20px 20px;
    }
    #notice .tab_contents .notice_board .firat_list .laC_title::before {
        display:none;
    }
    #notice .tab_contents .notice_board .firat_list .laC_title .laC_sbjt1 {
        height:55px;
    }
    #notice .tab_contents .notice_board .firat_list .list_cont {
        display:none;
    }
    #notice .tab_contents .notice_board .wrap_list {
        gap:20px;
        margin:0;
    }
    #notice .tab_contents .notice_board .wrap_list .board_link:nth-child(5),
    #notice .tab_contents .notice_board .wrap_list .board_link:nth-child(6) {
        display:none;
    }

    #newsletter {
        padding:30px;
        width:100%;
        max-width:540px;
        display:flex;
        align-items:center;
        gap:30px;
    }
    #newsletter .ebook_board .ebook_thumb img {
        width: 100%;
        max-width:240px;
    }


    #happy {
        flex: 1;
        width: auto;
    }
    #happy .happy_text .haapy_title {
        font-size:2.5rem;
    }
}
@media(max-width:1200px) {
    #visual .visual_bnn .splide__arrows {
       bottom:260px;
    }
    #direct {
        gap:80px;
        bottom: 0;
    }

    #notice .tab_contents .notice_board .firat_list .list_cont .laC_content {
        height:100px;
    }
  
    #happy .happy_btns .happy_btn .happy_icon img {
        width:180px;
    }
}
@media(max-width:1024px) {
    #indicator {
        display:none;
    }
    #index section {
        padding-top:0;
        height:auto;
    }
    #index #section01 {
        padding-top:80px;
    }
    #visual .visual_bnn .splide__slide .txt.pc_bnn {
        display:none;
    }
    #visual .visual_bnn .splide__slide .txt.mo_bnn {
        display:block;
    }
    #visual .visual_bnn .splide__arrows {
       bottom:30px;
    }
    #direct {
        padding:20px 70px;
        background:#fff;
        backdrop-filter: blur(7.5px);
        border-radius:0;
        position:unset;
        transform:unset;
        gap:0;
    }
    #direct .direct_box {
        flex:1;
        align-items:center;
    }
    #section02 .sec02 {
        padding:100px 0;
    }
    #section02 .sec02::before {
        width:100%;
        height:100%;
        background-size: auto 100%;
        background-position:left bottom;
    }
    #section02 .sec02::after {
        width:100%;
        height:100%;
        background-size:auto;
        background-position:right top;
    }

    #newsletter {
        align-self:flex-end;
    }
    #newsletter .newsletter_title {
        font-size:56px;
        left: -280px;
        top: 50%;
        text-align: left;
        transform: translateY(-50%);
    }
    #newsletter .newsletter_title br {
        display:block;
    }
    #index #section03 {}
    #section03 .sec03 {
        padding:100px 0;
        border-radius:0;
        background-size:100% 100%;
    }
    #section03 .sec03 .sec03_wrap {
        border-radius:0;
        border:none;
        background-color:transparent;
        box-shadow:none;
        flex-direction:column;
        padding:0;
    }
    #news {
        width:100%;
        flex:none;
        border-radius: 40px;
        border: 2px solid #FFF;
        background: rgba(255, 255, 255, 0.70);
        box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
        padding:40px;
    }
    #event {
        width:100%;
        margin:0 auto;
        border-radius: 40px;
        border: 2px solid #FFF;
        background: rgba(255, 255, 255, 0.70);
        box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
        padding:20px;
    }
    #event .event_cont .schedule .schedule_wrap {
        flex-direction:row;
    }
    #event .event_cont .schedule .schedule_wrap .event_table {
        flex:1;
    }
    #event .event_cont .schedule .schedule_wrap .event_cont_view {
        flex:1;
    } 
    #section04 .sec04 {
        padding:100px 0;
        border-radius:0;
    }
    #section04 .sec04 .sec04_wrap {
        flex-direction:column;
    }
    #happy {
        width:100%;
        gap:100px;
    }
    #happy .happy_text .haapy_title {
        text-align:center;
    }
    #happy .happy_text .haapy_title .highlight {
        display:inline-block;
    }
    #happy .happy_text .happy_co {
        text-align:center;
    }
}
@media(max-width:991px) {
    #newsletter {
        align-self:center;
    }
    #newsletter .newsletter_title {
        font-size:42px;
        left: 50%;
        top: -22px;
        text-align: left;
        transform: translateX(-50%);
    }
    #newsletter .newsletter_title br {
        display:none;
    }
    #section03 .sec03::before,
    #section03 .sec03::after {
        width:100%;
        height:100%;
    }
    #happy .happy_btns .happy_btn .happy_icon img {
        width:160px;
    }
}
@media(max-width:768px) {
    #section02 .sec02 {
        border-radius:0;
    }
    #notice .mir_maintab {
        padding:0;
        padding-left:10px;
    }
  
    #notice .tab_contents .tab_board {
        border-radius:0 0 30px 30px;
    }
    #notice .tab_contents .notice_board {
        flex-direction:column;
        gap:30px;
        padding:0;
    }
    #newsletter .ebook_board .ebook_cont .ebook_thumb {
        width: 100%;
        text-align: center;
    }
    #notice .tab_contents .notice_board .wrap_list {
        gap: 10px;
    }
    
    #notice .tab_contents .notice_board .firat_list {
        width:100%;
    }
    #notice .tab_contents .notice_board .wrap_list {
        width:100%;
    }
    #newsletter {
        padding-top:40px;
        margin-left:0;
    }
    #newsletter .newsletter_cont {
        width:100%;
    }
    #newsletter .ebook_board .ebook_box {
        width: 100%;
    }
    #newsletter .ebook_board .ebook_cont {
        flex-direction:column;
    }
    #newsletter .ebook_board .ebook_cont .ebook_thumb {
        display:block;
        margin:0 auto;
    }
    #newsletter .ebook_board .ebook_box {
        flex-direction:row;
        align-items: center;
        justify-content: center;
    }
    #event .event_cont .schedule .schedule_wrap .event_table table th {
        height: 25px;
    }
    #news {
        padding:30px;
    }
    #section02 .sec02,
    #section03 .sec03,
    #section04 .sec04 {
        padding: 50px 0;
    }
}
@media(max-width:640px) {
    .mircenter {
        padding: 0 10px;
    }
    #visual .visual_bnn .splide__slide .txt img {
        border-radius:50px;
    }
    #visual .visual_bnn .splide__arrows {
        bottom:20px;
    }
    #visual .visual_bnn .splide__arrows .splide__arrow {
        width:40px;
        height:40px;
    }

    #direct {
        padding:20px 40px;
    }
    #direct .direct_box .direct_icon {
        width:60px;
        height:60px;
    }
    #direct .direct_box .direct_icon img,
    #direct .direct_box .direct_icon svg {
        max-width:100%;
    }
    #direct .direct_box .direct_ti {
        font-size:0.88rem;
    }


    #notice .mir_maintab .tab_more {
        display:none;
    }
    #notice .mir_maintab .tab_btns {
        width:100%;
    }
    #notice .mir_maintab .tab_btns li {
        width:33.333%;
    }
    #notice .tab_contents .tab_board {
        padding:20px;
    }
    #notice .tab_contents .notice_board .firat_list {
        padding:20px;
    }
    #newsletter .ebook_board .ebook_box {
        gap:20px;
    }
    #news {
        padding:20px;
    }
    #event .event_cont .schedule .schedule_wrap {
        flex-direction:column;
    }
    #happy .happy_btns {
        gap:20px;
    }
    #happy .happy_btns .happy_btn .happy_icon {
        bottom:50px;
    }
    #happy .happy_btns .happy_btn .happy_icon img {
        width:120px;
    }
    #happy .happy_btns .happy_btn .happy_ti {
        border-radius:30px;
        padding:40px 5px 10px;
    }
    #happy .happy_btns .happy_btn .happy_ti p {
        font-size:1.11rem;
    }
    #nanum .nanum_slide {
        border-radius:40px;
        padding:10px;
    }
    #nanum .nanum_slide .splide__arrows {
        right:25px;
        bottom:20px;
    }
    #nanum .nanum_slide .splide__arrows .splide__arrow {
        width:40px;
        height:40px;
    }
}
@media(max-width:480px) {
    #direct {
        padding:10px;
        flex-wrap: wrap;
    }
    #direct .direct_box {
        flex:none;
        width:33.333%;
    }
    #visual .visual_bnn .splide__slide .txt img {
        border-radius: 40px;
    }

    #section03 .sec03 .sec03_wrap #news .sec03_title {
        flex-direction:column;
        gap:10px;
    }
    #news,
    #event {
        border-radius: 30px;
    }
    #newsletter {
        padding: 35px 20px 20px 20px;
        border-radius: 40px;
    }
    #newsletter .ebook_board .ebook_cont {
        gap: 20px;
    }
    #newsletter .ebook_board .ebook_box {
        gap: 10px;
    }
    #happy .happy_btns .happy_btn .happy_ti {
        border-radius: 20px;
    }
    #nanum .nanum_slide {
        border-radius: 30px;
    }
    #nanum .nanum_slide .txt img {
        border-radius: 20px;
    }
    #happy .happy_btns .happy_btn .happy_ti {
        padding: 15px 5px 10px;
    }
    #newsletter .newsletter_title {
        width: 100%;
        text-align: center;
        font-size: 37px;
    }
}