@charset "utf-8";


.faq h5{
    margin-bottom: 20px;
}
.faq .c-category h5{
    margin-bottom: 10px;
}
.c-category ul{
    display: flex;
    flex-wrap: wrap;
}
.c-category ul li{
    width: 30%;
    margin: 0 15px 15px 0;
    background-color: #f2f4f7;
    border: 1px solid #b8b9b9;
    display: flex;
}
.c-category ul li a{
    padding: 15px;
    display: flex;
    text-decoration: none;
    color: #000;
    align-items: center;
    width: 100%;
}
.c-category ul li img{
    width: 30px;
    height: 30px;
    margin-right: 4%;
}

.faq .c-sub-section-title{
    margin: 25px 0 ;
}
.faq dl {
    margin-left: 1rem;
}
.faq dl dt{
    margin-bottom: 10px;
    padding-left: 40px;
    position: relative;
    font-weight: bold;
}

.faq dl dt:before{
    position: absolute;
    content:"Q";
    background:#000;
    color: #FFF;
    border-radius:50%;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: normal;
}

.faq dl dd{
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #b8b9b9;
}
.faq dl dd:last-child{
    border-bottom: none;
}
.faq dl dd:before{
    position: absolute;
    content:"A";
    background:#ff0000;
    color: #FFF;
    border-radius:50%;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 1rem;
}
.gray_title {
	background-color: #f2f4f7;
	padding: 5px 21px; 
}
.faq_icon{
    width: 30px;
}

@media(max-width:768px) {
    .c-category ul li{
    width: 47%;
    }
    .c-category ul li{
    margin: 0 10px 10px 0;
    }
}

@media(max-width:480px) {
    .faq dl{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .faq dl dt,.faq dl dd{
        padding-left: 30px;
    }
}