/* faq.css - モバイル最適化対応 */

.faq-content-area {
    padding: 80px 0 100px;
    background-color: #fff;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c0392b; /* アクセントカラー */
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #c0392b;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.faq-question::before {
    content: "Q";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-size: 1.4rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 35px;
    color: #555;
}

.faq-answer::before {
    content: "A";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #333;
}

.faq-cta-box {
    text-align: center;
    background: #fdf2f2;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 60px;
}

.faq-cta-box p {
    margin-bottom: 20px;
    font-weight: 500;
}

/* モバイル向け最適化 */
@media (max-width: 768px) {
    .faq-content-area {
        padding: 40px 0 60px;
    }

    .page-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}