@font-face {
  font-family: "kiwi";
  src: url(fonts/KiwiMaru-Light.ttf);
}
@font-face {
  font-family: "kiwi_bold";
  src: url(fonts/KiwiMaru-Regular.ttf);
}
* {
  font-family: "kiwi";
  position: relative;
}
html,
body {
  font-size: calc(6px + 1.25vw);
  line-height: 1.5;
  padding: 0;
  margin: 0;
  color: #606060;
  overflow-x: hidden;
}
.bold {
  font-weight: bold;
  font-family: "kiwi_bold";
}
table {
  border-collapse: collapse;
  height: 1rem;
}
td {
  border: solid 1px;
  min-width: 1.2rem;
  padding: 0.2rem 0.3rem;
}
.f {
  display: flex;
}
.v {
  height: 100%;
  flex-direction: column;
}
.fa {
  display: flex;
  justify-content: space-around;
}
.fb {
  display: flex;
  justify-content: space-between;
}
.fe {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.fac {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.fbc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fbe {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.fbs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.fcc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fec {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}
.fee {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: flex-end;
}
.fes {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: flex-start;
}
.fxc {
  display: flex;
  align-items: center;
}
.fxe {
  display: flex;
  align-items: flex-end;
}
.fxs {
  display: flex;
  align-items: flex-start;
}
.wrap {
  flex-wrap: wrap;
}
.nowrap {
  flex-wrap: nowrap;
}
.f24 {
  font-size: 0.8rem;
}
.f48 {
  font-size: 1.6rem;
}
.f60 {
  font-size: 2rem;
}
.f72 {
  font-size: 2.4rem;
}
.f84 {
  font-size: 2.8rem;
}
.circle {
  border-radius: 50%;
}
.tc {
  text-align: center;
}
.te {
  text-align: end;
}
.vrev {
  flex-direction: column-reverse;
}
.hrev {
  flex-direction: row-reverse;
}
.pointer {
  cursor: pointer;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.bluebutton {
  border-radius: 0.5em;
  color: white;
  background-color: #818dbf;
  padding: 0.1em 0.5em;
  border: 0;
}

::placeholder {
  color: #cccccc;
}

@media screen and (max-width: 1200px) {
  .spv {
    flex-direction: column;
  }
  .spvrev {
    flex-direction: column-reverse;
  }
  .spfxs {
    display: flex;
    align-items: flex-start;
  }
}
