<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: #000;
    font-size: 16px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-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: 4.26667vw;
    }
}

body {
    min-width: 1024px;
    line-height: 1.5;
}

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

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

/* ---------------------------------------------
*   &lt;img&gt; tag
--------------------------------------------- */
img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   &lt;hr&gt; tag as anchor target
--------------------------------------------- */
hr[id^="tab-"] {
    display: block;
    margin: -156px 0 0 0;
    padding: 156px 0 0 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    hr[id^="tab-"] {
        margin-top: -16vw;
        padding-top: 16vw;
    }
}

hr[id^="sec-"] {
    display: block;
    margin: -98px 0 0 0;
    padding: 98px 0 0 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    hr[id^="sec-"] {
        margin-top: -16vw;
        padding-top: 16vw;
    }
}
</pre></body></html>