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

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #141414;
    font-size: 16px;
    font-family: "Source Sans Pro", "BIZ UDGothic", sans-serif;
    -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 1rem;
    }
}

@media screen and (max-width: 750px) {
    html.is-noscroll {
        min-height: 100%;
        min-height: 100dvh;
    }
}

body {
    line-height: 1.5;
    overflow: hidden;
}
@media screen and (max-width: 750px) {
    body {
        line-height: 1.5;
        min-width: 320px;
    }
    .is-noscroll body {
        position: fixed;
        width: 100%;
        height: 100%;
        height: 100dvh;
        box-sizing: border-box;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
hr[id^=anchor-] {
    display: block;
    width: auto;
    height: 0;
    padding: 104px 0 0 0;
    border: 0;
    margin: -104px 0 0 0;
    background: 0;
    pointer-events: none;
}
@media screen and (max-width: 750px) {
    hr[id^=anchor-] {
        padding-top: 50px;
        margin-top: -50px;
    }
}

/* ---------------------------------------------
*   gdpr-area
--------------------------------------------- */
.gdpr-area {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
.gdpr-area__container {
    box-sizing: content-box;
}