body {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
button {
  font-family: inherit;
}
ul, li {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}

body {
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
}

.isMobile {
  display: none;
}


@media (max-width: 767px){
  .isMobile {
    display: block;
  }
}
