@charset "utf-8";
#benefit_popup{
    position: relative;
    display: inline-block;
}
#benefit_popup .labelCheck{
    cursor: pointer;
    display: inline-block;
}
#benefit_popup .txtCheck{
    position: relative;
    background: #f08200;
    border-radius: 50px;
    padding: 10px 40px;
    min-width: 250px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: #fff;
    font-weight: bold;
    line-height: 20px;
}
#benefit_popup .txtCheck::before{
    position: absolute;
    left: 20px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
}
#benefit_popup #benefit:checked + .txtCheck{
    background: #f08200;
}
#benefit_popup .benefitOfftxt{
    display: none;
}
#benefit_popup #benefit:checked + .txtCheck .benefitOntxt{
    display: none;
}
#benefit_popup #benefit:checked + .txtCheck .benefitOfftxt{
    display: inline;
}
@media only screen and (max-width:767px){
    #benefit_popup .txtCheck{
        min-width: 200px;
        font-size: 13px;
        padding: 10px 30px;
    }
    #benefit_popup .txtCheck::before{
        left: 20px;
        margin-top: 0;
    }
}


/*-----------------------------------------------
    popup_form
-----------------------------------------------*/
#popup_form{
    display: none;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
}
#popup_form .popupContainer{
    display: table;
    width: 100%;
    height: 100%;
}
#popup_form .popupContents{
    display: table-cell;
    vertical-align: middle;
}
@media only screen and (max-width:767px){
    #popup_form .popupMain{
        margin: 0 auto;
    }
}

/* secPopup */
#popup_form .popup{
    margin: 0 auto;
    position: relative;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    border-radius: 5px;
}
#popup_form .popup::-webkit-scrollbar {
    width: 15px;
    border-radius: 0 5px 5px 0;
}
#popup_form .popup::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fff;
    border: 5px solid #f08200;
}
#popup_form .popup::-webkit-scrollbar {
    background: #f08200;
}
#popup_form .boxBenefit{
    background: #fff;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #000;
    padding: 40px;
}
#popup_form .boxBenefit .titBenefit{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}
#popup_form .boxBenefit .titBenefitSub{
    font-size: 16px;
}
@media only screen and (max-width:767px){
    #popup_form .boxBenefit{
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        padding: 20px;
    }
    #popup_form .boxBenefit .titBenefit{
        font-size: 16px;
    }
    #popup_form .boxBenefit .titBenefitSub{
        font-size: 15px;
    }
}


/* secCmnFormPopupBtn */
#popup_form .secCmnFormPopupBtn{
    width: 480px;
    max-width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #f08200;
    position: relative;
    margin: 40px auto 0;
    color: #fff;
}
#popup_form .secCmnFormPopupBtn::after{
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: 32px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
#popup_form .secCmnFormPopupBtn .cmnBtnTxt{
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0.15em;
    color: #fff;
    font-weight: bold;
}
@media only screen and (max-width:767px){
    #popup_form .secCmnFormPopupBtn{
        width: 89.55%;
        height: 50px;
        margin: 35px auto 0;
        border-radius: 25px;
    }
    #popup_form .secCmnFormPopupBtn::after{
        right: 32px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
    }
    #popup_form .secCmnFormPopupBtn .cmnBtnTxt{
        font-size: 12px;
        letter-spacing: 0.2em;
    }
}
