* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  color: rgba(42, 42, 42, 1);
}

a {
  text-decoration: none;
  color: #000;
}

button {
  cursor: pointer;
}

ul,
li {
  list-style: none;
}

.is-md-show {
  display: none;
}

@media (max-width: 768px) {
  .is-md-show {
    display: block;
  }

  .is-md-hide {
    display: none;
  }
}
