body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
body {
    padding-top: var(--header-h);
}
:root {
    --header-h: 146px;
    --top_nav_hight: 97px;
    /* header 높이 */
    --top_nav_all_hight: 480px;
    /* 네비 hover시 길이 */
}
.container {
    width: 1240px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;

}
@media(max-width:1239px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;

    }
}
@media(max-width:991px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;

    }

}
.point01 {
    color: #0d326f;

}
.point02 {
    color: #be32d3;

}
.point01_bg {
    background: #0d326f;

}
#header.header {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-h);
    transition: height 0.5s, background 0.2s;

}
#header #top_notice {
    background: #0d326f;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
#header #top_notice .container {
    display: flex;
}
#header #top_notice .container a {
    color: #fbf3cc;
    font-size: 16px;
    line-height: 34px;
}
#header #top_notice .container p {
    margin-left: 30px;
    background: #06214e;
    color: #dfebff;
    font-size: 14px;
    padding: 6px 20px;
}
#header .header_flex {
    display: flex;
    align-items: center;
}

#header .header_flex .logo {
    flex: 0 0 15%;
}

#header .header_flex .nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: -100px;
}

#header .header_flex .util {
    flex: 0 0 6%;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    /* background: #ddd; */
}
/* 로고 */
#header .logo {
    padding-left: 40px;

}

#header .logo a {}
#header.all .logo a {
    background: url("../../theme_lib/img/common/logo.png") 0 100% no-repeat;
}
/* 로고 마감 */

/* 상단 오른쪽 */
#header .header_flex .util .flex {
    display: flex;
    /* margin-top: 12px; */
}
#header .header_flex .util .flex .login {
    margin-left: 5px;
    position: relative;
}
#header .header_flex .util .flex .langs {
    position: relative;
    cursor: pointer;
    margin-right: 18px;
}
#header .header_flex .util .flex .langs:after {
    position: absolute;
    width: 1px;
    margin-left: 18px;
    margin-top: 8px;
    height: 20px;
    background: rgba(255, 255, 255, .5);
    content: "";
}
#header .header_flex .util .flex .langs.active:after {
    /* position: absolute;
    width: 1px;
    margin-left: 18px;
    margin-top: 8px;
    height: 20px;
    background: rgba(0, 0, 0, .2);
    content: ""; */
}
#header .header_flex .util .flex .langs .over {
    position: absolute;
    top: 0px;
    right:42px;
    background: #fff; 
    z-index: 21000;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 0.6em;
    transition: 0.2s;
    border: 1px #ddd solid;
    display: none;  
    grid-template-columns: repeat(2, 1fr);
}
#header .header_flex .util .flex .langs .over.logins {
    width: 180px;
    display:grid;
}

#header .header_flex .util .flex .langs.active .over {
    display: grid; /* 혹은 block 말고 grid 그대로 써도 됨 */
}

#header .header_flex .util .flex .langs .over li {
    list-style: none;
    padding: 5px 0;
     position: relative; 
}

#header .header_flex .util .flex .langs > ul > li > a {
    display: block; 
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
     position: relative;
     

}
.wiz_hamburger {
    display:none;
}
/* 네비 */
#header .inner {
    position: relative;
    width: 100%;
    height: var(--top_nav_hight);
    margin: 0 auto;
}

#header .inner:after {
    display: block;
    clear: both;
    content: "";
}

#header .gnb_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .gnb {
    text-align: center;

}

#header #gnb {
    background: transparent;
}

#header .gnb li {
    float: left;
    width: 170px;
    text-align: center;
    transition: 0.4s;

}

#header .gnb li.gnb_empty,
#header .gnb li.gnb_empty a {
    font-size: 16px;
    line-height: 24px;
    width: 500px;
    text-align: center;
    color: #000;
}

#header .gnb a {
    display: inline-block;

}

#header .gnb:after {
    display: block;
    clear: both;
    content: "";
}

#header .gnb .depth1 {
    position: relative;
}

#header .gnb .depth1 > a {
    display: block;
    height: 57px;
    padding: 40px 0 0;
    font-size: 19px;
    font-weight: 500;
    line-height: 1em;
    color: #fff;
}

#header .gnb .depth1 > a:focus,
#header .gnb .depth1 > a:hover,
#header .gnb .depth1.on > a,
#header .gnb .depth1.on > a:hover {
    color: #000 !important;
    text-decoration: none;
}

#header .gnb .depth2 {
    display: none;
}

