*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
a {
    color: var(--color-text);
    transition: all .5s;
    text-decoration: none;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.small, small {
    font-size: .7em;
}
/* レスポンシブ */
.pc {
    display: none;
}
.sp {
    display: block;
}
html {
    font-size: 14px;
}
body {
    color: #fff;
    font-family: "Zen Kaku Gothic New", system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    overflow-x: hidden;
    letter-spacing: 0.05rem;
    line-height: 1.7;
    margin: 0;
}
body {
    background: #00326b;
    line-height: 1.8;
}
.font-en {
    font-family: "Kumbh Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
        "YOPQ"<thin stroke>;
}
/* Reveal */
.js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease, transform .8s ease;
}
.js-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (min-width: 768px) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
    html {
        font-size: 16px;
    }
}