@charset "UTF-8";

.faq_wrap .nav {
    margin-bottom: 3em;
    border-bottom: 0;
}
@media screen and (min-width: 768px){
    .faq_wrap .nav {
        margin-bottom: 5em;
    }
}
.faq_wrap .nav .nav-item {
    width: calc(100%/3);
    padding: 0 0.25em;
}
@media screen and (min-width: 768px){
    .faq_wrap .nav .nav-item {
        padding: 0 0.5em;
    }
}
.faq_wrap .nav .nav-item a {
    width: 100%;
    padding: 0.25em 0;
    background: #08A6FC;
    border: 0;
    border-radius: 2.5em;
    color: #fff;
    font-size: 125%;
    font-weight: 700;
    text-align: center;
    display: block;
}
@media screen and (min-width: 768px){
    .faq_wrap .nav .nav-item a {
        padding: 0.5em 0;
    }
}
.faq_wrap .nav .nav-item a:hover,
.faq_wrap .nav .nav-item a.active {
    background: var(--main);
    opacity: 1;
    position: relative;
}
.faq_wrap .nav .nav-item a.active::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 11px solid var(--main);
    display: block;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.faq_list .faq_item {
    border-bottom: 1px solid #E1E1E1;
}
.faq_list .q,
.faq_list .a {
    padding: 0 1.5em 0 2rem;
    margin: 1.5em 0;
    font-size: 100%;
    position: relative;
}
@media screen and (min-width: 768px){
    .faq_list .q,
    .faq_list .a {
        padding-left: 3rem;
    }
}
.faq_list .q {
    font-weight: 700;
    cursor: pointer;
}
@media screen and (min-width: 768px){
    .faq_list .q {
        font-size: 112.5%;
    }
}
.faq_list .a {
    width: 100%;
    max-width: 760px;
    font-weight: 400;
}
.faq_list .q::before,
.faq_list .a::before {
    content: '';
    font-size: 25px;
    font-weight: 700;
    font-family: 'Lato', sans-serif!important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -0.5rem;
    left: 0;
}
@media screen and (min-width: 768px){
    .faq_list .q::before,
    .faq_list .a::before {
        font-size: 35px;
        top: -1.25rem;
    }
}
.faq_list .q::before {
    content: 'Q.';
    color: var(--main);
}
.faq_list .a::before {
    content: 'A.';
    color: #08A6FC;
}
.faq_list .q::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2.5px solid var(--main);
    border-bottom: 2.5px solid var(--main);
    color: #fff;
    display: block;
    transform: rotate(45deg);
    position: absolute;
    top: -0.25em;
    bottom: 0;
    right: 0.5em;
    margin: auto 0;
    transition: 0.5s;
    pointer-events: none;
}
.faq_list .q.open::after {
    transform: rotate(225deg);
}
.faq_list .a ol {
    padding-left: 1em;
}
.faq_list .a ol li {
    list-style: decimal;
}
.faq_list .a ol li ol {
    padding-left: 0;
    counter-reset: list 0;
}
.faq_list .a ol li ol li {
    padding-left: 2em;
    list-style: none;
    position: relative;
}
.faq_list .a ol li ol li::before {
    counter-increment: list 1;
    content: "(" counter(list) ")";
    display: inline-block;
    position: absolute;
    left: 0;
}