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

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #382b20;
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "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 {
    overflow-x: hidden;
    line-height: 1.5;
}

body.loding {
    overflow: hidden;
    height: 100vh;
}

body.loding.is-load {
    overflow-y: visible;
    height: auto;
}

body.js-menu-opened {
    overflow: hidden !important;
    height: 100vh !important;
}

@media screen and (max-width: 750px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
    body.js-menu-opened-2 {
        overflow: hidden;
        height: 100vh;
    }
}

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

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

/* ---------------------------------------------
*   font
--------------------------------------------- */
@font-face {
    font-family: 'GFSDidot';
    src: url(../font/GFSDidot-Regular.ttf);
}

/*  Butler
--------------------------------------------- */
@font-face {
    font-weight: 100;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_Ultra_Light.otf") format("opentype");
}

@font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_Light.otf") format("opentype");
}

@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_Regular.otf") format("opentype");
}

@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_Medium.otf") format("opentype");
}

@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_Bold.otf") format("opentype");
}

@font-face {
    font-weight: 800;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_ExtraBold.otf") format("opentype");
}

@font-face {
    font-weight: 900;
    font-style: normal;
    font-family: 'Butler';
    src: url("../font/Butler/Butler_Black.otf") format("opentype");
}
