/****** reset ******/

html {
  margin: 0 !important;
}

/* box-sizingのレイアウト変更 */

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

/* リストのスタイルを削除 */

ol,
ul {
  list-style: none;
}

/* リンクの初期化 */

a {
  text-decoration: none;
  color: inherit;
}

/****** ベース設定 ******/

body {
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #1a1311;
  line-height: 1.5;
  background-color: #f7f5ef;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
