@charset "utf-8";

/* ----------
共通
---------- */

/* ---ResetCssの代わり--- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Serif JP', 'Noto sans JP', 'Robot', sans-serif;
    font-size: 1.6rem;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: 0;
}

ul {
    list-style-type: none;
}

a {
    color: #434747;
    text-decoration: none;
}

.flex {
    display: flex;
}

/* ---------
表示エリアの最大サイズ
---------- */

#wrapper {
    max-width: 960px;
    margin: 0 auto;
}