@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background-color: #fbfbfb;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, button {
  font-family: inherit;
}