/*---------------------------------------------
                    FAQ
----------------------------------------------*/
#faq-page {
    width: 100%;
    margin: 0 auto !important;
}

.faq-item {
    margin-bottom: 20px;
}

.toggle-heading {
    padding: 10px;
    background-color: #ff9800;
    border-radius: 5px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.toggle-heading:hover {
    background-color: #ff9800;
}

.toggle-heading:before {
    content: "\f128";
    font-family: 'Font Awesome 5 Free';
    background: #fff;
    color: #ff9800;
    margin-right: 20px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
}

.toggle-content {
    display: none;
    padding: 10px 30px 20px 70px;
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: "Noto Sans JP", Arial, Helvetica, sans-serif !important;
    font-weight: 700 !important;
}

.toggle-content:before {
    content: "A";
    position: absolute;
    background-color: #ff9800;
    color: #fff;
    left: 10px;
    width: 43px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 24px;
}

.toggle-content p {
    margin-top: 0;
    margin-bottom: 10px !important;
}

/*---------------------------------------------

                    PC

----------------------------------------------*/

/*---------------------------------------------

                    Tablet

----------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .faq-wrap {
        padding: 20px 10px;
    }
}

/*---------------------------------------------

                    Mobile

----------------------------------------------*/
@media only screen and (max-width: 767px) {
    .faq-wrap {
        padding: 20px 10px;
    }

    .toggle-heading {
        font-size: 14px !important;
    }
}
