@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
/* =========================
base
========================= */
body{
    color: #333;
    background: #fff;

    font-family:
    "Yu Gothic UI",
    "Yu Gothic",
    "Hiragino Sans",
    "Noto Sans JP",
    "Meiryo",
    sans-serif;

    line-height: 1.6;
    letter-spacing: .08em;

    -webkit-text-size-adjust: 100%;
}

/* ハンバーガー開いた時 */
body.fixed{
    overflow: hidden;
}

img{
    width: 100%;
    height: auto;
    display: block;

    user-select: none;
    -webkit-user-drag: none;
}

a{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
}

button{
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

/* エラーページ */
.page-default{
    margin: 200px auto 100px;
    width: 80%;
}
.page-default .inner h1{
    color: #062C5E;
}
.page-default .inner a{
    padding: 10px 50px;
    background-color: #062C5E;
    border-radius: 999px;
    color: #fff;
}
.page-default .inner p{
    margin-bottom: 50px;
}
