@charset "utf-8";

:root {
  --ff-en: "Inter", sans-serif;
  --ff-ja: "Noto Sans JP", sans-serif;
  --ff-en2: "Lato", sans-serif;
  --ff-zen: "Zen Kaku Gothic New", sans-serif;
  /* カラー */
  --color-text: #333333;
  --color-white: #ffffff;
  --color-accent: #008984;
}

body {
  font-family: var(--ff-ja);
  color: var(--color-text);
  background: #f4f4f4;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  color: inherit !important;
  opacity: 0.7;
  cursor: pointer !important;
  text-decoration: none !important;
}


