/*common*/
/*header*/
/*footer*/
/*right-bar*/
/*top*/
/*button*/
/*dot*/

/* common */

#wrap * {
    /* white-space: normal; */
    overflow-wrap: break-word;
    word-break: keep-all;
}

a.btn {
    display: inline-block;
}

.vh100 {
    height: var(--full-height);
}

.hidden {
    overflow: hidden;
}

.wrap {
    width: 100%;
    max-width: 100%;
}

.bd-r-5 {
    border-radius: 5px;
}

.type02 {
    width: 100%;
    max-width: 100%;
}

.inner {
    padding: var(--inner);
    transition: all 0.4s ease;
}

.area-box-1600 {
    width: 100%;
    max-width: var(--wrap-width-01);
    margin: auto;
}

.area-box-1500 {
    width: 100%;
    max-width: var(--wrap-width-02);
    margin: auto;
}

.area-box-1400 {
    width: 100%;
    max-width: var(--wrap-width-03);
    margin: auto;
}

.grd-color {
    background: var(--grd-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grd-color-re {
    background: var(--grd-color-re);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.f-box {
    display: flex;
    transition: all 0.4s ease;
}

.dot {
    position: relative;
    padding-left: 1.4rem;
}

.dot::before {
    display: block;
    content: "·";
    position: absolute;
    left: 0;
}

.ts-04,
.ts-04 * {
    transition: all 0.4s ease;
}

.ts-02,
.ts-02 * {
    transition: all 0.2s ease;
}

section * {
    transition: all 0.4s ease;
}

.center {
    text-align: center;
    margin: auto;
}

/* common// */

/* header */
#header,
.type02 #header {
    width: 100%;
    position: absolute;
    transition: all 0.4s;
}

.header {
    width: 100%;
    /* height: 10rem; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    transition: all 0.5s;
}

.header.scroll-up {
    margin-top: -10rem;
}

.top .header.inner,
.type02 .header.inner {
    /* padding-top: 3rem; */
    padding-right: var(--side-wrap);
    transition: all 0.4s ease;
}

.type02 .header,
.wrap .header {
    animation: Loaddown 0.8s 0.8s both;
    -webkit-animation: Loaddown 0.8s 0.8s both;
}
.type02 .header {
    background: #fff;
    /* box-shadow: rgba(149, 157, 165, 0.1) 0 8px 24px; */
    position: fixed;
    padding-right: 10rem;
}

@keyframes Loaddown {
    0% {
        transform: translate(0, -50%);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.header .header-inner {
    width: 100%;
    max-width: 166rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

/* header-logo */
.header .header-inner .header-logo {
    max-width: 18rem;
}

.header .header-inner .header-logo > a .logo-type-w {
    display: none;
}

.header .header-inner .header-logo > a .logo-type-c {
    display: block;
}

.type02 .header .header-inner .header-logo > a .logo-type-w {
    display: none;
}

.type02 .header .header-inner .header-logo > a .logo-type-c {
    display: block;
}

/* PC menu */
.header .header-inner .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: calc(100% - 40rem);
    max-width: calc(100% - 40rem);
}

.header .header-inner .nav .main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .header-inner .nav .main-menu .gnb {
    position: relative;
    display: block;
    cursor: pointer;
}
.header .header-inner .nav .main-menu .gnb + .gnb {
    margin-left: 1rem;
}

.header .header-inner .nav .main-menu .gnb .depth02 {
    font-size: 1.8rem;
    position: relative;
    font-weight: 600;
    transition: all 0.3s;
    line-height: 10rem;
    color: #fff;
    padding: 0 3rem;
    font-family: 's-core';
}
.type02 .header .header-inner .nav .main-menu .gnb .depth02 {
    color: #222;
}

.wrap .header .header-inner .nav .main-menu .gnb .depth02.on {
    opacity: 0.5;
}

.type02 .header .header-inner .nav .main-menu .gnb .depth02.on {
    opacity: 0.5;
}

.header .header-inner .nav .main-menu .gnb .depth02.active {
    background: var(--grd-color-re);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    font-weight: 700;
}

.header .header-inner .nav .main-menu .gnb .depth02.active_li {
    opacity: 1;
    transition: all 0.3s;
}

.header .header-inner .nav .main-menu .gnb .submenu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7rem;
    width: 14rem;
    background: var(--main-color);
    padding: 2.5rem 0;
    transition: all 0.5s ease-out;
    transition-property: opacity, top, visibility;
    transition-delay: 0s, 0s, 0s;
    visibility: hidden;
    opacity: 0;
}
.header .header-inner .nav .main-menu .gnb .submenu.active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.1s;
    top: 8rem;
}

.header .header-inner .nav .main-menu .gnb .submenu > li {
    text-align: left;
    /* padding-left: 2rem; */
    padding: 0.25rem 0.5rem 0.25rem 2rem;
}
.header .header-inner .nav .main-menu .gnb .submenu > li + li {
    margin-top: 0.8rem;
}
.header .header-inner .nav .main-menu .gnb .submenu > li > a {
    display: block;
    font-size: 1.6rem;
    width: 100%;
    transition: all 0.3s;
    font-weight: 400;
    color: #fff;
    opacity: 0.7;
    line-height: 1.1;
}
.header .header-inner .nav .main-menu .gnb .submenu > li > a.active {
    opacity: 1;
}
.header .header-inner .nav .main-menu .gnb .submenu > li > a:hover {
    text-decoration: underline;
    transition: all 0.3s;
}
.header .header-inner .nav + .lang-box {
    margin-left: 6rem;
}
.header .header-inner .nav .main-menu .gnb .submenu > li > a.active_li {
    color: #fff;
    opacity: 1;
}

/* right menu */
.header .header-inner .r-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* lang */
.header .header-inner .r-menu .lang-box {
    position: relative;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    align-items: center;
    gap: 0.6rem;
}
.header .header-inner .r-menu .lang-box .icon {
    line-height: 1;
    width: 1.6rem;
    height: 1.6rem;
}

.header .header-inner .r-menu .lang-box .icon {
    background: url("../img/globe.svg");
    background-size: cover;
}

.type02 .header .header-inner .r-menu .lang-box .icon {
    background: url("../img/globe_b.svg");
    background-size: cover;
}

.header .header-inner .r-menu .lang-box .icon span {
    color: #161616;
}

.header .header-inner .r-menu .lang-box .lang-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.header .header-inner .r-menu .lang-box .lang-btn a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.6rem;
}

.header .header-inner .r-menu .lang-box .lang-btn a.on {
    color: #fff;
    border-bottom: 2px solid var(--main-color);
}

/* .type02 .header .header-inner .r-menu .lang-box {
  background-color: var(--main-color);
} */

.type02 .header .header-inner .r-menu .lang-box .lang-btn a {
    color: rgba(0, 0, 0, 0.4);
}

.type02 .header .header-inner .r-menu .lang-box .lang-btn a.on {
    color: #161616;
    border-bottom: 2px solid var(--main-color);
}

/* header ham */
.header .header-inner .r-menu .ham-wrap {
    width: 4.7rem;
    flex-basis: 4.7rem;
    max-width: 4.7rem;
    height: 4rem;
    position: relative;
    cursor: pointer;
}
.header .header-inner .r-menu .ham-wrap .ham-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .header-inner .r-menu .ham-wrap .ham-inner .ham-box {
    width: 100%;
}
.header .header-inner .r-menu .ham-wrap .ham-inner .ham-box .ham {
    background: #fff;
    width: 100%;
    height: 2px;
    display: block;
}
.header .header-inner .r-menu .ham-wrap .ham-inner .ham-box .ham + .ham {
    margin-top: 1rem;
}

.type02 .header .header-inner .r-menu .ham-wrap .ham-inner .ham-box .ham {
    background: #666;
}

/* mo menu */
.mobile-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    transition: all 0.5s ease;
    display: none;
}
.mobile-wrap * {
    transition: all 0.5s ease;
}

