* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}
#wrap {
    width: 100%;
    height: 100vh;
    position: relative;
}
#container {
    width: 100%;
    position: relative;
}

.sub_top {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pageTitle h3 {
    font-size: 38px;
    letter-spacing: -2px;
    color: rgba(0, 0, 0, 1);
}
.path {
    position: absolute;
    right: -50px;
    top: 0;
    color: rgba(188, 188, 188, 1);
}
section {
    width: 100%;
}

/* banner  */
.top_banner_section {
    background: rgba(255, 247, 240, 1);
}
.section_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner_text h1 {
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 15px;
}
.banner_text p {
    font-size: 22px;
    font-weight: 600;
    color: rgba(24, 10, 0, 1);
}
/* banner  */

/* promotion  */
.promotion_section {
    padding: 105px 0 146px 0;
}
.promotion_section .section_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.promotion_box {
    flex: 1;
    height: 300px;
    border: 1px solid rgba(208, 208, 208, 1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
.promotion_img {
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.promotion_box p {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: rgba(22, 9, 0, 1);
    letter-spacing: -1px;
    line-height: 160%;
}
/* promotion  */

/* benefit  */
.benefit_section {
    background: rgba(250, 242, 236, 1);
    padding-top: 92px;
}
.benefit_section .section_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit_text {
    text-align: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.benefit_text p {
    color: rgba(46, 18, 0, 1);
}
.benefit_text p:nth-child(1) {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}
.benefit_text p:nth-child(2) {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -1.5px;
}
.benefit_text p:nth-child(2) span {
    color: #fd1e00;
}
.benefit_text p:nth-child(3) {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -1.5px;
}
/* benefit  */

/* mobile plan */
.mobile_plan_section {
    padding: 126px 0 160px 0;
}
.mobile_plan_section .section_inner {
    max-width: 1060px;
    width: 100%;
    flex-direction: column;
}
.mobile_plan_section .mp_title {
    font-size: 44px;
    font-weight: 700;
    color: rgba(46, 18, 0, 1);
    margin-bottom: 101px;
}
.mobile_plan_cell {
    width: 100%;
}
.mobile_plan_cell_tabs {
    border-bottom: 1px solid #888888;
}

.mobile_plan_cell_tabs button {
    border: none;
    background: transparent;
    color: rgba(136, 136, 136, 1);
    font-size: 20px;
    font-weight: 400;
    padding: 18px 20px;
    position: relative;
    cursor: pointer;
}
/* 요금제 추가제공 : 버튼이 클릭 되었을 경우 */
.mobile_plan_cell_tabs button.active {
    font-weight: 700;
    color: rgba(253, 30, 0, 1);
}
.mobile_plan_cell_tabs button.active::before {
    content: "";
    width: 100%;
    height: 2px;
    background: rgba(253, 30, 0, 1);
    position: absolute;
    bottom: -1px;
    left: 0;
}
.mobile_plan_list {
    display: none;
    position: relative;
}
.mobile_plan_list.active {
    display: block;
}
.mobile_plan_list li {
    padding: 17px 0 17px 10px;
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    font-size: 18px;
    font-weight: 500;
}

/* mobile plan */

/* 결합 combination join */
.combination_join_section {
    padding: 70px 0 135px 0;
}
.combination_join_section .section_inner {
    flex-direction: column;
}

.combination_join_section h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: rgba(51, 51, 51, 1);
}
.join_info {
    width: 100%;
    max-width: 1060px;
    border-radius: 20px;
    border: 1px solid rgba(188, 188, 188, 1);
    text-align: center;
    padding: 60px 0 40px 0;
}
.join_info p {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1px;
    color: rgba(51, 51, 51, 1);
}
.join_buttons {
    margin-top: 66px;
    display: flex;
    gap: 34px;
}
.join_buttons button {
    width: 320px;
    height: 70px;
    border: none;
    font-size: 23px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
}
.join_buttons button:nth-child(1) {
    background: rgba(83, 83, 83, 1);
}
.join_buttons button:nth-child(2) {
    background: rgba(254, 82, 82, 1);
}
/* 결합 combination  */

/* join form */
.join_form {
    width: 960px;
    display: flex;
    gap: 19px;
}
.join_form > .select_box {
    width: 470px;
    border-radius: 16px;
    border: 1px solid rgba(230, 230, 230, 1);
    padding: 10px 20px;
    position: relative;
}
.join_form > .select_box .select_option {
    display: none;
    width: 100%;
    position: absolute;
    top: 90px;
    left: 0;
    border-radius: 16px;
    border: 1px solid rgba(230, 230, 230, 1);
    padding: 10px 20px;
    background: #fff;
    z-index: 99;
}
.join_form > .select_box .select_option li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(230, 230, 230, 1);
    cursor: pointer;
}
.join_form > .select_box .select_option li:last-child {
    border: none;
}
.join_form > .select_box .select_option.open {
    display: block;
}

.join_form > .select_box span {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1px;
    color: rgba(120, 120, 120, 1);
}
.join_form > .select_box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1px;
    color: rgba(51, 51, 51, 1);
    margin-top: 10px;
}
.join_form > .select_box img {
    position: absolute;
    top: 28px;
    right: 20px;
    cursor: pointer;
}
/* join form */

/* caution*/
.caution_section {
    padding-bottom: 160px;
}
.caution_section .section_inner {
    width: 100%;
    flex-direction: column;
    align-items: start;
}
.caution_section h4 {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    color: rgba(51, 51, 51, 1);
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 1);
    display: flex;
    flex-direction: column;
}
.caution_section ul {
    width: 100%;
}
.caution_section .caution_list > li {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(192, 192, 192, 1);
    cursor: pointer;
}
.caution_section .caution_list > li span {
    font-size: 20px;
    color: rgba(51, 51, 51, 1);
    line-height: 150%;
    letter-spacing: -1px;
}
.caution_section .caution_list > li > img {
    float: right;
    cursor: pointer;
}

.caution_depth {
    display: none;
    margin-top: 15px;
    padding: 19px 12px 11px 29px;
    background: #f9f9f9;
}
.caution_depth.open {
    display: block;
}
.caution_depth > li {
    font-size: 18px;
    line-height: 32px;
}
.caution_depth > li.caption {
    color: #0070c0;
    font-size: 13px;
    font-weight: 700;
}
.caution_depth > li > img {
    width: 314px;
}
/* caution*/

/* 결합 신청하기 퀵버튼 */
.combi_quick_button {
    position: static;
    width: 100%;
    padding: 26px 0;
    text-align: center;
    background: #fff;
}

.combi_quick_button.scrollEffect {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #ffe6d4;
    box-shadow: 0 -4px 12px 0 rgba(255, 190, 86, 0.2);
}
.combi_quick_button button {
    width: 100%;
    max-width: 720px;
    height: 70px;
    border: none;
    background: #fe5252;
    border-radius: 12px;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.46px;
    cursor: pointer;
}
/* 결합 신청하기 퀵버튼 */

/* popup */
.popup {
    width: 100vw;
    height: 100vh;
    display: none;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dimmed {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_content {
    width: 567px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 60px 72px 50px 72px;
    border-radius: 10px;
    z-index: 99;
    position: relative;
}
.popup_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup_body .popup_Q,
.popup_body .popup_Q2,
.popup_body .popup_Q3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-align: center;
}
.popup_body > img {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
}
.popup_body p {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 50px;
    color: rgba(51, 51, 51, 1);
    text-align: center;
}
.popup_body .popup_p2 {
    width: 300px;
    word-break: keep-all;
}
.popup_body .popup_p3 {
    width: 330px;
    word-break: keep-all;
}
.popup_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.popup_buttons button {
    border-radius: 8px;
    font-weight: 5000;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -1px;
    border: none;
    cursor: pointer;
    padding: 14px 26px;
}
.popup_buttons button.cancel {
    background: #fff;
    color: rgba(130, 130, 130, 1);
    border: 1px solid rgba(130, 130, 130, 1);
}
.popup_buttons button.apply,
.popup_buttons button.confirm,
.popup_buttons button.chat {
    color: #fff;
    background: rgba(255, 77, 80, 1);
    border: 1px solid rgba(255, 77, 80, 1);
}
.close_popup_btn {
    display: none;
}
/* popup */

/* tablet*/
@media screen and (max-width: 1240px) {
    #container {
        padding: 0 22px;
        overflow: hidden;
    }

    .pageTitle h3 {
        font-size: 28px;
    }
    .path {
        display: none;
    }
    .top_banner_section {
        display: none;
    }
    /* promotion  */
    .promotion_section {
        padding: 10px 0 20px 0;
    }
    .promotion_section .section_inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .promotion_box {
        flex: none;
        width: 100%;
        height: 300px;
    }
    .promotion_box:nth-child(2) {
        border: 2px solid #ff8c59;
    }
    .promotion_box p {
        font-size: 20px;
        line-height: 160%;
    }
    /* promotion  */

    /* benefit  */
    .benefit_section {
        padding-top: 50px;
    }
    .benefit_text {
        text-align: center;
        padding-bottom: 30px;
    }
    .benefit_text p:nth-child(1) {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .benefit_text p:nth-child(2) {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -1.5px;
    }
    .benefit_text p:nth-child(3) {
        font-size: 24px;
        font-weight: 500;
        letter-spacing: -1.5px;
    }
    .benefit_img {
        width: 460px;
        img {
            width: 100%;
            height: auto;
        }
    }
    /* benefit  */

    /* mobile plan */
    .mobile_plan_section {
        padding-top: 50px;
    }

    .mobile_plan_section .mp_title {
        display: none;
    }
    /* mobile plan */

    /* 결합 combination */
    .combination_join_section {
        padding: 48px 0 60px 0;
    }
    .combination_join_section h3 {
        font-size: 24px;
        font-weight: 600;
    }
    .join_info {
        padding: 30px 0;
    }
    .join_info img {
        width: 30px;
    }
    .join_info p {
        font-size: 18px;
    }
    .join_buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;
    }
    .join_buttons button {
        width: 100%;
        height: 62px;
        font-size: 20px;
    }
    /* 결합 combination */

    /* join form */
    .join_form {
        width: 100%;
        flex-direction: column;
    }
    .join_form > .select_box {
        width: 100%;
    }
    /* join form */

    /* caution */
    .caution_section h4 {
        font-size: 18px;
    }
    .caution_section .caution_list li span {
        font-size: 17px;
    }
    /* caution */

    .combi_quick_button {
        padding: 26px 20px;
    }
    .combi_quick_button button {
        letter-spacing: -0.4px;
        font-size: 20px;
        max-width: 716px;
        height: 62px;
    }

    /* popup */
    .popup_content {
        width: calc(100% - 44px);
    }
    .popup_body .popup_Q,
    .popup_body .popup_Q2,
    .popup_body .popup_Q3 {
        font-size: 22px;
    }
    .popup_body p {
        width: auto;
        font-size: 20px;
    }
    .popup_body .popup_p2,
    .popup_body .popup_p3 {
        width: auto;
    }
    .close_popup_btn {
        display: block;
        position: absolute;
        top: -40px;
        right: 0;
        cursor: pointer;
    }
    .popup_buttons {
        gap: 10px;
    }
    .popup_buttons button {
        padding: 14px 20px;
        font-size: 17px;
    }
    .popup_buttons button.apply::after {
        content: "하기";
    }
    /* popup */
}

@media screen and (max-width: 768px) {
    #container {
        padding: 0;
    }

    .benefit_section {
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 50px 20px;
    }
    .mobile_plan_list {
        padding: 0 10px;
    }
    .promotion_section {
        padding: 10px 10px 20px;
    }
    .caution_section,
    .combination_join_section {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .pageTitle h3 {
        font-size: 28px;
    }
    .path {
        right: -20px;
        top: 5px;
        font-size: 12px;
    }

    .promotion_section .section_inner {
        flex-direction: column;
        align-items: center;
    }
    .promotion_box {
        width: 100%;
        height: 270px;
    }
    .promotion_box p {
        font-size: 20px;
        line-height: 160%;
        letter-spacing: -1px;
    }
    .banner_text h1 {
        font-size: 20px;
    }

    .benefit_img {
        width: 276px;
    }
    .banner_text p {
        font-size: 14px;
    }
    .benefit_text p:nth-child(2) {
        margin-bottom: 5px;
    }
    .benefit_text p:nth-child(3) {
        width: 160px;
        line-height: 160%;
    }

    /* mobile_plan */
    .mobile_plan_section {
        padding-top: 50px;
    }
    .mobile_plan_cell_tabs {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        transition: 0.3s;
        border: none;
    }
    .tabs_slider {
        width: 100vw;
        display: inline-flex;
        position: relative;
    }
    .mobile_plan_cell_tabs button {
        width: 142px;
        padding: 17px;
        font-size: 16px;
        flex-shrink: 0;
        position: relative;
    }
    .mobile_plan_cell_tabs button::before {
        content: "";
        display: block;
        width: 100vw;
        height: 1px;
        background: #888888;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .mobile_plan_list {
        padding: 0 10px 0 10px;
    }

    .mobile_plan_cell_tabs button.active::before {
        height: 3px;
    }
    /* mobile_plan */

    /* 결합 combination */
    .combination_join_section {
        padding: 0 0 60px 0;
    }
    .join_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .join_info p {
        width: 190px;
    }
    /* 결합 combination */

    .combi_quick_button {
        padding: 20px 10px;
    }
    .combi_quick_button button {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    /* popup */
    .popup_content {
        padding: 40px 30px;
        width: calc(100% - 20px);
    }
    .popup_body .popup_Q {
        font-size: 22px;
        width: 190px;
        margin: 0 auto;
        padding-bottom: 20px;
        word-break: keep-all;
    }
    .popup_body .popup_Q3 {
        width: 200px;
        word-break: keep-all;
    }
    .popup_body p {
        width: 250px;
        margin: 0 auto 50px;
        word-break: keep-all;
    }
    .popup_body .popup_p2 {
        width: 240px;
        word-break: break-all;
    }
    .popup_body .popup_p3 {
        width: 245px;
        word-break: break-all;
    }

    /* popup */
}
