/* FAQ アコーディオン - デバッグ用強化版 */

section.page-faq-section {
    background: #f8f9fa;
    padding-bottom: 40px;
}

.page-faq-list {
    margin: 25px 0;
}

.page-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    border-left: 4px solid #3d7ad9;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent; /* デバッグ用 */
}

.page-faq-item:hover {
    background: #f0f7ff;
    transform: translateX(3px);
}

.page-faq-item.active {
    border-left-color: #e37d24;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    
}

.page-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    color: #2c5aa0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.page-faq-question:hover {
    background: rgba(61, 122, 217, 0.05);
    color: #1e3a8a;
}

.page-faq-question:focus {
    outline: 2px solid #3b89be;
    outline-offset: 2px;
}

.page-faq-question i.fa-question-circle {
    color: #e37c20;
    flex-shrink: 0;
}

.page-faq-question span {
    flex: 1;
}

.page-faq-arrow {
    color: #6c757d;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.page-faq-item.active .page-faq-arrow {
    transform: rotate(180deg);
    color: #e37d24;
}

.page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: white;
}

.page-faq-item.active .page-faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.page-faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    padding-top: 15px;
}

.page-faq-answer strong {
    color: #ff6b6b;
}
