

main {
    background: #F0F5F7;
}

#faq {
    width: 100%;
    height: auto;
    padding-bottom: 200px;
}

#faq .faq-cont {
    background-color: #FFF;
    margin-bottom: 80px;
}

#faq .tab_flex {
    display: flex;
    width: 100%;
}

#faq .faq-tab {
    width: 33.333333333%;
    padding-top: 26px;
    padding-bottom: 26px;
    background: #004098;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

#faq .faq-tab.current {
    background: #FFF;
    color: #1C2438;
}

#faq .faq-tab:hover {
    opacity: .75;
    transition: all .3s ease-in;
}

#faq .tab_flex .faq-tab:nth-child(2) {
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
}

#faq .faq-cont-padding {
    padding: 0 116px 78px;
    box-sizing: border-box;
}

#faq .faq-block {
    width: 100%;
}

#faq .faqs-title {
    margin-top: 41px;
    padding-top: 37px;
    padding-bottom: 37px;
    border-bottom: 1px solid #D8D8D8;
    position: relative;
    padding-left: 16px;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #1c2438;

}

#faq .faqs-title:before {
    content: "";
    position: absolute;
    height: 32px;
    width: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #004098;
}

#faq .faq-block.is-hidden {
    display: none;
}


#faq .faq-header {
    font-weight: bold;
    font-size: 25px;
    letter-spacing: 0.15em;
    text-align: left;
    color: #133c84;
    padding-bottom: 60px;
    margin-bottom: 45px;
    border-bottom: #133C84 1px solid;
}

#faq .faq-box-content {
    margin-bottom: 84px;
}

#faq .faq-block-modal {
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: #D8D8D8 1px solid;
}

#faq .q-content,
#faq .a-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

#faq .q-content {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

#faq .q-content::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #004098;
    height: 3px;
    width: 26px;
}

#faq .q-content::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #004098;
    height: 3px;
    width: 26px;
}

#faq .q-content.open {
    transition: all .3s ease-in;
}

#faq .q-content.open::after {
    transform: translateY(-50%) rotate(0deg);
    transition: all .3s ease-in-out;

}


.a_modal {
    display: none;
}

#faq .a-content {
    /* display: none; */
    align-items: top;
    margin-top: 25px;
}


#faq .q-content .q-icon {
    background-color: #004098;
    color: #fff;
}

#faq .q-content .q-icon,
#faq .a-content .a-icon {
    width: 48px;
    height: 48px;
    border-radius:48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 39.5px;
    text-align: center;
    margin-right: 16px;
}


#faq .a-content .a-icon {
    background-color:#FFE3D8;
    color: #004098;
}


#faq .q-content .q-text {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 45.5px;
    text-align: left;
    color: #000;
    flex: 1;
    padding-right: 60px;
}
#faq .a-content .a-text {
    font-family: var(--Gothic);
    width: 1040px;
    height: auto;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 42px;
    text-align: left;
    color: #3e3e3e;
    border: 1px solid rgba(0, 0, 0, 0);
    flex: 1;
    padding-right: 60px;
}


@media screen and (max-width: 1000px) {
    #faq .faq-tab {
        padding-top: 26px;
        padding-bottom: 26px;
        font-size: 16px;
        line-height: 1;
    }
    #faq .faq-cont-padding {
        padding: 0 40px 40px;
        box-sizing: border-box;
    }

}

@media screen and (max-width: 767px) {
    #faq .faq-cont {
        margin-bottom: 40px;
    }
    #faq .faqs-title {
        font-size: 16px;
    }
    #faq .faqs-title:before {
        height: 18px;
    }
    #faq .q-content .q-text {
        padding-right: 40px;
        font-size: 14px !important;
        line-height: 30px;
    }
    #faq .a-content .a-text {
        font-size: 14px !important;
        line-height: 30px;
    }
    #faq .q-content .q-icon, #faq .a-content .a-icon {
        margin-right: 10px;
        font-size: 16px;
        width: 36px;
        height: 36px;
    }
    #faq .q-content::before {
        height: 4px;
        width: 20px;
    }
    
    #faq .q-content::after {
        height: 4px;
        width: 20px;
    }
    .common_list_btn_wrap {
        margin-bottom: 0;
    }
    #faq {
        padding-bottom: 60px;
    }
    #faq .inner001 {
        width: 100%;
    }
    #faq .faq-cont-padding {
        padding: 0 20px 40px;
        box-sizing: border-box;
    }
    #faq .faqs-title {
        margin-top: 20px;
    }
}


@media screen and (max-width: 400px) {
    #faq .faq-tab {
        font-size: 14px;
    }
}


#faq .faq-link {
    text-decoration: underline;
    color: blue;
    transition: all .3s ease-in;
}


#faq .faq-link:hover {
    opacity: .75;
}