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

:root {
  /* 共通カラー */
  --color-red: #e53939;
  --color-blue: #125ab2;
  --color-pink: #ff8080;
  --color-light-blue: #86b2ff;
}

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: "Quicksand", "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  color: #1a1311;
  line-height: 1.5;
  background-color: #f7f5ef;
}

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