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