.mobile-wrap.open {
    transition: all 0.5s ease;
    display: block;
}

.mobile-wrap .close-btn {
    width: 4.4rem;
    height: 4.4rem;
    position: absolute;
    top: 30px;
    right: 65px;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 999;
}
.mobile-wrap .close-btn:hover {
    opacity: 0.5;
    transition: all 0.3s;
}
.mobile-wrap .close-btn .c-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mobile-wrap .close-btn .c-wrap .bar {
    width: 3rem;
    height: 2px;
    background: #222;
    display: block;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}
.mobile-wrap .close-btn .c-wrap .bar01 {
    transform: translateY(1px) rotate(45deg);
}
.mobile-wrap .close-btn .c-wrap .bar02 {
    transform: translateY(-1px) rotate(-45deg);
}

.mobile-wrap .mobile-inner {
    width: 100%;
    height: 100%;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .mobile-wrap.open .mobile-inner .left {
    flex-basis: 40%;
    max-width: 40%;
    height: 100%;
    animation: left-ani 2s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
    position: relative;
} */
/* .mobile-wrap .mobile-inner .left .bg {
    width: 100%;
    height: 100%;
    background: url("../img/mo-menu-bg.jpg") no-repeat center center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} */
.mobile-wrap .mobile-inner .left .bg {
    width: 100%;
    height: 100%;
    background: url("../img/mo-menu-bg.jpg") no-repeat center center;
    background-size: cover;
}
.mobile-wrap.open .mobile-inner .right .m-menu .m-nav > li {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

@keyframes left-ani {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        filter: Alpha(opacity=100);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.mobile-wrap .mobile-inner .right {
    flex-basis: 100%;
    max-width: 100%;
    padding: 4rem 20rem;
    overflow: auto;
    max-height: 100%;
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li + li {
    margin-top: 4rem;
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-main {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu > li + li {
    margin-left: 5rem;
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu > li > a {
    font-size: 1.8rem;
    color: #666;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    display: inline-block;
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu > li > a.active {
    color: var(--main-color);
    border-color: var(--main-color);
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu > li > a:hover {
    color: var(--main-color);
}
.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu > li > a:hover {
    border-color: var(--main-color);
}

.mobile-wrap.open .mobile-inner .right .m-menu .m-nav {
    /* animation: up-ani 2s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both; */
}

@keyframes up-ani {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/* header// */

/* footer */

#footer {
    background-color: #fff;
    border-top: 1px solid #f1f1f1;
    position: relative;
}

#footer * {
    transition: all 0.4s ease;
}

#footer .content {
    padding: 4rem 0;
}

#footer .content .top-box {
    justify-content: flex-start;
}

#footer .content .top-box .logo img {
    height: 3rem;
}

#footer .content .line {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin: 6rem 0;
}

#footer .content .bottom-box {
    justify-content: space-between;
}

#footer .content .bottom-box .l-box .info {
    margin-bottom: 0.5rem;
}
#footer .content .bottom-box .l-box .info:first-child {
    margin-bottom: 1.5rem;
}

#footer .content .bottom-box .l-box .privacy,
#footer .content .bottom-box .l-box .txt {
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
}

