/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* ナビゲーションの背景変化アニメーション */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* モバイルメニューのアニメーション */
#mobile-menu.active {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQのアコーディオン */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.plus-icon {
    transition: transform 0.3s ease;
}