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

/* ---------------------------------------------
*   font-face
--------------------------------------------- */
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium"), local("YuGothic-Medium");
}

@font-face {
    font-weight: bold;
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold"), local("YuGothic-Bold");
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #3D3D3D;
    font-size: 18px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;

    -webkit-text-size-adjust: 100%;
}

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

@media screen and (max-width: 767px) {
    html.is-noscroll {
        min-height: 100vh;
    }
}

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

@media screen and (max-width: 767px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
    .is-noscroll body {
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

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

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