/* Custom CSS for GAS App Development Service */
/* TailwindCSSの標準機能で対応できない部分のみ */

/* フェードインアニメーション（JavaScript制御用） */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQアコーディオンのmax-height制御 */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* アクセシビリティ: モーション削減設定 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}