:root {
    --kpbma-blue: 0, 93, 171;
    --kpbma-blue-dark: 17, 65, 105;
    --st-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .15);
}


/*common*/
a {
    text-decoration: none;
    transition: all .3s ease;
}

/*bs-override*/
.bg-blue {
    background-color: var(--bs-blue);
}

.bg-indigo {
    background-color: var(--bs-indigo);
}

.bg-purple {
    background-color: var(--bs-purple);
}

.bg-pink {
    background-color: var(--bs-pink);
}

.bg-red {
    background-color: var(--bs-red);
}

.bg-orange {
    background-color: var(--bs-orange);
}

.bg-yellow {
    background-color: var(--bs-yellow);
}

.bg-green {
    background-color: var(--bs-green);
}

.bg-teal {
    background-color: var(--bs-teal);
}

.bg-cyan {
    background-color: var(--bs-cyan);
}

.bg-black {
    background-color: var(--bs-black);
}

.bg-white {
    background-color: var(--bs-white);
}

.bg-gray {
    background-color: var(--bs-gray);
}

.bg-gray-dark {
    background-color: var(--bs-gray-dark);
}

.bg-gray-light {
    background-color: var(--bs-gray-400);
}

.bg-silver {
    background-color: var(--bs-gray-200);
}


.lh-2 {
    line-height: 2;
}

/*summernote default font family*/
.note-frame {
    font-family: 'nanumsquare_neo';
}


/*header*/

header {}

header .top-header {
    background: #fff;
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: center;
    z-index: 992;
    box-shadow: var(--st-box-shadow);
}

header .top-header .warp {
    /* width: 100vw; */
    /* max-width: 1920px; */
    height: 4rem;
    display: flex;
    /* padding: 0 2rem; */
    align-items: center;
    justify-content: space-between;
    transition: background .3s ease;
}

header .top-header.active {
    box-shadow: none;
}

header .top-header .logo {
    font-size: 0;
    color: transparent;
}

header .top-header .logo a {
    display: block;
    width: 15.125rem;
    height: 2.75rem;
    background: url(../img/img-kpbma_logo_c.svg) center /contain no-repeat;
}

header .top-header .menu {
    display: none;
    flex: 1;
    padding: 0 2rem;
}

header .top-header .menu>ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-around;
}

header .top-header .menu>ul>li {
    /* margin: 0 2rem; */
    position: relative;
}

header .top-header .menu>ul>li>a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: var(--bs-body-color);
    height: 4rem;
    display: flex;
    align-items: center;
    position: relative;
}

header .top-header .menu>ul>li>a.active,
header .top-header .menu>ul>li:hover>a {
    color: var(--bs-primary);
}

header .top-header .menu>ul>li:hover>a::after,
header .top-header .menu>ul>li>a.active::after {
    content: '\f0d8';
    position: absolute;
    display: block;
    color: var(--bs-primary);
    font-family: 'FontAwesome';
    bottom: -1rem;
    font-size: 1.5rem;
    left: 50%;
    transform: translate(-50%);
}


header .top-header .cap {
    display: flex;
    align-items: center;
}

header .top-header .cap button {
    background: none;
    border: none;
    padding: 0;
    color: var(--bs-gray);
}

header .top-header .cap button:not(first-child) {
    margin-left: 1.5rem;
}

header .top-header .cap button i {
    display: block;
    font-size: 1.25rem;
}


/*scrolltop*/
.scrolltop :not(.sitemap:hover)~header:not(:hover) .top-header:not(.active) {
    background: transparent;
    box-shadow: none;
}

.scrolltop :not(.sitemap:hover)~header:not(:hover) .top-header:not(.active) .logo a {
    background: url(../img/img-kpbma_logo_w.svg) center /contain no-repeat;
}

.scrolltop :not(.sitemap:hover)~header:not(:hover) .top-header:not(.active) .menu>ul>li>a {
    color: #fff;
}

.scrolltop :not(.sitemap:hover)~header:not(:hover) .top-header:not(.active) .cap button {
    color: #fff;
}

header .top-header .sub-menu-list {
    position: absolute;
    background: #fff;
    width: 12.5rem;
    padding: 1rem 0;
    margin-left: -2rem;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    box-shadow: 0 .5rem .5rem 0 rgba(0, 0, 0, .15);
    display: none;
}

header .top-header .sub-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header .top-header .sub-menu-list ul li a {
    color: var(--bs-body-color);
    display: block;
    padding: .5rem 2rem;
    word-break: keep-all;
    line-height: 1.2;
}

header .top-header .sub-menu-list ul li {
    position: relative;
    padding: 0 0.25rem;
}

header .top-header .sub-menu-list ul li ul {
    position: absolute;
    /*margin-left: -10.5rem;*/
    margin-left: -11.5rem;
    background: #fff;
    display: none;
    /*width: 10rem;*/
    width: 11rem;
    top: 0;
    padding: 1rem 0;
    border-radius: .5rem;
    box-shadow: 0 .5rem .5rem 0 rgba(0, 0, 0, .15);
    font-size: .9rem;
}

header .top-header .sub-menu-list ul li ul::before {
    content: '\f0da';
    position: absolute;
    display: block;
    color: #fff;
    font-family: 'FontAwesome';
    font-size: 1rem;
    right: -.3rem;
    top: 0.25rem;
}

header .top-header .sub-menu-list ul li:hover>ul {
    display: block;
}

header .top-header .sub-menu-list ul li ul::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 100%;
    background: transparent;
    position: absolute;
    right: -1.5rem;
    top: 0;
    z-index: 1;
}

header .top-header .sub-menu-list ul li:hover>a {
    background: var(--bs-gray-200);
    /* color: var(--bs-primary); */
    /* font-weight: 500; */
    border-radius: var(--bs-border-radius);
}

header .top-header .menu>ul>li:hover .sub-menu-list {
    display: block;
}

/* header .sub-menu {
    display: block;
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100vw;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background: #fff;
    box-shadow: var(--st-box-shadow);
    z-index: 991;
    overflow: hidden;
    border-top: 1px var(--bs-primary) solid;
}

header .sub-menu::before {
    content: '';
    display: block;
    position: absolute;
    background: #005dab;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5) contrast(0.75);
}

header .sub-menu[data-menuname='intro']::before {
    background-image: url('../img/img-background_sub_header_01.jpg')
}

header .sub-menu[data-menuname='industry']::before {
    background-image: url('../img/img-background_sub_header_02.jpg');
}

header .sub-menu[data-menuname='library']::before {
    background-image: url('../img/img-background_sub_header_03.jpg');
}

header .sub-menu[data-menuname='multimedia']::before {
    background-image: url('../img/img-background_sub_header_04.jpg');
}

header .sub-menu[data-menuname='inform']::before {
    background-image: url('../img/img-background_sub_header_05.jpg');
}

header .sub-menu[data-menuname='lounge']::before {
    background-image: url('../img/img-background_sub_header_06.jpg');
}

header .sub-menu .sub-menu-title p {
    position: relative;
    margin: 0;
}

header .sub-menu .sub-menu-title p::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: center/contain no-repeat;
}

header .sub-menu[data-menuname='intro'] .sub-menu-title p::before {
    background-image: url('../img/img-icon_sub_title_01.svg');
}

header .sub-menu[data-menuname='industry'] .sub-menu-title p::before {
    background-image: url('../img/img-icon_sub_title_02.svg');
}

header .sub-menu[data-menuname='library'] .sub-menu-title p::before {
    background-image: url('../img/img-icon_sub_title_03.svg');
}

header .sub-menu[data-menuname='multimedia'] .sub-menu-title p::before {
    background-image: url('../img/img-icon_sub_title_04.svg');
}

header .sub-menu[data-menuname='inform'] .sub-menu-title p::before {
    background-image: url('../img/img-icon_sub_title_05.svg');
}

header .sub-menu[data-menuname='lounge'] .sub-menu-title p::before {
    background-image: url('../img/img-icon_sub_title_06.svg');
}

header .sub-menu .wrap {
    display: flex;
    align-items: center;
}

header .sub-menu .sub-menu-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    flex: 0 0 auto;
    width: 20%;
    text-align: center;
}

header .sub-menu .sub-menu-list {
    color: #fff;
    background: #fff;
    flex: 0 0 auto;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    border-right: 1px var(--bs-border-color) solid;
}

header .sub-menu .sub-menu-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header .sub-menu .sub-menu-list > ul {
    padding: 1rem;
    border-right: 1px var(--bs-border-color) solid;
    min-height: 10rem;
}

header .sub-menu .sub-menu-list > ul:nth-child(5n) {
    border-right: none;
}

header .sub-menu .sub-menu-list > ul:nth-child(-n+5) {
    border-bottom: 1px var(--bs-border-color) solid;
}

header .sub-menu .sub-menu-list a {
    color: var(--bs-body-color);
    text-decoration: none;
    display: block;
    border-radius: .25em;
    padding: .25em .5em;
}

header .sub-menu .sub-menu-list a:hover {
    background: var(--bs-gray-100);
    color: var(--bs-secondary);
}

header .sub-menu .sub-menu-list > ul > li {}

header .sub-menu .sub-menu-list > ul > li > a {
    font-weight: 600;
}

header .sub-menu .sub-menu-list > ul > li > ul > li {
    margin: 0.5rem 0;
    word-break: keep-all;
    line-height: 1;
}

header .sub-menu .sub-menu-list > ul > li > ul > li > a {
    font-size: .9rem;
} */

/*header-search*/
.searchtop {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 993;
    background: #fff;
    width: 100%;
    height: 4rem;
    padding: 0 2rem;
}

.searchtop.active {
    display: flex;
}

.searchtop.active>* {
    animation: fadeIn .5s ease;
}

.searchtop .searchtop-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-right: 2.5rem;
}

.searchtop .searchtop-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(25%, 480px, calc(100vw - 12rem));
    /* max-width: calc(100vw - 12rem); */
}

.searchtop .searchtop-input-wrap input {
    outline: none;
    border: none;
    border-bottom: 1px var(--bs-border-color) solid;
    font-size: 1.2rem;
    padding: 0 3rem;
    width: 100%;
}