/* header_hover */
#header.all {
    /* height: 390px; */
    height: var(--top_nav_all_hight);
    background: #fff;
    z-index: 1100;
     border-bottom: 1px #ddd solid;

}
/* 
#header.all .top_wrap {
    border-bottom: 1px #ddd solid;
} */

#header.all:before {
    position: absolute;
    left: 0;
    /* top: 97px; */
    top: var(--header-h);
    width: 100%;
    height: 260px;
    background: #fff;
    content: "";
    border-top: 1px #ddd solid;
}

/* 마우스 오버시 가로 가격 */
#header.all .gnb li {
    width: 190px;
}

#header.all h1.sub a {
    background-position: 0 100%;
}

#header.all .gnb_wrap .gnb a {
    color: #666;
}

#header.all .gnb_wrap .gnb a:focus,
#header.all .gnb_wrap .gnb a:hover {
    color: #6b9ecc;
}

#header.all .gnb_wrap .depth1 {
    overflow: hidden;
}

#header .gnb_wrap .depth1 > a {
    margin-bottom: 41px;
    color: #1a1a1a;
    font-size: 21px;
    font-weight: 600;
}

#header.all .gnb_wrap .depth1 > a:focus,
#header.all .gnb_wrap .depth1 > a:hover {
    /* color: #000; */
}

#header.all .gnb_wrap .depth1.menu1 {
    margin-left: 0;
}

#header .gnb_wrap #gnb .depth1:first-child .depth2 {
    border-left: 1px #ddd solid;
}

#header.all .gnb_wrap .depth2 {
    display: block;
    border-right: 1px #ddd solid;
    height: 100vh;
    position: relative;
    padding-top: 22px;
    transition: 0.2s;
    border-top: 1px #ddd solid;
}

#header .gnb .depth1:hover .depth2 {
    background: #f8f8f8;
    border-top: 1px #ddd solid;
}

#header.all .gnb_wrap .depth2 > li {
    margin-bottom: 18px;
    line-height: 1em;

}

#header.all .gnb_wrap .depth2 > li > a {
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(87, 87, 87);
    display: inline-block;
    position: relative;
}

#header.all .gnb_wrap .depth2 > li > a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: transparent;
    transition: width 0.5s ease, background-color 0.5s ease;

}

#header.all .gnb_wrap .depth2 > li > a:hover:before {
    width: 100%;
    background: #000;
}

#header.all .gnb_wrap .depth2 > li > a:hover {
    text-decoration: none;
    color: #000;
}
/* 메인비주얼 */
#index-visual {
    position: relative;
    margin-top: 0;
    background: url("../../img/main/header_bg.jpg");
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#index-visual .flex {
    display: flex;
}
#index-visual .flex .text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#index-visual .flex .slider {
    width: 60%;
    padding-left: 46px;
     position: relative;
}
#index-visual .flex .slider .index-visual-slider {
    --radius: 24px;
    --elev-y: 22px;
    --blur1: 46px;
    --blur2: 18px;
    position: relative;
    border-radius: 32px;
    width: 100%;
    height: 100%;
    box-shadow: 0 var(--elev-y) var(--blur1) rgba(0,0,0,.22), 0 8px var(--blur2) rgba(0,0,0,.12);

}
#index-visual .flex .slider img {
    width: 100%;
    border-radius: 32px;

}
#index-visual .flex .slider .box .caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    color: #fff;
    font-weight: 600;
    /* text-shadow: 0 2px 8px rgba(0,0,0,.35); */
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 100%);
    border-radius: 32px;
    font-size: 24px;

    text-align: center;
}
#index-visual .flex .text dl dt {
    font-size: 60px;
    font-weight: 800;
    color: #111111;
    line-height: 74px;

}
#index-visual .flex .text dl dt span {}
#index-visual .flex .text dl dd {
    font-size: 20px;
    color: #6e6e6e;
    line-height: 30px;
    margin-top: 16px;
}
#index-visual .pager_wrap {
     position: absolute;
     bottom: 15px;
     z-index: 9999999999999999;
     display:flex;
     justify-content:space-between;
     width: 100%;
}
#index-visual .pager_wrap .arr {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    transition: .3s;
    border: 2px transparent solid;
    overflow: hidden; /* ✅ 아이콘이 밖으로 튀어나가지 않게 */
    position: relative;
}
#index-visual .pager_wrap .next {
    margin-right: 80px;
}
#index-visual .pager_wrap .prev {
    margin-left: 40px;
}
#index-visual .pager_wrap .arr:hover {
     background: rgba(255, 255, 255, 0);
     border: 2px #fff solid;

}
#index-visual .pager_wrap .arr:hover i {
    color: #fff;
}
#index-visual .pager_wrap .arr i {
    position: relative; 
    display: inline-block;
}

