@charset "utf-8";

:root {
  /* カラー */
  --color-base: #346381;
  --color-accent:#F6F6F6;
  /* フォント */
  --font-en: "Noto Sans JP", sans-serif;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--color-base);
  background: #fff;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
  position: relative;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

a {
  transition: all 0.3s ease;
}

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