.searchtop .searchtop-input-wrap input::-ms-clear,
.searchtop .searchtop-input-wrap input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.searchtop .searchtop-input-wrap input::-webkit-search-decoration,
.searchtop .searchtop-input-wrap input::-webkit-search-cancel-button,
.searchtop .searchtop-input-wrap input::-webkit-search-results-button,
.searchtop .searchtop-input-wrap input::-webkit-search-results-decoration {
    display: none;
}

.searchtop .searchtop-input-wrap input::placeholder {
    color: var(--bs-gray-500);
}

.searchtop .searchtop-input-wrap>i {
    position: absolute;
    color: var(--bs-gray);
}

.searchtop .searchtop-input-wrap button {
    position: absolute;
    background: transparent;
    border: none;
    color: var(--bs-gray);
    right: 0;
}

/*sub-header*/
.sub-header {
    position: relative;
    width: 100%;
    height: 360px;
}

.sub-header .background {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    overflow: hidden;
}

.sub-header .background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: backgroundConcent 3s ease-in-out;
}

.sub-header .background::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('/assets/img/img-background_sub_header_01.jpg');
    background-size: cover;
    background-position: center;
    animation: backgroundConcent 3s ease-in-out;
}

.sub-header.intro .background::before {
    background-image: url('/assets/img/img-background_sub_header_01.jpg');
}

.sub-header.industry .background::before {
    background-image: url('/assets/img/img-background_sub_header_02.jpg');
}

.sub-header.library .background::before {
    background-image: url('/assets/img/img-background_sub_header_03.jpg');
}

.sub-header.multimedia .background::before {
    background-image: url('/assets/img/img-background_sub_header_04.jpg');
}

.sub-header.inform .background::before {
    background-image: url('/assets/img/img-background_sub_header_05.jpg');
}
.sub-header.info .background::before {
    background-image: url('/assets/img/img-background_sub_header_05.jpg');
}
.sub-header.apply .background::before {
    background-image: url('/assets/img/img-background_sub_header_05.jpg');
}

.sub-header.lounge .background::before {
    background-image: url('/assets/img/img-background_sub_header_06.jpg');
}

.sub-header.site .background::before {
    background-image: url('/assets/img/img-background_sub_header_07.jpg');
}

.sub-header.mypage .background::before {
    background-image: url('/assets/img/img-background_sub_header_07.jpg');
}

.sub-header.logincenter .background::before {
    background-image: url('/assets/img/img-background_sub_header_08.jpg');
}

.sub-header.search .background::before {
    background-image: url('/assets/img/img-background_sub_header_09.jpg');
}

.sub-header.lllegal .background::before {
    background-image: url('/assets/img/img-background_sub_header_10.jpg');
}

.sub-header.apply .background::before {
    background-image: url('/assets/img/img-background_sub_header_11.jpg');
}

.sub-header.site .background::before {
    background-image: url('/assets/img/img-background_sub_header_12.jpg');
}


.sub-header .contents {
    width: 100%;
    height: 100%;
    padding: 4rem 0 3rem;
    margin-bottom: -3rem;
    display: flex;
    align-items: center;
}

.sub-header .contents .category {
    display: flex;
    align-items: center;
}

.sub-header .contents .category img {
    width: 2rem;
}

.sub-header .contents .category::before {
    content: url('/assets/img/img-icon_sub_title_01.svg');
    width: 2rem;
}

.sub-header.intro .category::before {
    content: url('/assets/img/img-icon_sub_title_01.svg');
}

.sub-header.industry .category::before {
    content: url('/assets/img/img-icon_sub_title_02.svg');
}

.sub-header.library .category::before {
    content: url('/assets/img/img-icon_sub_title_03.svg');
}

.sub-header.multimedia .category::before {
    content: url('/assets/img/img-icon_sub_title_04.svg');
}

.sub-header.inform .category::before {
    content: url('/assets/img/img-icon_sub_title_05.svg');
}

.sub-header.lounge .category::before {
    content: url('/assets/img/img-icon_sub_title_06.svg');
}

.sub-header.mypage .category::before {
    content: url('/assets/img/img-icon_sub_title_07.svg');
}

.sub-header.logincenter .category::before {
    content: url('/assets/img/img-icon_sub_title_08.svg');
}

.sub-header.search .category::before {
    content: url('/assets/img/img-icon_sub_title_09.svg');
}

.sub-header.lllegal .category::before {
    content: url('/assets/img/img-icon_sub_title_10.svg');
}

.sub-header.apply .category::before {
    content: url('/assets/img/img-icon_sub_title_11.svg');
}

.sub-header.site .category::before {
    content: url('/assets/img/img-icon_sub_title_12.svg');
}

.sub-header .contents .category p {
    margin: 0 0 0 1rem;
    color: #fff;
}

.sub-header .contents .title {
    width: fit-content;
    margin-top: 1rem;
    border-top: 2px var(--bs-secondary) solid;
    padding-top: .5rem;
}

.sub-header .contents .title h1 {
    font-weight: 900;
    color: #fff;
    font-size: 3.5rem;
}

.sub-header .path {
    height: 3rem;
    background: rgb(var(--kpbma-blue-dark));
}

.sub-header .path a {
    color: #fff;
    text-decoration: none;
}

.sub-header .path ul.path-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-size: .9rem;
    position: relative;
    z-index: 3;
}

.sub-header .path ul.path-menu>li {
    position: relative;
}

.sub-header .path ul.path-menu>li>a {
    display: flex;
    align-items: center;
    height: 3rem;
    padding: 0 1rem;
    border-right: 1px rgba(255, 255, 255, .17) solid;
}

.sub-header .path ul.path-menu>li:not(:first-child)>a {
    min-width: 12rem;
    padding-right: 2.5rem
}

/*24.02.05 삭제 요청 >> 24.02.06 복원 요청 */
.sub-header .path ul.path-menu>li:not(:first-child)>a::after {
    content: '\f0d7';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    position: absolute;
    right: 1rem;
    margin-top: -.25em;
}

.sub-header .path ul.path-menu>li:first-child>a {
    border-left: 1px rgba(255, 255, 255, .17) solid;
}

.sub-header .path ul.path-menu>li>ul {
    display: none;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgb(var(--kpbma-blue-dark));
    width: 100%;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.sub-header .path ul.path-menu>li.active>ul {
    display: block;
}

.sub-header .path ul.path-menu>li>ul>li>a {
    display: block;
    padding: 1rem;
}

.sub-header .path ul.path-menu>li>ul>li>a:hover {
    color: #0ff;
}


/*sitemap*/
.sitemap {
    position: fixed;
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(250, 250, 250, .8);
    backdrop-filter: blur(16px);
    box-shadow: var(--st-box-shadow);
    text-align: center;
    z-index: 999;
    overflow-y: auto;
}

.sitemap.on {
    display: block;
}

.sitemap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap a {
    display: block;
    text-decoration: none;
    color: var(--bs-body-color);
}

.sitemap .sitemap-header {
    position: relative;
    margin: 2rem 0;
}

.sitemap .sitemap-header .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    border-radius: 10em;
    background: var(--bs-gray);
    border: none;
    transition: all .3s ease;
}

.sitemap .sitemap-header .close i {
    font-size: 1.25rem;
    color: #fff;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
}

.sitemap .sitemap-header .close:hover {
    background: var(--bs-red);
}

.sitemap .sitemap-header .title {
    color: var(--bs-primary);
    font-weight: 900;
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.sitemap .sitemap-header .link {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.sitemap .sitemap-header .link a {
    display: block;
    font-size: .9rem;
    margin: 0 1em;
    color: var(--bs-gray);
}

.sitemap .sitemap-header .link a:hover {
    color: var(--bs-secondary);
}

.sitemap .sitemap-banner {
    display: flex;
    justify-content: space-evenly;
    padding: .5rem 0;
    border-top: 1px var(--bs-border-color) solid;
    border-bottom: 1px var(--bs-border-color) solid;
}

.sitemap .sitemap-banner span {
    font-size: .875rem;
    font-weight: 500;
    color: var(--bs-body-color);
}

.sitemap .sitemap-banner a {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4rem;
    background: #fff;
    margin: .5rem auto;
}

.sitemap .sitemap-banner a img {
    width: 2.5rem;
}

.sitemap .sitemap-banner .sns {
    display: flex;
    gap: 1rem;
}

.sitemap .sitemap-menu {
    margin: 2rem 0;
}

.sitemap .sitemap-menu>ul {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.sitemap .sitemap-menu>ul>li {
    max-width: 16.666667%;
    flex: auto;
    text-align: left;
    padding: 0 1rem;
}

.sitemap .sitemap-menu>ul>li>a {
    display: inline-block;
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5em;
}

.sitemap .sitemap-menu>ul>li>a::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: var(--bs-gray-500);
    border-radius: 16px;
    margin-top: .25em;
    transition: background .3s ease;
}

.sitemap .sitemap-menu>ul>li:hover>a::after {
    background: var(--bs-secondary);
}

.sitemap .sitemap-menu>ul>li>ul {
    background: #fff;
    margin: .5rem -.5rem;
    border-radius: .25rem;
    padding: .5rem;
}

.sitemap .sitemap-menu>ul>li>ul>li {}

.sitemap .sitemap-menu>ul>li>ul>li>a {}

.sitemap .sitemap-menu>ul>li>ul>li>ul {
    border-top: 1px var(--bs-border-color) dashed;
    margin: .5rem 0;
}

.sitemap .sitemap-menu>ul>li>ul>li>ul>li>a {
    font-size: .9rem;
    line-height: 1;
    word-break: keep-all;
    color: var(--bs-gray-dark);
}

.sitemap .sitemap-menu>ul>li>ul>li>ul>li {
    margin: .5rem 0;
}

.sitemap .sitemap-menu>ul>li>ul a {
    padding: .25em .5em;
    border-radius: .25rem;
    background: #fff;
}

.sitemap .sitemap-menu>ul>li>ul a:hover {
    background: var(--bs-secondary-bg);
    /* color: #fff; */
}

/*index-content*/

.index-remote {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    margin: 0;
    padding: 0;
    list-style: none;
}

.index-remote a {
    display: block;
    width: max-content;
    position: relative;
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    padding-right: 1rem;
    text-align: right;
}

.index-remote li {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 0;
}

.index-remote a::after {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-size: .5rem;
    position: absolute;
    right: 0;
    top: 0.25rem;
}

.index-remote a:hover,
.index-remote a.active {
    color: #fff;
}

.index-remote a.active::after {
    font-weight: 700;
}

.index-sns {
    display: flex;
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 1;
    bottom: 1rem;
    right: 1rem;
    list-style: none;
}

.index-sns li:not(:last-child) {
    margin-right: .5rem;
}

.index-sns li a {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4rem;
    background: #fff;
    margin: 0.5rem auto;
}

.index-sns li a img {
    width: 1.5rem;
}


.index-content {
    /* width: 100vw; */
    height: 100vh;
    background: var(--bs-gray-dark) center/cover no-repeat fixed;
}

.intro-banner {}

.intro-banner .slider {
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
}

.intro-banner .slider .item {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-banner .slider .item .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.intro-banner .slider .item .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-banner .slider .item.slick-active .background img {
    animation: backgroundConcent 3s ease-in-out;
}

.intro-banner .slider .item .contents {
    width: 100%;
    color: #fff;
}

.intro-banner .slider .item .contents .title h1 {
    margin-bottom: .5em;
    font-weight: 900;
    font-size: 3.75rem;
}

.intro-banner .slider .item .contents .title p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 2;
}



.index-content.news {
    background-image: url('../img/img-background_index_article02_01.jpg');
}

.index-content.news .news-content-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100vh;
    align-content: center;
    gap: 2rem;
}

.index-content.news .news-content {
    background: #fff;
    min-height: 10rem;
    border-radius: 1rem;
    box-shadow: var(--st-box-shadow);
    overflow: hidden;
}

.index-content.news .news-content:nth-child(1) {
    grid-column: auto / span 3;
    grid-row: 1 / span 2;
    height: 40rem;
}

.index-content.news .news-content:nth-child(2) {
    grid-column: auto / span 2;
    height: 22rem;
}

.index-content.news .news-content:nth-child(n+3) {
    grid-column: auto / span 1;
    height: 16rem;
}

.news-notice-wrap {
    height: 100%;
}

.news-notice-tab {
    background: #1974bf;
    display: flex;
}

.news-notice-tab>button {
    display: block;
    position: relative;
    padding: .75rem 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .5);
    flex: auto;
}

