.list {
    margin-top: 30px;
    gap: 20px;
}
.list .item {
    width: calc(33.333% - 14px);
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}
.list .item a {
    position: relative;
    display: block;
    height: 100%;
    padding: 50px 30px 60px;
    box-sizing: border-box;
}
.list .item .badge {
    gap: 8px;
    margin-bottom: 20px;
}
.list .item .badge span {
    font-weight: 500;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: -0.32px;
    box-sizing: border-box;
}
.list .item .badge span:nth-child(1) {
    background: var(--black);
    color: var(--white);
}
.list .item .badge span:nth-child(2) {
    background: var(--white);
}
.list .item h3 {
    font-size: 40px;
    margin-bottom: 6px;
}
.list .item .sub_txt {
    font-size: 24px;
    min-height: 157px;
    line-height: 1.2;
    padding-bottom: 10px;
    box-sizing: border-box;
}
.list .item .price {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 14px 20px 70px;
    background: #FBFBFB url("../images/ic_notice.svg?v=1")no-repeat 30px 50% / 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
    font-size: 18px;
    box-sizing: border-box;
}
.list .item .bar {
    position: absolute;
    top: 0;
    right: 20px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    padding: 8px 10px 12px;
    border-radius: 0px 0px 10px 10px;
}
.list .item.new a {
    background: rgba(255, 0, 0, 0.08)
    /*background: rgba(255, 0, 0, 0.08) url("../images/biz_img1.png") no-repeat calc(100% - 20px) calc(100% - 80px) / 125px;*/
}
.list .item.new .bar {
    background:#F00;
}
.list .item.new .bar span {
    opacity: 1;
    animation: blink-effect 1.5s ease-in-out infinite;
    transition: opacity .5s;
}
.list .item.new h3 span {
    color: #F00;
}
.list .item.new .badge span:nth-child(3) {
    color: #F00;
    border: 1px solid #F00;
    background: var(--white);
}
.list .item.best a {
    background: rgba(223, 51, 203, 0.08);
    /*background: rgba(223, 51, 203, 0.08) url("../images/biz_img2.png") no-repeat calc(100% - 20px) calc(100% - 80px) / 100px;*/
}
.list .item.best .bar {
    background:#DF33CB;
}
.list .item.best h3 span {
    color: #DF33CB;
}
.list .item.best .badge span:nth-child(3) {
    color: #DF33CB;
    border: 1px solid #DF33CB;
    background: var(--white);
}
.list .item.event a {
    background: rgba(57, 57, 254, 0.08);
    /*background: rgba(57, 57, 254, 0.08) url("../images/biz_img3.png") no-repeat calc(100% - 20px) calc(100% - 80px) / 155px;*/
}
.list .item.event .bar {
    background:var(--key-color);
}
.list .item.event h3 span {
    color: var(--key-color);
}
.list .item.event .badge span:nth-child(3) {
    color: var(--key-color);
    border: 1px solid var(--key-color);
    background: var(--white);
}
.list .item.end {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
@keyframes blink-effect {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



.detail {
    max-width: 920px;
    margin: 0 auto;
}
.detail .cont {
    padding-bottom: 20px;
    box-sizing: border-box;
}
.detail .cont .sec {
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.5);
}
.detail .cont .sec:first-child {
    border-top: 0!important;
}
.detail .cont .tit_box {
    gap: 60px;
    padding: 60px 0 120px;
}
.detail .cont .tit_box .tit {
    gap: 20px;
    line-height: 1.2;
}
.detail .cont .tit_box .tit strong {
    font-size: 40px;
    letter-spacing: -2px;
    padding-left: 30px;
    box-sizing: border-box;
}
.detail .cont .tit_box h2 {
    font-size: 96px;
    letter-spacing: -4.8px;
}
.detail .cont .tit_box > p {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -2px;
    padding-left: 30px;
    box-sizing: border-box;
}
.detail .cont .check_tit {
    font-size: 32px;
    font-weight: 700;
    padding-left: 38px;
    background: url('../images/check_bg.png')no-repeat 0 50%;
    box-sizing: border-box;
}
.detail .cont .txt_info {
    gap: 16px;
    padding: 0 20px;
    box-sizing: border-box;
}
.detail .cont .txt_info li {
    position: relative;
    padding-left: 30px;
    font-size: 24px;
    text-transform: capitalize;
    line-height: 1.2;
    box-sizing: border-box;
}
.detail .cont .txt_info li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
}
.detail .cont .desc {
    font-size: 24px;
    gap: 16px;
    padding: 0 40px;
    box-sizing: border-box;
}
.detail .cont .sec01 {
    gap: 40px;
}
.detail .cont .sec01 h4 {
    font-size: 48px;
    letter-spacing: -2.4px;
}
.detail .cont .sec01 .info {
    gap: 30px;
}
.detail .cont .sec01 .desc {
    color: #7B7B7B;
}
.detail .cont .sec02 {
    gap: 30px;
    text-transform: capitalize;
}
.detail .cont .sec02 .sub_txt {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}
.detail .cont .sec02 h4 {
    font-size: 64px;
    letter-spacing: -3.2px;
}
.detail .cont .sec02 p {
    font-size: 24px;
    line-height: 1.4;
}
.detail .cont .sec02 .img_box {
    gap: 20px;
}
.detail .cont .sec02 .img_box > div {
    width: calc(50% - 10px);
    letter-spacing: -0.4px;
}
.detail .cont .sec02 .img_box > div .img {
    margin-bottom: 10px;
}
.detail .cont .sec02 .img_box > div .img img {
    width: 100%;
}
.detail .cont .sec03 {
    gap: 60px;
}
.detail .cont .sec03 .box {
    gap: 20px;
}
.detail .cont .review_box {
    gap: 20px;
    padding: 0 40px;
    box-sizing: border-box;
}
.detail .cont .review_box .item {
    padding: 26px 30px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.5);
    gap: 16px;
    box-sizing: border-box;
}
.detail .cont .review_box .item strong {
    font-size: 24px;
}
.detail .cont .review_box .item p {
    color: #7B7B7B;
    font-size: 20px;
    line-height: 1.4;
}
.detail .cont .review_box .item .text {
    font-size: 24px;
    line-height: 1.4;
}
.detail .cont .sec04 .box {
    gap: 30px;
}
.detail .cont .box_info {
    padding: 0 40px;
    gap: 16px;
    box-sizing: border-box;
}
.detail .cont .box_info p {
    max-width: calc(50% - 8px);
    padding: 16px 20px;
    border-radius: 10px;
    border: 0.5px solid #7B7B7B;
    color: #7B7B7B;
    font-size: 24px;
    line-height: 1.2;
    box-sizing: border-box;
}
.detail .fix_btn {
    position: sticky;
    bottom: 16px;
    gap: 12px;
    max-width: 1024px;
    margin: 0 auto;
    z-index: 2;
}
.detail .fix_btn > * {
    flex: 1;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}


