@charset "utf-8";

/*=================== 공통 reset 시작 ===================*/
*{
    box-sizing: border-box;
}

html, body{
    position: relative;
    width: 100%;
    height: 100%;
}

body{
    -ms-overflow-style: none;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.5rem;
    color: var(--semantic-text-default);
    background-color: var(--semantic-surface-default);
    /*letter-spacing: -0.5px;*/
}

h1, h2, h3, h4, h5, h6, p, dl, dt, dd{
    margin: 0;
    line-height: 1.2rem;
}

ul, ol, li{
    list-style: none;
    margin: 0;
    padding: 0;
}

img{vertical-align: top;}

a{
    text-decoration: none;
    color: var(--semantic-text-default);
}

label{
    /*display: flex;
    align-self: center;*/
    display: inline-block;
}

button{
    cursor: pointer;
    white-space: nowrap;
}

input, button{
    padding: 0;
    vertical-align: top;
    font-family: 'Pretendard', sans-serif;
    border: 0;
}

input, select{
    display: block;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=radio], input[type=checkbox]{
    margin: 0 3px 0 10px;
}

label:first-child input[type=radio], label:first-child input[type=checkbox]{
    margin: 0 3px 0 0;
}

input[type=checkbox]{
    width: 15px; height: 15px;
}

select{
    background-image: url(/common_assets/images/i_fold_bk.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;

    -webkit-appearance: none;
    -moz-appearance:none;
    appearance:none;
    cursor: pointer;
}

select::-ms-expand{display: none;}

option{cursor: pointer;}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

form{margin: 0;}

textarea{
    border: 1px solid var(--bg-border-default);
    resize: none;
}

/*  clearfix  */
.cf{
    position: relative;
}
.cf:after{
    content: "";
    display: block;
    clear: both;
}
/*=================== //공통 reset 끝 ===================*/

/*=================== 공통 class 시작 ===================*/
.rel{
    position: relative;
}

/* flex */
.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.row-ac{
    display: flex;
    align-items: center;
}

.row-sc-ac{
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-sb-ac{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrap{
    display: flex;
    flex-wrap: wrap;
}

.gap-2 {gap: 2px;}
.gap-4 {gap: 4px;}
.gap-8 {gap: 8px;}
.gap-12 {gap: 12px;}
.gap-16 {gap: 16px;}
.gap-20 {gap: 20px;}
.gap-24 {gap: 24px;}
.gap-32 {gap: 32px;}
.flex-gr-1{flex-grow: 1;}
/* //flex */

.pc_br{
    display: block;
}

.mo_br{
    display: none;
}

.only_mo_blind{
    display: block;
}

/*=================== //공통 class 끝 ===================*/

/*=================== 공통 style 시작 ===================*/
.primary_fill_btn{
    width: auto;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    padding: 0 28px;
    border-radius: 50px;
    background-color: var(--semantic-button-primary-fill);
    color: var(--semantic-text-inverse);
    transition: background-color 0.4s;

}

.primary_fill_btn:hover{
    background-color: var(--semantic-button-primary-fill-pressed);
}


.btn_line{
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--semantic-text-subtle);
    border: 1px solid  var(--semantic-border-border);
    background-color: var(--semantic-button-primary-outline);
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.4s;
}

.btn_line.primary{
    color: var(--semantic-text-primary);
    border: 1px solid  var(--semantic-border-border-primary-active);
    background-color: var(--semantic-button-primary-outline);
}

.btn_line:hover{
    background-color: var(--semantic-button-secondary-outline-pressed);
}

.btn_line.primary:hover{
    background-color: var(--semantic-button-primary-outline-pressed);
}

.container{
    position: relative;
}
.inner{
    position: relative;
    width: 872px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.tx_center{
    text-align: center;
}

/* header */
.header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 64px;
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99999;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 12px 0;
}

.header.on{
    border-bottom: var(--semantic-border-border);
}

.h_logo{
    position: relative;
    z-index: 4;
    width: 95px;
    height: auto;
}

.h_logo img {
    width: 100%;
    height: auto;
}

.header .menu {
    gap: 36px;
}

.header .menu_item {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    transition: all 0.3s;
}

.header .menu_item:hover {
    color: var(--semantic-text-primary);
}

.header .menu_item.on {
    color: var(--semantic-text-primary);
}

.btn_inquiry{
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 101px;
    height: 56px;
    box-shadow: 0 14px 16.4px 0 rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    z-index: 10000;
}

.btn_inquiry img{
    width: 100%;
    height: auto;
}

.fixed_btn {
    display: none;
    position: fixed;
    width: 100%;
    background: var(--semantic-button-primary-fill);
    color: var(--semantic-text-inverse);
    bottom: 0;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    z-index: 100;
}

/*=================== 모바일 메뉴 시작 ===================*/
/* 모바일 - 햄버거 메뉴 시작 */
.btn_mobile_menu {
    display: none;
    z-index: 4;
}

.btn_mobile_menu #menu {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    clip: rect(0 0 0 0); clip-path: inset(50%);
    overflow: hidden; white-space: nowrap;
    opacity: 0;
}

.btn_mobile_menu .icon-btn {
    cursor: pointer;
    padding: 8px;
    line-height: 0;
    user-select: none;
}

.btn_mobile_menu #menu:focus-visible + .icon-btn {
    outline: 2px solid #999;
    outline-offset: 4px;
}

