*:focus {
    outline: none;
}
.sp-seo-faq {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
}
.sp-seo-faq ul {
	padding: 0;
}
.sp-seo-faq li {
	list-style: none;
}
.faq-question {
	position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 8px;
    background-color: #fff;
}
.faq-link {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.5;
	list-style: none;
}
.faq-link:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: bold;
    color: #000;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-open.faq-link:after {
    content: '-';
    color: #000;
}
.faq-text {
	font-size: 16px;
	margin-top: 10px;
}
.faq-text ul li:before {
	content: '✓\00a0';
    display: inline-block;
}
.faq-title{
	color: #000;
    text-align: left;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}