/* 구독 공통 */
.section_subscription_common .line {
    text-decoration-line: line-through;
}

.section_subscription_common .plan_tag {
    /*position: absolute;*/
    /*left: 50%;*/
    /*top: -15px;*/
    /*transform: translate(-50%, 0);*/
    /*width: fit-content;*/
    height: 37px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: -0.4px;
    text-align: center;
    background: url("/assets/images/tokenpost_new/membership/template/btn_membership_bg.png") no-repeat center/cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.section_subscription_common .discount_tag {
    width: max-content;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 4px;
    background: #ffebeb;
    padding: 4px 8px;
    color: #f65252;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 130%; /* 16.9px */
    letter-spacing: -0.325px;
}

.section_subscription_common .membership_tab_wrap .membership_tab_title {
    color: #111;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.75px;
    text-align: center;
}

.section_subscription_common .membership_banner_wrap {
    width: 948px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    background: #fff2f2;
}

.membership_banner_wrap .banner_content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership_banner_wrap .banner_content_text {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.45px;
}

.membership_banner_wrap .banner_content_text strong {
    color: #f65252;
    font-family: "GmarketSansMedium";
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.45px;
}

.section_subscription_common .common_btn {
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #fff;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("/assets/images/tokenpost_new/membership/template/btn_membership_bg.png") no-repeat center/cover;
    transition: 0.3s;
}

.section_subscription_common .common_btn:hover {
    box-shadow: 0 2px 20px 0 rgba(184, 160, 250, 0.8);
}

/* 메인 */
.section_subscription_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    /*padding: 40px 28px 28px;*/
}

.hero_wrap {
    width: 100%;
    padding: 80px 0;
    background: url("/assets/images/tokenpost_new/membership/hero_bg.png") no-repeat center/cover;
    background-attachment: fixed;
}

.hero_wrap .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.membership_title_wrap {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
    /*gap: 12px;*/
}

.membership_title_wrap .membership_title_container {
    /*display: flex;*/
    /*width: 100%;*/
    /*height: 100%;*/
}

.membership_title_container .membership_title {
    margin: 12px 0 16px;
    color: #fff;
    font-size: 45px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%; /* 67.5px */
    letter-spacing: -1.125px;
}

.membership_title_container .membership_tag {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 22.5px */
    letter-spacing: -0.375px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(5px);
    width: fit-content;
}