.news-notice-tab>button:hover {
    color: #fff;
}

.news-notice-tab>button.active {
    background: var(--bs-primary);
    color: #fff;
}

.news-notice-tab>button.active::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    font-size: 2rem;
    color: var(--bs-primary);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.news-notice-list {
    height: calc(100% - 3rem);
    padding: 2.5rem 2rem 0;
}

.news-notice-list>.list {
    display: none;
}

.news-notice-list>.list.active {
    display: block;
}

.news-notice-list>.list>ul {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.news-notice-list>.list>ul>li {
    border-bottom: 1px var(--bs-border-color) solid;
}

.news-notice-list>.list>ul>li:last-child {
    border: none;
}

.news-notice-list>.list>ul>li>a {
    display: block;
    width: 100%;
    font-size: .9rem;
    color: var(--bs-body-color);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .5rem 0;
}

.news-notice-list>.list>ul>li>a:hover {
    background: var(--bs-gray-100);
}

.news-notice-list>.list>a {
    color: var(--bs-gray-600);
    display: block;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.news-notice-list>.list>a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    margin-left: .5rem;
    font-size: .9rem;
}

.news-banner-wrap {
    height: 100%;
    position: relative;
}

.news-banner-wrap .slick-list,
.news-banner-wrap .slick-track {
    height: 100%;
}

.news-banner-wrap .banner {
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.news-banner-wrap .banner .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: all 1s ease;
}

.news-banner-wrap .banner:hover .background {
    transform: scale(1.07);
    filter: brightness(0.7);
}

.news-banner-wrap .banner .content {
    /* font-size: 2.25rem; */
    color: #fff;
    /* padding-left: 2rem; */
    /* width: 75%; */
    word-break: keep-all;
}

.news-banner-wrap .banner .content img {
    max-width: 100%;
}

.news-banner-wrap .slick-arrow {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    z-index: 1;
}

.news-banner-wrap .news-banner-left {
    right: 3.5rem;
}

.news-banner-wrap .news-banner-right {
    right: .5rem;
}

.news-card,
.news-card>a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.news-card>a {
    height: calc(100% - 3rem);
    margin-top: 3rem;
}

.news-card-header {
    position: absolute;
    top: -3rem;
    left: 0;
    width: 100%;
    height: 3rem;
    display: flex;
    align-items: center;
    background: var(--bs-primary);
    color: #fff;
    padding: 0 1.5rem;
}

.news-card .thumbnail {
    height: 60%;
    overflow: hidden;
}

.news-card .thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .title {
    height: calc(40% - 2rem);
    margin-top: .75rem;
    padding: 0 1.5rem 0;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--bs-body-color);
}

.index-content.info {
    background-image: url('../img/img-background_index_article03_01.jpg');
}

.index-content.info .info-content-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100vh;
    align-content: center;
    gap: 2rem;
}

.index-content.info .info-content {
    position: relative;
    background: #fff;
    width: 100%;
    height: 22.5rem;
    border-radius: 1rem;
    box-shadow: var(--st-box-shadow);
    overflow: hidden;
}

.index-content.info .info-content .header {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.index-content.info .info-content .content {
    padding: 0 1.5rem;
}

.index-content.info .info-content .thumbnail {
    width: 100%;
    height: 14rem;
    border-radius: 1rem;
    overflow: hidden;
}

.index-content.info .info-content .thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-content.info .info-content .slick-dots {
    position: absolute;
    top: -2.125rem;
    right: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.index-content.info .info-content .slick-dots button {
    font-size: 0;
    border: none;
    display: block;
    width: .5rem;
    height: .5rem;
    padding: 0;
    margin-left: .5rem;
    border-radius: .75rem;
    background: var(--bs-gray-500);
    transition: all .3s ease;
}

.index-content.info .info-content .slick-dots .slick-active button {
    width: 1.5rem;
    background: var(--bs-primary);
}


.index-content.info .info-content .title {
    margin: 1rem 0;
    color: var(--bs-body-color);
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
}

.index-content.library {
    background-image: url('../img/img-background_index_article04_01.jpg');
}

.library-content-wrap {
    display: grid;
    height: 100%;
    align-content: center;
}

.library-content-wrap .library-header {
    color: #fff;
}

.library-content-wrap .library-header h2 {
    font-size: 2.5rem;
}

.library-content-wrap .library-search {
    position: relative;
    margin-top: 1rem;
    font-size: 2rem;
}

.library-content-wrap .library-search input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px #fff solid;
    outline: none;
    padding: .5rem 4rem;
    color: #fff;
    font-weight: 700;
}

.library-content-wrap .library-search input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.library-content-wrap .library-search i {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.library-content-wrap .library-search button {
    position: absolute;
    display: block;
    color: #fff;
    background: transparent;
    padding: 0;
    border: none;
    top: 0;
    right: 4rem;
}

.library-content-wrap .library-content {
    position: relative;
    margin-top: 3rem;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
}


.library-content-wrap .library-info {
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.library-content-wrap .library-info .content {
    width: 20%;
    margin-right: 5rem;
    flex-shrink: 0;
}

.library-content-wrap .library-info .content h3 {
    font-weight: 900;
    color: var(--bs-primary-border-subtle);
}

.library-content-wrap .library-info .content p {
    color: #fff;
    word-break: keep-all;
    /* margin-bottom: 5rem; */
}

.library-content-wrap .library-info .content a {
    display: block;
    width: max-content;
    padding: 0 1rem;
    border-radius: 1rem;
    background: #fff;
    font-weight: 700;
    font-size: .875rem;
    margin-top: .5rem;
    color: var(--bs-body-color);
}

.library-content-wrap .library-info .content a:hover {
    /* background: var(--bs-secondary); */
    color: var(--bs-secondary);
}

.library-content-wrap .bookcover-wrap {
    width: calc(120% - 5rem);
    max-width: calc(1920px - 20%);
}

.library-content-wrap .bookcover-cont {
    margin-bottom: 1rem;
}

.library-content-wrap .bookcover-cont button {
    background: transparent;
    border: none;
    color: #fff;
    margin-right: .5rem;
}

.library-content-wrap .bookcover a {
    display: block;
    width: 10rem;
}

.library-content-wrap .bookcover a>img {
    display: block;
    width: 17.5rem;
    border-radius: 1rem;
    object-fit: cover;
}


/*.sub-content*/

main.sub {
    min-height: 100vh;
    padding-bottom: 10rem;
}

.sub-content {
    animation: fadeIn 1s ease-in;
    padding: 7.5rem 0;
}

.sub-content>.container {
    /* background: rgba(255,255,255,.875); */
    /*backdrop-filter: blur(1rem);*/
    /* 24.01.30 19:37 modal 문제로 주석 처리. 고상현*/
}

.sub-content .img-box img {
    width: 100%;
}

.sub-content .img-box.fit-content img {
    width: 100%;
    max-width: fit-content;
}

.sub-content .img-box img+.caption {
    display: block;
    width: 100%;
    background: var(--bs-gray-700);
    backdrop-filter: blur(4px);
    font-size: .875rem;
    padding: .25rem 1rem;
    color: var(--bs-gray-200);
}

.sub-content .img-box.img-round-icon {
    position: relative;
    width: 100%;
    border-radius: 100%;
    border: 1px var(--bs-border-color) solid;
}

.sub-content .img-box.img-round-icon::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.sub-content .img-box.img-round-icon img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: fit-content;
    transform: translate(-50%, -50%);
}

.sub-content .extrabox {
    min-height: 12.5rem;
    margin-bottom: 4rem;
    border: 1px var(--bs-border-color) solid;
    border-radius: var(--bs-border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
}

.sub-content .extrabox.type01 {
    background-color: var(--bs-gray-100);
    background-image: url('/assets/img/sub/extrabox-background_01.png');
    background-repeat: no-repeat;
    background-position: bottom right;
}

.sub-content .extrabox.recruit {
    padding: 0;
    background-image: url('/assets/img/sub/recruit-banner.jpg');
    height: 12.5rem;
    background-position: center;
}

.sub-content .extrabox.recruit a {
    display: block;
    width: 100%;
    height: 100%;
}

.board-wrap {}

.board-wrap .board-list {
    margin: 1.5rem auto;
}

.board-wrap .board-header {}

.board-wrap .board-list a {
    color: inherit;
    text-decoration: none;
}

.board-wrap .board-list-title {
    position: relative;
    max-width: 100%;
    color: #000;
    /* 제목과 내용과의 색상 구별 24.02.02*/
    font-size: 1.1rem;
}

.board-wrap .board-list-title p {
    display: block;
    margin: 0;
    /* width: max-content; */
    max-width: 100%;
    font-weight: 500;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
}

.board-wrap .board-list-title .board-list-title-tooltip {
    position: absolute;
    width: max-content;
    max-width: min(calc(100% + 2em), 100vw);
    z-index: 1;
    background: rgba(250, 250, 250, .5);
    backdrop-filter: blur(4px);
    font-size: .9em;
    padding: 1em;
    border-radius: .5em;
    border: 1px #fff solid;
    box-shadow: 0 .5em 1em 0 rgba(0, 0, 0, .25);
    transition: all .3s ease;
    pointer-events: none;
    top: 1em;
    left: 25%;
    opacity: 0;
}

.board-wrap .board-list-title:hover .board-list-title-tooltip {
    opacity: 1;
}

.board-wrap .board-list-title.new::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-size: .5rem;
    font-weight: 700;
    color: #f00;
    left: -.75rem;
    top: -.25rem;
    text-shadow: 1px 1px white;
    animation: boardNewText 1s ease infinite alternate;
}


.board-wrap .border-list-content {
    font-size: .9rem;
    margin: .75em 0;
    width: 100%;
    height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.board-wrap .board-list-desc {
    display: flex;
    align-items: center;
    font-size: .9rem;
    color: var(--bs-gray-600);
    font-weight: 600;
    margin: .5rem 0;
}

.board-wrap .board-list-info {
    font-size: .875rem;
    margin: .5rem 0;
}

.board-wrap .board-list-desc>* {
    margin: 0;
    padding-right: 1.5rem;
    word-break: break-all;
}

.board-wrap .board-list-badge {
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    padding: 0 .5rem;
    border-radius: 1rem;
    display: inline-block;
}

.board-wrap .board-list-icon {
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: .25rem;
    padding: .25rem;
    text-align: center;
}


.board-wrap .board-list-image {
    margin: 0 -1rem;
    overflow: hidden;
    border-top-left-radius: var(--bs-border-radius);
    border-top-right-radius: var(--bs-border-radius);
    transform: translateY(-1rem);
}

.board-wrap .board-list-image img {
    display: block;
    width: 100%;
}


.board-wrap .board-list.board-list-table {
    border-top: 2px var(--bs-gray) solid;
    text-align: center;
}

.board-wrap .board-list.board-list-table .board-list-title p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-wrap .board-list.board-list-table table {
    table-layout: fixed;
}

/* .board-wrap .board-list.board-list-table.fixed table {
    table-layout: fixed;
} */

.board-wrap .board-list.board-list-table td,
.board-wrap .board-list.board-list-table th {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.board-wrap .board-list.board-list-table thead th {
    background: var(--bs-gray-100);
}

.board-wrap .board-list.board-list-table tbody tr.notice td {
    background: rgba(var(--bs-success-rgb), .05);
}

.board-wrap .board-list.board-list-table tbody tr {
    transition: all .2s ease;
}

.board-wrap .board-list.board-list-table tbody tr:hover td {
    background: rgba(var(--bs-primary-rgb), .05);
}

.board-wrap .board-list.board-list-notify {
    border-top: 2px var(--bs-gray) solid;
}

.board-wrap .board-list.board-list-notify .board-list-title {
    margin: .75rem 0;
}

.board-wrap .board-list.board-list-notify .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: .5rem; */
    border-bottom: 1px var(--bs-border-color) solid;
    transition: all .2s ease;
}

.board-wrap .board-list.board-list-notify .list:hover {
    background: rgba(var(--bs-primary-rgb), .05)
}

.board-wrap .board-list.board-list-notify .list>div {
    padding: .5rem;
}

.board-wrap .board-list.board-list-grid {
    border-top: 2px var(--bs-gray) solid;
    padding-top: 2rem;
    display: grid;
    /*not sure why this is necessary for Safari, but it is*/
}

.board-wrap .board-list.board-list-grid .list-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(30%, 1fr));
    grid-auto-rows: 1px;
    column-gap: 1rem;
    height: 100%;
}

.board-wrap .board-list.board-list-grid .list {
    border: 1px var(--bs-border-color) solid;
    padding: 16px;
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius);
    transition: all .2s ease;
    /* grid-row-end: span 1; */
    position: relative;
}

