@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;
}

/* ---------------------------------------------
*   Web Fonts
--------------------------------------------- */
/*  Noto Sans CJK jp
--------------------------------------------- */
@font-face {
    font-weight: 100;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Thin.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Thin.woff") format("woff");
}

@font-face {
    font-weight: 200;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Light.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Light.woff") format("woff");
}

@font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-DemiLight.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-DemiLight.woff") format("woff");
}

@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Regular.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Regular.woff") format("woff");
}

@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Medium.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Medium.woff") format("woff");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Bold.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Bold.woff") format("woff");
}

@font-face {
    font-weight: 900;
    font-style: normal;
    font-family: 'Noto Sans Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Black.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansCJKjp-Black.woff") format("woff");
}

/*  Noto Sans Mono CJK jp
--------------------------------------------- */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Noto Sans Mono Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansMonoCJKjp-Regular.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansMonoCJKjp-Regular.woff") format("woff");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Noto Sans Mono Japanese';
    src: url("../_fonts/noto-sans-cjk-jp/NotoSansMonoCJKjp-Bold.eot?#iefix") format("embedded-opentype"), url("../_fonts/noto-sans-cjk-jp/NotoSansMonoCJKjp-Bold.woff") format("woff");
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #444444;
    font-weight: 500;
    font-size: 16px;
    font-family: "Noto Sans Japanese", "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: 4.26667vw;
    }
}

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

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

p:not(:last-child) {
    margin-bottom: 1em;
}

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

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