#index-visual .pager_wrap .next:hover i {
    animation: flyNext .6s ease forwards;
}

@keyframes flyNext {
    0%   { transform: translateX(0); opacity:1; }
    49%  { transform: translateX(100%); opacity:0; } /* 오른쪽 끝 */
    51%  { transform: translateX(-100%); opacity:0; } /* 왼쪽 끝에서 슬쩍 등장 */
    100% { transform: translateX(0); opacity:1; }
}

#index-visual .pager_wrap .prev:hover i {
    animation: flyPrev .6s ease forwards;
}

@keyframes flyPrev {
    0%   { transform: translateX(0); opacity:1; }
    49%  { transform: translateX(-100%); opacity:0; }
    51%  { transform: translateX(100%); opacity:0; }
    100% { transform: translateX(0); opacity:1; }
}


/* #index-visual .index-visual-slider .slick-list {
  overflow: visible;
}
#index-visual .slider {
  padding: 50px;
  overflow: hidden;
}
#index-visual .index-visual-slider .slick-list {
    margin:0 -15px;
}
#index-visual .index-visual-slider .slick-slide {
    margin:0 15px;
} */

/* index */
#index-wrap {
    margin-top: 0;
}
#index-wrap section.section01 .wrap-flex,
#index-wrap section.section03 .wrap-flex {
    display: flex;
}

#index-wrap section.section01 .notice {
    width: 62%;
}
#index-wrap section.section01 .notice .title h2,
#index-wrap section.section03 .notice .title h2 {
    font-size: 31px;
    font-weight: 800;
}
#index-wrap section.section01 .notice .flex,
#index-wrap section.section03 .notice .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#index-wrap section.section01 .notice h2,
#index-wrap section.section03 .notice h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    background: url("../../img/main/notice_icon.png");
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding-left: 60px;

}

#index-wrap section.section01 .notice h2 .point01,
#index-wrap section.section03 .notice h2 .point01 {
    color: #003399;
}

#index-wrap section.section01 .notice ul.tabs {
    display: flex;
    gap: 0;
    list-style: none;
}

#index-wrap section.section01 .notice ul.tabs li {
    margin: 0;
}

#index-wrap section.section01 .notice ul.tabs li a {
    display: inline-block;
    padding: 11px 28px;
    font-weight: 600;
    color: #707070;
    border: 1px solid #fff;
    border-radius: 3em;
}

#index-wrap section.section01 .notice ul.tabs li.active a {
    color: #fff;
    background-image: url("../../img/main/notice_active.png");
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-color: #0d326f;
    padding-right: 62px;
}
#index-wrap section.section01 .notice .box-wrap {
    margin-top: 20px;
    position: relative;
    min-height: 180px;
    /* border: 1px solid #e5e8ec; */
    border: 1px solid #dbdbdb;
    border-radius: 22px;
    background: #fff;
    padding: 24px;
    min-height: 370px;
    /* box-shadow: 0 8px 30px rgba(0,0,0,0.05); */
}

/* 탭 콘텐츠 기본 숨김 */
#index-wrap section.section01 .notice .box-wrap > div {
    display: none;
    animation: fadeIn 0.3s ease;
}

/* 기본 탭 (tap01)만 보이게 */
#index-wrap section.section01 .notice .box-wrap > .tap01 {
    display: block;
}

