@charset "utf-8";

.cp-commu-layout .cp-commu-layout__inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
}
.cp-commu-layout__lnb {
    position: relative;
    width: 261px;
    flex: 0 0 261px;
    margin-right: 80px;
    border-right: 1px solid var(--Line-Color-Line_02);
}
.cp-commu-layout__lnb.is-pc-lnb { display: block; }
.cp-commu-layout__lnb.is-mo-lnb { display: none; }
.cp-commu-layout__lnb .cp-commu-layout__lnb-inner {
    position: sticky;
    left: 0;
    top: -1px;
    width: 100%;
    background-color: var(--Primary-Color-White);
    transition: top 0.25s 0.25s ease-in-out;
}
.cp-commu-layout__lnb.is-pc-lnb.sticky-on .cp-commu-layout__lnb-inner { top:117px; }
.cp-commu-layout__lnb.is-pc-lnb.scroll-on .cp-commu-layout__lnb-inner { top:47px; }
.cp-commu-layout__lnb .list-box+.list-box { border-top: 1px solid var(--Line-Color-Line_02); }
.cp-commu-layout__lnb .list-box .btn-lnb-noc { width: 100%; }
.cp-commu-layout__lnb .list-box .btn-lnb-noc,
.cp-commu-layout__lnb .list-box .item-btn {
    position: relative;
    display: flex;
    padding: 16px 24px 16px 24px;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: var(--Secondary-Color-Black_555555);
}
.cp-commu-layout__lnb .list-box li.is-active .btn-lnb-noc {
    background-color: var(--Secondary-Color-Black_Natural);
    color: var(--Primary-Color-Red)
}
/* 2025-10-22 웹접근성 추가 및 수정 > noc lnb 셀렉터 수정 */
.cp-commu-layout__lnb .list-box li:hover,
.cp-commu-layout__lnb .list-box .btn-lnb-noc:hover { color: var(--Primary-Color-Red) }
.cp-commu-layout__lnb .list-box .item-btn {
    position: relative;
    width: 100%;
    color: var(--Secondary-Color-Black_999999);
}
.cp-commu-layout__lnb .list-box .item-btn:after {
    content: '';
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url(/inc/images/icon/icon-arrow01_down.svg) no-repeat center;
    transition: transform 0.2s;
    transform: translateY(-50%);
}
.cp-commu-layout__lnb .list-box .item-btn.is-active::after { transform: translateY(-50%) rotate(-180deg); }
.cp-commu-layout__lnb .list-box .list-inner li { position: relative; }
.cp-commu-layout__lnb .list-box .list-inner .icon-star {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: url(/inc/images/icon/icon-star.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.cp-commu-layout__lnb .list-box .list-inner .icon-star:hover,
.cp-commu-layout__lnb .list-box .list-inner .icon-star.is-active { background: url(/inc/images/icon/icon-star-on.svg); }
.cp-commu-layout__lnb .list-accordion .item-btn { padding: 16px 48px 16px 24px; }
.cp-commu-layout__lnb .list-accordion .item-panel {
    display: none;
    overflow-y: auto;
    height: calc(100dvh - 469px);
    padding-bottom: 118px;
}
.cp-commu-layout__lnb .list-accordion .item-panel .list-inner .btn-lnb-noc {
    width: 100%;
    padding: 16px 48px 16px 24px;
    text-align: left;
}
.cp-commu-layout .cp-commu-layout__contents {
    width: calc(100% - 340px);
    min-width: 0;
    max-width: 952px;
    margin-left: auto;
    padding-bottom: 240px;
}
.cp-commu-layout.no-aside .cp-commu-layout__inner::after {
    content: '';
    display: block;
    width: calc(100% / 6);
}
.cp-commu-layout.no-aside .cp-commu-layout__contents {
    width: 100%;
    margin: 0 auto;
}
.cp-commu-layout.no-aside.no-lnb .cp-commu-layout__inner {
    position: relative;
    display: block;
    padding-left: 0;
    padding-right: 0;
}
.cp-commu-layout .cp-commu-layout__inner .btn-history-back {
    position: absolute;
    top: 24px;
    left: 24px;
}
.cp-commu-layout .cp-commu-layout__inner .btn-history-back .btn-back {
    display: block;
    width: 80px;
    height: 80px;
    background: url(/inc/images/icon/icon-arrow02_left.svg) no-repeat 50%;
    background-size: 48px;
}
.cp-commu-layout.no-aside.no-lnb .cp-commu-layout__contents {
    width: 100%;
    margin: 0 auto;
    padding-right: 0;
}
.cp-commu-layout .cp-commu-layout__aside {
    position: relative;
    width: 320px;
    padding: 140px 0 0 80px;
    margin-right: auto;
}
.cp-commu-layout .cp-commu-layout__aside-sticky {
    position: sticky;
    top: -1px;
    padding-top: 1px;
    transition: padding-top 0.25s 0.25s ease-in-out;
}
.cp-commu-layout .cp-commu-layout__aside.scroll-on .cp-commu-layout__aside-sticky.sticky-on { padding-top: 70px; }
.cp-commu-layout .cp-commu-layout__aside-sticky.sticky-on { padding-top: 118px; }
.cp-commu-layout .cp-commu-layout__head { padding-top: 140px; }
.cp-commu-layout .cp-commu-layout__head .el-title {
    font-family: var(--font-head);
    font-size: 80px;
    font-weight: 700;
    line-height: var(--lh-base);
    text-align: center;
}
.cp-commu-layout .cp-commu-layout__head .el-desc {
    margin-top: 16px;
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-align: center;
}
.cp-commu-layout .cp-commu-layout__search { margin-top: 180px; }
.cp-commu-layout .cp-commu-layout__search .search-wrap {
    max-width: 100%;
    margin: 0;
}
.cp-commu-layout .cp-commu-layout__search .search-wrap .search-input-box {
    column-gap: 24px;
    padding: 28px 4px 23px 8px;
}
.cp-commu-layout .cp-commu-layout__search .search-wrap .search-input-box .btn-group { margin: 0; }
.cp-commu-layout .cp-commu-layout__search .search-wrap input::-webkit-input-placeholder {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 32px;
    line-height: var(--lh-lg);
    color: var(--Secondary-Color-Black_999999);
}
.cp-commu-layout .cp-commu-layout__search_results {
    position: relative;
    margin-top: 180px;
    padding-bottom: 103px;
}
.cp-commu-layout .cp-commu-layout__search_results .search-container {
    display: flex;
    align-items: flex-start;
}
.cp-commu-layout .cp-commu-layout__search_results .sort-area { margin-right: 16px; }
.cp-commu-layout .cp-commu-layout__search_results .sort-inner + .sort-inner { margin-top: 20px; }

.cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap {
    justify-content: flex-start;
    width: 240px;
}
.cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap > div {
    display: block;
    width: 100%;
}
.cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap .selectbox-trigger { width: 100%; }
.cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap .option {
    width: 240px;
    min-width: auto;
}
.cp-commu-layout .cp-commu-layout__search_results .sort-input { flex: 1 0 auto; }
.cp-commu-layout .cp-commu-layout__search_results .search-input-box {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    height: 47px;
    padding: 9px 8px;
    border-bottom: 4px solid var(--Primary-Color-Black);
}
.cp-commu-layout .cp-commu-layout__search_results .search-input-box input {
    width: 100%;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    border: 0;
    color: var(--Primary-Color-Black);
}
.cp-commu-layout .cp-commu-layout__search_results .search-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.cp-commu-layout .cp-commu-layout__search_results .btn-wrap {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.cp-commu-layout .cp-commu-layout__search_results .btn-wrap .icon-refresh { margin: 0 4px 0 0; }
.cp-commu-layout .cp-commu-layout__search_results .btn-wrap .btn.btn-md-primary02:hover {
    background-color: var(--Primary-Color-White);
    color: var(--Primary-Color-Red)
}
.cp-commu-layout .cp-commu-layout__search_results .btn-wrap button:hover .icon-refresh {
    background: none;
    background: url(/inc/images/icon/icon-refresh-red.svg);
    background-size: contain;
}
.cp-commu-layout .cp-commu-layout__search_results .txt-result {
    position: absolute;
    left: 0;
    bottom: 0;
}
.cp-commu-layout .cp-commu-layout__search_results .txt-result span {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: var(--Secondary-Color-Black_777777);
}
.cp-commu-layout .cp-commu-layout__search_results + .cp-commu-layout__head-sub { margin-top: 24px; }
.cp-commu-layout .cp-commu-layout__alarm { margin-top: 80px; }
.cp-commu-layout .cp-commu-layout__alarm .inner {
    display: flex;
    gap: 22px;
}
.cp-commu-layout .cp-commu-layout__alarm .item {
    display: flex;
    flex: 1 1 33.33%;
    text-align: left;
    cursor: pointer;
}
.cp-commu-layout .cp-commu-layout__alarm .thum {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}
.cp-commu-layout .cp-commu-layout__alarm .info { padding-left: 16px; }
.cp-commu-layout .cp-commu-layout__alarm .info .el-tit {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__alarm .info .el-txt {
    margin-top: 8px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    line-height: var(--lh-lg);
    word-wrap: break-word;
}
.cp-commu-layout .cp-commu-layout__banner { margin-top: 80px; }
.cp-commu-layout .cp-commu-layout__banner .swiper { padding-bottom: 48px; }
.cp-commu-layout .cp-commu-layout__banner .banner-inner { position: relative; }
.cp-commu-layout .cp-commu-layout__banner .banner-txt-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 60px;
}
.cp-commu-layout .cp-commu-layout__banner .banner-titbox .el-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 40px;
    line-height: var(--lh-base);
    color: var(--Primary-Color-Black);
}
.cp-commu-layout .cp-commu-layout__banner .banner-titbox .el-desc {
    margin-top: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: var(--lh-lg);
    color: var(--Primary-Color-Black);
}
.cp-commu-layout .cp-commu-layout__banner .btn-wrap [class*="txt-btn02"] { color: var(--Primary-Color-Black); }
.cp-commu-layout .cp-commu-layout__banner .swiper-button-next,
.cp-commu-layout .cp-commu-layout__banner .swiper-button-prev {
    top: calc(50% - 14px);
    width: 40px;
    height: 40px;
}
.cp-commu-layout .cp-commu-layout__swiper-navi {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.cp-commu-layout .cp-commu-layout__head + .cp-commu-layout__swiper-navi { margin-top: 140px; }
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-container {
    position: relative;
    overflow: hidden;
}
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-slide { width: auto; }
.cp-commu-layout .cp-commu-layout__swiper-navi .btn-navi {
    display: inline-block;
    position: relative;
    padding: 14px 0 12px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: var(--Secondary-Color-Black_777777);
}
.cp-commu-layout .cp-commu-layout__swiper-navi .btn-navi.is-active { color: var(--Primary-Color-Black) }
.cp-commu-layout .cp-commu-layout__swiper-navi .btn-navi.is-active::after {
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid var(--Primary-Color-Black);
}
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-button-next,
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-button-prev {
    width: 32px;
    height: calc(100% - 2px);
    background-color: var(--Primary-Color-White);
}
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-button-next { padding-left: 16px; }
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-button-next:after {
    justify-content: flex-end;
    width: 16px;
    height: 16px;
    background: url(/inc/images/icon/icon-arrow01_right.svg) no-repeat center center / 100%;
}
.cp-commu-layout .cp-commu-layout__swiper-navi .swiper-button-prev:after {
    justify-content: flex-start;
    width: 16px;
    height: 16px;
    background: url(/inc/images/icon/icon-arrow01_left.svg) no-repeat center center / 100%;
}
.cp-commu-layout .cp-commu-layout__head-sub {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--Line-Color-Line_02);
}
.cp-commu-layout .cp-commu-layout__head-sub.no-border { border: 0; }
.cp-commu-layout .cp-commu-layout__head-sub .el-title {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    line-height: var(--lh-base);
}
.cp-commu-layout .cp-commu-layout__head + .cp-commu-layout__head-sub { margin-top: 180px; }
.cp-commu-layout .cp-commu-layout__column .column-item { padding: 40px 16px; }
.cp-commu-layout .cp-commu-layout__column .column-item + .column-item { border-top: 1px solid var(--Line-Color-Line_02); }
.cp-commu-layout .cp-commu-layout__column .el-category {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__column .post-info {
    width: 100%;
    text-align: left;
}
.cp-commu-layout .cp-commu-layout__column .column-box {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}
.cp-commu-layout .cp-commu-layout__column .column-text { flex: 1 1 auto; }
.cp-commu-layout .cp-commu-layout__column .column-text .el-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: var(--lh-lg);
    word-break: break-word;
}
.cp-commu-layout .cp-commu-layout__column .column-text .el-desc {
    margin-top: 12px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 500;
    line-height: var(--lh-lg);
    word-break: break-word;
    white-space: pre-line;
}
.cp-commu-layout .cp-commu-layout__column .column-visual {
    flex: 0 0 240px;
    margin-left: 24px;
}
.cp-commu-layout .cp-commu-layout__column .column-visual .thum { height: 240px; }
.cp-commu-layout .cp-commu-layout__column .column-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cp-commu-layout .cp-commu-layout__column .el-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.cp-commu-layout .cp-commu-layout__column .el-tags button {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__column .el-tags button:hover { text-decoration: underline; }
.cp-commu-layout .cp-commu-layout__column .el-date { margin-top: 20px; }
.cp-commu-layout .cp-commu-layout__column .el-date-text {
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__column .el-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.cp-commu-layout .cp-commu-layout__column .el-option .icon-option {
    display: flex;
    gap: 12px;
}
.cp-commu-layout .cp-commu-layout__column .el-option .icon-favorite-area {
    display: flex;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__column .icon-option .btn {
    display: flex;
    gap: 8px;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__column .icon-option .txt-num {
    font-family: var(--font-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__column .profile-area {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.cp-commu-layout .cp-commu-layout__column .item-challenges .profile-area { padding: 0 16px 16px; }
.cp-commu-layout .cp-commu-layout__column .profile-area .pop-open:hover .name,
.cp-commu-layout .cp-commu-layout__column .profile-area .pop-open:hover .com-name,
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .pop-open:hover .name,
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .pop-open:hover .com-name { color: var(--Primary-Color-Red) }
.cp-commu-layout .cp-commu-layout__column .profile-area .profile-open { display: block; }
.cp-commu-layout .cp-commu-layout__column .profile-area .club-popup {
    top: 65px;
    left: 0;
}
.cp-commu-layout .cp-commu-layout__column .profile-area .profile-img {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
    background-size: 100%;
}
.cp-commu-layout .cp-commu-layout__column .profile-area .profile-img img {
    height: 100%;
    min-height: 40px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__column .profile-area .name {
    display: flex;
    gap: 8px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__column .profile-area .name .icon {
    width: 20px;
    height: 20px;
}
.cp-commu-layout .cp-commu-layout__column .profile-area .com-name {
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
.cp-commu-layout .post-nodata {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    margin: 146px auto 106px auto;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-align: center;
}
.cp-commu-layout .cp-commu-layout__column .btn-wrap-default { margin-top: 80px; }
.cp-commu-layout .cp-commu-layout__club { margin-top: 24px; }
.cp-commu-layout .cp-commu-layout__club .inner-club-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(calc(100%/3 - 20px), auto));
    gap: 20px;
}
.cp-commu-layout .cp-commu-layout__club .club-item {
    padding: 40px 24px;
    border: 1px solid var(--Line-Color-Line_02);
}
.cp-commu-layout .cp-commu-layout__club .club-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
    background-size: 100%;
}
.cp-commu-layout .cp-commu-layout__club .club-logo img {
    height: 100%;
    min-height: 80px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__club .club-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 44px;
    margin-top: 20px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-align: center;
    text-overflow: ellipsis;
    word-break: break-all;
}
.cp-commu-layout .cp-commu-layout__club .club-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 60px;
    margin-top: 20px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-align: center;
    text-overflow: ellipsis;
    word-break: break-all;
}
.cp-commu-layout .cp-commu-layout__club .club-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.cp-commu-layout .cp-commu-layout__club .club-info .area {
    display: flex;
    justify-content: center;
}
.cp-commu-layout .cp-commu-layout__club .club-info .area + .area { margin-top: 6px; }
.cp-commu-layout .cp-commu-layout__club .club-info .icon {
    position: relative;
    display: flex;
    padding-left: 24px;
    padding-right: 4px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__club .club-info .icon::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 20px;
}
.cp-commu-layout .cp-commu-layout__club .club-info .icon-trophy::before { background: url(/inc/images/icon/icon-trophy.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__club .club-info .icon-member::before { background: url(/inc/images/icon/icon-member.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__club .club-info .icon + span {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
}
.cp-commu-layout .cp-commu-layout__club .btn-wrap {
    margin-top: 32px;
    display: flex;
    gap: 8px;
    justify-content: center;
}
.cp-commu-layout .cp-commu-layout__club .btn-wrap .btn { width: calc(100%/2); }
.cp-commu-layout .cp-commu-layout__club .btn-wrap-default { margin-top: 80px; }
.cp-commu-layout .cp-commu-layout__club-info {
    border: 1px solid var(--Line-Color-Line_02);
    border-top: 0;
    padding-bottom: 24px;
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual {
    position: relative;
    height: 160px;
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual .el-visual {
    height: 100%;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual .el-visual img {
    height: 100%;
    object-fit: cover;
}
.cp-commu-layout .cp-commu-layout__club-info .el-club-icon {
    position: absolute;
    left: 71px;
    top: 120px;
    width: 80px;
    height: 80px;
    background: url(/inc/images/img/img_Nful_profile_default.png) center no-repeat;
    background-size: contain;
}
.cp-commu-layout .cp-commu-layout__club-info .el-club-icon img {
    height: 100%;
    min-height: 80px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual .btn-prev-page {
    position: absolute;
    top: 19px;
    left: 15px;
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual .btn-prev-page a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual .btn-prev-page a::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--Primary-Color-White);
    -webkit-mask-image: url(/inc/images/icon/icon-arrow-dash-w.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-image: url(/inc/images/icon/icon-arrow-dash-w.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
}
.cp-commu-layout .cp-commu-layout__club-info .club-visual .btn-prev-page a:hover { background-color:var(--Primary-Color-Red) }
.cp-commu-layout .cp-commu-layout__club-info .info-box {
    position: relative;
    margin: 19px 24px 0 176px;
}
.cp-commu-layout .cp-commu-layout__club-info .info-box-head {
    position: relative;
    padding-right: 184px;
}
.cp-commu-layout .cp-commu-layout__club-info .info-box-head .el-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__club-info .info-box-option {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}
.cp-commu-layout .cp-commu-layout__club-info .info-box-option .type-setting { padding-right: 24px; }
.cp-commu-layout .cp-commu-layout__club-info .club-info-box {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .area {
    display: flex;
    justify-content: center;
    margin-right: 24px;
}
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .under {
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 4px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 500;
}
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .icon::before {
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 16px;
    height: 100%;
}
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .icon-trophy::before { background: url(/inc/images/icon/icon-trophy.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .icon-coin::before { background: url(/inc/images/icon/icon-coin.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .icon-member::before { background: url(/inc/images/icon/icon-member.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .icon-link-black::before { background: url(/inc/images/icon/icon-link.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__club-info .club-info-box button:hover .value,
.cp-commu-layout .cp-commu-layout__club-info .club-info-box a:hover .value { color: var(--Primary-Color-Red) }
.cp-commu-layout .cp-commu-layout__club-info .club-info-box .value {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
}
.cp-commu-layout .cp-commu-layout__club-info .el-club-desc {
    margin-top: 20px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
.popup-wrapper .popup-body .layer-member-option * { max-width: none; }
.popup-wrapper .popup-body .layer-member-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.popup-wrapper .popup-body .layer-member-list .item {
    display: flex;
    align-items: center;
    padding: 0 0;
}
.popup-wrapper .popup-body .layer-member-list .item .num {
    flex: 0 0 77px;
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    line-height: var(--lh-base);
    text-align: center;
}
.popup-wrapper .popup-body .layer-member-list .item .profile-area {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}
.popup-wrapper .popup-body .layer-member-list .item .profile-img {
    min-width: 60px;
    height: 60px;
    margin-right: 16px;
    background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
    background-size: 100%;
}
.popup-wrapper .popup-body .layer-member-list .item .profile-img img {
    width: 60px;
    height: 100%;
    min-height: 60px;
    background-color: var(--Primary-Color-Blue);
}
.popup-wrapper .popup-body .layer-member-list .item .profile-area .name {
    display: flex;
    gap: 8px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
    word-break: break-all;
}
.popup-wrapper .popup-body .layer-member-list .item .profile-area .name .icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
}
.popup-wrapper .popup-body .layer-member-list .item .profile-area .com-name {
    margin-top: 8px;
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 700;
    line-height: var(--lh-lg);
    word-break: break-all;
}
.cp-commu-layout .cp-commu-layout__tab { margin-top: 220px; }
.cp-commu-layout .cp-commu-layout__tab .tabs-wrap .tabs { justify-content: center; }
.cp-commu-layout .cp-commu-layout__tab .tab-content { margin-top: 80px; }
.cp-commu-layout .cp-commu-layout__tab.cp-commu-rank__tab .tab-content { min-height: 100vh; }
.cp-commu-layout .cp-commu-layout__tab .tab-cont-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--Line-Color-Line_02);
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-head .el-title {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    line-height: var(--lh-base);
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .btn { font-family: var(--font-text); }
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text,
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .txt-point {
    display: flex;
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 500;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text span + span {
    position: relative;
    padding: 0 16px;
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text .txt-point span {
    position: relative;
    padding: 0 16px;
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text span.line::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 0;
    height: 17px;
    border-left: 1px solid var(--Secondary-Color-Black_777777);
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text .el-desc {
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__tab .tab-cont-select .selectbox-wrap { justify-content: flex-start; }
.cp-commu-layout .cp-commu-layout__rank { margin-top: 24px; }
.cp-commu-layout .cp-commu-layout__rank + .btn-wrap-default { margin-top: 80px; }
.cp-commu-layout .cp-commu-layout__rank-item {
    display: flex;
    align-items: center;
    padding: 29px 0;
    border-bottom: 1px solid var(--Line-Color-Line_02);
}
.cp-commu-layout .cp-commu-layout__rank-item .num {
    flex: 0 0 77px;
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    line-height: var(--lh-base);
    text-align: center;
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-area {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-img {
    min-width: 60px;
    height: 60px;
    margin-right: 16px;
    background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
    background-size: 100%;
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-img img {
    width: 60px;
    height: 60px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .name {
    display: flex;
    gap: 8px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .name .icon {
    width: 20px;
    height: 20px;
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .com-name {
    margin-top: 8px;
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .com-name.txt-em { font-size: 14px; }
.cp-commu-layout .cp-commu-layout__rank-item .profile-area .item-info {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 8px;
}
.cp-commu-layout .cp-commu-layout__rank-item .item-info {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text {
    margin-right: 24px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: var(--Secondary-Color-Black_777777);
}
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text .icon {
    position: relative;
    padding-left: 24px;
}
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text .icon::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 17px;
}
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text .icon-coin::before { background: url(/inc/images/icon/icon-coin.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text .icon.icon-time::before { background: url(/inc/images/icon/icon-time.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text .icon-member::before { background: url(/inc/images/icon/icon-member.svg) no-repeat 0 50%; }
.cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text .icon + span {
    padding-left: 8px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: var(--Primary-Color-Black);
}
.cp-commu-layout .cp-commu-layout__rank-item .btn-wrap {
    flex: 1 0 160px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}
.cp-commu-layout .cp-commu-layout__challenge .item-box-btn,
.cp-commu-layout .cp-commu-layout__column .item-box-btn {
    display: block;
    width: 100%;
    text-align: left;
}
.cp-commu-layout .cp-commu-layout__challenge .item,
.cp-commu-layout .cp-commu-layout__column .item-challenges { padding: 24px 0; }
.cp-commu-layout .cp-commu-layout__challenge .item + .item,
.cp-commu-layout .cp-commu-layout__challenge .column-item + .column-item,
.cp-commu-layout .cp-commu-layout__column .column-item + .item-challenges,
.cp-commu-layout .cp-commu-layout__column .item-challenges + .column-item,
.cp-commu-layout .cp-commu-layout__column .item-challenges + .item-challenges { border-top: 1px solid var(--Line-Color-Line_02); }
.cp-commu-layout .cp-commu-layout__challenge .item-box-inner,
.cp-commu-layout .cp-commu-layout__column .item-challenges .item-box-inner { padding: 16px; }
.cp-commu-layout .cp-commu-layout__challenge .el-category,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-category {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .el-title,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-title {
    margin-top: 12px;
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .item-detail,
.cp-commu-layout .cp-commu-layout__column .item-challenges .item-detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
    margin-top: 20px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__challenge .el-subject,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-subject {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .el-date,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-date {
    margin-top: 8px;
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .el-members,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-members {
    display: flex;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__challenge .el-members .icon,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-members .icon {
    display: flex;
    align-items: center;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .el-members .icon::before,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-members .icon::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-color: var(--Primary-Color-Black);
    -webkit-mask-image: url(/inc/images/icon/icon-member.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-image: url(/inc/images/icon/icon-member.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
}
.cp-commu-layout .cp-commu-layout__challenge .is-complete,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-complete { background-color: var(--Primary-Color-Black); }
.cp-commu-layout .cp-commu-layout__challenge .is-complete .el-subject,
.cp-commu-layout .cp-commu-layout__challenge .is-complete .el-date,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-complete .el-subject,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-complete .el-date { color: var(--Primary-Color-White); }
.cp-commu-layout .cp-commu-layout__challenge .is-complete .icon,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-complete .icon { color: var(--Primary-Color-White); }
.cp-commu-layout .cp-commu-layout__challenge .is-complete .icon::before,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-complete .icon::before { background-color: var(--Primary-Color-White); }
.cp-commu-layout .cp-commu-layout__challenge .is-disabled,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-disabled { background-color: var(--Line-Color-Line_02); }
.cp-commu-layout .cp-commu-layout__challenge .is-disabled .el-subject,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-disabled .el-subject { color: var(--Secondary-Color-Black_777777); }
.cp-commu-layout .cp-commu-layout__challenge .is-disabled .el-date,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-disabled .el-date { color: var(--Secondary-Color-Black_777777); }
.cp-commu-layout .cp-commu-layout__challenge .is-disabled .icon,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-disabled .icon { color: var(--Secondary-Color-Black_777777); }
.cp-commu-layout .cp-commu-layout__challenge .is-disabled .icon::before,
.cp-commu-layout .cp-commu-layout__column .item-challenges .is-disabled .icon::before { background-color: var(--Secondary-Color-Black_777777); }
.cp-commu-layout .cp-commu-layout__challenge .item-visual,
.cp-commu-layout .cp-commu-layout__column .item-challenges .item-visual { position: relative; }
.cp-commu-layout .cp-commu-layout__challenge .item-visual img,
.cp-commu-layout .cp-commu-layout__column .item-challenges .item-visual img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}
.cp-commu-layout .cp-commu-layout__challenge .el-tags,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-tags {
    margin-top: 20px;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cp-commu-layout .cp-commu-layout__challenge .el-tags button,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-tags button {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .el-tags button:hover,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-tags button:hover { text-decoration: underline; }
.cp-commu-layout .cp-commu-layout__challenge .el-date,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-date {
    margin-top: 20px;
    padding-left: 16px;
}
.cp-commu-layout .cp-commu-layout__challenge .el-option,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-option {
    margin-top: 20px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__challenge .el-option .icon-option,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-option .icon-option {
    display: flex;
    gap: 12px;
}
.cp-commu-layout .cp-commu-layout__challenge .el-option .icon-favorite-area,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-option .icon-favorite-area {
    display: flex;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__challenge .el-option .btn,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-option .btn {
    display: flex;
    gap: 8px;
    align-items: center;
}
.cp-commu-layout .cp-commu-layout__challenge .el-option .txt-num,
.cp-commu-layout .cp-commu-layout__column .item-challenges .el-option .txt-num {
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .profile-area {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding: 0 16px 16px;
}
.cp-commu-layout .cp-commu-layout__challenge .profile-area .info .profile-open { display: block; }
.cp-commu-layout .cp-commu-layout__challenge .profile-area .club-popup {
    top: 65px;
    left: 0;
}
.cp-commu-layout .cp-commu-layout__challenge .profile-area .profile-img {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
    background-size: 100%;
}
.cp-commu-layout .cp-commu-layout__challenge .profile-area .profile-img img {
    height: 100%;
    min-height: 40px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .cp-commu-layout__challenge .profile-area .name {
    display: flex;
    gap: 8px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__challenge .btn-wrap-default { margin-top: 80px; }
.cp-commu-layout .content-empty { margin-top: 24px; }
.cp-commu-layout .cp-commu-layout__head + .content-empty { margin-top: 140px; }
.cp-commu-layout .content-empty .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 105px 24px;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-align: center;
}
/* cp-commu-layout__aside */
.cp-commu-layout .side-box {
    padding: 20px;
    background-color: var(--Secondary-Color-Black_Natural);
}
.cp-commu-layout .side-box+.side-box { margin-top: 24px; }
.cp-commu-layout .side-box .el-title {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .side-box .el-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cp-commu-layout .side-box .el-title a:hover {
    color: var(--Primary-Color-Red);
    position: relative;
    background-color: transparent;
}
.cp-commu-layout .side-box .el-title a:hover .icon-right {
    background: url(/inc/images/icon/icon-arrow01_right_red.svg);
    background-size: contain;
}
.cp-commu-layout .side-box .side-box-swiper { margin-top: 20px; }
.cp-commu-layout .side-box .side-box-swiper .swiper { padding-bottom: 24px }
.cp-commu-layout .side-box-swiper .swiper-slide a { display: block; }
.cp-commu-layout .side-box-swiper .swiper-slide .el-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 44px;
    margin-top: 20px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.cp-commu-layout .side-box-swiper .swiper-slide .el-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 4px;
    max-height: 60px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--lh-lg);
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.cp-commu-layout .cs-commu {
    padding: 0;
    background-color: transparent;
}
.cp-commu-layout .cs-commu .side-box-swiper { margin: 0; }
.cp-commu-layout .cs-commu .side-box-swiper .swiper-slide {
    position: relative;
    padding: 0;
}
.cp-commu-layout .cs-commu .side-box-swiper .inner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px;
}
.cp-commu-layout .cs-commu .side-box-swiper .el-title {
    display: block;
    overflow: visible;
    max-height: none;
    margin-top: 0;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
    text-overflow: initial;
    white-space: initial;
}
.cp-commu-layout .cs-commu .side-box-swiper .el-desc {
    display: block;
    overflow: hidden;
    overflow: visible;
    max-height: none;
    margin-top: 8px;
    word-wrap: initial;
    font-family: var(--font-text);
    white-space: initial;
    text-overflow: initial;
    -webkit-line-clamp: initial;
}
.cp-commu-layout .cs-commu .side-box-swiper .btn-wrap { margin-top: 24px; }
.cp-commu-layout .cs-commu .side-box-swiper .swiper-slide .btn {
    display: flex;
    justify-content: flex-start;
}
.cp-commu-layout .cs-commu .side-box-swiper .swiper-button-next,
.cp-commu-layout .cs-commu .side-box-swiper .swiper-button-prev {
    width: 24px;
    height: 24px;
}
/* side rank */
.cp-commu-layout .side-rank-list { margin-top: 20px; }
.cp-commu-layout .side-rank-list .profile-area { display: flex; }
.cp-commu-layout .side-rank-list li + li { margin-top: 16px; }
.cp-commu-layout .side-rank-list .profile-area .profile-img {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
    background-size: 100%;
}
.cp-commu-layout .side-rank-list .profile-area .profile-img img {
    height: 100%;
    min-height: 40px;
    background-color: var(--Primary-Color-Blue);
}
.cp-commu-layout .side-rank-list .profile-area .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cp-commu-layout .side-rank-list .profile-area .info button {
    display: block;
    text-align: left;
}
.cp-commu-layout .side-rank-list .profile-area .name {
    word-break: break-all;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .side-rank-list .profile-area .com-name {
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
/* cp-commu-layout__saved */
.cp-commu-layout .cp-commu-layout__saved .inner .item {
    padding: 24px 0;
    border-bottom: 1px solid var(--Line-Color-Line_02);
}
.cp-commu-layout .cp-commu-layout__saved .inner .item button {
    text-align: left;
    padding: 16px;
}
.cp-commu-layout .cp-commu-layout__saved .inner .el-category {
    margin-bottom: 12px;
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__saved .inner .el-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.cp-commu-layout .cp-commu-layout__saved .inner .el-date {
    margin-top: 20px;
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 400;
    line-height: var(--lh-lg);
}
/* search result */
.cp-commu-layout .c-search__box {padding: 28px 4px 23px 8px}
.cp-commu-layout input[type='text'].c-search__field {
    font-weight: 500;
}
.cp-commu-layout input[type='text'].c-search__field::placeholder {
    font-weight: 500;
    color: var(--Secondary-Color-Black_999999);
}
/* tab  */
.cp-commu-layout .c-tab__content {margin-top: 80px;}
.cp-commu-layout__search_results .c-search__box {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 9px 8px;
    height: 47px;
    border-bottom: 4px solid var(--Primary-Color-Black);
}
.cp-commu-layout__search_results input[type='text'].c-search__field {
    font-size: 16px;
    font-weight: 500;
}
.cp-commu-layout__search_results input[type='text'].c-search__field::placeholder { font-size: 16px; }
.cp-commu-layout .cp-commu-layout__saved .btn-wrap-default { margin-top: 80px; }
/* notice */
.cp-commu-layout .cp-commu-layout__notice { margin-top: 100px; }
.cp-commu-layout .cp-commu-layout__notice .txt-result { margin-bottom: 24px; }
.cp-commu-layout .cp-commu-layout__notice .txt-result span {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: var(--Secondary-Color-Black_777777);
}
.cp-commu-layout .cp-commu-layout__notice .subnotice_wrap .noti-listbox { margin-top: 0; }
.cp-commu-layout .subnotice_wrap .noti-listbox {
    border-top: 3px solid var( --Line-Color-Line_03);
    max-width: 1440px;
    margin: 100px auto 0 auto;
    font-family: var(--font-text);
}
.cp-commu-layout .subnotice_wrap .noti-listbox li {
    display: flex;
    padding: 29px 12px;
    align-items: center;
    border-bottom: 1px solid var(--Line-Color-Line_02);
}
.cp-commu-layout .cp-commu-layout .subnotice_wrap .noti-listbox li .noti-fix {
    align-items: center;
    width: 34px;
    height: 34px;
    display: flex;
}
.cp-commu-layout .subnotice_wrap .noti-listbox li .noti-fix img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.cp-commu-layout .subnotice_wrap .noti-listbox li button {
    font-size: 24px;
    font-weight: 700;
    flex: 1;
    text-align: left;
}
.cp-commu-layout .subnotice_wrap .noti-listbox li span.notice-date {
    font-size: 16px;
    font-weight: 400;
    flex: 0 0 auto;
}
.cp-commu-layout .subnotice_wrap .noti-listbox + .btn-wrap-default {
    max-width: 1440px;
    margin: 80px auto 0 auto;
}
.cp-commu-layout .subnotice_wrap .page_wrap { margin-top: 80px; }
/* tab */
.cp-commu-layout .c-tab--xs .c-tab__list { justify-content: center; }
.cp-commu-layout .c-tab--xs .c-tab__item { flex: unset; }
@media screen and (max-width: 1279px) {
    .cp-commu-layout__lnb {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 48px;
        width: 100%;
    }
    .cp-commu-layout__lnb.is-pc-lnb { display: none; }
    .cp-commu-layout__lnb.is-mo-lnb { display: block; }
    .cp-commu-layout__lnb > .mo-only { display: block; }
    .cp-commu-layout__lnb .cp-commu-layout__lnb-inner {
        display: none;
        overflow-y: auto;
        height: calc(var(--vh, 1vh) * 100);
        width: 100%;
        margin-top: 50px;
        padding-left: 0;
        padding-bottom: 169px;
        background-color: var(--Primary-Color-White);
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    .cp-commu-layout__lnb .lnb-item-btn {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 11px 48px 11px 24px;
        font-family: var(--font-head);
        font-size: 20px;
        font-weight: 700;
        line-height: var(--lh-lg);
        background-color: var(--Primary-Color-White);
    }
    .cp-commu-layout__lnb .lnb-item-btn:after {
        position: absolute;
        content: '';
        display: block;
        right: 24px;
        top: 50%;
        width: 16px;
        height: 16px;
        background: url(/inc/images/icon/icon-arrow01_down.svg) no-repeat center;
        transform: translateY(-50%);
        transition: transform 0.2s;
    }
    .cp-commu-layout__lnb .lnb-item-btn.is-active::after { transform: translateY(-50%) rotate(-180deg); }
    .cp-commu-layout__lnb .list-accordion .list-accordion-box { min-height: 60px; }
    .cp-commu-layout__lnb .list-accordion .item-panel {
        height: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    .cp-commu-layout .cp-commu-layout__inner { padding-left: 0; }
    .cp-commu-layout .cp-commu-layout__contents {
        width: 100%;
        margin: 0 auto;
        padding-bottom: 152px;
    }
    .cp-commu-layout.no-aside .cp-commu-layout__inner { padding-left: 0; }
    .cp-commu-layout.no-aside .cp-commu-layout__inner::after { display: none; }
    .cp-commu-layout .cp-commu-layout__aside { display: none; }
    .cp-commu-layout .cp-commu-layout__club .inner-club-list { grid-template-columns: repeat(2, minmax(calc(100% / 2 - 20px), auto)); }
    .cp-commu-layout .cp-commu-layout__club .club-name {
        display: block;
        overflow: visible;
        min-height: auto;
    }
    .cp-commu-layout .cp-commu-layout__club .club-desc {
        display: block;
        overflow: visible;
    }
}
@media screen and (max-width: 1023px) {
    .cp-commu-layout { padding: 0 24px; }
    .cp-commu-layout .cp-commu-layout__inner { padding-left: 0; }
    .cp-commu-layout .cp-commu-layout__inner .btn-history-back {
        top: 0px;
        left: -24px;
    }
    .cp-commu-layout .cp-commu-layout__inner .btn-history-back .btn-back {
        width: 48px;
        height: 48px;
        background-size: 24px;
    }
    .cp-commu-layout .cp-commu-layout__contents { width: 100%; }
    .cp-commu-layout.no-aside .cp-commu-layout__contents { padding-right: 0; }
    .cp-commu-layout .cp-commu-layout__head { padding-top: 125px; }
    .cp-commu-layout .cp-commu-layout__head .el-title {
        font-size: 40px;
        line-height: var(--lh-base);
    }
    .cp-commu-layout .cp-commu-layout__head .el-desc { font-size: 20px; }
    .cp-commu-layout .cp-commu-layout__search { margin-top: 125px; }
    .cp-commu-layout .cp-commu-layout__search .search-input-box {
        padding: 16px 2px 12px 8px;
        column-gap: 12px;
    }
    .cp-commu-layout .cp-commu-layout__search .search-wrap input::-webkit-input-placeholder { font-size: 18px; }
    .cp-commu-layout .cp-commu-layout__search_results {
        margin-top: 165px;
        padding-bottom: 86px;
    }
    .cp-commu-layout .cp-commu-layout__search_results .search-container { display: block; }
    .cp-commu-layout .cp-commu-layout__search_results .sort-area { margin-right: 0; }
    .cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap { width: 100%; }
    .cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap .selectbox-options {
        overflow-y: auto;
        max-height: 65% !important;
    }
    .cp-commu-layout .cp-commu-layout__search_results .selectbox-wrap .option { width: 100%; }
    .cp-commu-layout .cp-commu-layout__search_results .sort-input { margin-top: 20px; }

    .cp-commu-layout .cp-commu-layout__search_results .search-btn { margin-top: 28px; }
    .cp-commu-layout .cp-commu-layout__search_results + .cp-commu-layout__head-sub { margin-top: 28px; }
    .cp-commu-layout .cp-commu-layout__alarm { margin-top: 64px; }
    .cp-commu-layout .cp-commu-layout__alarm .inner {
        flex-direction: column;
        gap: 20px;
    }
    .cp-commu-layout .cp-commu-layout__alarm .item { flex: 0 0 100%; }
    .cp-commu-layout .cp-commu-layout__alarm .info { padding-left: 8px; }
    .cp-commu-layout .cp-commu-layout__alarm .info .el-txt { margin-top: 4px; }
    .cp-commu-layout .cp-commu-layout__banner { margin-top: 64px; }
    .cp-commu-layout .cp-commu-layout__banner .swiper { padding-bottom: 30px; }
    .cp-commu-layout .cp-commu-layout__banner .banner-txt-wrap {
        justify-content: flex-start;
        padding: 32px 24px;
    }
    .cp-commu-layout .cp-commu-layout__banner .banner-txt-wrap .banner-titbox .el-title {
        font-size: 24px;
        line-height: var(--lh-lg);
    }
    .cp-commu-layout .cp-commu-layout__banner .banner-txt-wrap .banner-titbox .el-desc {
        margin-top: 8px;
        font-size: 18px;
    }
    .cp-commu-layout .cp-commu-layout__banner .banner-txt-wrap .btn-wrap { margin-top: 44px; }
    .cp-commu-layout .cp-commu-layout__head-sub {
        flex-direction: column;
        margin-top: 40px;
        padding: 0;
        border: 0;
    }
    .cp-commu-layout .cp-commu-layout__head-sub .el-title {
        font-size: 24px;
        line-height: var(--lh-lg);
    }
    .cp-commu-layout .cp-commu-layout__head-sub .sort-inner { margin-top: 8px; }
    .cp-commu-layout .cp-commu-layout__head-sub .sort-inner .selectbox-trigger { padding: 7px 32px 7px 4px }
    .cp-commu-layout .cp-commu-layout__head+.cp-commu-layout__head-sub { margin-top: 160px; }
    .cp-commu-layout .cp-commu-layout__column .column-item { padding: 40px 0; }
    .cp-commu-layout .cp-commu-layout__column .column-text .el-title {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        max-height: 56px;
        font-size: 20px;
    }
    .cp-commu-layout .cp-commu-layout__column .column-text .el-desc {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin-top: 8px;
        max-height: 66px;
    }
    .cp-commu-layout .cp-commu-layout__column .column-visual {
        flex: 0 0 auto;
        flex-shrink: 0;
        width: 122px;
        height: 122px;
        margin-left: 20;
    }
    .cp-commu-layout .cp-commu-layout__column .column-visual .thum {
        width: 100%;
        height: 100%;
    }
    .cp-commu-layout .cp-commu-layout__column .profile-area .profile-img {
        width: 40px;
        height: 40px;
        background: url(/inc/images/img/img_Nful_profile_default.png) no-repeat;
        background-size: 100%;
    }
    .cp-commu-layout .cp-commu-layout__column .profile-area .com-name { margin-top: 0; }
    .cp-commu-layout .cp-commu-layout__column .profile-area .club-popup {
        position: fixed;
        top: unset;
        left: 0;
        bottom: 0;
        min-height: unset;
        height: auto;
        max-width: unset;
        width: 100%;
        transform: unset;
        border: none;
    }
    .cp-commu-layout .post-nodata {
        margin: 28px auto 0;
        max-width: 100%;
        font-size: 18px;
    }
    .cp-commu-layout .cp-commu-layout__column .btn-wrap-default { margin-top: 64px; }
    .cp-commu-layout .cp-commu-layout__club .inner-club-list {
        display: flex;
        gap: 28px;
        flex-direction: column;
    }
    .cp-commu-layout .cp-commu-layout__club .btn-wrap-default { margin-top: 44px; }
    .cp-commu-layout .cp-commu-layout__club-info {
        margin: 0 -24px;
        border: 0;
        padding-bottom: 40px;
    }
    .cp-commu-layout .cp-commu-layout__club-info .inner { padding-top: 60px; }
    .cp-commu-layout .cp-commu-layout__club-info .el-club-icon { left: 24px; }
    .cp-commu-layout .cp-commu-layout__club-info .info-box { margin: 15px 24px 0 24px; }
    .cp-commu-layout .cp-commu-layout__club-info .info-box-head {
        padding-right: 0;
        padding-left: 96px;
    }
    .cp-commu-layout .cp-commu-layout__club-info .info-box-head .el-title {
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        max-height: 75px;
        word-wrap: break-word;
        text-overflow: ellipsis;
    }
    .cp-commu-layout .cp-commu-layout__club-info .club-info-box {
        column-gap: 16px;
        row-gap: 24px;
    }
    .cp-commu-layout .cp-commu-layout__club-info .club-info-box .area { margin-right: 0; }
    .popup-wrapper .popup-body .layer-member-list {
        display: block;
        margin-top: 0;
    }
    .popup-wrapper .popup-body .layer-member-list .item + .item { margin-top: 20px; }
    .popup-wrapper .popup-body .layer-member-list .item .num {
        flex: 0 0 50px;
        margin-right: 8px;
        font-size: 24px;
    }
    .cp-commu-layout .cp-commu-layout__tab { margin-top: 125px; }
    .cp-commu-layout .cp-commu-layout__tab .tabs-wrap .tabs li { width: calc(100% / 2); }
    .cp-commu-layout .cp-commu-layout__tab .tabs-wrap .tabs li a {
        padding: 11px;
        text-align: center;
    }
    .cp-commu-layout .cp-commu-layout__tab .tab-content { margin-top: 24px; }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-head {
        flex-direction: column;
        padding-bottom: 0;
        border: 0;
    }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-head .el-title {
        font-size: 24px;
        line-height: var(--lh-lg);
    }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-head .sort-inner { margin-top: 8px; }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option {
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text {
        flex-wrap: wrap;
        gap: 12px;
    }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text span { padding-right: 4px; }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-text span:first-child { flex: 1 }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option .txt-point span:first-child { padding-left: 0; }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-btn {
        width: 100%;
        margin-top: 24px;
    }
    .cp-commu-layout .cp-commu-layout__tab .tab-cont-option .info-btn .btn { width: 100%; }
    .cp-commu-layout .cp-commu-layout__rank { margin-top: 12px; }
    .cp-commu-layout .cp-commu-layout__rank-item {
        position: relative;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 28px 0;
    }
    .cp-commu-layout .cp-commu-layout__rank-item .num {
        position: absolute;
        top: 20px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 58px;
        height: 60px;
        font-size: 24px;
    }
    .cp-commu-layout .cp-commu-layout__rank-item .profile-area {
        position: relative;
        flex: 0 0 100%;
        margin-left: 58px;
    }
    .cp-commu-layout .cp-commu-layout__rank-item .item-info {
        flex: 0 0 100%;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin-left: 58px;
    }
    .cp-commu-layout .cp-commu-layout__rank-item .item-info .icon-text {
        margin-top: 16px;
        margin-right: 0;
    }
    .cp-commu-layout .cp-commu-layout__rank-item .btn-wrap {
        flex: 1 1 100%;
        gap: 8px;
        justify-content: flex-start;
        width: 100%;
        margin-left: 53px;
        margin-top: 20px;
    }
    .cp-commu-layout .cp-commu-layout__rank-item .btn-wrap button {
        width: calc((100% - 61px)/2);
        padding: 10px 16px;
    }
    .cp-commu-layout .cp-commu-layout__rank + .btn-wrap-default { margin-top: 44px; }
    .cp-commu-layout .cp-commu-layout__challenge .item,
    .cp-commu-layout .cp-commu-layout__column .item-challenges { padding: 40px 0; }
    .cp-commu-layout .cp-commu-layout__challenge .item-box-inner,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .item-box-inner { padding: 0; }
    .cp-commu-layout .cp-commu-layout__challenge .item .el-title,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .el-title { font-size: 24px; }
    .cp-commu-layout .cp-commu-layout__challenge .item .item-visual,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .item-visual { position: relative; }
    .cp-commu-layout .cp-commu-layout__challenge .item .item-visual img,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .item-visual img {
        width: 100%;
        max-height: none;
        height: calc(100vw - 48px);
    }
    .cp-commu-layout .cp-commu-layout__challenge .item .el-tags,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .el-tags { padding: 0; }
    .cp-commu-layout .cp-commu-layout__challenge .item .el-date,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .el-date { padding-left: 0 }
    .cp-commu-layout .cp-commu-layout__challenge .item .el-option,
    .cp-commu-layout .cp-commu-layout__column .item-challenges .el-option { padding: 0; }
    .cp-commu-layout .cp-commu-layout__column .item-challenges .profile-area { padding: 0; }
    .cp-commu-layout .cp-commu-layout__challenge .btn-wrap-default { margin-top: 40px; }
    .cp-commu-layout .cp-commu-layout__challenge .profile-area { padding: 0; }
    .cp-commu-layout .content-empty { margin: 28px auto 0; }
    .cp-commu-layout .cp-commu-layout__head + .content-empty { margin-top: 125px; }
    .cp-commu-layout .content-empty .inner { padding: 64px 24px; }
    .popup-wrapper .popup-report-inner .sort-inner .selectbox-trigger { width: 100%; }
    .popup-wrapper .popup-report-inner {
        flex-direction: column;
        row-gap: 8px;
    }
    /* search result */
    .cp-commu-layout .c-search__box {padding: 16px 2px 12px 8px}
    .cp-commu-layout input[type='text'].c-search__field::placeholder { font-size: 18px; }
    .cp-commu-layout__search_results input[type='text'].c-search__field::placeholder { font-size: 17px; }
    /* notice */
    .cp-commu-layout .cp-commu-layout__notice { margin-top: 64px; }
    .cp-commu-layout .subnotice_wrap .noti-listbox li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 29px 12px;
    }
    .cp-commu-layout .subnotice_wrap .noti-listbox li button {
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
        text-align: left;
    }
    .cp-commu-layout .subnotice_wrap .noti-listbox li .noti-fix img { margin: 0 0 8px 0; }
    .cp-commu-layout .subnotice_wrap .noti-listbox li button + .notice-date { margin-top: 24px; }
    .cp-commu-layout .subnotice_wrap .noti-listbox + .btn-wrap-default {
        max-width: 100%;
        margin: 44px auto 0 auto;
    }
    /* tab  */
    .cp-commu-layout .c-tab--xs .c-tab__list { justify-content: center;flex-direction: row; }
    .cp-commu-layout .c-tab--xs .c-tab__item { 
        flex: unset; 
        width: 50%;
        border-bottom: 1px solid var(--Primary-Color-Black);
    }
    .cp-commu-layout .c-tab__content {margin-top: 24px;}
}
/* NOC snb 버튼 숨김 */
.btn-navi-wrap #nocPopEditBtn {
    display: none !important;
}