/* ========================================
   UTILITIES STYLES - 汎用ユーティリティスタイル
   アクセシビリティ・アニメーション制御・汎用クラス
   ======================================== */

/* ========== アクセシビリティ対応 ========== */

/* アニメーション削減設定（ユーザー設定に基づく） */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== アニメーション制御ユーティリティ ========== */

/* アニメーション一時停止クラス */
.animation-paused * {
    animation-play-state: paused !important;
}

/* ========== 将来の拡張用 ========== */
/* 追加のユーティリティクラスはここに配置予定 */ 