@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

/* iOS のスクロールを滑らかにする */
body {
    -webkit-overflow-scrolling: touch;
}
/* スクロールアニメーションの定義 */
@keyframes slowScrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

body {
    scroll-behavior: smooth;
}