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

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #0B0B0B;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    min-width: 1024px;
    background-color: #F8F8F8;
}

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

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

/* ---------------------------------------------
*   display-none class
--------------------------------------------- */
.display-none {
    display: none !important;
}