#footer .content .bottom-box .l-box .txt.color {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 600;
}

#footer .content .bottom-box .l-box .privacy {
    margin-bottom: 4rem;
}

#footer .content .bottom-box .l-box .info .txt span {
    padding: 0 4rem 0 2rem;
}

#footer .content .bottom-box .l-box .license {
    margin-top: 1.5rem;
    background: #222;
    padding: 0.8rem 2.2rem;
    border-radius: 10px;
}
#footer .content .bottom-box .l-box .license .txt {
    display: flex;
    justify-content: space-between;
    align-items: anchor-center;
}
#footer .content .bottom-box .l-box .license .txt a {
    color: #979797;
}

#footer .content .bottom-box .l-box .license .txt span {
    font-size: 1.4rem;
    color: #fff;
}

#footer .content .bottom-box .r-box {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

#footer .content .txt span {
    font-weight: 400;
}

#footer .content .bottom-box.area-box-1600 {
    max-width: none;
}
#footer .content .bottom-box.area-box-1600 .l-box {
    width: 100%;
    padding: 0 6rem;
}

.ft_info_wrap {
    display: flex;
}
.ft_info_txt {
    flex-basis: 60%;
}
.ft_info_link {
    flex-basis: 40%;
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
}
.ft_info_link a img {
    width: auto;
    height: 35px;
}


/* footer// */

/*button*/
.btn-wrap {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0.6rem;
    border: 2px solid #eee;
    border-radius: 10rem;
}

.btn-wrap .btn-text-box {
    padding-left: 1.5rem;
}

.btn-wrap .btn-text-box .txt {
    font-size: 1.4rem;
    font-weight: 500;
}

.btn-wrap .plus-box {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    background-color: var(--main-color);
}

.btn-wrap .plus-box span {
    background-color: #ffffff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-wrap .plus-box span.width {
    width: 1.6rem;
    height: 0.2rem;
}

.btn-wrap .plus-box span.length {
    width: 0.2rem;
    height: 1.6rem;
}

.btn-wrap:hover {
    background-color: var(--main-color);
    gap: 1rem;
    border: 2px solid var(--main-color);
}

.btn-wrap:hover .btn-text-box .txt {
    color: #ffffff;
}

