ul {
    padding: 0;
}

.section1 {
    background: url(http://www.kowinsblue.com/blue/templet/templet3/img/background3.png) no-repeat center center;
    padding: 100px 0px 100px 0px;
}

.section1 .title {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 80px;
}

.qna_section_container {
    width: 800px;
    margin: 0 auto;
    position: relative;
    opacity: 1;
}

.qna_section_ul {
    width: 100%;
}

.qna_section_ul>li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.qna_section_ul>li>h4 {
    width: 100px;
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.qna_text {
    width: 700px;
    height: 50px;
    background: #fff;
    border: none;
    font-size: 18px;
    border-radius: 0;
}

.qna_section_ul>li>textarea {
    height: 270px;
    width: 700px;
    background: #fff;
    border: none;
    border-radius: 0;
    font-size: 18px;
}

.main_check_hide {
    display: none;
}

.main_check {
    width: 26px;
    height: 26px;
    border: 2px solid #fff;
    margin-right: 10px;
    display: block;
    position: relative;
}

.main_check::after {
    display: none;
    content: "";
    width: 16px;
    height: 16px;
    background: #fff;
    top: 3px;
    left: 3px;
    position: absolute;
}

.main_check_title {
    font-size: 18px;
    color: #fff;
    margin-right: 20px;
}

.main_check_hide:checked+.main_check::after {
    display: block;
}

.qna_submit {
    width: 700px;
    line-height: 70px;
    font-size: 30px;
    color: #fff;
    border: none;
    background: #5B4EE8;
    border-radius: 10px;
    margin-top: 30px;
}

.qna_submit:disabled {
    background: #aaa;
    cursor: not-allowed;
}


/* 섹션4 - 모달 */

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    /* 숨기기 */
    z-index: -1;
    opacity: 0;
}

.show {
    opacity: 1;
    z-index: 1000;
    transition: all .5s;
}

.window {
    position: relative;
    width: 100%;
    height: 100%;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    /* 임시 지정 */
    width: 70%;
    height: 40%;
    /* 초기에 약간 아래에 배치 */
    transform: translate(-50%, -40%);
}

.show .popup {
    transform: translate(-50%, -50%);
    transition: all .5s;
}

#show {
    border: none;
    background: none;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    position: absolute;
    right: 0;
    text-decoration: underline;
}

#close {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 3%;
    border: none;
    background: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

#policy_area {
    width: 90%;
    height: 80%;
}

@media (max-width: 1199px) {}

@media (max-width: 991px) {
    .qna_section_container {
        width: 100%;
        padding: 0 20px;
    }
    .qna_section_ul>li>h4 {
        width: 18%;
    }
    .qna_text {
        width: 82%;
    }
    .qna_section_ul>li>textarea {
        width: 82%;
        height: 200px;
    }
    .qna_submit {
        width: 82%;
    }
    #show {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .qna_section_title {
        top: 0;
        opacity: 1;
        margin-top: 0;
        margin-bottom: 40px;
    }
    .qna_section_container {
        top: 0;
        opacity: 1;
        padding: 0;
    }
    .qna_text {
        height: 34px;
    }
    .qna_section_ul>li>h4 {
        font-size: 16px;
        width: 25%;
    }
    .qna_section_ul>li>textarea {
        height: 150px;
    }
    .qna_section_ul>li>.empty_h4 {
        display: none;
    }
    .main_check_title {
        font-size: 14px;
    }
    .main_check {
        width: 20px;
        height: 20px;
    }
    .main_check::after {
        width: 10px;
        height: 10px;
    }
    .qna_submit {
        width: 100%;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
    }
    #show {
        font-size: 13px;
        right: 0px;
    }
}

@media (max-width: 510px) {
    #show {
        top: 360px;
    }
}