@charset "utf-8";

/* CSS Document */
html {
  font-size : 62.5%;
  /* 16px * 62.5% = 10px */
  width     : 100%;
  box-sizing: border-box;
}

body {
  color: #212529;
  font-family: "Inter",
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-size  : 1.6em;
  text-align : left;
  background : #F4F3ED;
  font-weight: 400;
  font-style : normal;
}

@supports (font-variant-east-asian: normal) {
  body {
    font-family: "Inter", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 400;
  }
}

a {
  color: #212529;
}

img,
svg {
  vertical-align: bottom;
  width         : 100%;
  height        : auto;
}


.none {
  display: none;
}

* {
  margin : 0;
  padding: 0;
}

* {
  list-style: none;
}

* {
  text-decoration: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing        : border-box;
}