#price_pop .modal_cont {
    max-width: 615px;
}
#price_pop .scroll {
    padding: 40px;
}
#price_pop .tit {
    gap: 12px;
}
#price_pop .tit strong {
    font-size: 24px;
}
#price_pop .tit p {
    color: #9e9e9e;
    font-size: 18px;
}
#price_pop .form {
    gap: 10px;
    margin: 16px 0;
}
#price_pop .form .input_box {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    font-size: 18px;
    padding-right: 24px;
    gap: 8px;
    box-sizing: border-box;
}
#price_pop .form .input_box input {
    flex: 1;
    height: 100%;
    font-size: inherit;
    text-align: right;
    box-sizing: border-box;
}
#price_pop .form .input_box .del_btn {
    width: 25px;
    height: 25px;
    background: url("../images/del_button.svg")no-repeat 50% 50% / 100%;
}
#price_pop .form .btn_group {
    gap: 8px;
}
#price_pop .form .btn_group button {
    flex: 1;
    height: 38px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 10px;
    box-sizing: border-box;
}
#price_pop .form .btn_group button:hover {
    background: #fbfbfb;
}
#price_pop .price_box {
    background: #f5f5f5;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 16px;
    gap: 16px;
}
#price_pop .price_box .top {
    gap: 16px;
}
#price_pop .price_box .top strong {
    font-weight: 500;
}
#price_pop .price_box .top .toggle_btn {
    position: relative;
}
#price_pop .price_box .top .toggle_btn input {
    display: none;
}
#price_pop .price_box .top .toggle_btn input + label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
    border-radius: 50px;
    background: #ddd;
    transition: all .3s;
}
#price_pop .price_box .top .toggle_btn input + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: all .3s;
}
#price_pop .price_box .top .toggle_btn input + label span {
    position: absolute;
    top: 4px;
    font-size: 14px;
    font-weight: 500;
}
#price_pop .price_box .top .toggle_btn input + label span.off {
    left: 26px;
    color: #606060;
}
#price_pop .price_box .top .toggle_btn input + label span.on {
    display: none;
}
#price_pop .price_box .top .toggle_btn input:checked + label {
    background: var(--key-color);
}
#price_pop .price_box .top .toggle_btn input:checked + label:before {
    left: 38px;
}
#price_pop .price_box .top .toggle_btn input:checked + label span.off {
    display: none;
}
#price_pop .price_box .top .toggle_btn input:checked + label span.on {
    display: block;
    left: 8px;
    color: var(--white);
}
#price_pop .price_box h2 {
    font-size: 20px;
}
#price_pop .info_box {
    margin-top: 10px;
}
#price_pop .info_box .item {
    padding: 16px 6px;
    border-bottom: 1px solid #e4e4e4;
    gap: 6px;
    box-sizing: border-box;
}
#price_pop button[type=submit] {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 50px;
}



