@charset "UTF-8";

    /* スクロールバー非表示（見た目をきれいに） */
    .scrollbar-hide::-webkit-scrollbar {
        display: none;
    }
    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      overflow-x: hidden; /* 横スクロール防止 */
    }