@charset "UTF-8";
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 16px;
    font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1280px) {
    html.is-noscroll,
body.is-noscroll {
        min-height: 100%;
        min-height: 100dvh;
    }
}
@media screen and (max-width: 767px) {
    html,
body {
        font-size: 1rem;
    }
}

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

/* ---------------------------------------------
*   <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: 60px 0 0 0;
    border: 0;
    margin: -60px 0 0 0;
    background: 0;
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    hr[id^=anchor-] {
        padding-top: 60px;
        margin-top: -60px;
    }
}