@charset "utf-8";

.u-text-center {
  text-align: center !important;
}
.u-text-right {
  text-align: right !important;
}
.u-font-code {
  font-family: var(--font-code);
  font-variant-ligatures: contextual;
  letter-spacing: 0.02em;
}
.u-en {
  font-family: var(--font-code);
  font-variant-ligatures: contextual;
}
.u-fw-bold {
  font-weight: bold !important;
}
.u-pre-wrap {
  white-space: pre-wrap;
}
.u-text-xs {
  font-size: 0.75rem !important;
}
.u-text-sm {
  font-size: 0.85rem !important;
}
.u-text-md {
  font-size: 1rem !important;
}
.u-text-lg {
  font-size: 1.25rem !important;
}
.u-text-xl {
  font-size: 1.5rem !important;
}
.u-text-xxl {
  font-size: 2rem !important;
}
.u-text-highlight {
  color: var(--color-highlight, #83ccd2) !important;
}
.u-text-action,
.u-text-danger {
  color: var(--color-action, #d3381c) !important;
}
.u-text-white {
  color: #fff !important;
}
.u-text-corp {
  color: var(--color-corp-base) !important;
}
.u-text-dark {
  color: #333 !important;
}
.u-text-gray {
  color: var(--color-light-text-muted, #4b5563) !important;
}

.u-bg-transparent {
  background-color: transparent !important;
}
.u-bg-dark {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.u-bg-corp {
  background-color: var(--color-corp-base) !important;
}
.u-bg-action {
  background-color: var(--color-action, #d3381c) !important;
  border-color: var(--color-action, #d3381c) !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-10 {
  margin-top: 10px !important;
}
.u-mt-20 {
  margin-top: 20px !important;
}
.u-mt-30 {
  margin-top: 30px !important;
}
.u-mt-40 {
  margin-top: 40px !important;
}
.u-mb-10 {
  margin-bottom: 10px !important;
}
.u-mb-20 {
  margin-bottom: 20px !important;
}
.u-mb-30 {
  margin-bottom: 30px !important;
}
.u-mb-40 {
  margin-bottom: 40px !important;
}
.u-ml-10 {
  margin-left: 10px !important;
}
.u-ml-20 {
  margin-left: 20px !important;
}
.u-mr-10 {
  margin-right: 10px !important;
}

.u-p-10 {
  padding: 10px !important;
}
.u-p-20 {
  padding: 20px !important;
}
.u-p-30 {
  padding: 30px !important;
}
.u-p-40 {
  padding: 40px !important;
}
.u-pt-20 {
  padding-top: 20px !important;
}
.u-pb-0 {
  padding-bottom: 0 !important;
}
.u-mt-auto {
  margin-top: auto !important;
}
@media screen and (max-width: 768px) {
  .u-p-40 {
    padding: 24px !important;
  }
}

.u-d-block {
  display: block !important;
}
.u-hidden {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}

.u-max-w-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.u-max-w-800 {
  max-width: 800px;
}
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.u-w-100 {
  width: 100% !important;
}
.u-min-h-200 {
  min-height: 200px !important;
}

.u-flex-gap-20 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.u-justify-between {
  justify-content: space-between;
}
.u-justify-center {
  justify-content: center;
}
.u-align-center {
  align-items: center;
}
.u-gap-10 {
  gap: 10px;
}
.u-gap-20 {
  gap: 20px;
}

.u-border-highlight {
  border: 1px solid rgba(131, 204, 210, 0.3) !important;
}
.u-border-none {
  border: none !important;
}
.u-border-dark {
  border-color: var(--color-light-border, #d1d5db) !important;
}
.u-border-top-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.u-radius-4 {
  border-radius: 4px;
}
.u-radius-8 {
  border-radius: 8px;
}
.u-opacity-5 {
  opacity: 0.5 !important;
}
.u-opacity-7 {
  opacity: 0.7 !important;
}
.u-opacity-8 {
  opacity: 0.8 !important;
}
.u-opacity-9 {
  opacity: 0.9 !important;
}

.u-resize-y {
  resize: vertical !important;
}
.u-text-underline {
  text-decoration: underline !important;
}
