@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する
    基本的にタグ自体にスタイルを定義する

Contents:
    base settings
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-weight: 500;
    font-size: 0.625em;
    font-family: "NotoSansCJKjp", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    line-height: 1.4;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

html {
    overflow: auto;
}

@media screen and (min-width: 641px) {
    html {
        min-width: 960px;
    }
}

body {
    overflow-x: hidden;
    min-width: 960px;
    line-height: 1.5;
}

@media screen and (max-width: 640px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    outline: none;
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   sup
--------------------------------------------- */
sup {
    top: 0;
    vertical-align: top;
    font-size: 80%;
}

/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-green {
    background-color: #002E0C;
}

.bg-black {
    background-color: #000;
}

/* ---------------------------------------------
*   Noto Sans CJK JP
--------------------------------------------- */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'NotoSansCJKjp';
    src: url("../font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../font/NotoSansCJKjp-Regular.woff") format("woff"), url("../font/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../font/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}

@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'NotoSansCJKjp';
    src: url("../font/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../font/NotoSansCJKjp-Medium.woff") format("woff"), url("../font/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../font/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Noto Sans CJK JP';
    src: url("../font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../font/NotoSansCJKjp-Bold.woff") format("woff"), url("../font/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../font/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}

/* ---------------------------------------------
*   overwrite
--------------------------------------------- */
#container {
    margin-top: 0 !important;
}
