/*
File Name: faq.css
Version: 3.0
*/

/*** faq sec1 ***/

#faq_sec1 {
    height: auto;
    margin: 0 auto;
    max-width: 991px;
    padding: 30px 30px 30px;
    width: 100%;
}

#faq_sec1 > p {
    font-size: 1.6em;
    line-height: 1.5;
    margin-bottom: 0.5em;
    text-align: center;
}

#faq_sec1 > p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 639px) {

    #faq_sec1 {
        padding: 15px 15px 30px;
    }

    #faq_sec1 > p {
        font-size: 1.4em;
    }

}

/*** faq sec2 ***/

#faq_sec2 {
    height: auto;
    margin: 0 auto;
    max-width: 991px;
    padding: 30px 30px 60px;
    width: 100%;
}

#faq_sec2 [class*=sec2_div] h3 {
    display: inline-block;
    font-size: 2.5em;
    line-height: 1.5;
    margin: 50px 0;
    position: relative;
    text-align: center;
    text-shadow: 0 0 2px white;
    width: calc(100% - 10px);
}

#faq_sec2 [class*=sec2_div] h3::before {
    background-color: #f5deb3;
    border: dashed 1px white;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 5px #f5deb3;
    content: '';
    height: 100px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    z-index: -1;
}

#faq_sec2 [class*=sec2_div] dt {
    background-color: #e8e8e0;
    cursor: pointer;
    font-size: 1.4em;
    line-height: 1.5;
    margin-top: 1.5em;
    padding: 15px 15px 15px 45px;
    position: relative;
}

#faq_sec2 [class*=sec2_div] dt:first-of-type {
    margin-top: 0;
}

#faq_sec2 [class*=sec2_div] dt::before {
    content: '\f059';
    font-family: "Font Awesome 5 Free";
    font-size: 2.0em;
    font-weight: bold;
    left: 15px;
    position: absolute;
    top: 4px;
}

#faq_sec2 [class*=sec2_div] dd {
    background-color: #f0f0e8;
    display: none;
    font-size: 1.2em;
    line-height: 1.5;
    padding: 15px 15px 15px 45px;
    position: relative;
}

#faq_sec2 [class*=sec2_div] dd::before {
    content: '\f0a4';
    font-family: "Font Awesome 5 Free";
    font-size: 2.0em;
    font-weight: bold;
    left: 15px;
    position: absolute;
    top: 4px;
}

#faq_sec2 [class*=sec2_div] dd a {
    border-bottom: 1px dashed #606058;
}

@media (max-width: 639px) {

    #faq_sec2 {
        padding: 30px 15px 45px;
    }

    #faq_sec2 [class*=sec2_div] h3 {
        font-size: 2.0em;
    }

}