@charset "utf-8";

#faq .question p {
    font-size: 18px;
    font-weight: bold;
    color: #009f41;
    background: #fff;
    padding: 10px 10px 10px 60px;
}

#faq .box {
    position: relative;
    margin-top: 30px;
    margin-bottom: 70px;
}

#faq .question {
    position: absolute;
    top: -30px;
    left: 20px;
}

#faq .question p {
    position: relative;
    display: inline-block;
}

#faq .question p::before {
    content: "Q";
    position: absolute;
    top: 0;
    left: 10px;
    width: 40px;
    height: 40px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
    background: #009f41;
}

#faq .question p::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 40px;
    bottom: 10px;
    border-right: 10px solid #009f41;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: rotate(-140deg);
}

#faq .lead {
    border: 2px solid #009f41;
    padding: 30px;
    border-radius: 30px 0;
}

#faq .text_box {
    width: 560px;
	margin-bottom: 40px;
}

#faq .img_box {
    width: 440px;
    height: 100%;
    margin-top: 30px;
}

#faq .img_box img {
    width: 100%;
}

#faq .bg {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    #faq .lead {
        padding: 20px;
    }

    #faq .box {
        margin-bottom: 0;
    }

    #faq .question {
        position: unset;
    }

    #faq .question p {
        font-size: 16px;
        padding: 10px 0 10px 40px;
    }

    #faq .question p::before {
        top: 5px;
        left: 0;
        width: 30px;
        height: 30px;
        line-height: 27px;
    }

    #faq .question p::after {
        left: 22px;
        bottom: 0;
        top: 24px;
    }

    #faq .img_box {
        width: 100%;
        height: 100%;
        margin-top: 30px;
    }

    #faq .bg {
        padding-top: 30px;
    }
	
	#faq .text_box {
	margin-bottom: 0;
}
}