@charset "UTF-8";

.faqArea {
    padding: 12rem 1rem 6rem 1rem;
    background: #f5f5f5;
}

.faqArea .inner {
    max-width: 780px;
    margin: 0 auto;
}

.faqArea h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 48px;
    letter-spacing: 0.03em;
}

.faqArea h2 span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #e5a800;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-question {
    background: #f5c200;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-question::before {
    content: 'Q.';
    font-size: 16px;
    font-weight: 700;
    color: #222;
    flex-shrink: 0;
}

.faq-answer {
    padding: 20px 24px;
    font-size: 14.5px;
    color: #333;
    line-height: 1.85;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.faq-answer::before {
    content: 'A.';
    font-size: 16px;
    font-weight: 700;
    color: #f5c200;
    flex-shrink: 0;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
	.faqArea {
		padding: 6rem 1rem;
	}
}