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

/* common */

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

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

.hidden {
    overflow: hidden;
}

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

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

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

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

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

.area-box-1700 {
    width: 100%;
    max-width: var(--wrap-width-1700);
    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;
}


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

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

section * {
    transition: all 0.4s ease;
}

html.lenis,
html.lenis body {
  height: auto;
  overflow-x: hidden !important;
}

.lenis.lenis-smooth {
  overflow-x: hidden !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

html.lenis.modal-lock,
body.lenis.modal-lock {
  overflow: hidden; /* PC 브라우저 스크롤 제거 */
}

/* 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; */
    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: #171717;
    /* box-shadow: rgba(149, 157, 165, 0.1) 0 8px 24px; */
    height: 9rem;
}

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

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

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

.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:not(.pd-open) {
    position: relative;
    display: block;
}

.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 4rem;
}
.type02 .header .header-inner .nav .main-menu .gnb .depth02 {
    color: #fff;
}

.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 {
    -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: 18rem;
    background: #FFF;
    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: center;
}
.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: #4e4e4e;
    opacity: 0.7;
}
.header .header-inner .nav .main-menu .gnb .submenu > li > a.active {
    opacity: 1;
    color: #FFCB04;
}
.header .header-inner .nav .main-menu .gnb .submenu > li > a:hover {
    text-decoration: underline;
    transition: all 0.3s;
    color: #FFCB04;
}

.header .header-inner .nav .main-menu .gnb .submenu > li > a.active_li {
    color: #fff;
    opacity: 1;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    border-top: 2px solid #eeeeee;
    height: auto;
    padding: 4rem 0 6rem;
    transition-delay: 0;
    transition: all 0.4s ease;
    top: 10rem;
    pointer-events: none;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd.active {
    top: 10rem;
    pointer-events: auto;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd li {
    background-color: #ffffff;
    position: relative;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd li a::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E60012;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd li:hover a::before {
    opacity: 0.7;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd li:hover .pd-hover-con {
    opacity: 1;
    visibility: visible;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd li:hover .pd-hover-con img {
    transform: rotate(180deg);
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 2rem 1rem;
    position: relative;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd .category {
    font-family: "Wanted";
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd .pd-list {
    flex-wrap: wrap;
    gap: 1rem;
    max-height: 44.8rem;
    overflow-y: auto;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd .pd-list .pd-item {
    width: calc((100% - 3rem) / 4);
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd .pd-list .pd-item img {
    margin-bottom: 1rem;
    max-height: 15rem;
    width: auto;
    margin: auto;
}

.header .header-inner .nav .main-menu .gnb .submenu.type-pd .pd-list .pd-item .name {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #383838;
}


/* header ham */
.header .header-inner .r-menu .ham-wrap {
    width: 6rem;
    max-width: 6rem;
    height: 0.6rem;
    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%;
    flex-direction: column;
    gap: 0.7rem;
}

.header .header-inner .r-menu .ham-wrap .ham-inner .ham-box .ham:first-child {
    background-color: #fff;
    width: 30px;
    margin-left: 3.5rem;
}

.header .header-inner .r-menu .ham-wrap .ham-inner .ham-box .ham {
    background: #FFCB04;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 0.5rem;
}

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


/* mo menu */
.mobile-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    background: #000000d1;
    z-index: 1000;
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    transition: all 0.5s ease;
}
.mobile-wrap * {
    transition: all 0.5s ease;
}

.mobile-wrap.open {
    transition: all 0.5s ease;
    right: 0;
}

.mobile-wrap .close-btn {
    width: 4.4rem;
    height: 4.4rem;
    position: absolute;
    top: 3.7rem;
    right: 5%;
    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: #ffffff;
    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 .mobile-inner .left .bg {
    width: 100%;
    height: 100%;
    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: 70%;
}

.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-main {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
}

.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1.5rem;
    gap: 1rem;
}

.mobile-wrap .mobile-inner .right .m-menu .m-nav > li .m-submenu > li > a {
    font-size: 1.8rem;
    color: #ffffffad;
    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 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

@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: #050505;
    padding:11rem 0;
}

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

#footer .content {
   
}

#footer .content .fot-title {
    font-size: 6rem;
    line-height: 1.3;
    font-family: "Poppins", serif;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5.4rem;
}

#footer .content .logo-wrap img {
    height: 7.5rem;
    width: auto;
}

#footer .cont {
    justify-content: space-between;
    align-items: flex-start;
}
#footer .fot-right ul {
    display: flex;
    gap: 64px;
}

#footer .fot-right ul li a {
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s;
    color: #fff;
}

#footer .fot-right ul li a:hover {
    color: #FFCB04;
}

#footer .info-box {
    gap: 12rem;
    margin-top: 2rem;
}

#footer .privacy-box .btn-box {
    border: 2px solid #eeeeee;
}

#footer .list-box .tit {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: #666;
}

#footer .list-box .txt {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

#footer .list-box {
    gap: 1.8rem;
}

#footer .list-box dl {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

#footer .list-box dl dd,
#footer .list-box dl dt {
    flex: 1;
}

#footer .list-box dl dt {
    max-width: 10rem;
    flex-shrink: 0;
}

#footer .list-box dl dd {
    flex: 1;
}

#footer .list-box.mail dl dt {
    display: none;
}

#footer .bottom-con {
    margin-top: 2rem;
    justify-content: space-between;
}


#footer .fot-bt {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
}

#footer .copyright {
    margin-top: 4rem;

}

#footer .copyright .txt {
    color: #666;
    font-size: 1.6rem;
}

/* 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);
}

.sub-btn {
    text-align: center;
    margin-top: 3rem;
}

.sub-btn a {
    text-decoration: none;
}

.sub-btn .btn-txt {
    font-size: 1.7rem;
    color: #666;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.sub-btn .btn-txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transition: background-color 0.3s ease;
}


.sub-btn .plus-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(41%) sepia(0%) saturate(0%) hue-rotate(174deg) brightness(96%) contrast(90%);
}


.sub-btn:hover .btn-txt {
  color: #FFCB04;
}

.sub-btn:hover .btn-txt::after {
  background-color: #FFCB04;
}

.sub-btn:hover .plus-icon {
    transform: rotate(360deg);
    filter: brightness(0) saturate(100%) invert(74%) sepia(97%) saturate(1200%) hue-rotate(1deg) brightness(95%) contrast(110%);
}

/*button//*/

/*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;
    /* 기본 테두리 추가 */
}

/* 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: flex-start;
    align-items: center;
    max-width: 45rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 99px;
    padding-bottom: 2px;
}

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

.search-wrap #searchInput {
    flex-basis: 70%;
    max-width: 70%;
    border: none;
    font-size: 1.4rem;
    font-family: 'Pretendard';
    padding: 0 0.5rem;
    color: #666666;
    font-weight: 400;
}

.search-wrap .search-btn {
    flex-basis: 10%;
    max-width: 10%;
}
.search-wrap .search-btn > img {
    width: 16px;
}
/* search //*/

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

    font-weight: 500;
}
.count-wrap .count > span {
    color: var(--main-color);
    font-weight: 700;
}
/* count //*/

/* 페이지네이션 */
.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;
}
/* 페이지네이션// */

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

/*top-btn*/
#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 16px;
    width: 6rem;
    height: 6rem;
    border: 2px solid #eeeeee;
    background-color: #ffffff;
    color: #161616;
    cursor: pointer;
    border-radius: 100%;
    /* 초반에는 안 보이게 */
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    display: flex;
    visibility: hidden;
    opacity: 0;
}

#topBtn:hover {
    border: 2px solid #161616;
}
/*top-btn//*/
