@font-face {
    font-family: 'PretendardJP-Regular';
    /* 任意のフォント名 */
    src: url('../font/PretendardJP-Regular.otf') format('opentype');
    /* ファイルパスと形式 */
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'PretendardJP-Regular', sans-serif;
    /* フォールバックを設定 */
}

body {
    background-color: #921E1C;
    width: 100%;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

a {
    width: 100%;
    height: 100%;
    display: block;
}

