/* ===== サービスページ FAQ セクション ===== */
 
/* CVエリア(1カラム中央寄せ) */
.cv-area-single {
    justify-content: center;
}
.cv-area-single .cv-area-col {
    max-width: 480px;
    margin: 0 auto;
}
 
/* FAQ セクション */
.faq-section {
    margin: 60px 0;
}
.faq-heading {
    font-size: 1.5em;
    text-align: center;
    color: #1a3a8a;
    margin-bottom: 30px;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}
.faq-item[open] {
    background-color: #f8f9fb;
}
.faq-question {
    font-weight: bold;
    color: #1a3a8a;
    cursor: pointer;
    padding: 8px 12px;
    list-style: none;
    position: relative;
    padding-right: 32px;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    color: #1a3a8a;
    transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
    content: "-";
}
.faq-answer {
    padding: 12px 12px 16px;
    line-height: 1.8;
    color: #333;
}
