@charset "utf-8";

.faqBtnBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px;
}

.faqBtn {
    margin: 0;
}

.faqBox {
    margin: -40px 0 40px;
    padding: 40px 0 0;
}

.faqBox:last-child {
    margin-bottom: 0;
}

.answer a {
    position: relative;
    display: inline-block;
    color: #fff;
}

.answer a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    background: #fff;
    width: 100%;
    height: 1px;
    transition: all .5s;
}

.answer a:hover::after {
    opacity: 0;
    transition: all .5s;
}

@media screen and (min-width:768px) {

    .faqBtnBox {
        flex-direction: row;
    }

}

@media screen and (min-width:1024px) {

    .faqBtnBox {
        gap: 40px;
        margin: 0 auto 80px;
    }

    .faqBox {
        margin: -80px 0 80px;
        padding: 80px 0 0;
    }

}

@media screen and (min-width:1440px) {

    .faqBox {
        margin: -120px 0 80px;
        padding: 120px 0 0;
    }

}