#faq {
	width: 100%;
}
#faq .inner {
	width: 90%;
	max-width: 720px;
	margin: 0 auto 160px;
}
#faq .inner h4 {
    color: #3C3C3C;
    font-family: Kiwi Maru;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    text-align: left;
    margin-bottom: 40px;    
}
#faq .inner .faq_blk {
    border-radius: 10px;
    background-color: #FFFFFF;
    padding: 16px;
    width: 100%;
    margin-bottom: 20px;
}
#faq .inner .faq_blk h3 {
    color: #3C3C3C;
    font-family: Kiwi Maru;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7em;
    text-align: left;    
    position: relative;
    padding: 0 32px;
}
#faq .inner .faq_blk h3::before,
#faq .inner .faq_blk h3::after {
    position: absolute;
    top: 0.5;
    width: 24px;
    height: 24px;
    background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}
#faq .inner .faq_blk h3::before {
    right: 0;
    background-image: url('../images/icon/icon_arrow_down.svg');
}
#faq .inner .faq_blk h3::after {
    left: 0;
    background-image: url('../images/icon/icon_question_gray.svg');
}
/*active*/
#faq .inner .faq_blk h3.active::before {
    top: 35%;
    -webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
#faq .inner .faq_blk .faq_inner {
    width: 100%;
}
#faq .inner .faq_blk .faq_inner.hidden {
    overflow: hidden;
}
#faq .inner .faq_blk .faq_inner .faq_txt {
    display: none;
    margin-top: 16px;
    padding-left: 32px;
    position: relative;
}
#faq .inner .faq_blk .faq_inner .faq_txt::before {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url('../images/icon/icon_chat_bubble_gray.svg');
    background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}
#faq .inner .faq_blk .faq_inner .faq_txt p {
    color: #3C3C3C;
    font-family: Kiwi Maru;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7em;
    text-align: left;    
}



/*  768px  */
@media screen and (max-width: 768px) {

    #faq {
        width: 100%;
    }
    #faq .inner {
        width: 100%;
        max-width: 89.7%;
        margin: 0 auto 40.96vw;
    }
    #faq .inner h4 {
        font-size: 5.12vw;
        margin-top: 5.12vw;
        margin-bottom: 10.24vw;    
    }
    #faq .inner .faq_blk {
        border-radius: 2.56vw;
        padding: 2.048vw;
    }
    #faq .inner .faq_blk h3 {
        font-size: 3.584vw;
        padding: 0 8.192vw;
    }
    #faq .inner .faq_blk h3::before,
    #faq .inner .faq_blk h3::after {
        width: 6.144vw;
        height: 6.144vw;
    }
    #faq .inner .faq_blk h3::before {
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    /*active*/
    
    #faq .inner .faq_blk .faq_inner .faq_txt {
        margin-top: 4.096vw;
        padding-left: 8.192vw;
    }
    #faq .inner .faq_blk .faq_inner .faq_txt::before {
        width: 6.144vw;
        height: 6.144vw;
    }
    #faq .inner .faq_blk .faq_inner .faq_txt p {
        font-size: 3.584vw;  
    }

}