<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する
    基本的にタグ自体にスタイルを定義する

Contents:
    base settings
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #404040;
    font-weight: 500;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 8.53333vw;
    }
}

body {
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    body {
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   &lt;a&gt; tag
--------------------------------------------- */
a {
    outline: none;
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   &lt;img&gt; tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
}
</pre></body></html>