body {
    font-family: "M PLUS 1p";
}

/* -----------------------------
   リセット＆基本レイアウト
----------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -----------------------------
   背景動画
----------------------------- */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}