@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: #333;
    font-size: 16px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", 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: 3.73333vw;
    }
}

body {
    min-width: 1220px;
    line-height: 1.75;
}

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

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

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

/* ---------------------------------------------
*   <sup> tag
*   <sub> tag
--------------------------------------------- */
sup,
sub {
    font-size: .7em;
}

/* ---------------------------------------------
*  Noto Sans JP
--------------------------------------------- */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: "Noto Sans JP";
    src: url("/common/fonts/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2"), url("/common/fonts/NotoSansJP/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: "Noto Sans JP";
    src: url("/common/fonts/NotoSansJP/NotoSansJP-Medium.woff2") format("woff2"), url("/common/fonts/NotoSansJP/NotoSansJP-Medium.woff") format("woff");
}

/* ---------------------------------------------
*  Noto Sans SC
--------------------------------------------- */
@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: "Noto Sans SC";
    src: url("/common/fonts/NotoSansSC/NotoSansSC-Bold.woff2") format("woff2"), url("/common/fonts/NotoSansSC/NotoSansSC-Bold.woff") format("woff");
}