.board-wrap .board-list.board-list-grid .board-list-title p {
    word-break: break-all;
}

.board-wrap .board-list-grid .board-list-desc>* {
    padding: 0;
}

.board-wrap .board-list-grid .board-list-desc {
    margin: 1rem 0;
}

.board-wrap .board-list.board-list-grid .list:hover {
    background: rgba(var(--bs-primary-rgb), .05);
}

/* .board-wrap .board-list-grid .board-list-image ~ .board-list-info {
    margin-bottom: -1rem;
} */

.board-wrap .board-list.board-list-grid .list.top-self {
    grid-column: 1 / 4;
}

.board-wrap .board-list.board-list-box {
    border-top: 2px var(--bs-gray) solid;
    padding-top: 2rem;
}

.board-wrap .board-list.board-list-box .list-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.board-wrap .board-list.board-list-box .list {
    border: 1px var(--bs-border-color) solid;
    padding: 16px;
    border-radius: var(--bs-border-radius);
    transition: all .2s ease;
}

.board-wrap .board-list.board-list-box .board-list-image {
    margin: 0;
    margin-bottom: 1.5rem;
    border-radius: 0;
    transform: unset;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-wrap .board-list.board-list-box .board-list-image img {
    transition: all .3s ease;
    width: 90%;
    height: 90%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.board-wrap .board-list.board-list-box .list:hover .board-list-image img {
    width: 100%;
    height: 100%;
}

.board-wrap .board-list.board-list-box .list:hover {
    background: var(--bs-gray-200);
}

.board-wrap .board-list.board-list-box .board-list-image .no-image {
    display: none;
}

.board-wrap .board-list.board-list-box .board-list-image .no-image[data-path=""] {
    display: block;
    height: 5rem;
    width: 100%;
    background: var(--bs-gray-300);
    font-size: 2rem;
    font-weight: 900;
    color: var(--bs-gray-400);
    text-align: center;
    padding: 1rem 0;
}

.board-wrap .board-list.board-list-box .board-list-image .no-image[data-path=""]+img {
    display: none;
}

.board-list .list .board-list-admin {
    position: absolute;
    top: 0;
    right: 0;
    padding: .5rem;
    display: none;
    z-index: 1;
}

.board-list .list:hover .board-list-admin {
    display: block;
}

.board-list .list .board-list-admin-btn {
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background: var(--bs-orange);
    color: #fff;
    font-weight: 900;
    border: 2px #fff solid;
    transition: all .3s ease;
}

.board-list .list .board-list-admin-btn:hover {
    background: var(--bs-red);
}

.board-footer {
    display: flex;
    justify-content: center;
    border-top: 1px var(--bs-border-color) dashed;
}

.board-wrap .board-footer .pagination .page-item:not(.active) a {
    color: inherit;
}


/*form-table*/
table.form-table {
    border-top: 2px var(--bs-gray) solid;
    margin: 1rem 0;
    vertical-align: middle;
    table-layout: fixed;
}

table.form-table tbody th {
    background: var(--bs-gray-100);
    font-weight: 400;
    padding: .875rem 1rem;
    width: 100%;
    max-width: 20%;
}

table.form-table tbody td {
    padding: 0 1rem;
}

table.form-table tbody td {
    padding: 0 1rem;
}

table.form-table th label {
    position: relative;
}

table.form-table th label.required {
    padding-right: 1rem;
}

table.form-table th label.required::after {
    content: '\2a';
    font-family: 'FontAwesome';
    color: var(--bs-red);
    font-size: .6667rem;
    position: absolute;
    margin-left: .25rem;
}

.board-post .post-content {
    /* width: fit-content; */
    max-width: 100%;
    overflow: hidden;
    /* margin: 0 auto; */
    position: relative;
}

.board-post .post-content img {
    max-width: 100%;
}


.publication-header {
    position: relative;
    /* background: var(--bs-gray-100); */
    border: 1px var(--bs-border-color) solid;
    padding: 2.5rem 5rem;
    border-radius: 1rem;
}

.publication-current-wrap {}



.publication-current-wrap .slick-arrow {
    position: absolute;
    top: 35%;
    font-size: 2rem;
    color: var(--bs-gray-500);
    cursor: pointer;
}

.publication-current-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 600px;
    padding: 2rem 3rem 4rem 0;
    width: 25rem;
}



.publication-current-thumb>.book {
    width: 200px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-30deg);
    transition: 1s ease;
    animation: 1s ease 0s 1 initAnimation;
}

.publication-current-row:hover .publication-current-thumb>.book,
.publication-current-row:focus .publication-current-thumb>.book {
    transform: rotateY(0deg);
}

.publication-current-thumb>.book>img {
    position: absolute;
    top: 0;
    left: 0;
    background-color: red;
    width: 200px;
    height: 300px;
    transform: translateZ(15px);
    background-color: #01060f;
    border-radius: 0 2px 2px 0;
    box-shadow: 5px 5px 20px #aaa;
}

