html {scroll-behavior: auto;}

.top_header_img {
    background-image: url(../images/qna-bg.png);
    background-size: cover;
    background-position: center;
}
section .q-wrap {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-80);
    cursor: pointer;
}
section .q-wrap .question {
    width: 70px;
    height: 70px;
    margin: 0 44px 0 88px;
    background-color: var(--color-gray-0);
    border-radius: 50%;
}
section .q-wrap .question p {
    font-size: var(--font-size-sub1);
    color: var(--color-white);
    text-align: center;
    padding: 11px 21px 10px 21px;
}
section .q-wrap .q-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-right: 110px;
    position: relative;
}
section .q-wrap .q-text h5 {
    font-size: var(--font-size-body1);
}
section .q-wrap img {
    width: 36px;
    height: 19px;
}
section .q-wrap .q-hide img {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
}
section .answer-hide {
    display: none;
}
section .a-wrap {
    width: 100%;
    display: flex;
    /* align-items: center; */
    background-color: var(--color-gray-99);
}
section .a-wrap .answer {
    width: 70px;
    height: 70px;
    margin: 35px 44px 0 88px;
    background-color: var(--color-primary-1);
    border-radius: 50%;
}
section .a-wrap .answer p {
    font-size: var(--font-size-sub1);
    color: var(--color-white);
    text-align: center;
    padding: 11px 21px 10px 21px;
}
section .a-wrap .answer-t p {
    padding: 60px 331px 60px 0;
    font-size: var(--font-size-body3);
}

/*인디케이터*/
section nav {
    width: 100%;
    margin: 93px 0 245px 0;
    display: flex;
    justify-content: center;
}
section nav ul {
    display: flex;
    justify-content: space-between;
    width: 161px;
    font-size: var(--font-size-body3);
    font-weight: var(--font-weight-M);
}
.page-nav li.on {
    color: var(--color-primary-1);
}

/*태블릿 사이즈*/
@media only screen and (max-width:1300px){
    section .q-wrap {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--color-gray-80);
        cursor: pointer;
    }
    section .q-wrap .q-text h5 {
        font-size: var(--font-size-cap1);
        margin-right: 25px;
    }
    section .q-wrap .q-text {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-right: 2%;
        position: relative;
    }
    section .q-wrap img {
        width: 18px;
        height: 10px;
    }
    section .q-wrap .q-hide img {
        display: none;
        position: absolute;
        right: 0;
        top: 0;
    }
    section .q-wrap .question {
        width: 30px;
        height: 30px;
        margin: 0 20px 0 20px;
        background-color: var(--color-gray-0);
        border-radius: 60%;
        position: relative;
    }
    section .q-wrap .question p {
        font-size: var(--font-size-cap2);
        color: var(--color-white);
        padding: 6px 10px 5px 10px;
    }
    section .a-wrap .answer {
        width: 30px;
        height: 30px;
        margin: 15px 20px 0 20px;
        background-color: var(--color-primary-1);
        border-radius: 60%;
    }
    section .a-wrap .answer p {
        font-size: var(--font-size-cap2);
        color: var(--color-white);
        padding: 6px 10px 5px 10px;
    }
    section .a-wrap .answer-t p {
        padding: 60px 331px 60px 0;
        font-size: var(--font-size-cap1);
    }
    section .a-wrap .answer-t p {
        padding: 30px 70px 30px 0;
        font-size: var(--font-size-cap2);
    }
    section nav {
        width: 100%;
        margin: 70px 0 245px 0;
        display: flex;
        justify-content: center;
    }
    section nav ul {
        display: flex;
        justify-content: space-between;
        font-size: var(--font-size-cap2);
        font-weight: var(--font-weight-M);
        align-items: center;
    }
}
/*모바일 사이즈*/
@media only screen and (max-width:667px){
    section nav {
        width: 100%;
        margin: 30px 0 122px 0;
        display: flex;
        justify-content: center;
    }
}