@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: #000;
    font-size: 16px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

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

html.js-sp-menu-opened {
    height: 100vh;
    height: 100dvh;
}

body {
    line-height: 1.5;
}

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

.js-sp-menu-opened 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;
}

/* ---------------------------------------------
*   anchor
--------------------------------------------- */
#anchor-about,
#anchor-showcase,
#anchor-feature,
#anchor-quality,
#anchor-select,
#anchor-flow,
#anchor-plan,
#anchor-voice,
#anchor-faq {
    margin-top: -80px;
    padding-top: 80px;
}

@media screen and (max-width: 1350px) {
    #anchor-about,
    #anchor-showcase,
    #anchor-feature,
    #anchor-quality,
    #anchor-select,
    #anchor-flow,
    #anchor-plan,
    #anchor-voice,
    #anchor-faq {
        margin-top: -5.92593vw;
        padding-top: 5.92593vw;
    }
}

@media screen and (max-width: 768px) {
    #anchor-about,
    #anchor-showcase,
    #anchor-feature,
    #anchor-quality,
    #anchor-select,
    #anchor-flow,
    #anchor-plan,
    #anchor-voice,
    #anchor-faq {
        margin-top: -12vw;
        padding-top: 12vw;
    }
}
