*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    font-size: 16px;
    line-height: 2;
    font-family: "futura-pt", "zen-kaku-gothic-new", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--clr-text);
    background: var(--clr-bg);
}

body,
main,
article,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
    display: block;
    max-width: 100%;
    height: auto;
}

video {
    display: block;
    width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #444;
    -webkit-tap-highlight-color: transparent;
}

/* 選択範囲 */
::selection {
    background: var(--clr-text);
    color: #fff;
}

/* スクロールバー非表示 (webkit) */
::-webkit-scrollbar {
    display: none;
}