.btn_mobile_menu svg { width: 32px; height: 32px; }
.btn_mobile_menu .bar {
    stroke: currentColor;
    stroke-width: 1.5;
    /*stroke-linecap: round;*/
    transition: transform .24s ease, opacity .18s ease;
}

.btn_mobile_menu .top    { transform-origin: 12px 6px; }
.btn_mobile_menu .middle { transform-origin: 12px 12px; }
.btn_mobile_menu .bottom { transform-origin: 12px 18px; }

.btn_mobile_menu #menu:checked + .icon-btn .top {
    transform: translateY(6px) rotate(45deg);
}
.btn_mobile_menu #menu:checked + .icon-btn .middle {
    opacity: 0;
    transform: scaleX(0);
}
.btn_mobile_menu #menu:checked + .icon-btn .bottom {
    transform: translateY(-6px) rotate(-45deg);
}

/* 모션 최소화 환경 존중 (선택) */
@media (prefers-reduced-motion: reduce) {
    .btn_mobile_menu .bar { transition: none; }
}
/* //모바일 - 햄버거 메뉴 끝 */


.mobile_menu {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    right: 0;
    top: -100%;
    z-index: 99999;
    transition: all .2s ease-in-out;
    /*transition: top .3s ease, opacity .16s ease;*/
    will-change: contents;
    opacity: 0;
    padding: 0 24px;
    border-top: 1px solid var(--semantic-border-border);
}

.mobile_menu.on {
    top: 64px;
    opacity: 1;
}

.mobile_menu_item {
    font-size: 18px;
    line-height: 28px;
    padding: 25px 0;
    border-bottom: 1px solid var(--semantic-border-border);
}
/*=================== //모바일 메뉴 끝 ===================*/
/* //header */

/* footer */
.footer{
    padding: 100px 0;
}

.footer .inner{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.f_logo{
    display: block;
    width: 110px;
    height: auto;
}

.f_logo img{
    width: 100%;
    height: auto;
}

.f_info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.f_info1{
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--semantic-text-subtle);
}

.f_info2{
    font-size: 12px;
    line-height: 18px;
    color: #616161;
}

.address:before{
    display: inline-block;
    content: "|";
    color: #616161;
}

.company_num{
    display: block;
}

.go_edu{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--semantic-text-subtle);
}

.f_terms{
    display: flex;
    gap: 7px;
    font-size: 12px;
    line-height: 18px;
    color: #616161;
}
/* //footer */

/* popup */
.popup_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: var(--semantic-background-dim);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.popup_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /*min-width: 300px;*/
    min-width: 84%;
    max-width: 84%;
    min-height: 30%;
    max-height: 82vh;
    background: #fff;
    box-shadow: 0 5px 10px 1px rgb(0 0 0 / 30%);
    border-radius: 24px;
    padding: 24px 24px 14px 24px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    text-align: center;
}

.popup_container{
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.popup_title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
}

.popup_logo{
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 600;
}

.popup_content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup_text_box{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 20px 16px;
    border-radius: 12px;
}

.popup_text{
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
}

.popup_close{
    border-radius: 50px;
}

.hov_card_popup1 .popup_title{
    color: var(--semantic-text-primary);
}

.hov_card_popup1 .popup_title img{
    width: 20px;
    height: auto;
}

.hov_card_popup1 .popup_text_box{
    background-color: rgba(33,119,244,0.04);
}

