@charset "utf-8";

/* color */
:root {
  --gray-color-gray-50: #f7f9fc;
  --gray-color-gray-100: #f0f2f5;
  --gray-color-gray-150: #dde1e6;
  --gray-color-gray-200: #c1c7cd;
  --gray-color-gray-500: #697077;
  --gray-color-gray-900: #121619;
}

/* font */
.heading0 {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.heading1 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 42px */
  letter-spacing: -0.56px;
}

.body1 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
}

.subtitle3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.28px;
}

.caption1 {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: -0.24px;
}

/* flex-direction */
.column {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

/* layout */
.justify_between {
  justify-content: space-between;
}

.justify_center {
  justify-content: center;
}

.align_center {
  align-items: center;
}

/* gap */
.g42 {
  gap: 42px;
}

.g32 {
  gap: 32px;
}

.g24 {
  gap: 24px;
}

.g20 {
  gap: 20px;
}

/* text-align */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}
