body {
    background-color: #282828;
}
.section .container {
    max-width: 780px;
}
.qna-title {
    padding-top: 210px;
    padding-bottom: 0;
    text-align: center;
    color: #ebebeb;
    /* margin-bottom: 88px; */
}
.qna-title h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
}
.qna-title p {
    font-size: 24px;
    line-height: 150%;
    font-weight: 400;
}
.notice {
    text-align: right;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    color: #ebebeb;
    margin-bottom: 4px;
}
.notice span, form label span {
    font-size: 16px;
    color: #9747FF;
}
form label {
    display: block;
    margin-bottom: 8px;
    color: #ebebeb;
    font-weight: 600;
    font-size: 16px;
}
form > div {
    gap: 60px;
    margin: 30px 0;
}
form .form_wrap {
    width: 50%;
}
form .form_wrap input {
    height: 48px;
}
form input, textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid #ebebeb;
    color: #ebebeb;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 400;
}
form .w-100 textarea {
    height: 260px;
    padding: 20px;
}
form .w-100 textarea::placeholder {
    font-size: 16px;
    color: #a5a5a5;
}

/*체크박스 스타일링*/
input[type=checkbox] {
    display:none;
}
input[type=checkbox] + label { 
    cursor: pointer; 
    padding-left: 40px; 
    background-repeat: no-repeat;
    background-image: url('../img/icon/icon-chekbox-uncheck.svg');
    font-size: 16px;
    color: #ebebeb;
    
}
input[type=checkbox] + label a { 
    cursor: pointer; 
    color: #ebebeb;
    
}
input[type=checkbox]:checked + label {
    background-image: url('../img/icon/icon-checkbox-check.svg');
}
.marketing-check {
    gap: 90px;
}
.allcheck {
    padding-bottom: 26px;
    position: relative;
}
.allcheck::after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #636363;
}
.allcheck input[type=checkbox] + label {
    color: #9747FF;
}
.checkbox-area {
    width: 100%;
    height: 334px;
    padding: 40px 34px;
    background-color: #373737;
    margin-top: 48px;
    margin-bottom: 88px;
}
.checkbox-area .checkboxs > div {
    margin: 25px 0;
}
.marketing-check {
    padding: 0 40px;
}
.detail {
    text-decoration: underline;
}
.detail:hover {
    text-decoration: underline;
}
button, #qnaButton {
    background-color: #2D388A;
    display: block;
    width: 166px;
    height: 56px;
    color: #fff;
    margin: auto;
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    border: none;
    border-radius: 31px;
}
.footer {
    background-color: #000;
}
.popup {
    position: fixed;
    z-index: 111111;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
}
.popup-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
}
.script-wrapper {
    position: absolute;
    width: 70%;
    height: 600px;
    z-index: 6;
    background-color: #ebebeb;
    border-radius: 20px;
    color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
}
.script-wrapper .script-title {
    font-weight: 600;
    font-size: 24px;
}
.script-wrapper .script {
    height: 420px;
    overflow-y: scroll;
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: #f4f4f4;
    padding: 20px;
    color: #000;
}
.script-wrapper button {
    width: 100px;
    height: 40px;
    font-size: 16px;
}
@media screen and (max-width: 560px) {
    .qna-title {
        padding-top: 140px;
    }
    .qna-title h1 {
        font-size: 24px;
    }
    .qna-title p {
        font-size: 16px;
    }
    .notice {
        font-size: 14px;
    }
    .notice span, form label span {
        font-size: 14px;
        color: #9747FF;
    }
    form label {
        font-size: 14px;
    }
    form > div {
        gap: 20px;
    }
    form .form_wrap input {
        height: 40px;
        padding: 10px;
    }
    form .w-100 textarea {
        height: 200px;
        padding: 20px;
    }
    form .w-100 textarea::placeholder {
        font-size: 14px;
    }
    
    /*체크박스 스타일링*/
    input[type=checkbox] {
        display:none;
    }
    input[type=checkbox] + label { 
        padding-left: 35px;
        background-size: 20px;
        background-image: url('../img/icon/icon-chekbox-uncheck.svg');
        font-size: 14px;
        color: #ebebeb;
        letter-spacing: -0.45px;
        line-height: 160%;
        
    }
    input[type=checkbox] + label a { 
        cursor: pointer; 
        color: #ebebeb;
        
    }
    input[type=checkbox]:checked + label {
        background-image: url('../img/icon/icon-checkbox-check.svg');
    }
    .marketing-check {
        gap: 8px;
        justify-content: space-around;
    }
    .marketing-check input[type=checkbox] + label {
        font-size: 13px;
        padding-left: 26px;
    }
    .allcheck {
        padding-bottom: 26px;
        position: relative;
    }
    .allcheck::after {
        content: " ";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        width: 100%;
        background-color: #636363;
    }
    .allcheck input[type=checkbox] + label {
        color: #9747FF;
    }
    .checkbox-area {
        width: 100%;
        height: 324px;
        padding: 34px 20px;
        background-color: #373737;
        margin-top: 48px;
        margin-bottom: 40px;
    }
    .checkbox-area .checkboxs > div {
        margin: 25px 0;
    }
    .marketing-check {
        padding-left: 10px;
        padding-right: 0;
    }
    .detail {
        text-decoration: underline;
    }
    .detail:hover {
        text-decoration: underline;
    }
    button, #qnaButton {
        background-color: #2D388A;
        display: block;
        width: 120px;
        height: 46px;
        color: #fff;
        margin: auto;
        font-weight: 600;
        font-size: 16px;
        line-height: 160%;
        border: none;
        border-radius: 31px;
    }
    .footer {
        background-color: #000;
    }
    .popup {
        position: fixed;
        z-index: 111111;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
    }
    .popup-back {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .script-wrapper {
        position: absolute;
        width: 100%;
        height: 100vh;
        z-index: 6;
        background-color: #ebebeb;
        border-radius: 0px;
        color: #000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 30px 20px;
    }
    .script-wrapper .script-title {
        font-weight: 600;
        font-size: 18px;
    }
    .script-wrapper .script {
        height: calc(100vh - 230px);
        overflow-y: scroll;
        margin-top: 20px;
        margin-bottom: 10px;
        background-color: #f4f4f4;
        padding: 20px;
        color: #000;
    }
    .script-wrapper button {
        width: 100px;
        height: 40px;
        font-size: 16px;
    }
}