/* Font Utilities */
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-shippori-mincho {
  font-family: "Shippori Mincho", serif;
}

/* Text size Utilities */
.text-5xl {
  font-size: var(--text-5xl);
}

.text-4xl {
  font-size: var(--text-4xl);
}

.text-3xl {
  font-size: var(--text-3xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-base {
  font-size: var(--text-base);
}

.text-sm {
  font-size: var(--text-sm);
}
.text-xs {
  font-size: var(--text-xs);
}
/* Font-weight Utilities */
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

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

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

/* Text line height Utilities */
.line-height-100 {
  line-height: 1;
}
.line-height-120 {
  line-height: 1.2;
}

.line-height-150 {
  line-height: 1.5;
}

.line-height-180 {
  line-height: 1.8;
}

.line-height-220 {
  line-height: 2.2;
}

/*Text align Utilities */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
/*Flex Utilities*/
.flex {
  display: flex;
}

.block {
  display: block;
}

.flex-1 {
  flex: 1 1 auto;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}

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

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

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

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

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

.flex-align-baseline {
  align-items: baseline;
}
.gap-0-5 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

.basis-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.w-full {
  width: 100%;
}

@media (min-width: 768px) {
  .md\:text-base {
    font-size: var(--text-base);
  }

  .md\:text-lg {
    font-size: var(--text-lg);
  }

  .md\:text-3xl {
    font-size: var(--text-3xl);
  }
  .md\:text-5xl {
    font-size: var(--text-5xl);
  }

  .md\:text-xl {
    font-size: var(--text-xl);
  }

  .md\:text-sm {
    font-size: var(--text-sm);
  }

  .md\:gap-2 {
    gap: 2rem;
  }

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

  .tab-basis-1-2 {
    flex: 0 0 calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}

@media (min-width: 1024px) {
  .pc-flex-row {
    flex-direction: row;
  }

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

  .pc-flex-align-start {
    align-items: flex-start;
  }

  .pc-basis-1-3 {
    flex: 0 0 calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
  }

  .pc-basis-2-3 {
    flex: 0 0 calc((((100% - 4rem) / 3) * 2) + 4rem);
    max-width: calc((((100% - 4rem) / 3) * 2) + 4rem);
  }

  .pc-basis-1-4 {
    flex: 0 0 calc((100% - 3rem) / 4);
    max-width: calc((100% - 3rem) / 4);
  }

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

  .pc-mr-4 {
    margin-right: 4rem;
  }

  .pc-max-w-48rem {
    max-width: 48rem;
  }
}

/* Margin Utilities */
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}

.mb-8 {
  margin-bottom: 8rem;
}
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-8 {
  margin-top: 8rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}
.mr-4 {
  margin-right: 4rem;
}
.mr-6 {
  margin-right: 6rem;
}
.mr-8 {
  margin-right: 8rem;
}
.ml-1 {
  margin-left: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.ml-4 {
  margin-left: 4rem;
}
.ml-6 {
  margin-left: 6rem;
}
.ml-8 {
  margin-left: 8rem;
}

@media (min-width: 768px) {
  .md\:mb-5 {
    margin-bottom: 5rem;
  }

  .md\:mb-8 {
    margin-bottom: 8rem;
  }

  .md\:mt-4 {
    margin-top: 4rem;
  }

  .md\:mt-6 {
    margin-top: 6rem;
  }

  .md\:mt-8 {
    margin-top: 8rem;
  }

  .md\:my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .md\:ml-2 {
    margin-left: 2rem;
  }
}
.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}
.mx-6 {
  margin-left: 6rem;
  margin-right: 6rem;
}
.mx-8 {
  margin-left: 8rem;
  margin-right: 8rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}
/* Color Utilities */
.text-black {
  color: var(--text-black);
}
.text-muted {
  color: var(--text-muted);
}
.text-white {
  color: var(--text-white);
}
.text-gradation {
  background: var(--text-gradation);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bg-white {
  background-color: var(--bg-white);
}

.bg-black {
  background-color: var(--bg-black);
}
/*Padding Utilities*/
.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}
.px-8 {
  padding-left: 32px;
  padding-right: 32px;
}
.pb-1 {
  padding-bottom: 4px;
}
.pb-2 {
  padding-bottom: 8px;
}
.pb-4 {
  padding-bottom: 16px;
}
.pb-6 {
  padding-bottom: 24px;
}
.pb-8 {
  padding-bottom: 32px;
}
.pt-1 {
  padding-top: 4px;
}
.pt-2 {
  padding-top: 8px;
}
.pt-4 {
  padding-top: 16px;
}

@media (min-width: 768px) {
  .md\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/*Section Utilities*/
.section-lg {
  padding: 4rem 1rem;
}
.section-md {
  padding: var(--space-section-y) 5vw;
}
@media (min-width: 769px) {
  .section-lg {
    padding: var(--space-section-inset);
  }
}
/*Br Utilities*/
.br-pc-none {
  display: inline;
}

@media (min-width: 768px) {
  .br-pc-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .br-sp-none {
    display: none;
  }
}
