#terms_modal_mask{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(44, 42, 43, 0.50);
    overflow-y: auto;
    display: none;
}
#terms_modal_mask.open{
    display: block;
}
#terms_modal_mask .terms_modal_container{
    width: 100%;
    min-width: 375px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: rgba(44, 42, 43, 0.50);
    margin: auto;
    padding: 20px 30px;
}
#terms_modal_mask .terms_modal_container .terms_modal_header{
    display: flex;
    justify-content: space-between;
}
#terms_modal_mask .terms_modal_container .terms_modal_header .terms_modal_default_button{
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 30px;
    margin: 0 0 0 auto;
    padding: 0;
    cursor: pointer;
}
#terms_modal_mask .terms_modal_container .terms_modal_body{
    width: 100%;
    height: auto;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .7px;
    line-height: normal;
    padding: 20px 20px 50px;
    background: var(--white);
    color: var(--BK);
    margin-top: 20px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modaltitle{
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: normal;
    text-align: left;
    color: #094185;
    margin-bottom: .5rem;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modaltitle_border{
    width: 100%;
    height: 2px;
    margin-bottom: 30px;
    margin-top: 12px;
    position: relative;
    background: var(--fifth_color);
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modaltitle_border::after,
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modaltitle_border::before{
    content: "";
    width: 10px;
    height: 10px;
    background: var(--fifth_color);
    position: absolute;
    bottom: -4px;
    transform: rotate(-45deg);
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modaltitle_border::after{
    left: 1px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modaltitle_border::before{
    right: 1px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .7px;
    line-height: normal;
    color: var(--fourth_color);
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .dear_text{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 20px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    list-style: cjk-ideographic;
    row-gap: 40px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list .terms_modal_confidential_list{
    padding: 0;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list .terms_modal_violation_list{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    row-gap: 10px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list .terms_modal_violation_list .item{
    display: grid;
    grid-template-columns: 20px 1fr;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list .terms_modal_violation_list .item p{
    margin-top: 0;
    margin-bottom: 20px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list .terms_modal_violation_list .item .contactInformation_list{
    margin-top: 20px;
    row-gap: 12px;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px;
}
#terms_modal_mask .terms_modal_container .terms_modal_body .terms_modal_content .terms_modal_list .terms_modal_violation_list .item .footer_text{
    margin-top: 20px;
}
#terms_modal_mask a{
    color: var(--fourth_color);
    text-decoration: none;
}