/*
    base.css

    This file is the "jewelryreformdotnet" base css.

    [CSS List]
    0.reset.css: The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    1.properties.css: A CSS file containing only custom properties.
    2.base.css: A CSS file that describes the specifications of the entire site.
    3.common.css: A CSS file specifies common styles within your site, including headers and footers.
    4.front-page.css: This CSS file specifies styles for the front page only.

*/


/* TABLE OF CONTENTS
------------------------------------------------------------
* html
* body
* img
------------------------------------------------------------ */

html {
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}
@media screen and (max-width: 512px) {
    html {
        /* -------------------------------
            逕ｻ髱｢蟷�320px font-size: 10px;
            逕ｻ髱｢蟷�480px font-size: 15px;
            逕ｻ髱｢蟷�512px font-size: 16px;
        ------------------------------- */
        font-size: 3.125vw;
    }
}
@media screen and (max-width: 320px) {
    html {
        font-size: 10px;
    }
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
img {
    max-width: 100%;
    vertical-align: top;
}
