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

::-moz-selection {
    background-color: #1FB161;
    color: #F9F5D1;
}

::selection {
    background-color: #1FB161;
    color: #F9F5D1;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #683605;
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 751px) {
    html,
    body {
        font-size: 1rem;
    }
}

body {
    line-height: 1.5;
    min-width: 320px;
    font-feature-settings: "palt";
}
@media screen and (min-width: 751px) {
    body {
        line-height: 1.5;
    }
}

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

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