/* 간단한 페이드인 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#index-wrap section.section01 .notice .box-wrap .notice-list {
    padding: 10px 20px;

}

#index-wrap section.section01 .notice .box-wrap .notice-list li,
#index-wrap section.section03 .notice .box-wrap .notice-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    padding-top: 8px;
    padding-bottom: 8px;
}

#index-wrap section.section03 .notice .box-wrap .notice-list li:hover #index-wrap section.section01 .notice .box-wrap .notice-list li:hover {
    background: #f9fbff;
}

#index-wrap section.section01 .notice .box-wrap .notice-list .label,
#index-wrap section.section03 .notice .box-wrap .notice-list .label {
    flex-shrink: 0;
    background: #3970ce;
    color: #e7f0ff;
    border-radius: 40px;
    padding: 9px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-right: 15px;
}

#index-wrap section.section01 .notice .box-wrap .notice-list a,
#index-wrap section.section03 .notice .box-wrap .notice-list a {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
    color: #141414;
    font-weight: 500;

}

#index-wrap section.section01 .notice .box-wrap .notice-list a:hover,
#index-wrap section.section03 .notice .box-wrap .notice-list a:hover {
    color: #0055cc;
}

#index-wrap section.section01 .notice .box-wrap .notice-list .new,
#index-wrap section.section03 .notice .box-wrap .notice-list .new {
    display: inline-block;
    background: #ff7a3d;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    padding: 2px 5px;
    margin-left: 6px;
    vertical-align: middle;
    display: none;
}

#index-wrap section.section01 .notice .box-wrap .notice-list .date,
#index-wrap section.section03 .notice .box-wrap .notice-list .date {
    flex-shrink: 0;
    font-size: 16px;
    width: 100px;
    font-weight: 500;
    text-align: right;
    color: #b3b3b3;
}
@media(min-width:992px) {
    #index-wrap section.section01 .search {
        padding-left: 40px;
        margin-top: 78px;

    }
}
#index-wrap section.section01 .search .search-wrap h3 {
    color: #fff;
    font-weight: 400;
    padding-bottom: 16px;
    font-size: 23px;
}
#index-wrap section.section01 .search .search-wrap h3 span {
    font-weight: 600;
    color: #cbeaff;
}

#index-wrap section.section01 .search .search-wrap {
    padding: 32px 35px;
    background: linear-gradient(135deg, #2a70e0, #10812a);
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);

}
#index-wrap section.section01 .search .search-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* 드롭다운 */
#index-wrap section.section01 .search .search-box select {
    flex: 1 1 100px;
    padding: 17px 14px;
    border-radius: 8px;
    font-size: 17px;
    color: #969696;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23999' width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E<path d='M0 0l6 8 6-8H0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
}

/* 검색 입력창 */
#index-wrap section.section01 .search .search-box input {
    flex: 2 1 180px;
    padding: 17px 14px;
    border-radius: 8px;
    font-size: 17px;
    color: #969696;
    background: #fff;
}

/* placeholder 색상 */
#index-wrap section.section01 .search .search-box input::placeholder {
    color: #aaa;
}

/* 검색 버튼 */
#index-wrap section.section01 .search .search-box button {
    flex: 1 1 100%;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #2c2c2c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 5px;
}

#index-wrap section.section01 .search .search-box button:hover {
    background: #000;
}

#index-wrap section.section01 .search .search-box .icon {
    margin-left: 6px;
    font-size: 14px;
    vertical-align: middle;
}
#index-wrap section.section01 .search .box-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}
#index-wrap section.section01 .search .box-flex .box {
    border: 1px #ddd solid;
    height: 78px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    border-radius: 22px;
    background-image: url("../../img/main/search-arr.png");
    background-repeat: no-repeat;
    background-position: 88% 50%;
}
#index-wrap section.section02 .grid {
    margin-top: 80px;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-content: center;
}
#index-wrap section.section02 .grid .box {
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
#index-wrap section.section02 .grid .box h3 {
    padding-top: 32px;
    display: block;
    font-size: 21px;
    font-weight: 500;
}
#index-wrap section.section03 {
    /* background-color: #f0f2f8; */
    background: url("../../img/main/sec03_bg.jpg") top center;
    background-repeat: no-repeat;
    padding-bottom: 80px;

}
#index-wrap > section.section03 > .container > .title {
    text-align: center;
    padding-top: 80px;
    color: #909090;
}
#index-wrap > section.section03 > .container > .title > h2 {
    font-size: 39px;
    color: #242424;
    padding-bottom: 6px;
}
#index-wrap section.section03 .sec03_slider {
    margin-top: 45px;
}
#index-wrap section.section03 .sec03_slider .slick-list {
    overflow: visible;
}
#index-wrap section.section03 .slider-container {
    padding: 20px;
    overflow: hidden;
    padding-bottom: 40px;
}
#index-wrap section.section03 .sec03_slider .box {
    background: #fff;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 5px 14px rgba(0, 0, 0, .1);
}
#index-wrap section.section03 .sec03_slider .box img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

}
#index-wrap section.section03 .sec03_slider .box .caption {

    padding: 25px 30px;
    font-size: 16px;
    color: #b5b5b5;

}
#index-wrap section.section03 .sec03_slider .box h4 {
    font-size: 21px;
    padding-bottom: 4px;
    color: #242424;
    font-weight: 600;
}
#index-wrap section.section03 .sec03_slider .slick-list {
    margin: 0 -15px;
}
#index-wrap section.section03 .sec03_slider .slick-slide {
    margin: 0 15px;
}
/* 전체 dots 영역 위치 조정(필요 시) */
.sec03_slider .slick-dots {
    bottom: -70px;
    /* 필요 없으면 지워 */
}