.membership_title .membership_highlight_text {
    background: var(--gradient-membership, linear-gradient(92deg, #7c50ff 0.57%, #5d95fb 40.02%, #69b1ff 63.19%, #0d47da 98.42%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.membership_title_text {
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

.membership_info_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 27px;
    margin-top: 64px;
}

.membership_info_list .membership_info_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    flex: 1;
    height: 252px;
    padding: 32px 0;
    border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #916cff;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(5px);

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.membership_info_item.is_visible {
    opacity: 1;
    transform: translateY(0);
}

.membership_info_list .membership_info_item:hover {
    border-radius: 10px;
    border: 1px solid #916cff;
    background: rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 20px 0 rgba(184, 160, 250, 0.4);
    backdrop-filter: blur(5px);
}

.membership_info_item .info_icon_box {
    width: 32px;
}

.membership_info_item .info_icon_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.membership_info_item .info_item_title {
    color: var(--black-white-white, #fff);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

.membership_info_item .info_item_text {
    color: var(--black-white-white, #fff);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

.membership_comment_wrap {
    width: 100%;
    border-radius: 10px;
    background: #fafafa;
}

.membership_comment_wrap {
    padding: 120px 0;
}

.membership_comment_wrap .membership_comment_inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto;
}

.membership_comment_inner .membership_comment_title {
    min-width: 265px;
    flex-shrink: 0;
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 45px */
    letter-spacing: -0.75px;
}

.membership_comment_inner .swiper-container {
    overflow: hidden;
    min-width: 0px;
    flex: 1;
}

.membership_comment_inner .card_items {
}

.membership_comment_inner .card_items li {
    flex-shrink: 0;
    width: 256px !important;
    height: 336px;
    padding: 24px;
    border-radius: 16px;
}

.membership_comment_inner .card_items li:nth-child(1) {
    background: url("/assets/images/tokenpost_new/membership/section2_card.png") no-repeat center/cover;
}

.membership_comment_inner .card_items li:nth-child(2) {
    background: url("/assets/images/tokenpost_new/membership/section2_card_1.png") no-repeat center/cover;
}

.membership_comment_inner .card_items li:nth-child(3) {
    background: url("/assets/images/tokenpost_new/membership/section2_card_2.png") no-repeat center/cover;
}

.membership_comment_inner .card_items li p {
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

.membership_comment_inner .membership_comment_list {
    margin-top: 32px;
    text-align: center;
}

.membership_comment_list .membership_comment_item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.membership_comment_list .membership_comment_item:not(:first-child) {
    margin-top: 20px;
}

.membership_comment_list .membership_comment_item:nth-child(2) {
    flex-direction: row-reverse;
}

.membership_comment_item .user_icon_box {
    width: 80px;
    height: 80px;
}

.user_icon_box img {
    width: 100%;
    height: 100%;
}

.membership_comment_item .comment_box {
    position: relative;
    padding: 12px;
    border-radius: 10px;
    background: #ebebf0;
}

.membership_comment_item:nth-child(2) .comment_box {
    background: #d5d9e5;
}

.membership_comment_item .comment_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -11px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url("/assets/images/tokenpost_new/membership/comment_tail.svg") no-repeat center/contain;
}

.membership_comment_item:nth-child(2) .comment_box::before {
    right: -11px;
    left: auto;
    background: url("/assets/images/tokenpost_new/membership/comment_tail2.svg") no-repeat center/contain;
}

.comment_box .comment_text {
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.4px;
    color: #333;
}

.comment_text .comment_highlight_text {
    font-style: normal;
    font-weight: 700;
}

.membership_core_wrap {
    display: grid;
    justify-content: center;
    /*grid-template-columns: 1fr 1fr 1fr;*/
    gap: 24px;
    padding: 120px 0;
    background: #07092d;
    overflow: hidden;
}

.membership_core_wrap .membership_core_wrap_container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 56px;
    flex-wrap: wrap;
    width: 970px;
    padding: 0 24px;
    padding-bottom: 64px;
}

.membership_core_wrap .membership_core_wrap_container .swiper-navigation-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
    padding-right: 24px;
}

.membership_core_wrap .membership_core_wrap_container .swiper-button-prev,
.membership_core_wrap .membership_core_wrap_container .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0;
    border-radius: 50%;
}

.membership_core_wrap .membership_core_wrap_container .swiper-button-prev::after,
.membership_core_wrap .membership_core_wrap_container .swiper-button-next::after {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.membership_core_wrap .membership_core_wrap_container .swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: default;
}

.membership_core_wrap .membership_core_wrap_container .swiper-button-prev {
    background: rgba(255, 255, 255, 0.3) url("/assets/images/tokenpost_new/membership/icon_left.svg") no-repeat center/20px 20px;
}

.membership_core_wrap .membership_core_wrap_container .swiper-button-next {
    background: rgba(255, 255, 255, 0.3) url("/assets/images/tokenpost_new/membership/icon_right.svg") no-repeat center/20px 20px;
}

.membership_core_title {
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 45px */
    letter-spacing: -0.75px;
}

.membership_core_wrap .swiper-container {
    overflow: visible !important;
    width: 100%;
}

.membership_core_wrap .swiper-container .card_items {
}

.membership_core_wrap .swiper-container .card_items li {
    width: 400px;
    height: 400px;
}

.membership_core_wrap .swiper-container .card_items li:nth-child(1) {
    background: url("/assets/images/tokenpost_new/membership/section3_card_1.png") no-repeat center/cover;
}

.membership_core_wrap .swiper-container .card_items li:nth-child(2) {
    background: url("/assets/images/tokenpost_new/membership/section3_card_2.png") no-repeat center/cover;
}

.membership_core_wrap .swiper-container .card_items li:nth-child(3) {
    background: url("/assets/images/tokenpost_new/membership/section3_card_3.png") no-repeat center/cover;
}

.membership_core_wrap .swiper-container .card_items li:nth-child(4) {
    background: url("/assets/images/tokenpost_new/membership/section3_card_4.png") no-repeat center/cover;
}

.membership_core_wrap .swiper-container .card_items li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.membership_core_wrap .swiper-container .card_items li a h3 {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

.membership_core_wrap .swiper-container .card_items li a p {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
}

.membership_core_wrap .membership_core_col {
}

.membership_core_wrap .membership_core_item {
    display: flex;
    width: 388px;
    height: 218px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;

    border: 1px solid #eee;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.membership_core_item .membership_core_icon_box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.membership_core_item .membership_core_text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.membership_core_item .membership_core_title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.4px;
    text-align: center;
}

.membership_core_item .membership_core_desc {
    font-size: 14px;
    font-weight: 500;
    color: #767676;
    letter-spacing: -0.35px;
    text-align: center;
}

.membership_core_desc .tablet_br {
    display: none;
}

.membership_core_desc .pc_br {
    display: block;
}

.membership_banner_area {
    position: relative;
    width: 100%;
}

.membership_banner_area .membership_banner_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    padding: 120px 20px;
    background: #f0f6ff;
    border-radius: 10px;
}

.membership_banner_inner .membership_banner_title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #111;
    text-align: center;
}

.membership_banner_inner .membership_banner_visual {
    position: relative;
    max-width: 544px;
    width: 100%;
}

.membership_banner_visual img {
    width: 100%;
    vertical-align: middle;
}

.membership_banner_visual .membership_banner_device {
    position: absolute;
    top: 0;
    left: 154px;
    width: 230px;
}

.membership_banner_visual .membership_banner_card {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.membership_banner_card .membership_banner_description {
    padding: 0 4px 4px;
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: -0.25px;
    color: #000;
}

.membership_banner_visual .membership_banner_card:nth-child(1) {
    width: 130px;
    top: 45px;
    left: 0;
}

.membership_banner_visual .membership_banner_card:nth-child(3) {
    width: 131px;
    right: 57px;
    top: 125px;
}

.membership_banner_visual .membership_banner_card:nth-child(3) img {
    position: relative;
    left: -1px;
}

.membership_banner_visual .membership_banner_card:nth-child(4) {
    width: 151px;
    height: 102px;
    right: 4px;
    top: 0;
    padding: 4px;
    overflow: hidden;
}

.membership_banner_card .banner_title_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 9px;
}

.banner_title_wrap img {
    width: 10px;
}

.membership_banner_card .banner_card_title {
    font-size: 10px;
    font-weight: 500;
    line-height: 9px;
    letter-spacing: -0.25px;
    color: #000;
}

.membership_banner_card .banner_description_wrap {
    position: relative;
    padding: 2px 3px;
    background-color: #f4effb;
    border-left: 1px solid #955bdb;
    border-radius: 2px;
    margin-top: 2px;
}

.membership_banner_card .banner_description_wrap::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 4px;
    width: 5px;
    height: 4px;
    background: url("/assets/images/tokenpost_new/membership/quotation_marks.svg") no-repeat center/contain;
}