.join {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}
.join .title {
    font-size: 28px;
    margin-bottom: 60px;
}
.join .tit {
    gap: 12px;
}
.join .tit strong {
    font-size: 20px;
}
.join .tit p {
    color: #787878;
}
.join .sec {
    border-bottom: 1px solid #e4e4e4;
    padding: 60px 0;
    gap: 24px;
}
.join .prd_info {
    padding-top: 0;
}
.join .prd_info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
.join .prd_info .list_flex {
    gap: 36px 16px;
}
.join .prd_info .list_flex > div {
    width: calc(50% - 8px);
    gap: 16px;
    font-size: 20px;
}
.join .prd_info .list_flex > div p {
    font-weight: 500;
}
.join .prd_info .list_flex > div strong {
    color: #fd5572;
}
.join .prd_info .list_flex > div span {
    color: #666;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 16px;
}
.join .invest_box .form {
    gap: 16px;
}
.join .invest_box .form .input_box {
    height: 50px;
    border: 1px solid #404040;
    border-radius: 10px;
    overflow: hidden;
    font-size: 18px;
    padding-right: 24px;
    gap: 8px;
    box-sizing: border-box;
}
.join .invest_box .form .input_box input {
    flex: 1;
    height: 100%;
    font-size: inherit;
    text-align: right;
    box-sizing: border-box;
}
.join .invest_box .form .input_box .del_btn {
    width: 25px;
    height: 25px;
    background: url("../images/del_button.svg")no-repeat 50% 50% / 100%;
}
.join .invest_box .form .btn_group {
    gap: 8px;
}
.join .invest_box .form .btn_group button {
    flex: 1;
    height: 38px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 10px;
    box-sizing: border-box;
}
.join .invest_box .form .btn_group button:hover {
    background: #fbfbfb;
}
.join .invest_box .price_box {
    background: #f8f8fc;
    padding: 32px;
    border-radius: 10px;
    box-sizing: border-box;
}
.join .invest_box .price_box .price_info {
    gap: 10px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 24px;
    margin-bottom: 24px;
    box-sizing: border-box;
}
.join .invest_box .price_box .price_info:last-child {
    border-bottom: 0!important;
    padding-bottom: 0!important;
    margin-bottom: 0!important;
}
.join .invest_box .price_box .price_info > div h4 {
    font-size: 20px;
    color: #404040;
    margin-bottom: 10px;
}
.join .pro_box .input_box input {
    width: 100%;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    padding: 0 16px;
    box-sizing: border-box;
}
.join .pro_box .input_box select {
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.join .pro_box .input_addr {
    gap: 10px;
}
.join .pro_box .input_addr input {
    flex: 1;
}
.join .pro_box .input_addr button {
    border-radius: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

.join .agree_box {
    border-bottom: 0;
    gap: 10px;
}
.join .agree_box > div {
    position: relative;
}
.join .agree_box > div input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.join .agree_box > div input + label {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px 20px 20px 30px;
    box-sizing: border-box;
}
.join .agree_box > div input + label:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
}
.join .agree_box > div input:checked + label:before {
    border: 1px solid var(--key-color);
    background: var(--key-color) url("../images/check.svg")no-repeat 50% 50% / 13px;
}
.join .agree_box > div input + label strong {
    font-size: 18px;
    font-weight: 500;
}
.join .agree_box .item {
    position: relative;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 0 20px;
    box-sizing: border-box;
}
.join .agree_box .item input + label {
    flex: 1;
    box-sizing: border-box;
}
.join .agree_box .item input + label span {
    font-size: 14px;
}
.join .agree_box .item button {
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}
.join .btn_area button {
    width: 94%;
    max-width: 380px;
    height: 60px;
    border-radius: 10px;
    font-size: 18px;
    margin: 0 auto;
}



#main_pop .modal_cont {
    max-width: 1200px;
}
#main_pop .modal_cont .scroll {
    max-height: calc(95vh - 65px);
}
#main_pop .cont {
    gap: 40px;
    font-size: 24px;
    line-height: 1.1;
}
#main_pop .cont h4 {
    background: var(--key-color);
    color: var(--white);
    padding: 20px 40px;
    font-size: 40px;
    letter-spacing: -2px;
    border-radius: 100px;
    box-sizing: border-box;
}
#main_pop .cont ul {
    border-radius: 20px;
    background: #F6F6F6;
    padding: 30px 40px;
    gap: 30px;
    box-sizing: border-box;
}
#main_pop .cont a {
    padding: 20px;
    border-radius: 50px;
    background: #000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
}
#main_pop .pop_btn {
    border-top: 1px solid #e4e4e4;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
}
#main_pop .pop_btn button {
    font-size: 20px;
    background: url("../images/ic_close_black.svg")no-repeat 100% 50%;
    padding-right: 26px;
    box-sizing: border-box;
}