/* 기본 dot 스타일 */
.sec03_slider .slick-dots li button:before {
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: block;
    opacity: 1;
    /* Slick 기본 opacity 무시 */
}

/* 활성 dot */
.sec03_slider .slick-dots li.slick-active button:before {
    background: #4a63e7;
    /* 원하는 포인트 컬러로 */
    transform: scale(1.4);
}
.sec03_slider .slick-dots li button:before {
    transition: all 0.25s ease;
}

#index-wrap section.section03 .infomation {
    margin-top: 60px;
}
#index-wrap section.section03 .infomation .notice {
    position: relative;
    border: 1px solid #dbdbdb;
    border-radius: 22px;
    background: #fff;
    padding: 40px 50px;
}
#index-wrap section.section03 .infomation .notice .title {
    border-bottom: 1px #ddd solid;
    margin-bottom: 26px;
    padding-bottom: 14px;
}
#index-wrap section.section03 .infomation .notice .title h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2e2e2f;
    background: url("../../img/main/info_notice_icon.png");
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding-left: 70px;
}

#index-wrap section.section03 .notice .box-wrap .notice-list .label {
    width: 120px;
    height: 37px;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    color: #3b4a93;
    background: #f2f4fb;
    font-size: 14px;
    font-weight: 700;
}
#index-wrap section.section03 .notice {
    width: 60%;
}
#index-wrap section.section03 .bank-wrap {
    width: 40%;
    padding-left: 30px;
}

#index-wrap section.section03 .bank-wrap .box {
    border: 1px #ddd solid;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 22px;
    padding: 25px 32px 35px;

}

#index-wrap section.section03 .bank-wrap .box h3 {
    border-bottom: 1px #ddd solid;
    padding-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #171717;
}
#index-wrap section.section03 .bank-wrap .box dl {
    margin-top: 24px;
    padding-left: 130px;

}
#index-wrap section.section03 .bank-wrap .box.box01 dl {
    background: url("../../img/main/bank01.png");
    background-repeat: no-repeat;
    background-position: 10px 50%;
}
#index-wrap section.section03 .bank-wrap .box.box02 dl {
    background: url("../../img/main/bank02.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
}

#index-wrap section.section03 .bank-wrap .box dl dt {
    font-size: 18px;
    /* color: #676767; */
}
#index-wrap section.section03 .bank-wrap .box dl dd {
    font-size: 18px;
    color: #676767;
}
#index-wrap section.section03 .bank-wrap .tip {
    font-size: 17px;
    text-align: center;
    padding-top: 16px;
}
#index-wrap section.section03 .bank-wrap .tip span {
    position: relative;
    display: inline-block;
}
#index-wrap section.section03 .bank-wrap .tip span::before {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #0d326f;
    content: '';
    margin-top: 23px;
}

/* index end*/

/* 서브 비주얼 */
#sub-visual {
    position: relative;
    height: 322px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-position: 50% 0%;
}

/* 배경 줌인/줌아웃 */
#sub-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--bg, none);
    /* ← JS가 넣어주는 변수 */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform-origin: center center;
    transform: scale(1.2);
    /* 시작 확대 */
    transition: transform 3.3s ease;
    will-change: transform;
}

#sub-visual.is-zoom::before {
    transform: scale(1);
    /* 원본으로 */
}

#sub-visual .container {
    position: relative;
    z-index: 1;
    /* 텍스트는 항상 위 */
}

#sub-visual .title  {
    text-align: center;
}
#sub-visual .title h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}
#sub-visual .title p {
    font-size: 19px;
    color: rgba(255, 255, 255, .8);
}

/* 서브레이아웃 */