.btn-wrap:hover .plus-box {
    transform: rotate(180deg);
}
/*button//*/

/*dot*/

/*dot//*/

/*pop*/
.pop-box {
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: block !important;
}
.pop-box.on {
    opacity: 1;
    visibility: visible;
}

.pop-box.on .con-wrap {
    top: 50%;
}

.pop-box .bg {
    background-color: rgba(0, 0, 0, 0.432);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pop-box .con-wrap {
    position: absolute;
    left: 50%;
    top: calc(50% + 3rem);
    transform: translate(-50% , -50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #f9f9f9;
    width: 80%;
    max-width: 60rem;
    height: 100%;
    max-height: 80%;
    border-radius: 5px;
    padding: 3rem;
    box-shadow: var(--shadow02);
    transition-duration: 0.5s;
}

.pop-box .con-wrap .tit {
    font-size: var(--sub-tit-24);
    padding: 0 1rem 2rem;
}

.pop-box .con-wrap .line {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: 2rem;
}

.pop-box .con-wrap .txt {
    font-size: 1.4rem;
}

.pop-box .con-wrap .info-box {
    overflow-y: scroll;
    padding: 0 1rem;
}
/*pop//*/

/*scroll*/
/* 전체 스크롤바 */
::-webkit-scrollbar {
    width: 10px;
    /* 스크롤바의 너비 */
    height: 10px;
    /* 수평 스크롤바의 높이 */
}

/* 스크롤바의 Thumb */
::-webkit-scrollbar-thumb {
    background-color: #b9b9b9;
    /* 색상 */
    border-radius: 5px;
    /* 모서리 둥글게 */
}

/* Hover 시 Thumb 스타일 */
::-webkit-scrollbar-thumb:hover {
    background-color: #cacaca;
    /* Hover 색상 */
}

/* 스크롤바의 Track */
::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    /* 트랙 배경색 */
    border-radius: 5px;
}

/* 트랙 경계 */
::-webkit-scrollbar-track-piece {
    border: 1px solid #ddd;
}

/* 콘텐츠가 스크롤 가능한 영역 */
body {
    /* 스크롤 테스트용 */
    margin: 0;
}
/*scroll/*/
/* Reset for all elements inside .ckeditor_area */
.ckeditor_area *,
.ckeditor_area *::after,
.ckeditor_area *::before {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

/* Reset for specific elements inside .ckeditor_area */
.ckeditor_area body,
.ckeditor_area html {
    height: 100%;
}

.ckeditor_area body {
    line-height: 1.4;
    color: inherit;
    background-color: transparent;
    font-family: sans-serif;
    /* 기본 글꼴 설정 */
}

/* Reset for images inside .ckeditor_area */
.ckeditor_area img {
    display: block;
    /* 인라인 요소를 블록 요소로 바꿔서 불필요한 공간 제거 */
    max-width: 100%;
    /* 이미지를 부모 크기에 맞게 제한 */
    height: auto;
    /* 비율 유지 */
    width: auto;
}

/* Reset for headings (h1, h2, h3, h4, h5, h6) inside .ckeditor_area */
.ckeditor_area h1,
.ckeditor_area h2,
.ckeditor_area h3,
.ckeditor_area h4,
.ckeditor_area h5,
.ckeditor_area h6 {
    font-size: inherit;
    /* 기본 폰트 크기 상속 */
    font-weight: normal;
    /* 기본 폰트 두께 제거 */
    margin: 0;
    /* 기본 여백 제거 */
}

/* Reset for paragraphs inside .ckeditor_area */
.ckeditor_area p {
    margin: 0;
    /* 기본 여백 제거 */
    line-height: 1.5;
    /* 줄 간격을 적당히 설정 */
}

/* Reset for lists inside .ckeditor_area */
.ckeditor_area ol,
.ckeditor_area ul {
    list-style: none;
    /* 기본 목록 스타일 제거 */
    padding-left: 0;
    /* 기본 여백 제거 */
}

/* Reset for anchor tags inside .ckeditor_area */
.ckeditor_area a {
    text-decoration: none;
    /* 링크의 밑줄 제거 */
    color: inherit;
    /* 링크 색상 기본 설정 */
}

/* Reset for tables inside .ckeditor_area */
.ckeditor_area table {
    border-collapse: collapse;
    /* 테이블의 경계선 병합 */
    width: 100%;
    /* 테이블 너비 100%로 설정 */
}

.ckeditor_area td,
.ckeditor_area th {
    text-align: left;
    /* 셀 내 텍스트 왼쪽 정렬 */
    padding: 8px;
    /* 셀 내 패딩 */
    border: 1px solid #ccc;
    /* 기본 테두리 추가 */
}

/*right-bar*/
.right-bar {
    position: fixed;
    right: 0;
    width: var(--side-wrap);
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.8s ease;
}

/*.right-bar::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--grd-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.8s ease;
    opacity: 0;
}*/

.sub-container .right-bar {
    height: var(--sub-top-height);
    height: auto;
}

.right-bar.on::before {
    opacity: 1;
}

/* .right-bar.on {
    height: 10.1rem;
} */
 
.right-bar.on .ham-wrap .ham-box .ham {
    background-color: #000;
}

/* .right-bar.on {
  background-color: var(--main-color);
} */

.right-bar .ham-wrap {
    width: 100%;
    height: 10rem;
}

.right-bar .ham-wrap .ham-inner {
    width: 100%;
    height: 100%;
    justify-content: left;
    align-items: center;
}

.right-bar .ham-wrap .ham-inner .ham-box {
    flex-direction: column;
    gap: 0.7rem;
    cursor: pointer;
}

.right-bar .ham-wrap .ham-box .ham {
    width: 2.5rem;
    height: 0.2rem;
    background-color: #ffffff;
    display: block;
}

.right-bar .ham-wrap .ham-box .ham:nth-child(2) {
    margin-left: 0.5rem;
}

.right-bar .scroll-wrap {
    width: 100%;
    justify-content: center;
    margin-bottom: 4rem;
}

.right-bar.on .scroll-wrap {
    display: none;
}

.right-bar .scroll-wrap .text-wrap {
    margin-bottom: 1rem;
}

.right-bar .scroll-wrap .text-wrap .txt {
    color: #ffffffdb;
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.2;
}

.right-bar .scroll-wrap .icon-wrap .mouse-icon {
    position: relative;
    width: 2.2rem;
    height: 4rem;
    border-radius: 100px;
    border: 1px solid #ffffff50;
    margin: auto;
}

.right-bar .scroll-wrap .icon-wrap .mouse-icon::after {
    position: absolute;
    left: 50%;
    margin-left: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    content: "";
    animation: scrollAni 1.6s infinite;
}

@keyframes scrollAni {
    from {
        top: 20%;
    }
    to {
        top: 80%;
        opacity: 0;
    }
}

/* search */
.top-center {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.search-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 35rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 100px;
    height: 4.5rem;
    padding: 4px 4px 4px 10px;
}

.search-wrap .search-list {
    flex-basis: 20%;
    max-width: 30%;
    height: 100%;
}
.search-wrap .search-list .nice-select {
    border: none;
    border-radius: 0;
    font-size: 1.6rem;
    height: 100%;
    line-height: 4.5rem;
    padding-right: 4rem;
}
.search-wrap .search-list .nice-select .list {
    width: 100%;
}

.search-wrap #searchInput {
    width: calc(100% - 3.7rem);
    border: none;
    font-size: 1.6rem;
    font-family: 'Pretendard';
    padding: 0 0.5rem;
    color: #333;
    font-weight: 500;
}

.search-wrap .search-btn {
    width: 3.7 rem;
    height: 3.7rem;
    background: #333;
    border-radius: 50%;
}
.search-wrap .search-btn > img {
    width: 1.8rem;
}

/* count */
.count-wrap .count {
    font-size: 1.6rem;

    font-weight: 500;
}
.count-wrap .count.s-core{
    display: flex;
    gap: 0.5rem;
}
.count-wrap .count.s-core b{
    font-weight: 500;
}
.count-wrap .count > span {
    color: var(--main-color);
    font-weight: 700;
}

/* 페이지네이션 */
.pagelist {
    margin-top: 6rem;
}

.pagelist .page-wrap .pagination {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.pagelist .page-wrap .pagination .page-item.prev {
    margin: 0 2rem 0 1.5rem;
}
.pagelist .page-wrap .pagination .page-item.next {
    margin: 0 1.5rem 0 2rem;
}

.pagelist .page-wrap .pagination .page-item > a {
    display: block;
}

.pagelist .page-wrap .pagination .page-item > a .main_p {
    color: #aaa;
    font-size: 1.6rem;
    text-align: center;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    margin: 0 0.3rem;
}
.pagelist .page-wrap .pagination .page-item.active > a .main_p {
    color: #121212;
}
/* 페이지네이션// */

/*view페이지*/

/*view-page*/
.view-page-wrap .sub-visual {
    display: none;
}

.view-page-wrap .breadcrumbs {
    margin-bottom: 1rem;
    display: none;
}

/* .view-page {
  padding-top: 14rem;
} */

.view-page .top-box {
    text-align: center;
    margin-bottom: 6rem;
}

.view-page .top-box .category {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.view-page .top-box .day {
    font-size: var(--sub-txt-18);
    color: var(--color-g-text);
    font-weight: 400;
}

.view-page .tit-info-wrap {
    padding: 2rem;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 6rem;
}

.view-page .tit-info-wrap .tit-box {
    margin-bottom: 1.6rem;
}

.view-page .tit-info-wrap .tit-box .tit {
    font-size: 3rem;
}

.view-page .tit-info-wrap .info-box .info {
    margin-right: 2.5rem;
}

/* .view-page .info-box img {
  max-width: 50%;
  margin: auto;
} */

.view-page .tit-info-wrap .info-box .info .txt {
    margin-right: 0.6rem;
    font-size: 1.4rem;
    color: var(--color-text3);
}

.view-page .tit-info-wrap .info-box .info .day {
    font-size: 1.4rem;
    color: var(--color-text3);
}

.view-page .tit-info-wrap .file-box {
    margin-top: 1rem;
}

.view-page .tit-info-wrap .file-box a {
    gap: 0.6rem;
}

.view-page .tit-info-wrap .file-box img {
    width: 1.4rem;
}

.view-page .tit-info-wrap .file-box .txt {
    color: var(--color-text3);
}

/*page-btn*/

.prev-next-list-wrap {
    margin-top: 6rem;
}

.prev-next-box .page-btn {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.prev-next-box .page-btn:nth-child(even) {
    border-top: 0;
}

.prev-next-box .page-btn a {
    padding: 2rem;
    align-items: center;
}

.prev-next-box .page-btn .txt {
    width: 10rem;
}

.prev-next-box .page-btn .info {
    width: calc(100% - 10rem);
    color: var(--color-text3);
}

.prev-next-box .page-btn a:hover .info {
    color: var(--color-text2);
}

.prev-next-list-wrap .list-box {
    text-align: center;
    margin-top: 4rem;
}
/*page-btn//*/
/*view-page//*/

/*ck*/
.ckeditor_area {
    padding: 0 2rem;
}
/*ck//*/

.all_container {
    max-width: 1320px;
    margin: 0 auto;
}
.header-wrap .logo_type_w {
    display: none;
}
.header-wrap.top .logo_type_w {
    display: block;
}
.header-wrap.top .logo_type_b {
    display: none;
}

.right_fix_bar {
    position: fixed;
    right: 6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.right_fix_bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 100px;
    font-size: 1.6rem;
    color: #fff;
    padding: 2.5rem 1rem;
    min-height: 22rem;
    justify-content: space-between;
    width: 4.8rem;
}
.right_fix_bar a:first-child {
    background: #D30D18;
}
.right_fix_bar a:last-child {
    background: #000;
    margin-top: 1rem;
}
.right_fix_bar a img {
    width: 13px;
    height: 13px;
}
.right_fix_bar a p {
    /* writing-mode: vertical-rl;
    letter-spacing: -3.5px; */
    line-height: 1.2;
}

.ft_symbol {
    width: 3.5rem;
}
.top_btn {
    width: 10rem;
    height: 10rem;
    background: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.top_btn img {
    width: auto;
}
.top_btn:hover img {
    margin-bottom: 7px;
}


#header .nav .main-menu li:nth-child(3) .submenu, #header .nav .main-menu li:nth-child(4) .submenu {
    display: none;
}

.language_select #languagebtn {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 7px;
    margin-left: 7px;
}
.type02 .language_select #languagebtn {
    color: #222;
    font-weight: 500;
}
.lang_arrow {
    background: url(../img/lang_arrow.svg) no-repeat center;
    width: 11px;
    height: 11px;
}
.type02 .language_select .lang_arrow {
    background: url(../img/lang_arrow_b.svg) no-repeat center;
}
.language_menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: #fff;
    width: 95px;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: none;
}

.language_menu li a {
    display: block;
    padding: 8px 12px;
    color: #555 !important;
    font-size: 14px !important;
    font-weight: 500;
}

.language_menu li a:hover, .language_menu li a.on {
    background: #D30D18;
    color: #fff !important;
}

.right_fix_bar a > img:nth-child(2) {
    display: none;
}