/* 姫路なかにし矯正歯科 - FAQページスタイル */

/*.orthodontic-faq * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.orthodontic-faq {
    font-family: 'Noto Sans JP', 'Yu Gothic Medium', 'Hiragino Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.orthodontic-faq .faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.orthodontic-faq .faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.orthodontic-faq .faq-category {
    margin-bottom: 40px;
}

.orthodontic-faq .category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 30px;
    padding: 20px 0;
    text-align: center;
}

.orthodontic-faq .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.orthodontic-faq .faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.orthodontic-faq .faq-question {
    padding: 30px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.orthodontic-faq .faq-question:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.orthodontic-faq .question-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

.orthodontic-faq .question-icon {
    font-size: 0.9rem;
    color: #3498db;
    transition: transform 0.3s ease;
    margin-left: 15px;
    min-width: 15px;
}

.orthodontic-faq .faq-item.active .question-icon {
    transform: rotate(180deg);
    color: #666666;
}

.orthodontic-faq .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fafbfc;
}

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

.orthodontic-faq .answer-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    border-left: 3px solid #666666;
    padding-left: 15px;*/
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .orthodontic-faq {
        padding: 20px 15px;
    }

    .orthodontic-faq .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .orthodontic-faq .faq-question {
        padding: 15px 20px;
    }

    .orthodontic-faq .question-text {
        font-size: 1rem;
    }

    .orthodontic-faq .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* アニメーション */
.orthodontic-faq .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: orthodonticFadeIn 0.6s ease forwards;
}

@keyframes orthodonticFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}