:root {
  --gray: #f5f5f5;
  --black: #000000;
  --blue: #0046a4;
  --dark-blue: #012c66;
  --light-blue: #589eff;
  --sky-blue: #8fd3e2;
  --white: #ffffff;
  --red: #d83f1d;
  --light-red: #ff470f;
  --green: #33633e;
  --dark-green: #3b6442;
  --light-green: #00af1a;
  --navi: #fdfbee;
  --yellow: #fff7c9;
  --gray: #898989;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: Noto Sans JP;
}

header,
main,
footer {
  width: 100%;
}

.container {
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background-color: unset;
}

a {
  text-decoration: none;
  color: #001c43;
}

ul,
li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }

  .pc-only {
    display: none !important;
  }
}
