#wrapper {
    padding: 10rem 0;
}
.faq {}
.faq .content {}
.faq .faqTitle {
    font-size: 4rem;
    text-align: center;
}
.faq .faqList {
    margin-top: 7rem;
    border-top: 2px solid #1a1a1a;
}
.faq .faqList li {
    border-bottom: 1px solid #e6e6e6;
}
.faq .faqList li .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq .faqList li .question.active {
    color: #1f378c;
}
.faq .faqList li .question .qTitle {
    font-size: 1.8rem;
    font-family: 'Noto Sans KR';
    font-weight: 300;
    line-height: 3.6;
}
.faq .faqList li .question .qTitle .qText {
    font-family: 'Cafe24Ohsquare';
    vertical-align: middle;
    padding: 0 3rem;
}
.faq .faqList li .question .icon {
    font-size: 2.2rem;
    padding: 0 3rem;
}
.faq .faqList li .question .icon i {}
.faq .faqList li .answer {
    background-color: #f8f8f8;
    font-family: 'Noto Sans KR';
    font-weight: 300;
    font-size: 1.6rem;
    padding: 4rem 8rem;
    line-height: 1.8;
    text-align: justify;
}

.addQuestion {
    margin-top: 10rem;
}
.addQuestion .content {
    background-color: #f8f8f8;
    padding: 7rem;
    font-family: 'Noto Sans KR';
}
.addQuestion .sectionTitle {
    font-size: 2rem;
}
.addQuestion .addInfo {
    margin: 2rem 0;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.8;
}
.addQuestion .qustionBtn {width: 13rem;height: 4.4rem;background-color: #1f378c;color: #fff;border: none;border-radius: 3.5rem;font-size: 1.6rem;font-weight: 600;}

#qnaWrite {position: fixed;width: 100%;max-width: 900px;padding: 40px;top: 50%;left: 50%;background-color: #fff;z-index: 10000;transform: translate(-50%, -50%);box-sizing: border-box;box-shadow: 0 0 10px 0px #000a;}
#qnaWrite .qnaClose {
    position: absolute;
    right: 0;
    top: -40px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}
#qnaWrite .qnaClose i {}
#qnaWrite .contactArea {}
#qnaWrite .contactArea > div {
    padding: 10px;
}
#qnaWrite .contactArea > div input {
    font-size: 15px;
    border: 1px solid #cccccc;
    line-height: 45px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}
#qnaWrite .questionArea {
    padding: 10px;
}
#qnaWrite .questionArea textarea {
    font-size: 16px;
    border: 1px solid #cccccc;
    line-height: 2;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    height: 350px;
    font-family: auto;
    font-weight: 300;
}
#qnaWrite .questionSubmit {
    width: 130px;
    height: 45px;
    background-color: #1f378c;
    color: #fff;
    border: none;
    border-radius: 3.5rem;
    font-size: 16px;
    font-weight: 600;
    margin: 10px auto;
    display: block;
}

@media all and (max-width: 768px) {
    #wrapper {padding: 50px 0 0;}
    .faq {}
    .faq .content {
}
    .faq .faqTitle {
    font-size: 4.5rem;
}
    .faq .faqList {}
    .faq .faqList li {}
    .faq .faqList li .question {}
    .faq .faqList li .question .qTitle {
    font-size: 2.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
    .faq .faqList li .question.active .qTitle {
    padding: 20px 0;
    line-height: 1.4;
    white-space: unset;
    color: #1f378c;
}
    .faq .faqList li .question .qTitle .qText {
    display: none;
}
    .faq .faqList li .question .icon {
    font-size: 3rem;
    padding: 0 1rem;
    margin-top: 6px;
}
    .faq .faqList li .question .icon i {}
    .faq .faqList li .answer {
    padding: 20px;
    font-size: 2.7rem;
}

    .addQuestion {}
    .addQuestion .content {
    padding: 5rem;
}
    .addQuestion .sectionTitle {
    font-size: 3rem;
}
    .addQuestion .addInfo {
    font-size: 2.2rem;
}
    .addQuestion .qustionBtn {
    width: 20rem;
    height: 7rem;
    font-size: 2.6rem;
}
    #qnaWrite {
    padding: 15px 20px;
    width: calc(100% - 40px);
}
    #qnaWrite .qnaClose {}
    #qnaWrite .qnaClose i {}
    #qnaWrite .contactArea {
    flex-direction: column;
}
    #qnaWrite .contactArea > div {
    padding: 5px 0;
}
    #qnaWrite .contactArea > div input {
    padding: 0 10px;
}
    #qnaWrite .questionArea {
    padding: 5px 0;
}
    #qnaWrite .questionArea textarea {
    height: 250px;
    padding: 5px 10px;
}
    #qnaWrite .questionSubmit {}
}