*:focus {
    outline: none;
}
.sp-seo-faq ul {
	padding: 0;
}
.sp-seo-faq li {
	list-style: none;
}
.faq-question {
	position: relative;
    overflow: hidden;
    margin-top: 8px;
	padding: 24px;

    border-radius: 16px;
    border: 1px solid #171717;
    background: #fff;
}

.faq-link {
    position: relative;
    cursor: pointer;
    margin: -24px;
    padding: 24px 50px 24px 24px;
    font-size: 18px;
    line-height: 1.5;
	list-style: none;
    background: #F4F4F4;
    font-weight: 600;
}
.faq-link:after {
    position: absolute;
    content: "❯";
    top: 24px;
    right: 26px;
    pointer-events: none;
    transition: .25s;
    transform: rotate(90deg);
}
.faq-open.faq-link:after {
	transform: rotate(-90deg);
    transition: transform 0.5s;
}
.faq-text {
	font-size: 16px;
    margin-top: 40px;
}
.faq-text ul li:before {
	content: '✓\00a0';
    display: inline-block;
}
.faq-title{
	color: #000;
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}