.publication-current-thumb>.book::before {
    position: absolute;
    content: ' ';
    background-color: blue;
    left: 0;
    top: 1px;
    width: 28px;
    height: 298px;
    transform: translateX(184px) rotateY(90deg);
    background: linear-gradient(90deg,
            #fff 0%,
            #f9f9f9 5%,
            #fff 10%,
            #f9f9f9 15%,
            #fff 20%,
            #f9f9f9 25%,
            #fff 30%,
            #f9f9f9 35%,
            #fff 40%,
            #f9f9f9 45%,
            #fff 50%,
            #f9f9f9 55%,
            #fff 60%,
            #f9f9f9 65%,
            #fff 70%,
            #f9f9f9 75%,
            #fff 80%,
            #f9f9f9 85%,
            #fff 90%,
            #f9f9f9 95%,
            #fff 100%);
}

.publication-current-thumb>.book::after {
    position: absolute;
    top: 0;
    left: 0;
    content: ' ';
    width: 200px;
    height: 300px;
    transform: translateZ(-15px);
    background-color: #01060f;
    border-radius: 0 2px 2px 0;
    box-shadow: -10px 0 50px 10px #ccc;
}

.publication-current-name {}

.publication-current-name h4 {
    font-weight: 900;
    font-size: 1.75rem;
    display: inline-block;
    border-bottom: 2px var(--bs-primary) solid;
    padding-bottom: .5rem;
    padding-right: 5rem;
}

.publication-current-wrap .slick-arrow.prev {
    left: -2rem;
}

.publication-current-wrap .slick-arrow.next {
    right: -2rem;
}

.publication-current-wrap .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    border-top: 1px var(--bs-border-color) solid;
    padding-top: .5rem;
}

.publication-current-wrap .publication-current-dot {
    position: relative;
    color: var(--bs-gray-600);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
}

.publication-current-wrap .publication-current-dot:hover,
.publication-current-wrap .slick-active .publication-current-dot {
    color: var(--bs-primary);
}

.publication-current-wrap .slick-active .publication-current-dot::before {
    content: '';
    display: block;
    width: .5rem;
    height: .5rem;
    border-radius: 1rem;
    position: absolute;
    top: -1rem;
    background: var(--bs-yellow);
    left: 50%;
    transform: translateX(-.5rem);
}

.publication-current-info {
    background: var(--bs-gray-100);
    padding: 2rem 0;
}

.publication-current-info ul {
    margin: 0;
    padding: 0 3rem;
    list-style: none;
}

.publication-current-info ul li {
    position: relative;
    margin-bottom: .5rem;
}

.publication-current-info ul li:last-child {
    margin-bottom: 0;
}

.publication-current-info ul li::before {
    content: '';
    display: block;
    width: .5rem;
    height: .5rem;
    background: var(--bs-primary);
    position: absolute;
    left: -1rem;
    top: .4rem;
}

.publication-current-cont {
    padding: 2rem;
}

.publication-current-cont p {
    border-bottom: 1px var(--bs-border-color) dashed;
    padding-bottom: 1rem;
}

.publication-current-cont a.btn {
    display: block;
}

.publication-header+.publication-body {
    margin-top: 5rem;
}

.publication-terms {
    display: flex;
    justify-content: space-between;
}

.publication-terms .condition {
    width: 20rem;
    max-width: 40vw;
}

.publication-terms .search {
    width: 20rem;
    max-width: 40vw;
}

.publication-list {
    border-top: 2px var(--bs-gray) solid;
    margin-top: 1rem;
    padding: 1rem 0;
    display: grid;
    width: 100%;
    grid-gap: 2rem;
    grid-template-columns: repeat(4, minmax(20%, 1fr));
}

.publication-list .list {
    border: 1px var(--bs-border-color) solid;
    padding: 1rem;
    border-radius: var(--bs-border-radius);
}

.publication-list .list .thumbnail img {
    display: block;
    width: 100%;
}

.publication-list .list .title {
    margin: 1rem 0;
}

.publication-list .list .cont {
    display: flex;
    justify-content: space-between;
}

.publication-list .list .cont a {
    position: relative;
}

.publication-list .list .cont a i {
    display: flex;
    width: 2rem;
    height: 2rem;
    background: #aaa;
    border-radius: 2rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* padding: 0; */
    /* margin: 0; */
}

.publication-list .list .cont a span {
    opacity: 0;
    position: absolute;
    z-index: 1;
    color: var(--bs-body-color);
    font-size: .875rem;
    white-space: nowrap;
    background: rgba(250, 250, 250, .5);
    backdrop-filter: blur(4px);
    font-size: .9em;
    padding: .5em;
    border-radius: 0.5em;
    border: 1px #fff solid;
    box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, .25);
    transition: all .3s ease;
    pointer-events: none;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.publication-list .list .cont a:hover span {
    opacity: 1;
}

.publication-list .list .cont a.read i {
    background: var(--bs-primary);
}

.publication-list .list .cont a.favorite-remove i {
    background: var(--bs-red);
}

.publication-list .list .cont a.download i {
    background: var(--bs-secondary);
    padding-left: .25rem;
}

.sub-content .part {
    position: relative;
}

.sub-content .part:not(:last-child) {
    margin-bottom: 5rem;
}

.sub-content .part-emphasis {
    position: relative;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bs-gray-700);
    word-break: keep-all;
    margin-bottom: 2.5rem;
}

.sub-content .part-emphasis::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    color: var(--bs-primary-bg-subtle);
    position: absolute;
    margin: -3rem -1.5rem;
    z-index: -1;
    font-size: 5rem;
}

.sub-content .part-tit {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--bs-gray-800);
    position: relative;
    width: fit-content;
    margin-bottom: .5rem;
    z-index: 0;
}

.sub-content .part-tit::before {
    content: '\f10d';
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    z-index: -1;
    color: #b2e7e3;
    font-size: 2rem;
    top: -.875rem;
    left: -.5rem;
}

.sub-content .part-tit.type02 {
    font-size: 1.5rem;
}

.sub-content .part-tit.type02::before {
    content: '\f110';
    color: var(--bs-yellow);
    transform: rotate(60deg);
    left: -1rem;
    top: -.5rem;
    font-size: 1.5rem;
}

.sub-content .part-tit.type03 {
    padding-top: .25rem;
    padding-left: 1.5rem;
    font-size: 1.6667rem;
}

.sub-content .part-tit.type03::before {
    content: '\e522';
    color: rgba(var(--bs-primary-rgb), .5);
}

.sub-content .part-tit.type03::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: .5rem;
    border-radius: .5rem;
    background: rgba(var(--bs-primary-rgb), .3);
    bottom: 0;
    left: 1rem;
}

.sub-content .part-tit.type-center01 {
    margin: 1rem auto;
}

.sub-content .part-tit.type-center01::before {
    content: '';
    border: var(--bs-secondary) 4px solid;
    width: 100%;
    height: 80%;
    z-index: -1;
    top: -0.5rem;
    left: auto;
    right: -1.5rem;
}

.sub-content .part-tit.type-center01::after {
    width: 105%;
    height: 100%;
    display: block;
    content: '';
    background: #fff;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

.sub-content .part-con {
    padding: 1rem;
}

.sub-content .part-con strong {
    font-size: 1.1rem;
    display: block;
    margin: .5rem 0;
}

.sub-content .part .box {
    border: 1px var(--bs-border-color) solid;
    padding: 1rem 1.5rem;
    border-radius: var(--bs-border-radius);
}

.sub-content .part .box.box-gray {
    background: var(--bs-gray-100);
}

.sub-content .basic-table .table-unit {
    text-align: right;
    font-size: .6667rem;
    font-weight: 700;
}

.sub-content .basic-table .table-caption {
    font-size: .875rem;
    color: var(--bs-gray-600);
    font-weight: 600;
}

.sub-content .basic-table .table-caption p {
    margin-bottom: .25rem;
}

.sub-content .basic-table .table-caption p::before {
    content: '\2a';
    margin-right: .25rem;
    color: var(--bs-yellow);
}

.sub-content .basic-table .bottom-border {
    border-bottom: 2px var(--bs-secondary) solid;
}

.sub-content .basic-table .top-border {
    border-top: 2px var(--bs-secondary) solid;
}

.sub-content .basic-table .left-border {
    border-left: 2px var(--bs-secondary) solid;
}

.sub-content .basic-table .right-border {
    border-right: 2px var(--bs-secondary) solid;
}

.sub-content ol.list-type01 {
    margin: 0;
    padding: 0;
    counter-reset: list-number;
    list-style: none;
}

.sub-content ol.list-type01 li {
    /* counter-increment: list-number; */
    position: relative;
    margin: 1em 0;
    padding-left: 3em;
}

.sub-content ol.list-type01 li::before {
    counter-increment: list-number;
    content: counter(list-number, decimal-leading-zero);
    font-weight: 900;
    font-size: .875em;
    background: var(--bs-primary);
    color: #fff;
    position: absolute;
    display: block;
    width: 2.5em;
    border-radius: 1em;
    text-align: center;
    left: 0;
    top: .125em;
}

.sub-content ol.list-type02 {
    margin: 0;
    padding: 0;
    counter-reset: list-number;
    list-style: none;
}

.sub-content ol.list-type02 li {
    /* counter-increment: list-number; */
    position: relative;
    margin: 1em 0;
    padding-left: 3em;
}

.sub-content ol.list-type02 li::before {
    counter-increment: list-number;
    content: counter(list-number, decimal-leading-zero);
    background: var(--bs-secondary);
    color: #fff;
    position: absolute;
    display: block;
    width: 2.5em;
    text-align: center;
    left: 0;
}

.sub-content ul.list-type01 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sub-content ul.list-type01 li {
    position: relative;
    margin: 1em 0;
    padding-left: 1em;
}

.sub-content ul.list-type01 li::before {
    content: '';
    background: var(--bs-primary);
    position: absolute;
    display: block;
    width: .5em;
    height: .5em;
    border-radius: 1em;
    left: 0;
    top: .5em;
}

.sub-content ul.list-type02 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sub-content ul.list-type02 li {
    position: relative;
    margin: 1em 0;
    padding-left: 1em;
}

.sub-content ul.list-type02 li::before {
    content: '';
    background: var(--bs-secondary);
    position: absolute;
    display: block;
    width: .5em;
    height: .5em;
    left: 0;
    top: .5em;
}

.sub-content .part.bylaw {}

.sub-content .part.bylaw .part-tit {
    font-size: 1.5rem;
    padding: 0;
    padding-top: .5rem;
    margin-bottom: 1rem;
}

.sub-content .part.bylaw .part-tit::before {
    content: '';
    width: 20%;
    height: 4px;
    background: var(--bs-secondary);
    top: 0;
    left: 0;
}

.bylaw-con {
    line-height: 2;
    color: var(--bs-gray-700);
    padding-left: 1rem;
}

.bylaw-con strong {
    font-weight: 900;
}

.bylaw-con p {
    padding-left: 1rem;
}

.sub-content .part .box.box-ethics {
    position: relative;
    background: white;
    /* padding: 2rem 1rem; */
    width: calc(100% - 2rem);
    margin: 1rem auto;
    border-color: transparent;
}

.sub-content .part .box.box-ethics::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: -1rem;
    display: block;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, transparent 49%, var(--bs-gray-400) 50%, transparent 51%);
    background-size: 5px 5px;
    right: -1rem;
    bottom: -1rem;
    z-index: -1;
}