@media screen and (max-width: 1240px) {
    .list .item a {
        padding: 50px 20px 60px;
    }
    .list .item h3 {
        font-size: 32px;
    }
    .list .item .sub_txt {
        font-size: 20px;
    }
    .list .item .price {
        padding: 20px 14px 20px 60px;
        background-position: 20px 50%;
        font-size: 16px;
    }
    .list .item .bar {
        font-size: 18px;
    }
    .list .item.new a {
        background-size: 110px;
    }
    .list .item.best a {
        background-size: 90px;        
    }
}
@media screen and (max-width: 1024px) {
    .list .item {
        width: 100%;
    }
    .list .item h3 {
        font-size: 28px;
    }
    .list .item .sub_txt {
        font-size: 16px;
    }


    .detail .cont .sec {
        padding: 60px 0;
    }
    .detail .cont .tit_box {
        gap: 40px;
        padding: 20px 0 80px;
    }
    .detail .cont .tit_box h2 {
        font-size: 64px;
        letter-spacing: -2.8px;
    }
    .detail .cont .tit_box > p {
        font-size: 30px;
        padding-left: 25px;
    }
    .detail .cont .sec01 h4 {
        font-size: 36px;
        letter-spacing: -1.4px;
    }
    .detail .cont .check_tit {
        font-size: 24px;
        padding-left: 32px;
        background-size: 26px;
    }
    .detail .cont .txt_info li {
        font-size: 20px;
    }
    .detail .cont .desc {
        font-size: 20px;
    }
    .detail .cont .sec02 .sub_txt {
        font-size: 24px;
    }
    .detail .cont .sec02 h4 {
        font-size: 48px;
        letter-spacing: -1.2px;
    }
    .detail .cont .sec02 p {
        font-size: 20px;
    }
    .detail .cont .review_box .item strong {
        font-size: 20px;
    }
    .detail .cont .review_box .item p {
        font-size: 18px;
    }
    .detail .cont .review_box .item .text {
        font-size: 20px;
    }
    .detail .cont .box_info p {
        font-size: 20px;
    }


    .join {
        padding-top: 20px;
    }
    .join .sec {
        padding: 40px 0;
    }
    .join .tit strong {
        font-size: 18px;
    }
    .join .tit p {
        font-size: 14px;
    }
    .join .title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .join .prd_info h3 {
        font-size: 18px;
    }
    .join .prd_info .list_flex > div {
        font-size: 16px;
    }
    .join .pro_box .input_box input {
        height: 48px;
        font-size: 14px;
    }
    .join .pro_box .input_box select {
        height: 48px;
        font-size: 14px;
    }
    .join .invest_box .form .input_box {
        font-size: 16px;
    }
    .join .invest_box .price_box {
        padding: 24px;
    }
    .join .invest_box .price_box {
        font-size: 14px;
    }
    .join .invest_box .price_box .price_info > div h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .join .btn_area button {
        height: 50px;
        font-size: 16px;
    }


    #main_pop .cont {
        gap: 20px;
        font-size: 16px;
    }
    #main_pop .cont h4 {
        padding: 15px 25px;
        font-size: 20px;
        letter-spacing: 0px;
    }
    #main_pop .cont ul {
        padding: 15px 25px;
        gap: 15px;
    }
    #main_pop .cont a {
        padding: 15px;
        font-size: 20px;
    }
    #main_pop .pop_btn button {
        font-size: 14px;
        background-size: 15px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 768px) {
    .detail .cont .tit_box {
        gap: 20px;
        padding: 20px 0 60px;
    }
    .detail .cont .tit_box h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }
    .detail .cont .tit_box > p {
        font-size: 20px;
        padding-left: 13px;
        letter-spacing: -1px;
    }
    .detail .cont .check_tit {
        font-size: 18px;
        padding-left: 26px;
        background-size: 18px;
    }
    .detail .cont .txt_info {
        padding: 0 10px;
    }
    .detail .cont .txt_info li {
        font-size: 16px;
        padding-left: 22px;
    }
    .detail .cont .txt_info li::before {
        top: 4px;
        width: 3px;
        height: 3px;
    }
    .detail .cont .desc {
        font-size: 16px;
        padding: 0 20px;
    }
    .detail .cont .sec01 {
        gap: 25px;
    }
    .detail .cont .sec01 h4 {
        font-size: 26px;
        letter-spacing: -0.4px;
    }
    .detail .cont .sec01 .info {
       gap: 15px;
    }
    .detail .cont .sec02 .sub_txt {
        font-size: 18px;
    }
    .detail .cont .sec02 h4 {
        font-size: 34px;
        letter-spacing: -0.2px;
    }
    .detail .cont .sec02 p {
        font-size: 14px;
    }
    .detail .cont .sec03 {
        gap: 40px;
    }
    .detail .cont .review_box {
        padding: 0 20px;
    }
    .detail .cont .review_box .item {
        padding: 16px 20px;
    }
    .detail .cont .review_box .item strong {
        font-size: 16px;
    }
    .detail .cont .review_box .item p {
        font-size: 14px;
    }
    .detail .cont .review_box .item .text {
        font-size: 16px;
    }
    .detail .cont .box_info {
        padding: 0 20px;
    }
    .detail .cont .box_info p {
        font-size: 16px;
        padding: 16px 10px;
    }


    #price_pop .scroll {
        padding: 20px;
    }
    #price_pop .tit strong {
        font-size: 18px;
    }
    #price_pop .tit p {
        font-size: 14px;
    }
    #price_pop .form .input_box {
        height: 43px;
        font-size: 16px;
    }
    #price_pop .price_box h2 {
        font-size: 18px;
    }
    #price_pop button[type=submit] {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    .detail .cont .sec02 .img_box > div {
        width: 100%;
    }
    .detail .cont .box_info p {
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 380px) {
    .join .pro_box .input_addr button {
        width: 100%;
        height: 48px;
    }
}