/* カスタムスタイル */
* { -webkit-tap-highlight-color: transparent; }

/* スマホ向けフォーカス調整 */
input, select, textarea, button {
  outline: none;
}

/* スクロールバー細め */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.2s ease-out; }
