/*
--------------------------------
utility
使い回せる最小のやつ
--------------------------------
*/

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-\[20px\] {
  margin-top: 20px;
}

.mt-\[30px\] {
  margin-top: 30px;
}

.mt-\[35px\] {
  margin-top: 35px;
}

.mt-\[40px\] {
  margin-top: 40px;
}

.mt-\[45px\] {
  margin-top: 45px;
}

.mt-\[50px\] {
  margin-top: 50px;
}

.mt-\[55px\] {
  margin-top: 55px;
}

.mt-\[60px\] {
  margin-top: 60px;
}

.mt-\[70px\] {
  margin-top: 70px;
}

.mt-\[90px\] {
  margin-top: 90px;
}

.flex {
  display: flex;
}

.w-full {
  width: 100%;
}

.max-w-\[240px\] {
  max-width: 240px;
}

.max-w-\[360px\] {
  max-width: 360px;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.border {
  border-width: 1px;
}

.text-\[\#999\] {
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.grid-cols-auto {
  --max-cols: 1fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, var(--min-cols)), var(--max-cols))
  );
}

.visually_hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.fz18{
  font-size: calc(18rem/16);
}

.\[\&_span\]\:inline-block span {
  display: inline-block;
}