#sub-wrap {
    margin-top: 80px;
    margin-bottom: 80px;
}
#sub-wrap .sub-content-flex {
    display:flex;
}
#side-menu {
    width: 20%;
}
#sub-content-wrap {
    width: 80%;
    margin-left: 80px;
}
#side-menu h3 {
    font-size:23px;
    font-weight:700;
     position: relative;
}
#side-menu h3::before {
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #b3d5ff 0%, #e0ff96 100%);
    content: '';
    margin-top: 42px;
}
#side-menu > ul {
  margin-top: 40px;
  padding:0;
}
#side-menu ul li {
  list-style:none;
}
#side-menu ul li a {
  display:block;
  font-size:17px;
  color: #4b4b4b;
  padding: 6px 0;
  text-decoration:none;
}

#side-menu .has-sub > a::after {
    font-family: 'bootstrap-icons';
    content: "\F282";
  float: right;
  font-size: 12px;
  transition: transform 0.2s;
}

#side-menu .active > a {
  font-weight: 600;
  color: #000;
}

#side-menu .active > a::after {
  transform: rotate(-180deg);
}


#side-menu .sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding-left: 10px;
}

#side-menu .active .sub {
  max-height: 500px;
}

#sub-content-wrap .title--s {
    display:flex;
    justify-content:space-between;
}
#sub-content-wrap .title--s ul {
    display:flex;
    border: 1px #f1f1f1 solid;
    height: 55px;
    align-items: center;
        box-shadow: 0 3px 5px rgba(143, 143, 143, 0.1);
        border-radius: 3em;
        padding-left: 30px;
        padding-right: 30px;

}
#sub-content-wrap .title--s ul li {
    font-size:16px;
    color: #808080;
}
#sub-content-wrap .title--s ul li:last-child:before {
    font-family: 'bootstrap-icons';
    content: "\F285";
    margin-right: 10px;
    margin-left: 10px;
    font-size:12px;
}
#sub-content-wrap .title--s ul li:first-child::before {
    font-family: 'bootstrap-icons';
    content: "\F423";
    margin-right: 12px;
}
#sub-content-wrap .title--s ul li:last-child {
    color: #000;
}
#sub-content-wrap > .title--s  {
    margin-bottom: 36px;
}
#sub-content-wrap > .title--s > h2 {
    font-size:34px;
    font-weight:700;
} 
#sub-content {
    min-height: 400px;
    font-size:18px;
    color: #6b6b6b;
}
/* 서브레이아웃 마감 */

/* 
#sub-content {
    padding-top: 100px;
}
#sub-content.empty {
    padding-top: 20px;
}

#sub-content .page-header {
    text-align: center;
    padding-bottom: 80px;
}
#sub-content.board .page-header {
    text-align: center;
    padding-bottom: 35px;
}
#sub-content .page-header h1 {
    font-size: 48px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}
#sub-content .page-header h1::before {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    content: '';
    margin-top: 64px;
} */

/* footer  */

/* ===== Base ===== */
.footerbar {
}


.footerbar-quick {
    background: #f5f7fb;
    border-top: 1px solid #eceff4;
}
.footerbar-quick .container {
    display: flex;
    align-items: center;
    /* gap: 16px; */
    /* padding: 16px 20px; */
}
.footerbar-links {
    display: grid;
    grid-auto-flow: column;
    gap: 0;
    border-left: 1px solid #eaedf3;
    flex: 1;
    width: 70%;
}
.footerbar-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 28px;
    min-height: 54px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid #dfe3eb;
}


.footerbar-related {
    position: relative;
    width: 30%;
    display:flex;
    justify-content: flex-end
}
.footerbar-related-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    width: 220px;
    border: 1px solid #e6e9f0;
    border-radius: 28px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: #222;
    font-size:17px;
}
.footerbar-related-btn svg {
    transition: transform 0.2s ease;
    text-align: right;
    display:flex;
    justify-content: end;
     position: absolute;
     right: 30px;
}
.footerbar-related[aria-expanded="true"] .footerbar-related-btn svg {
    transform: rotate(180deg);
}
.footerbar-related-list {
    position: absolute;
    right: 0;
    top: calc(100% + -178px);
    min-width: 220px;
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    padding: 8px;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 10;
}
.footerbar-related[aria-expanded="true"] .footerbar-related-list {
    display: block;
}
.footerbar-related-list a {
    display: block;
    padding: 3px 12px;
    border-radius: 8px;
    color: #222;
    text-decoration: none;
    font-size:16px;
}


.footerbar-copy {
    background: #727987;
    color: #fff;
    padding: 54px 0;
}
.footerbar-copy .container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.footerbar-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}


.footerbar-info {
    font-size: 17px;
    padding-left: 40px;
    color: #e3e3e3;
}