.membership_banner_card .banner_description_wrap p {
    font-size: 9px;
    line-height: 13.5px;
    letter-spacing: -0.225px;
}

.membership_banner_visual .membership_banner_card .membership_banner_card_description {
    font-size: 10px;
}

.membership_event_wrap {
    position: relative;
    width: 100%;
    border-radius: 10px;
    background: radial-gradient(86.09% 50% at 50% 50%, #4b0b0b 0%, #000 100%);
}

.membership_event_bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: url("/assets/images/tokenpost_new/membership/event_bg.svg") no-repeat center/contain;
}

.membership_event_wrap .membership_event_inner {
    position: relative;
    max-width: 331px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    padding: 32px 0;
    text-align: center;
}

.membership_event_inner .membership_event_period {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 36px;
    letter-spacing: -0.6px;
    margin-top: 16px;
}

.membership_event_inner .membership_event_title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.75px;
    color: #fff;
    line-height: 48px;
}

.membership_event_inner .membership_event_title .event_highlight {
    font-weight: 900;
    color: #f65252;
}

.membership_event_inner .membership_event_notice {
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.375px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
}

.membership_event_inner .membership_event_code_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
}

.membership_event_code_wrap .membership_event_code_label {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #434343;
}

.membership_event_code_box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership_event_code_box .membership_event_code {
    border: 0;
    outline: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
    color: #111;
    background-color: transparent;
    text-align: right;
}

.membership_event_code_width_calc {
    position: absolute;
    visibility: hidden;
    white-space: pre;
}

.membership_event_code_box .membership_event_code_copy {
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    color: #434343;
    line-height: 18px;
    letter-spacing: -0.3px;
    cursor: pointer;
}

.membership_event_code_box .membership_event_code_copy img {
    vertical-align: middle;
}

.membership_event_btn_primary {
    width: 400px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 6px;
    background-color: #4294ff;
}

.membership_event_btn_primary .membership_event_btn_primary_text {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
    color: #fff;
}

.section_subscription_inner .membership_count_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #767676;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.35px;
}

.section_subscription_inner .membership_tab_list {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 43px auto 32px;
}

.section_subscription_inner .membership_tab_list .tab_link {
    position: relative;
    width: 140px;
}

