@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --background-light: #fff8ea;
  --background-medium: #ffe0c1;
  --background-dark: #f5ead4;
  --background-green: #83b7b2;
  --text-dark: #040107;
  --text-semi-dark: #333333;
  --text-white: #ffffff;
  --text-green: #6baca6;
  --text-red: #ff0000;
  --button-green: #6aafa8;
  --button-green-shadow: #609f98;
  --button-gray: #cbcbcb;
  --button-gray-shadow: #9d9d9d;
  --button-red: #cc0100;
  --button-red-shadow: #a80100;
  --button-blue: #1da2f4;
  --button-blue-shadow: #1d92d9;
  --border: #707070;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}
body {
  font-family: YuGothic, Yu Gothic, "游ゴシック", "メイリオ", Meiryo, sans-serif;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=global.css.map */