.ethics-tit {
    text-align: center;
    margin: 2rem 0;
    padding: 0 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px var(--bs-border-color) solid;
    position: relative;
    color: var(--bs-primary-text-emphasis);
    z-index: 1;
    line-height: 2;
    word-break: keep-all;
}

.ethics-tit::before {
    content: '\f10e';
    font-family: 'FontAwesome';
    display: none;
    position: absolute;
    font-size: 10rem;
    color: var(--bs-gray-200);
    z-index: -1;
    right: 2rem;
    top: -4rem;
}

.ethics-list {
    list-style: none;
    margin: 0;
    padding: 0 4rem;
    text-align: left;
}

.ethics-list li {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.ethics-list li strong {
    flex-shrink: 0;
    width: 6rem;
    font-size: 1.25rem;
    color: var(--bs-primary);
}

.ethics-list li p {
    margin: 0;
    word-break: keep-all;
}

.greeting-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 360px;
    margin: 0 auto;
}

.greeting-profile img {
    display: block;
    width: 100%;
    /* border-radius: 1rem; */
}

.greeting-profile figure {
    position: relative;
    padding: 1.5rem;
    margin: 0;
}

.greeting-profile figure::before {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    /* border-radius: 1rem; */
    border: 4px var(--bs-secondary) solid;
    top: 0;
    left: 0;
    z-index: -1;
}

.greeting-profile p {
    position: relative;
    background: var(--bs-primary);
    width: max-content;
    color: #fff;
    padding: 1rem 2rem;
    margin-left: 1rem;
    margin-top: -3rem;
    z-index: 1;
}

.greeting-header {
    position: relative;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bs-gray-700);
    word-break: keep-all;
    /* padding-left: 3.5rem; */
    margin-bottom: 2.5rem;
}

.greeting-header::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    color: var(--bs-primary-bg-subtle);
    position: absolute;
    margin: -3rem -1.5rem;
    z-index: -1;
    font-size: 5rem;
}

.history-bar {
    position: relative;
    padding: 4rem 0;
}

.history-bar::before {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--bs-gray-400);
    top: 0;
    left: 50%;
    margin-left: -1px;
    border: 1px #fff dashed;
}

.history-bar::after {
    content: '';
    display: block;
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background: var(--bs-primary);
    border: 7px #fff double;
    left: 50%;
    margin-left: -1rem;
    bottom: 0;
}

.history-wrap {
    display: flex;
}

.history-wrap:nth-child(even) {
    justify-content: end;
}

.history-box {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.history-wrap:nth-child(odd) .history-box {
    justify-content: flex-end;
}

.history-year {
    font-size: 2rem;
    font-weight: 100;
    background: #fff;
    width: fit-content;
    color: var(--bs-gray-600);
    position: relative;
}

.history-year::before {
    content: '';
    display: block;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 2rem;
    background: var(--bs-primary);
    border: .333rem #fff double;
    top: 50%;
    margin-top: -.75rem;
}

.history-wrap:nth-child(odd) .history-year {
    padding-right: 1.5rem;
}

.history-wrap:nth-child(even) .history-year {
    padding-left: 1.5rem;
}

.history-wrap:nth-child(odd) .history-year::before {
    right: -0.75rem;
}

.history-wrap:nth-child(even) .history-year::before {
    left: -.75rem;
}

.history-list {
    margin: 1rem 0 3rem;
    padding: 0;
    width: 100%;
    list-style: none;
}

.history-list li {
    width: 100%;
    position: relative;
    margin: 1rem 0;
}

.history-wrap:nth-child(odd) .history-box .history-list {
    text-align: right;
    padding-right: 2rem;
}

.history-wrap:nth-child(even) .history-box .history-list {
    padding-left: 2rem;
}

.history-list li::before {
    content: '';
    display: block;
    width: .5rem;
    height: .5rem;
    border-radius: 1rem;
    position: absolute;
    background: var(--bs-secondary);
    top: 0.5rem;
    transition: all .3s ease;
}

.history-wrap:nth-child(odd) .history-box .history-list li::before {
    right: -2.25rem;
}

.history-wrap:nth-child(even) .history-box .history-list li::before {
    left: -2.25rem;
}

.history-list li strong {
    color: var(--bs-secondary);
    font-size: 1.125rem;
    font-weight: 700;
}

.history-list li:hover::before {
    width: 1rem;
    height: 1rem;
    top: 0.25;
}

.history-wrap:nth-child(odd) .history-box .history-list li:hover::before {
    right: -2.5rem;
}

.history-wrap:nth-child(even) .history-box .history-list li:hover::before {
    left: -2.5rem;
}

.history-list li::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-color: var(--bs-secondary);
    transition: all .3s ease;
    top: 0.75rem;
}

.history-wrap:nth-child(odd) .history-box .history-list li:hover::after {
    border-bottom: .25rem solid transparent;
    border-top: .25rem solid transparent;
    border-right: .5rem solid transparent;
    border-left: .5rem solid transparent;
    right: -1.6667rem;
}

.history-wrap:nth-child(even) .history-box .history-list li:hover::after {
    border-bottom: .25rem solid transparent;
    border-top: .25rem solid transparent;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    left: -1.667rem;
}

.history-wrap:nth-child(odd) .history-box .history-list li:hover::after {
    border-right: .5rem solid var(--bs-secondary);
}

.history-wrap:nth-child(even) .history-box .history-list li:hover::after {
    border-left: .5rem solid var(--bs-secondary);
}

.depart-select {
    list-style: none;
    margin: 0;
    margin-bottom: 2rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.depart-select li a {
    width: 7rem;
    height: 7rem;
    border-radius: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    text-align: center;
    background: var(--bs-gray-500);
    color: #fff;
    font-weight: 700;
    word-break: keep-all;
    cursor: pointer;
}

.depart-select li a:hover,
.depart-select li a.active {
    background: var(--bs-primary);
}

.depart-wrap {
    margin-top: 2rem;
    padding-top: 2rem;
    position: relative;
    display: none;
}

.depart-wrap::before {
    content: '\f141';
    display: block;
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bs-primary);
}

.depart-wrap.active {
    display: block;
}

.directors-img ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.directors-img img {
    width: 100%;
    max-width: 10rem;
    height: 100%;
    max-height: 13.3334rem;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 4px var(--bs-border-color) double;
    border-radius: var(--bs-border-radius);
}

.directors-img {
    margin-bottom: 2rem;
}

.directors-img ul li {
    /* max-width: 10rem; */
    /* text-align: center; */
}

.directors-img ul li span {
    display: block;
    word-break: keep-all;
    max-width: 10rem;
    margin: .5rem auto 0;
    text-align: center;
}

.part.ihistory .icon {
    position: absolute;
    color: var(--bs-yellow);
    margin-top: .5rem;
}

.part.ihistory .txt {
    padding-left: 1.5rem;
    display: inline-block;
}

.part.ihistory .part-con:not(:last-child) {
    border-bottom: 1px var(--bs-border-color) dashed;
}

.report_link_wrap {
    display: flex;
    justify-content: space-between;
}

.report_link_wrap>div {
    width: 100%;
    margin-right: 1em;
    padding: 1em;
    border: 1px var(--bs-border-color) solid;
}

.report_link_wrap>div:last-child {
    margin-right: 0;
}

.report_link_main {
    display: block;
    width: 100%;
    background: #005dab;
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    padding: 1em 0;
    box-sizing: border-box;
    border-radius: var(--bs-border-radius);
}

.report_link_main p {
    margin: 0;
}

.report_link_wrap>div:nth-child(1) .report_link_main {
    background: #005dab;
}

.report_link_wrap>div:nth-child(2) .report_link_main {
    background: #344781;
}

.report_link_wrap>div:nth-child(3) .report_link_main {
    background: #00aec5;
}

.report_link_sub {
    margin: 1em 0;
    display: block;
    padding-left: 2em;
    position: relative;
    font-weight: 700;
    color: #333;
}

.report_link_sub::before {
    content: '\f0a9';
    font-family: Font Awesome\ 5 Free;
    position: absolute;
    left: 0.5em;
    font-size: .9em;
    margin-top: .1em;
    color: #005dab;
}

.report_link_sub:hover {
    color: #005dab;
}

.report_link_wrap>div:nth-child(1) .report_link_sub::before {
    color: #005dab;
}

.report_link_wrap>div:nth-child(2) .report_link_sub::before {
    color: #344781;
}

.report_link_wrap>div:nth-child(3) .report_link_sub::before {
    color: #00aec5;
}

.report_link_wrap>div:nth-child(1) .report_link_sub:hover {
    color: #005dab;
}

.report_link_wrap>div:nth-child(2) .report_link_sub:hover {
    color: #344781;
}

.report_link_wrap>div:nth-child(3) .report_link_sub:hover {
    color: #00aec5;
}


.modal-content .modal-header {
    background-color: #005dab;
    color: #fff;
}


/*footer*/
footer {
    background: var(--bs-gray-dark);
    padding: 1rem 0;
    font-size: .75rem;
    color: var(--bs-gray-500);
    margin-top: -10rem;
}

main.index+footer {
    margin: 0;
}

footer a {
    color: var(--bs-light);
}

footer .footer-info {
    margin: .5rem 0;
}

footer .footer-copy address {
    margin: 1.5rem 0 0;
    text-align: center;
    font-size: .9em;
    letter-spacing: .125rem;
}