.section_subscription_inner .membership_tab_content_list {
    display: flex;
    align-items: end;
    gap: 24px;
    justify-content: center;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item {
    position: relative;
    width: 300px;
    height: 612px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .blue_gradient_wrap {
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
    letter-spacing: -0.35px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    background: url("/assets/images/tokenpost_new/membership/template/btn_membership_bg.png") no-repeat center/cover;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .blue_light_wrap {
    position: relative;
    padding: 24px;
    height: 320px;
    background: var(--blue-blue-02, #f0f6ff);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .blue_light_wrap .btn_wrap {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
}

.section_subscription_inner .membership_tab_content_list .membership_content_item.membership_plus .blue_light_wrap {
    position: relative;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    flex-shrink: 0;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item.membership_plus .blue_light_wrap .sale {
    position: absolute;
    top: 0;
    right: 5px;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .white_wrap {
    padding: 24px;
    background: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    height: calc(100% - 320px);
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .white_wrap .benefit {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .white_wrap .benefit p {
    color: var(--gray-gray-11, #111);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .white_wrap .benefit p span {
    color: var(--etc-blue-puple, #66f);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .white_wrap .benefit img {
}

.section_subscription_inner .membership_tab_content_list .membership_plus .blue_light_wrap .white_tag,
.section_subscription_inner .membership_tab_content_list .membership_alpha .blue_light_wrap .white_tag {
    display: inline-block;
    margin: 10px 0;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--blue-blue-05, #bdd9ff);
    background: var(--black-white-white, #fff);
    background: #fff;
    color: var(--gray-gray-09, #767676);
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.35px;
}

.section_subscription_inner .membership_tab_content_list .membership_plus .blue_light_wrap .price,
.section_subscription_inner .membership_tab_content_list .membership_alpha .blue_light_wrap .price {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

.section_subscription_inner .membership_tab_content_list .membership_content_item .blue_light_wrap .red_tag {
    padding: 4px 6px;
    display: inline-block;
    border-radius: 4px;
    background: var(--red-red-09, #eb4b4b);
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    /*line-height: 100%; !* 13px *!*/
    letter-spacing: -0.52px;
}

.section_subscription_inner .membership_tab_content_list .membership_plus .blue_light_wrap .price span,
.section_subscription_inner .membership_tab_content_list .membership_alpha .blue_light_wrap .price span {
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 45px */
    letter-spacing: -0.75px;
    background: var(--gradient-membership, linear-gradient(92deg, #7c50ff 0.57%, #5d95fb 40.02%, #69b1ff 63.19%, #0d47da 98.42%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section_subscription_inner .membership_tab_content_list .blue_light_wrap .before_price {
    display: inline-block;
    height: 27px;
}

.section_subscription_inner .membership_tab_content_list .membership_plus .blue_light_wrap .before_price,
.section_subscription_inner .membership_tab_content_list .membership_alpha .blue_light_wrap .before_price {
    display: block;
    color: var(--gray-gray-08, #999);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    text-decoration-line: line-through;
}

.section_subscription_inner .membership_tab_wrap {
    padding: 120px 0;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .item_title_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .item_title {
    color: #000;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 33px */
    letter-spacing: -0.55px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .plan_desc {
    margin: 43px 0 48px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .current_price {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.65px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .current_price {
    /*font-size: 20px;*/
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .original_price {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: rgba(255, 255, 255, 0.7);
    line-height: normal;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .price_monthly {
    display: flex;
    /*align-items: flex-start;*/
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
    padding: 10px 18px;
    height: 88px;
    margin: 0 0 24px 0;
}

.membership_year_wrap .membership_content_item.membership_plus .price_monthly {
    margin-top: 0;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .plan_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .plan_item {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .discount_amount {
    padding: 4px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.35px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic {
    box-sizing: border-box;
    border: 1px solid #ededed;
    background: #fff;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic .price {
    margin-right: 5px;
    color: var(--gray-gray-08, #999);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic .price span {
    color: #000;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 45px */
    letter-spacing: -0.75px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus {
    height: calc(612px + 37px);
    box-sizing: border-box;
    background: #4294ff;
    border-radius: 16px;
    border: 1px solid var(--gradient-membership, #7c50ff);
    box-shadow: 0 0 16px 0 rgba(102, 102, 255, 0.2);
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .blue_light_wrap {
    border-radius: 0;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha {
    box-sizing: border-box;
    border: 1px solid #dbdbdb;
    height: 612px;
}

/*.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic .item_title:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 20px;*/
/*    height: 2px;*/
/*    background: #CCC;*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    transform: translate(-50%, 0);*/
/*}*/

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic .price_monthly {
    background: #f7f7fa;
    color: #767676;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic .original_price {
    color: #bbb;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

/*.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_basic .plan_list{*/
/*    margin-bottom: 65px;*/
/*}*/

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .item_title,
.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .item_title {
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .item_title:before,
.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .item_title:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .plan_desc,
.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .plan_desc {
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .discount_amount {
    background: rgba(20, 94, 191, 0.6);
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .price_monthly {
    background: #145ebf;
    color: #fff;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_plus .plan_item,
.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .plan_item {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: -0.35px;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .btn_membership_plus {
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    background: url("/assets/images/tokenpost_new/membership/template/btn_membership_bg.png") no-repeat center/cover;
    color: #fff;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

.section_subscription_inner .membership_bubble {
    width: 100%;
    background-color: #fff2f2;
    color: #f65252;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .discount_amount {
    background: rgba(255, 255, 255, 0.08);
}

.section_subscription_inner .membership_tab_wrap .membership_content_item.membership_alpha .price_monthly {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section_subscription_inner .membership_tab_wrap .membership_content_item .btn_membership_alpha {
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    background: #fff;
    color: #1653a3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.section_subscription_inner .membership_month_wrap .membership_content_item.membership_basic .price_monthly {
    height: auto;
    margin-top: 44px;
}

/*.section_subscription_inner .membership_month_wrap .membership_content_item.membership_basic .plan_list{
    margin-bottom: 43px;
}*/

.section_subscription_inner .membership_month_wrap .membership_content_item .price_monthly {
    align-items: center;
    /*margin: 12px 0;*/
    /*height: 60px;*/
}

.section_subscription_inner .membership_month_wrap .membership_content_item .price_monthly > div {
    width: 100%;
}

.section_subscription_inner .membership_month_wrap .membership_content_item .price_monthly > .original_price {
    width: 100%;
    /*text-align: left;*/
    text-align: center;
}

.membership_content_item .price_monthly {
    position: relative;
    text-align: center;
}

.membership_content_item .price_monthly > div {
    justify-content: center;
}

.membership_year_wrap .membership_content_item .price_monthly {
    height: 123px;
}

.membership_year_wrap .membership_content_item.membership_starter .price_monthly {
    height: auto;
}

.membership_year_wrap .membership_content_item.membership_basic .price_monthly {
    height: 121px;
    margin-top: 44px;
}

/**/

.membership_info_content_wrap .membership_info_content_list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.membership_info_content_wrap .membership_info_content_item {
    width: calc(100% / 2 - 12px);
    display: flex;
    padding: 20px;
    align-items: stretch;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #ededed;
}

.membership_info_content_item .content_media_area {
    width: 134px;
    height: 134px;
    flex-shrink: 0;
}

.membership_info_content_item .content_media_area img {
    width: 134px;
    height: 134px;
}

.membership_info_content_item .content_text_area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

/*membership_plan_wrap*/
.membership_plan_wrap {
    margin-bottom: 80px;
}

.membership_plan_wrap .btn_checkout_wrap {
    display: flex;
    justify-content: center;
}

.membership_plan_wrap .common_btn {
    display: inline-flex;
    padding: 8px 6px;
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.35px;
}

.membership_plan_wrap .common_btn:hover {
    box-shadow: none;
}

.membership_plan_wrap .new_title5 {
    text-align: center;
    color: var(--gray-gray-11, #111);
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 33px */
    letter-spacing: -0.55px;
    margin-bottom: 32px;
}

.membership_plan_wrap .membership_plan_table {
    border-collapse: separate;
    max-width: 914px;
    table-layout: fixed;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--gray-gray-05, #dbdbdb);
    margin: 0 auto;
}

.membership_plan_wrap .membership_plan_table thead {
    position: sticky;
    top: 69px;
    z-index: 10;
    background: #fff;
}

.membership_plan_wrap .membership_plan_table thead td {
    padding: 12px 0;
    color: #111;
    border-bottom: 0;
}

.membership_plan_wrap .membership_plan_table tr td:nth-child(1),
.membership_plan_wrap .membership_plan_table tr td:nth-child(2) {
    padding: 20px 12px;
}

.membership_plan_wrap .membership_plan_table thead td:nth-child(4) {
    padding: 0;
}

.membership_plan_wrap .membership_plan_table thead td:nth-child(4) > div {
    padding: 12px 0;
    border: 2px solid #4294ff;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.membership_plan_wrap .membership_plan_table tbody td:nth-child(3) {
    border: 2px solid #4294ff;
    border-top: 0;
    border-bottom: 1px solid #ededed;
}

.membership_plan_wrap .membership_plan_table tbody tr.top_border td {
    border-top: 0;
}

.membership_plan_wrap .membership_plan_table tbody tr.bg_gray {
    background: #f7f7fa;
}

.membership_plan_wrap .membership_plan_table tbody tr.bg_light_blue {
    background: #f0f6ff;
}

.membership_plan_wrap .membership_plan_table thead tr:first-child td:nth-child(3) {
    border-top: 2px solid #4294ff;
    border-left: 2px solid #4294ff;
    border-right: 2px solid #4294ff;
    border-radius: 10px 10px 0 0;
}

.membership_plan_wrap .membership_plan_table tbody tr:last-child td:nth-child(3) {
    border-bottom: 2px solid #4294ff;
    border-radius: 0 0 10px 10px;
}

.membership_plan_wrap .membership_plan_table tbody tr:last-child td {
    border-bottom: 0;
}

.membership_plan_wrap .membership_plan_table thead .red_txt {
    font-size: 14px;
    font-weight: 500;
}

.membership_plan_wrap .membership_plan_table thead td p {
    margin-bottom: 8px;
}

.membership_plan_wrap .membership_plan_table td {
    position: relative;
    border-right: 0;
    padding: 20px 30px;
    color: #111;
}

.membership_plan_wrap .membership_plan_table td:first-child {
    text-align: left;
}

.membership_plan_wrap .membership_plan_table .membership_plan_title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-align: center;
    color: #111;
    line-height: 21px;
    margin-bottom: 4px;
}

.membership_plan_wrap .membership_plan_table .membership_btn_wrap {
    position: relative;
    display: inline-block;
}

.membership_plan_wrap .membership_plan_table .membership_recommend_badge {
    position: absolute;
    top: -14px;
    right: -14px;
    display: flex;
    white-space: nowrap;
}

.membership_plan_wrap .membership_plan_table .membership_recommend_badge span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 800;
    line-height: 14px;
    letter-spacing: -0.27px;
    color: #fff;
    text-align: center;
}

#faq {
    padding: 120px 0;
    background: #f1f1f1;
}

.faq_inner {
    max-width: 1224px;
    margin: 0 auto;
}

.membership_faq_wrap {
    margin-bottom: 20px;
}

.membership_plan_wrap .membership_plan_table tbody tr.top_border .plan_title {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
}

/* 결제 */
.section_check_out_wrap {
    width: 686px;
    margin: 80px auto 65px;
    padding: 40px 28px 28px 28px;
}

.section_check_out_wrap .check_out_title_wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section_check_out_wrap .check_out_title_wrap img {
    width: 220px;
    height: 40px;
}

.section_check_out_wrap .membership_tab_list {
    display: flex;
    justify-content: center;
    margin: 30px auto;
}

.section_check_out_wrap .membership_tab_list .tab_link {
    position: relative;
    width: 206px;
}

.section_check_out_wrap .check_out_tab_content_wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.section_check_out_wrap .check_out_tab_content_item {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ebebf0;
    background: #fff;
    cursor: pointer;
}

.section_check_out_wrap .check_out_tab_content_item .item_title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.4px;
}

.section_check_out_wrap .check_out_tab_content_item .check {
    display: none;
}

.section_check_out_wrap .check_out_tab_content_item .current_price {
    font-weight: 700;
}

.section_check_out_wrap .check_out_tab_content_item .original_price {
    color: #767676;
}

.section_check_out_wrap .check_out_tab_content_item .period_price {
    margin-top: 4px;
}

.section_check_out_wrap .check_out_tab_content_item .plan_benefit_list {
    border-top: 1px solid #ededed;
    padding-top: 12px;
    margin-top: 12px;
    color: #767676;
    font-weight: 500;
}

.section_check_out_wrap .plan_benefit_list .dot_text::after {
    background: #767676;
}

.section_check_out_wrap .check_out_tab_content_item.plan_checked {
    border: 1px solid #4294ff;
    background: #f5f9ff;
}

.section_check_out_wrap .check_out_tab_content_item.plan_checked .item_title,
.section_check_out_wrap .check_out_tab_content_item.plan_checked .current_price {
    color: #4294ff;
}

.section_check_out_wrap .check_out_tab_content_item.plan_checked img.uncheck {
    display: none;
}

.section_check_out_wrap .check_out_tab_content_item.plan_checked img.check {
    display: inherit;
}

.membership_payment_info_wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.membership_payment_info_wrap .display_align_between {
    display: flex;
    align-items: center;
}

.membership_payment_info_wrap .payment_info_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 12px;
}

.membership_payment_info_wrap .input_promotions_wrapper {
    display: flex;
    gap: 8px;
}

.input_promotions_wrap .error_txt,
.input_invite_wrap .error_txt {
    display: none;
}

.membership_payment_info_wrap .input_referral_wrapper {
    display: flex;
    gap: 8px;
}

.membership_payment_info_wrap .input_promotions_wrapper .hide {
    display: none;
}

.membership_payment_info_wrap .guide_wrap li {
    margin-bottom: 0;
    line-height: 21px;
    padding-left: 14px;
    font-size: 14px;
}

.membership_payment_info_wrap .guide_wrap li::after {
    width: 3px;
    height: 3px;
    top: 9px;
    left: 3px;
}

.membership_payment_info_wrap .payment_info_footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #d9d9d9;
    padding-top: 12px;
    text-align: center;
}

.membership_payment_info_wrap .payment_total_amount {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.membership_payment_info_wrap .guide_wrap {
    padding: 8px;
    background-color: #f7f7fa !important;
}

/* 결제완료 페이지 */
.section_payment_complete_wrap {
    padding: 40px 28px 28px;
    max-width: 686px;
    width: 100%;
    margin: 0 auto;
}

.section_payment_complete_wrap .membership_payment_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
}

.membership_payment_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #ededed;
}

.membership_payment_list .membership_payment_info {
    display: flex;
    justify-content: space-between;
}

.membership_payment_info .payment_label {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #767676;
}

.membership_payment_info .payment_value {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #111;
    text-align: right;
}

.payment_guide_text {
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #111;
}

.payment_guide_text span {
    text-decoration: underline;
    text-underline-position: from-font;
}

.membership_payment_invite_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.payment_invite_text {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.45px;
    color: #000;
}

.membership_payment_email_wrap {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-radius: 4px;
    background-color: #f0f6ff;
}

.payment_email_label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -0.4px;
    color: #111;
}

.payment_email_value {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
    color: #4294ff;
    margin-top: 4px;
}

.membership_payment_notice_wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #fafafb;
    border-radius: 10px;
    margin-bottom: 24px;
}

.payment_notice_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #767676;
}

.payment_notice_item {
    list-style: disc inside;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #767676;
}

.payment_notice_item span {
    color: #767676;
}

.membership_payment_cta_area {
    text-align: center;
}

.modal_membership_popup .common_modal_wrap {
    padding: 0;
}

.modal_membership_popup .modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f1f5;
}

.modal_membership_popup .modal_header .modal_title {
    line-height: 24px;
    color: #111;
}

.modal_membership_popup .modal_header .btn_modal_close {
    padding: 0;
    width: 20px;
    height: 20px;
}

.modal_membership_popup .modal_header .btn_modal_close img {
    vertical-align: middle;
    width: 100%;
}

.modal_membership_popup .modal_body {
    padding: 24px;
}

.modal_membership_popup .modal_body .modal_flow_title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #767676;
}

.modal_membership_popup .modal_body .modal_flow_list {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.modal_membership_popup .modal_body .modal_flow_list .modal_flow_item {
    position: relative;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    flex: 1;
    border: 1px solid #f1f1f5;
    border-radius: 6px;
    background-color: #fff;
}

.modal_flow_list .modal_flow_item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
    width: 10px;
    height: 14px;
    background: url("/assets/images/tokenpost_new/membership/membership_popup_arrow.svg") no-repeat center/contain;
}

.modal_flow_list .modal_flow_item .modal_flow_text {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.325px;
    color: #333;
}

.modal_store_box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #ededed;
}

.modal_store_box .modal_store_list {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.modal_store_box .modal_store_list .modal_store_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    border: 1px solid #ededed;
    border-radius: 10px;
    padding: 12px 20px;
}

.modal_store_list .modal_store_item .modal_store_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #767676;
}

.modal_store_list .modal_store_item img {
    vertical-align: middle;
}

.modal_membership_popup .modal_membership_btn_wrap {
    margin: 24px 0;
    text-align: center;
}

.modal_notice_wrap {
    padding: 20px;
    background-color: #fafafb;
    border-radius: 10px;
}

.modal_notice_wrap .modal_notice_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #767676;
}

.modal_notice_wrap .modal_notice_list {
    margin-top: 8px;
}

.modal_notice_wrap .modal_notice_list li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.35px;
    color: #767676;
    padding-left: 14px;
}

.modal_notice_wrap .modal_notice_list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #767676;
}

.modal_notice_wrap .modal_notice_list li a {
    text-decoration: underline;
    text-underline-position: from-font;
    color: #767676;
}

.modal_membership_popup .modal_footer {
    margin-bottom: 24px;
}

.modal_membership_popup .modal_footer span {
    color: #999;
}

.section_payment_complete_wrap .membership_payment_card.membership {
    padding: 32px;
}

.section_payment_complete_wrap .membership_payment_card.membership h1 {
    color: var(--gray-gray-11, #111);
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.36px;
}

.section_payment_complete_wrap .membership_payment_card.membership .img_wrap {
    width: 100%;
}

.section_payment_complete_wrap .membership_payment_card.membership .img_wrap img {
    width: 100%;
    object-fit: cover;
}

.section_payment_complete_wrap .membership_payment_card.membership .text_wrap {
}

.section_payment_complete_wrap .membership_payment_card.membership .text_wrap p {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.4px;
}

.section_payment_complete_wrap .membership_payment_card.membership a {
    color: var(--black-white-white, #fff);
    font-feature-settings: "calt" off;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    padding: 12px 32px;
    border-radius: 6px;
}

/* 반응형 */
@media all and (max-width: 1399px) {
    .membership_title_container .membership_background_img {
        width: 289px;
    }

    .membership_background_img.left {
        background: url("/assets/images/tokenpost_new/membership/membership_main_banner_left2.svg") no-repeat center/contain;
    }

    .membership_background_img.right {
        background: url("/assets/images/tokenpost_new/membership/membership_main_banner_right2.svg") no-repeat center/contain;
    }

    .membership_core_desc .tablet_br {
        display: block;
    }

    .membership_core_desc .pc_br {
        display: none;
    }

    .membership_info_list {
        padding: 0;
    }

    .modal_membership_popup .modal_body {
        padding-right: 10px;
        padding-bottom: 0;
    }

    .modal_membership_popup .modal_medium {
        width: 375px;
    }

    .modal_membership_popup .modal_body .modal_flow_list {
        flex-direction: column;
        align-items: normal;
    }

    .modal_membership_popup .modal_body .modal_flow_list .modal_flow_item {
        flex-direction: row;
        gap: 12px;
    }

    .modal_flow_list .modal_flow_item:not(:first-child)::before {
        left: 50%;
        top: -25px;
        transform: translateX(-50%) rotate(90deg);
        transform-origin: center;
    }

    .modal_store_box {
        padding-top: 32px;
    }

    .modal_store_box .modal_store_list {
        flex-direction: column;
        align-items: normal;
    }

    .modal_notice_wrap .modal_notice_list li br {
        display: none;
    }
}

/**
    Start of Membership service
 */

/* common */
#membership_service_wrap.section_subscription_common .common_blind {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
    margin: -1px;
}

#membership_service_wrap.section_subscription_common .common_tag {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: rgba(102, 102, 255, 0.1);
    backdrop-filter: blur(2px);
    width: fit-content;
}

#membership_service_wrap.section_subscription_common .common_tag span {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 22.5px */
    letter-spacing: -0.375px;
    background: linear-gradient(92deg, #7c50ff 0.57%, #5d95fb 40.02%, #69b1ff 63.19%, #0d47da 98.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* membership_service_hero_wrap */
#membership_service_wrap.section_subscription_common .membership_service_hero_wrap {
    padding: 80px 0 40px;
    background: url("/assets/images/tokenpost_new/membership/hero_section.png") no-repeat center/cover;
    background-attachment: fixed;
}

#membership_service_wrap.section_subscription_common .membership_service_hero_wrap .membership_service_title_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

#membership_service_wrap.section_subscription_common .membership_service_hero_wrap .membership_service_title_container h2 {
    margin: 12px 0 16px;
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 45px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 63px */
    letter-spacing: -1.125px;
}

#membership_service_wrap.section_subscription_common .membership_service_hero_wrap .membership_service_title_container p {
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

#membership_service_wrap.section_subscription_common .membership_service_hero_wrap .membership_service_title_container a {
    margin: 61px 0 142px;
}

#membership_service_wrap.section_subscription_common .membership_service_hero_wrap .btn_benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: -0.35px;
    margin: 0 auto;
}

#membership_service_wrap.section_subscription_common .membership_service_hero_wrap .btn_benefit img {
    width: 16px;
    height: 16px;
}

/* membership_service_benefit_wrap */

/* slide animation */
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal_item {
    opacity: 0;
}

.reveal_item.active_right {
    animation: slideRight 0.8s ease-out forwards;
}

.reveal_item.active_left {
    animation: slideLeft 0.8s ease-out forwards;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap {
    /*width: 100vw;*/
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 970px;
    padding: 120px 24px;
    margin: 0 auto;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap {
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap span {
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(1) .content_item_left_wrap span {
    background: linear-gradient(90deg, #2ca5f0 0%, #055b98 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_left_wrap span {
    background: linear-gradient(90deg, #135aa7 0%, #072341 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_left_wrap span {
    background: linear-gradient(90deg, #6c25a9 0%, #2b0f43 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_left_wrap span {
    background: linear-gradient(90deg, #198087 0%, #0a4448 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap h2 {
    margin: 8px 0 16px;
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
    letter-spacing: -0.8px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap p {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap a {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 48px;
    color: #135aa7;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(1) .content_item_left_wrap a {
    background: linear-gradient(90deg, #2ca5f0 0%, #055b98 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_left_wrap a {
    color: #135aa7;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_left_wrap a {
    color: #6c25a9;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_left_wrap a {
    color: #198087;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_left_wrap a:hover {
    color: #072341;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_left_wrap a:hover {
    color: #2b0f43;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_left_wrap a:hover {
    color: #0a4448;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap a .arrow_icon {
    display: inline-block;
    width: 14px;
    height: 14px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(1) .content_item_left_wrap a .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/blue_arrow_v2.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_left_wrap a .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/blue_arrow.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_left_wrap a .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/purple_arrow.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_left_wrap a .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/green_arrow_v4.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_left_wrap a:hover .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/blue_arrow_hover.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_left_wrap a:hover .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/purple_arrow_hover.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_left_wrap a:hover .arrow_icon {
    background: url("/assets/images/tokenpost_new/membership/template/green_arrow_hover_v4.svg") no-repeat center/contain;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_left_wrap a img {
    width: 14px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(1) .content_item_right_wrap {
    width: 445px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_right_wrap {
    width: 377px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_right_wrap {
    width: 537px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_right_wrap {
    width: 429px;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item .content_item_right_wrap img {
    width: 100%;
    object-fit: cover;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_left_wrap {
    order: 2;
}

#membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_left_wrap {
    order: 2;
}

/* membership_service_tpc_wrap */
#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 0;
    background: var(--gray-gray-02, #f7f7f7);
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gray-gray-02, #f7f7f7);
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .membership_service_title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 800px;
    margin: 0 auto;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .membership_service_title_wrap h2 {
    color: var(--gray-gray-11, #111);
    text-align: center;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
    letter-spacing: -0.8px;
    text-align: center;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .membership_service_title_wrap p {
    margin: 16px 0;
    color: var(--gray-gray-11, #111);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .membership_service_title_wrap a {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--gray-gray-08, #999);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .membership_service_title_wrap a img {
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 56px 0;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li {
    position: relative;
    width: 234.667px;
    height: 230px;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-gray-03, #f1f1f1);
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.3s;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:hover {
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.08);
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:nth-child(1) {
    background: url("/assets/images/tokenpost_new/membership/template/tpc_item_1.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:nth-child(2) {
    background: url("/assets/images/tokenpost_new/membership/template/tpc_item_2.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:nth-child(3) {
    background: url("/assets/images/tokenpost_new/membership/template/tpc_item_3.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:nth-child(1):hover {
    background: url("/assets/images/tokenpost_new/membership/template/tpc_item_1_hover_v2.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:nth-child(2):hover {
    background: url("/assets/images/tokenpost_new/membership/template/tpc_item_2_hover_v2.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:nth-child(3):hover {
    background: url("/assets/images/tokenpost_new/membership/template/tpc_item_3_hover_v2.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li .card_content_wrap {
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li .card_content_wrap h3 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li .card_content_wrap h3 img {
    width: 14px;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li .card_content_wrap p {
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li .btn_hover {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    width: 100%;
    height: 0px;
    text-align: center;
    line-height: 52px;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    color: var(--gray-gray-11, #111);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.35px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .card_items li:hover .btn_hover {
    height: 52px;
    visibility: visible;
    opacity: 1;
}

#membership_service_wrap.section_subscription_common .membership_service_tpc_wrap .membership_service_tpc_wrap_inner .btn_tpc {
    display: flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    color: var(--black-white-white, #fff);
    font-feature-settings: "calt" off;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--blue-blue-08, #4294ff);
}

/* membership_service_pro_wrap */
#membership_service_wrap.section_subscription_common .membership_service_pro_wrap {
    padding: 120px 0;
    background: url(/assets/images/tokenpost_new/membership/hero_section.png) no-repeat center / cover;
    background-attachment: fixed;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 970px;
    margin: 0 auto;
    padding: 0 24px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap {
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap h2 {
    margin-top: 16px;
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
    letter-spacing: -0.8px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li .common_icon {
    width: 32px;
    height: 32px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li:nth-child(1) .common_icon {
    background: url("/assets/images/tokenpost_new/membership/template/icon_pro_1.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li:nth-child(2) .common_icon {
    background: url("/assets/images/tokenpost_new/membership/template/icon_pro_2.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li:nth-child(3) .common_icon {
    background: url("/assets/images/tokenpost_new/membership/template/icon_pro_3.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li:nth-child(4) .common_icon {
    background: url("/assets/images/tokenpost_new/membership/template/icon_pro_4.png") no-repeat center/cover;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap ul li p {
    color: var(--black-white-white, #fff);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_left_wrap a {
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_right_wrap {
    width: 622px;
}

#membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_right_wrap img {
    width: 100%;
    object-fit: cover;
}

.membership_plus.no_blue_gradient_wrap {
    border-top-right-radius: 16px !important;
    border-top-left-radius: 16px !important;
    height: 612px !important;
}

.blue_light_wrap.no_blue_gradient_wrap {
    border-top-right-radius: 16px !important;
    border-top-left-radius: 16px !important;
}

@media screen and (min-width: 1280px) {
    /* membership_service_benefit_wrap */
    #membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner {
        gap: 80px;
        max-width: 1170px;
    }

    #membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(1) .content_item_right_wrap {
        width: 705px;
    }

    #membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(2) .content_item_right_wrap {
        width: 615px;
    }

    #membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(3) .content_item_right_wrap {
        width: 549px;
    }

    #membership_service_wrap.section_subscription_common .membership_service_benefit_wrap .membership_service_benefit_inner .content_items .common_content_item:nth-child(4) .content_item_right_wrap {
        width: 629px;
    }

    /* membership_service_pro_wrap */
    #membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner {
        width: 1018px;
    }

    #membership_service_wrap.section_subscription_common .membership_service_pro_wrap .membership_service_pro_wrap_inner .content_item_right_wrap {
        width: 670px;
    }

    #section_subscription .hide_on_1280 {
        display: none;
    }

    .membership_info_list {
        padding: 0;
    }

    .membership_comment_wrap .membership_comment_inner {
        gap: 88px;
    }

    .membership_core_wrap .membership_core_wrap_container {
        width: 1170px;
    }

    .membership_plan_wrap .membership_plan_table {
        max-width: 1184px;
    }
}