.hov_card_popup2 .popup_title{
    color: #00B7A8;
}

.hov_card_popup2 .popup_title img{
    width: 28px;
    height: auto;
}

.hov_card_popup2 .popup_text_box{
    background-color: rgba(0,183,168,0.04);
}

.hov_card_popup .popup_text_box .popup_text:before{
    display: inline-block;
    content: "";
    width: 15px;
    height: 22px;
    background-position: left center;
    background-repeat: no-repeat;
}

.hov_card_popup1 .popup_text_box .popup_text:before{
    background-image: url("/public/assets/renewal/images/mo_card_chk_blue.svg");
}

.hov_card_popup2 .popup_text_box .popup_text:before{
    background-image: url("/public/assets/renewal/images/mo_card_chk_cyan.svg");
}

/* terms-popup */
.popup_wrap.popup_terms {
    background-color: var(--color-black-alpha-50);
    z-index: 99999;
}

.popup_terms .popup_box {
    max-width: 650px;
    min-width: 650px;
    height: 900px;
    padding: 0;
    display: block;
    border-radius: 15px;
}

.popup_terms .popup_header {
    width: 100%;
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid var(--color-black-alpha-10);
}

.popup_terms .popup_title {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.popup_terms .popup_close_btn {
    position: absolute;
    top: 21px;
    right: 24px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 0;
    background-color: var(--color-white);
}

.popup_terms .popup_contents {
    text-align: left;
    padding: 10px 24px 24px 24px;
    overflow-y: auto;
    height: calc(100% - 69px);
    position: relative;
}

.popup_terms .popup_contents ::-webkit-scrollbar-thumb {
    background-color: var(--color-black-alpha-10);
}

.terms_version {
    margin-bottom: 24px;
}

.terms_text {
    margin-top: 24px;
}

.terms_text li:not(:last-child) {
    margin-bottom: 30px;
}

.terms_text li b {
    line-height: 24px;
}

.terms_text li p{
    line-height: 24px;
    font-size: 15px;
}

.terms_table_wrap {
    width: 100%;
    overflow-x: auto;
}

.terms_table {
    width: max-content;
    min-width: 100%;
    margin: 10px 0;
    border: 1px solid var(--color-black-alpha-15);
}

.terms_table tr th,
.terms_table tr td{
    padding: 4px 6px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    border: 1px solid var(--color-black-alpha-15);
}

.popup_terms .select2-container {
    width: 100%;
}

.popup_terms .select2-container--default .select2-selection--single {
    border: none;
    border-bottom: 1px solid var(--color-black-alpha-15);
    border-radius: 0;
    height: auto;
}

.popup_terms .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #525463;
}

.popup_terms .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 18px;
    font-weight: 600;
    color: #525463;
}

.popup_terms .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    translate: 0 -50%;
    right: 3px;
    width: 18px;
}

.popup_terms .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.popup_terms .select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 100%;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='9'%20viewBox='0%200%2016%209'%20fill='none'%3E%3Cpath%20d='M15.1586%200.530334L7.84442%207.84448L0.530274%200.530334'%20stroke='%236C6E7E'%20stroke-width='1.5'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    border-color: transparent;
    border-width: 0;
    left: 0;
    margin: 0;
    translate: 0 -50%;
}

.popup_terms .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(180deg);
}

.select2-dropdown {
    z-index: 99999;
    padding: 10px 8px;
    border: 1px solid #F0F0F5;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.select2-results__option {
    padding: 12px 10px;
}

.select2-container--default .select2-results__option--selected {
    background-color: var(--base-white);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--base-white);
    color: var(--base-black);
}

.terms_btn {
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden !important;
}

/* //popup */

/*=================== visual 시작 ===================*/
.visual{
    position: relative;
    background-size: cover;
    background-position: center;
}

.visual.main{
    height: 700px;
}

.visual.sub{
    height: 600px;
}

.visual_element{
    position: absolute;
    display: flex;
    gap: 24px;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
}

.visual_text{
    font-size: 48px;
    line-height: 64px;
    color: #ffffff;
    font-weight: 600;
}

.visual_btn{
    width: 185px;
}

.qr_box{
    min-width: 324px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    bottom: -145px;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px 0;
}

.qrcode img{
    width: 95px;
    height: 95px;
}

.download_wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download_icon{
    width: 26px;
    height: 26px;
    background-size: 26px 26px;
    background-position: center;
}

