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

.mb-0 {
  margin-bottom: 0px;
}

.ml-auto {
  margin-left: auto;
}

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

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

.w-full {
  width: 100%;
}

.table-fixed {
  table-layout: fixed;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.gap-\[10px_20px\] {
  gap: 10px 20px;
}

.gap-\[20px_60px\] {
  gap: 20px 60px;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.break-keep {
  word-break: keep-all;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.leading-loose {
  line-height: 2;
}

.fz13 {
  font-size: calc(13rem / 16);
}

.fz15 {
  font-size: calc(15rem / 16);
}

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

.fz28 {
  font-size: calc(28rem / 16);
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.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;
}

/* mt-section */

.mt-section-xs {
  margin-top: clamp(4.375rem, 3.523rem + 4.26vw, 6.25rem);
  /* val：70px-100px | view：320px-1024px */
}

.mt-section-s {
  margin-top: clamp(4.375rem, 2.955rem + 7.1vw, 7.5rem);
  /* val：70px-120px | view：320px-1024px */
}

.mt-section-m {
  margin-top: clamp(5rem, 3.011rem + 9.94vw, 9.375rem);
  /* val：80px-150px | view：320px-1024px */
}

.mt-section-l {
  margin-top: clamp(6.25rem, 1.989rem + 21.31vw, 15.625rem);
  /* val：100px-250px | view：320px-1024px */
}

/* padding */

.pt-section-xs {
  padding-top: clamp(4.375rem, 3.523rem + 4.26vw, 6.25rem);
  /* val：70px-100px | view：320px-1024px */
}

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