footer .footer-address>p {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

footer .footer-address>p:last-child {
    margin: 0;
}

footer .footer-address>p i {
    margin-right: .5rem;
}

footer .footer-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

footer .footer-address {
    max-width: calc(100% - 25rem);
}

footer .footer-legal {
    width: 25rem;
}

footer .footer-legal>a:not(:last-child) {
    margin-right: 2rem;
}

.footer-link {
    background: var(--bs-gray-200);
    margin: -1rem 0 1rem;
    padding: 1rem 0;
}

.footer-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.footer-link ul li a {
    color: var(--bs-dark);
    font-weight: 700;
    display: block;
    /* font-size: 1rem; */
}

.footer-link ul li a img {
    display: block;
    margin: 0 auto;
    height: 30px;
}



.footer-link ul li a p {
    /* display: none; */
    width: fit-content;
    margin: .5rem auto 0;
    background: var(--bs-gray-100);
    padding: .25rem .5rem;
    border-radius: 10rem;
    line-height: 1;
}

.footer-link h4 {
    color: var(--bs-gray);
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

.footer-link ul li a:hover {
    transform: scale(1.1);
}

.btn-footer-link {
    height: 60px;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 2px 4px 0 #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.btn-footer-link img {
    /* width: 100%; */
    /* max-width: fit-content; */
    /* max-height: 32px; */
    max-width: min(160px, 100%);
}

.footer-link a:hover .btn-footer-link {
    background-color: #005dab1c !important;
}


/*datetimepicker override*/
.xdsoft_datetimepicker {
    font-family: 'nanumsquare_neo';
    padding: 1.5rem;
    border-radius: var(--bs-border-radius);
    backdrop-filter: blur(.5rem);
    background: rgba(255, 255, 255, .9);
}

.xdsoft_datetimepicker .xdsoft_month {
    text-align: center;
}

.xdsoft_datetimepicker .xdsoft_label i {
    margin-left: .5rem;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
    color: var(--bs-primary);
    font-weight: 900;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: none;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    background: var(--bs-secondary) !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
    background: transparent;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div {
    background: transparent;
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current {
    background: var(--bs-primary);
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover {
    background: var(--bs-secondary);
}

.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_yearselect {
    right: -.5rem;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active,
.xdsoft_datetimepicker .xdsoft_timepicker.active {
    margin: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker.active {
    margin-left: 1rem;
}

/*display xxlarge ( default PC )*/

.simple-popup-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    left: 0;
    z-index: 10001;
    pointer-events: none;
}

.simple-popup {
    background-color: #fff;
    width: 100%;
    max-width: 480px;
    min-height: 120px;
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
    margin-top: 10vh;
    left: 50vw;
    margin-left: -240px;
    pointer-events: all;
}

.simple-popup-content {
    padding-bottom: 3rem;
}

.simple-popup-controller {
    position: absolute;
    background-color: var(--bs-primary);
    bottom: 0;
    width: 100%;
    height: 3rem;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.simple-popup-controller a {
    color: #fff;
}

.simple-popup .row {
    margin: 40px 20px 0;
}

.simple-popup img {
    width: 100%;
    max-width: fit-content;
}

@media (min-width: 1200px) {
    header .top-header .warp {
        width: 100vw;
        max-width: 1920px;
        padding: 0 2rem;
    }

    header .top-header .menu {
        display: block;
    }
}



/**/

@media (max-width: 1399px) {

    header .top-header .cap button:not(first-child) {
        margin-left: 1rem;
    }

    /* .library-content-wrap {
        display: block;
        padding: 10rem 0;
    }
    
    .library-content-wrap .library-info {
        flex-direction: column;
        align-items: normal;
    }
    
    .library-content-wrap .library-header h2 {
        text-align: center;
    }

    .library-content-wrap .library-info .content {
        width: 100%;
        text-align: center;
    }
    
    .library-content-wrap .bookcover-cont {
        display: none;
    }
    
    .library-content-wrap .library-info .content a {
        display: inline-block;
    }
    
    .library-content-wrap .bookcover-wrap {
        margin: 2rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .library-content-wrap .bookcover a > img {
        margin: 0 auto;
    } */



}

@media (max-width: 1199px) {

    .index-content.news .news-content-wrap {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        padding: 5rem 0;
    }

    .index-content.news .news-content:nth-child(1) {
        grid-column: auto / span 2;
        position: relative;
        height: auto;
    }

    .index-content.news .news-content:nth-child(1)::after {
        content: '';
        display: block;
        padding-bottom: 100%;
    }

    .news-banner-wrap {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .index-content:not(.intro) {
        height: auto;
    }

    .library-content-wrap {
        display: block;
        padding: 10rem 0;
    }

    .library-content-wrap .library-info {
        flex-direction: column;
        align-items: normal;
    }

    .library-content-wrap .library-header h2 {
        text-align: center;
    }

    .library-content-wrap .library-info .content {
        width: 100%;
        text-align: center;
    }

    .library-content-wrap .bookcover-cont {
        display: none;
    }

    .library-content-wrap .library-info .content a {
        display: inline-block;
    }

    .library-content-wrap .bookcover-wrap {
        margin: 2rem 0;
        width: 100%;
        max-width: 100%;
    }

    .library-content-wrap .bookcover a>img {
        margin: 0 auto;
    }

    .board-wrap .board-list.board-list-box .list-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .sitemap {
        background: #f0f0f0;
        backdrop-filter: none;
    }

    .sitemap .sitemap-menu>ul {
        display: block;
    }

    .sitemap .sitemap-menu>ul>li {
        max-width: 100%;
    }

    .sitemap .sitemap-menu>ul>li>a {
        margin-bottom: 0;
        margin-top: 1.5rem;
    }

    .sitemap .sitemap-menu>ul>li>ul {
        margin: 0.5rem 0rem;
    }

    .sitemap .sitemap-header .close {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .index-remote {
        /* width: 100%;
        background: rgba(0,0,0,.5);
        backdrop-filter: blur(4px);
        right: auto;
        left: 0;
        top: 100%;
        transform: translateY(-100%);
        display: flex;
        justify-content: space-around;
        padding: 0 1rem; */
        display: none;
    }

    /* .index-remote li {
        display: block;
    }
    
    .index-remote a {
        padding: 0;
    }
    
    .index-remote a::after {
        display: none;
    } */

    .depart-select {
        justify-content: center;
    }


    footer {
        padding-bottom: 4rem;
    }

    footer .footer-wrap {
        display: block;
    }

    footer .footer-address {
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    footer .footer-legal {
        width: max-content;
        margin: 0 auto;
        margin-bottom: 1.5rem;
    }

    footer .footer-address>p {
        text-align: center;
        justify-content: center;
    }

    footer .footer-address>p i {
        display: none;
    }

}

@media (max-width: 991px) {

    .sitemap .sitemap-banner a {
        width: 2rem;
        height: 2rem;
        margin: 0;
    }

    .sitemap .sitemap-banner a img {
        width: 1.5rem;
    }

    .sitemap .sitemap-banner>div {
        display: flex;
        /* flex-direction: row-reverse; */
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: .25rem 0;
    }

    .sitemap .sitemap-banner {
        flex-direction: column;
    }

    .sitemap .sitemap-banner span {}

    .sub-header .path ul.path-menu>li:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .sub-header .path ul.path-menu>li {
        width: 100%;
        max-width: 50%;
    }

    .sub-header .path ul.path-menu>li:last-child>a {
        border-right: none;
    }

    .sub-header .path .container {
        padding: 0;
    }

    .sub-header .path ul.path-menu>li:not(:first-child)>a {
        min-width: auto;
    }

    .board-wrap .board-list.board-list-grid .list-wrap {
        grid-template-columns: repeat(2, minmax(45%, 1fr));
    }

    .board-wrap .board-list.board-list-grid .list.top-self {
        grid-column: 1 / 3;
    }

    /* .board-wrap .board-list.board-list-grid.imgnotloaded .list-wrap {
        grid-auto-rows: auto;
    }
    
    .board-wrap .board-list.board-list-grid.imgnotloaded .list-wrap .list {
        grid-row-end: auto!important;
    } */

    .publication-current-wrap .slick-dots {
        display: none;
    }

    .publication-header {
        padding: 2rem 1rem;
    }

    .publication-current-wrap .slick-arrow.prev {
        left: 0;
    }

    .publication-current-wrap .slick-arrow.next {
        right: 0;
    }

    .publication-list {
        grid-template-columns: repeat(2, minmax(40%, 1fr));
    }

    .publication-current-thumb {
        padding: 2rem 0 4rem;
    }

    .directors-img ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .ethics-tit,
    .ethics-list {
        padding: 0 0.5rem;
        line-height: 1.5;
        word-break: keep-all;
        text-align: left;
    }

    .report_link_wrap {
        flex-direction: column;
    }

    .report_link_wrap>div {
        margin-bottom: 1em;
    }

}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .intro-banner .slider .item .contents .title {
        word-break: keep-all;
    }

    .intro-banner .slider .item .contents .title br {
        display: none;
    }

    .index-content.info .info-content-wrap {
        grid-template-columns: repeat(1, 1fr);
        height: auto;
        padding: 5rem 0;
    }

    .board-wrap .board-list.board-list-notify .list {
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .board-wrap .board-list.board-list-notify .board-list-title {
        margin-top: 0;
    }

    .board-wrap .board-list.board-list-box .list-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-wrap .board-list.board-list-table {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .board-wrap .board-list.board-list-table table {
        /* table-layout: auto; */
        width: auto;
        max-width: 640px;
    }

    .board-wrap .board-list.board-list-table td,
    .board-wrap .board-list.board-list-table th {
        min-width: fit-content;
        word-break: auto-phrase;
    }

    .board-footer .page-link {
        padding: .5rem 0;
        width: 100%;
    }

    .board-footer nav,
    .board-footer .pagination {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .board-footer .page-item {
        flex: auto;
        text-align: center;
        margin: 0 -1px;
        max-width: 3rem;
    }

    .history-bar::before {
        left: 2rem;
        margin: 0;
    }

    .history-bar::after {
        left: 2rem;
    }

    .history-box {
        width: 100%;
        padding-left: 2.125rem;
    }

    .history-wrap:nth-child(odd) .history-box {
        justify-content: normal;
    }

    .history-wrap:nth-child(odd) .history-year {
        padding-right: 0;
        padding-left: 1.5rem;
    }

    .history-wrap:nth-child(odd) .history-year::before {
        right: auto;
        left: -.75rem;
    }

    .history-wrap:nth-child(odd) .history-box .history-list {
        text-align: left;
        padding-right: 0;
        padding-left: 2rem;
    }

    .history-list li::after {
        display: none;
    }

    .history-wrap:nth-child(odd) .history-box .history-list li::before {
        right: 0;
        left: -2.25rem;
    }

    .history-wrap:nth-child(odd) .history-box .history-list li:hover::before {
        right: 0;
        left: -2.5rem;
    }

    .directors-img ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .sub-content .extrabox.type01 {
        background-image: none;
    }

    .simple-popup {
        /* width: 100%; */
        /* max-width: 480px; */
        /* display: flex; */
        /* flex-direction: column; */
        /* justify-content: center; */
    }

    .simple-popup .row {
        margin: 20px 20px 0;
    }

}

@media (max-width:575px) {
    html {
        font-size: 14px;
    }

    .index-content.news .news-content:nth-child(n+3) {
        grid-column: auto / span 2;
    }

    .board-wrap .board-list.board-list-box .list-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    header .top-header .logo a {
        width: 12.5rem;
    }

    .sub-header .contents .category,
    .sub-header .contents .title {
        margin: 0 auto;
        width: fit-content;
    }

    .board-wrap .board-list.board-list-grid .list-wrap {
        grid-template-columns: 1fr;
    }

    footer .footer-legal a {
        /* display: block; */
        margin: 0 !important;
    }

    footer .footer-legal {
        width: 100%;
        display: flex;
        justify-content: space-around;
        /* text-align: right; */
    }

    .simple-popup {
        top: 0;
        margin-top: 0;
        left: 0;
        margin-left: 0;
    }


    /* .board-wrap .board-footer .pagination .page-item:not(.active):not(.arrow) {
        display: none;
    } */
}

/*keyframes*/
@keyframes backgroundConcent {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes boardNewText {
    from {
        color: #fa5;
    }

    to {
        color: #f00
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes initAnimation {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(-30deg);
    }
}




.board-wrap .board-list.board-list-grid.gridnosupport .list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.board-wrap .board-list.board-list-grid.gridnosupport .list-wrap .list {
    width: calc(33% - 0.66667rem);
}

@media (max-width: 991px) {
    .board-wrap .board-list.board-list-grid.gridnosupport .list-wrap .list {
        width: calc(50% - .5rem);
    }
}


/*관심자료 아이콘*/
.board-wrap .icon-interest,
.publication-list .icon-interest {
    cursor: pointer;
}

/*.board-wrap .icon-interest, .publication-list .icon-interest {color:#fefefe !important;}*/
.board-wrap .icon-interest:hover,
.publication-list .icon-interest:hover {
    font-weight: 900 !important;
    ;
}

.board-wrap .icon-interest.active,
.publication-list .icon-interest.active {
    font-weight: 900 !important;
}

.board-wrap .icon-interest.active:hover,
.publication-list .icon-interest.active:hover {
    font-weight: 400 !important;
}

.board-wrap .remove-iterest-btn {
    cursor: pointer;
}

.board-wrap .remove-iterest-btn:hover {
    color: #db4351 !important;
}

/*온라인 도서관 검색 */
.board-wrap .library-recent {
    margin-top: 15px;
}

.board-wrap .library-recent .library-recent-image {
    width: 150px;
    position: relative;
    float: left;
    margin-right: 15px;
    display: inline-block;
    height: 210px;
    line-height: 210px;
    background-color: #fffbf4;
}

.board-wrap .library-recent .library-recent-image:hover {
    box-shadow: 2px 2px 2px 2px #ebebeb;
}

.board-wrap .library-recent .library-recent-image-area {
    width: 100%;
    max-width: 150px;
    max-height: 210px;
}

.board-wrap .library-recent .library-recent-image-text {
    font-size: 0.7rem;
    position: absolute;
    top: 35%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: black;
    word-wrap: break-word;
    margin: 12px;
    padding: 6px;
    width: 88%;
    line-height: 15px;
}

.board-wrap .library-recent .library-recent-title {
    height: 70%;
}

.board-wrap .library-recent .library-recent-title .badge {
    border-radius: 20px;
    font-weight: 250;
}

.board-wrap .library-recent .library-recent-title .library-recent-content {
    height: 4.2em;
    overflow: hidden;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.board-wrap .library-recent .library-recent-date {
    height: 30%;
    display: flex;
    align-items: end;
    font-size: 0.7rem
}

.board-wrap .library-recent .library-recent-line {
    color: #b5b5b5;
    margin: 0px;
    margin-top: 15px;
}

.board-wrap .library-data {
    margin-top: 20px;
}

.board-wrap .library-data a:hover {
    color: #005dab !important;
    font-weight: bold;
}

.board-wrap .library-data .library-data-etc {
    font-size: 11px;
}

.board-wrap .library-data .library-data-line {
    color: #b5b5b5;
    margin: 0px;
    margin-top: 15px;
}

.board-wrap .library-popularity {
    margin-top: 20px;
}

.board-wrap .library-popularity .library-popularity-title {
    background-color: #e9e9e9;
    padding: 8px 20px;
    border-radius: 20px;
}

.board-wrap .library-popularity .library-popularity-title:hover {
    background-color: #cbe0f9;
    cursor: pointer;
}

.board-wrap .library-popularity .library-popularity-title .library-popularity-title-ranking {
    padding-right: 10px;
    font-weight: bold;
}




#detaillist {
    display: none;
}

.detail-search {
    background: var(--bs-gray-100);
    padding: 1rem;
    border: 1px var(--bs-border-color) solid;
    border-radius: var(--bs-border-radius);
    position: relative;
    margin-top: 1rem;
}

.detail-search::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: -10px;
    right: 32px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bs-border-color);
}

.detail-search::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bs-gray-100);
    top: -9px;
    right: 32px;
}


/* 자동완성 */
.ui-autocomplete {  
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  
  list-style-type: none;
  padding:0px;  
  width: 300px !important;
  border:1px solid #aac7e3;
  background-color: #ffffff !important;
}
.ui-menu-item{  
  width: 300px !important;
    
}
.ui-menu-item div {  
  width:100%;
  padding-left:14px;
  padding-top:2px;
  height:30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
    
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  background-image: none;
  border:none;
}
.ui-menu-item div.ui-state-hover,
.ui-menu-item div.ui-state-active {
  background-color: #e2e2e2;
}


.sub-tab-wrap {
    position: relative;
    margin: -3rem 0 5rem;
}

.sub-tab-wrap .sub-tab {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 1rem;
    background: #fff;
    border: 1px var(--bs-border-color) solid;
    border-radius: var(--bs-border-radius);
    list-style: none;
    box-shadow: 0 .5rem 1rem 0 rgba(0,0,0,.1);
}

.sub-tab-wrap .sub-tab::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 1px var(--bs-border-color) solid;
    z-index: -1;
    left: -1rem;
    top: -.5rem;
}

.sub-tab-wrap .sub-tab a {
    display: block;
    color: var(--bs-gray-600);
    padding: 0.25rem 1.5rem;
    border-radius: 10rem;
    background: var(--bs-gray-200);
}

.sub-tab-wrap .sub-tab .current a {
    background: var(--bs-primary);
    color: #fff;
}

.sub-tab-wrap .sub-tab a:hover {
    background: var(--bs-primary);
    color: #fff;
}

.sub-tab-wrap::after {
    content: '\f0c1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    position: absolute;
    top: -1.25rem;
    right: 0;
    font-size: 1.5rem;
    color: var(--bs-secondary);
}

/* .sub-tab-wrap {
    position: relative;
}

.sub-tab-wrap .sub-tab {
    list-style: none;
    display: flex;
    gap: .5rem;
    margin: -2.5rem 0 5rem;
    padding: 0;
    border-bottom: 1px var(--bs-border-color) solid;
    min-width: 100%;
}

.sub-tab-wrap .sub-tab li a {
    display: block;
    padding: 1rem 1.5rem;
    background: #fafafa;
    color: var(--bs-gray-600);
    border-top-left-radius: var(--bs-border-radius);
    border-top-right-radius: var(--bs-border-radius);
    border: 1px var(--bs-border-color) solid;
    margin-bottom: -1px;
}

.sub-tab-wrap .sub-tab li.current a {
    color: var(--bs-primary);
    background: #fff;
    border-bottom: 1px #fff solid;
}

.sub-tab-wrap .sub-tab li a:hover {
    background: #fff;
    border-bottom: 1px #fff solid;
}

.sub-content .part-con img {
    width: 100%;
}

.sub-tab-wrap .sub-tab li {
    display: flex;
    align-items: flex-end;
} */



/*20250210 새로운팝업*/

.n25pewp-w {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    left: 0;
    z-index: 10001;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 10vh;
}

.n25pewp-b {
    background-color: #fff;
    width: 100%;
    max-width: 480px;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
    pointer-events: all;
}

.n25pewp-b > .header {
    margin: 0px !important;
    padding: .75rem 1.5rem;
    background-color: #005dab;
    color: #fff;
    font-size: 1.12rem;
}

.n25pewp-b > .body {
    padding: 1.5rem 1.5rem 4.5rem;
    background-color: #fff;
}

.n25pewp-c {
    position: absolute;
    background-color: var(--bs-primary);
    bottom: 0;
    width: 100%;
    height: 3rem;
    padding: .75rem 1.5rem;
    display: flex;
    justify-content: space-between;
}

.n25pewp-c > button {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    position: relative;
    padding-left: 1.5rem;
}

.n25pewp-c > button::before {
    position: absolute;
    left: 0;
    top: .3333rem;
    font-family: "Font Awesome 6 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.n25pewp-c > button.todayClose::before {
    content: '\f1da';
    font-weight: 900;
}

.n25pewp-c > button.close::before {
    content: "\f057";
    font-weight: 400;
}

@media (max-width: 575px) {
    .n25pewp-b {
        position: absolute;
        max-width: calc(100% - 2rem);
    }
    
    .n25pewp-w {
        align-items: center;
        padding: 0;
    }
}