@charset "UTF-8";
/* js_ss_new_ctrl.js のhash(#)表示制御 */
/* head 内、js_ss_new_ctrl.js の前に設置 */

html {
  scroll-behavior: auto; /* CSSのスムーススクロールを無効化 */
}
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.loaded {
  opacity: 1.0;
}