.download_text{
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--semantic-text-subtle);
}

.and_download .download_icon{
    background-image: url("/public/assets/renewal/images/download_and.png");
}

.ios_download .download_icon{
    background-image: url("/public/assets/renewal/images/download_ios.png");
}

.and_download, .ios_download{
    display: flex;
    gap: 4px;
    align-items: center;
    cursor: pointer;
}

.and_download:hover .download_text, .ios_download:hover .download_text{
    color: var(--semantic-text-default);
}

.vlsual_arr{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 1s linear 0s infinite alternate none running arrow_motion;
}
@-webkit-keyframes arrow_motion {
    0% {
        bottom: 40px;
    }
    100% {
        bottom: 60px;
    }
}
/*=================== //visual 끝 ===================*/

/*=================== section 공통 시작 ===================*/
section{
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.sec_tx_wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
}

.sec_tit{
    font-size: 38px;
    line-height: 56px;
    font-weight: 600;
}

.sec_sub_tx{
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: var(--semantic-text-subtle);
}

.sec_sub_tx2{
    font-size: 18px;
    line-height: 32px;
    color: var(--semantic-text-subtle);
}
/*=================== //section 공통 끝 ===================*/

/*=================== //공통 style 끝 ===================*/


/*=================== media query 시작 ===================*/
/*======= tab size =======*/
@media screen and (max-width: 978px){

    /* 공통 */
    .pc_br{
        display: none;
    }

    .inner{
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    /* //공통 */

    /* header, footer */
    .menu{
        display: none;
    }
    .btn_mobile_menu {
        display: inline-block;
    }

    .footer{
        padding: 78px 0;
    }

    .btn_inquiry{
        bottom: 2%;
        right: 2%;
    }

    .popup_terms .popup_box {
        max-width: 80%;
        min-width: 80%;
    }
    /* //header, footer */

    /* visual */
    .visual_element{
        position: relative;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        text-align: center;
        align-items: center;
        justify-content: flex-end;
        gap: 150px;
        padding: 10% 0;
    }

    .visual_element.main{
        position: relative;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        text-align: center;
        align-items: center;
        justify-content: flex-end;
        gap: 150px;
        padding: 10% 0;
    }

    .visual_text{
        font-size: 40px;
        line-height: 60px;
    }

    .visual_btn{
        width: 100%;
        border-radius: 12px;
    }

    .vlsual_arr{
        display: none;
    }
    /* //visual */

    /* section */
    .sec_tx_wrap{
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .sec_tit{
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    .sec_sub_tx{
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .sec_sub_tx2{
        text-align: center;
    }
    /* //section */
}
/*======= //tab size =======*/

/*======= mobile size =======*/
@media screen and (max-width: 600px){

    /* 공통 */
    .mo_br{
        display: block;
    }

    .only_mo_blind{
        display: none;
    }

    /* header, footer */
    .footer{
        padding: 58px 0 80px;
    }

    .footer .inner{
        align-items: center;
        text-align: center;
    }

    .address{
        display: block;
    }

    .address:before{
        display: none;
    }

    .footer .go_edu{
        display: none;
    }

    .f_terms{
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .copyright{
        width: 100%;
    }

    .btn_inquiry{
        width: 80px;
        height: 44px;
    }

    .fixed_btn {
        display: block;
    }

    .popup_terms .popup_box {
        max-width: 100%;
        min-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    /* //header, footer */

    /* visual */
    .visual_element{
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10vh;
        text-align: left;
    }

    /*.visual_element.main{*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    gap: 10vh;*/
    /*    text-align: center;*/
    /*}*/

    .visual_element.main{
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10vh;
        text-align: left;
    }

    .visual.sub{
        height: calc(100vh - 64px);
    }

    .visual_text{
        font-size: 36px;
        line-height: 56px;
        margin-bottom: 100px;
    }

    .visual_btn{
        display: none;
        position: absolute;
        bottom: 70px;
    }
    /* //visual */

    /* section */
    .sec_tx_wrap{
        gap: 8px;
    }

    .sec_tit{
        font-size: clamp(24px, 5vw, 28px);
        line-height: 1.4em;
    }

    .sec_sub_tx2{
        font-size: clamp(14px, 5vw, 16px);
        line-height: 1.4em;
    }
    /* //section */

}
/*======= //mobile size =======*/
/*=================== //media query 끝 ===================*/




