@charset "UTF8";
body {
  font-family: "Arial", "Yu Gothic", "游ゴシック";
  margin: 0;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
button:enabled {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:active:enabled {
  transform: translate3d(0, 2px, 0);
}
.font-bold {
  font-weight: bold;
}
.text-underline {
  text-decoration: underline;
}
.font14 {
  font-size: 14px;
}
.height10 {
  height: 10px;
}
.height20 {
  height: 20px;
}
.height30 {
  height: 30px;
}
.height50 {
  height: 50px;
}
.width5 {
  width: 5px;
}
.width50 {
  width: 50px;
}
.width75 {
  width: 75px;
}
.width100 {
  width: 100px;
}
.width125 {
  width: 125px;
}
.width150 {
  width: 150px;
}
.width-full {
  width: 100%;
}
.fsize14 {
  font-size: 14px;
}
.mt-3px {
  margin-top: 3px;
}
.mt-10px {
  margin-top: 10px;
}
.pr-19px {
  padding-right: 19px;
}
.hidden {
  display: none;
}
.text-red {
  color: red;
}
