.w-full {
  width: 100%;
}
/* Padding All Around */
.p-0 {
  padding: 0;
}
.p-0.5 {
  padding: 0.125rem; /* 2px */
}
.p-1 {
  padding: 0.25rem; /* 4px */
}
.p-1.5 {
  padding: 0.375rem; /* 6px */
}
.p-2 {
  padding: 0.5rem; /* 8px */
}
.p-2.5 {
  padding: 0.625rem; /* 10px */
}
.p-3 {
  padding: 0.75rem; /* 12px */
}
.p-3.5 {
  padding: 0.875rem; /* 14px */
}
.p-4 {
  padding: 1rem; /* 16px */
}
.p-5 {
  padding: 1.25rem; /* 20px */
}
.p-6 {
  padding: 1.5rem; /* 24px */
}
.p-7 {
  padding: 1.75rem; /* 28px */
}
.p-8 {
  padding: 2rem; /* 32px */
}
.p-9 {
  padding: 2.25rem; /* 36px */
}
.p-10 {
  padding: 2.5rem; /* 40px */
}

/* Padding X-axis (Horizontal) */
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-0.5 {
  padding-left: 0.125rem; /* 2px */
  padding-right: 0.125rem; /* 2px */
}
.px-1 {
  padding-left: 0.25rem; /* 4px */
  padding-right: 0.25rem; /* 4px */
}
.px-1.5 {
  padding-left: 0.375rem; /* 6px */
  padding-right: 0.375rem; /* 6px */
}
.px-2 {
  padding-left: 0.5rem; /* 8px */
  padding-right: 0.5rem; /* 8px */
}
.px-2.5 {
  padding-left: 0.625rem; /* 10px */
  padding-right: 0.625rem; /* 10px */
}
.px-3 {
  padding-left: 0.75rem; /* 12px */
  padding-right: 0.75rem; /* 12px */
}
.px-3.5 {
  padding-left: 0.875rem; /* 14px */
  padding-right: 0.875rem; /* 14px */
}
.px-4 {
  padding-left: 1rem; /* 16px */
  padding-right: 1rem; /* 16px */
}
.px-5 {
  padding-left: 1.25rem; /* 20px */
  padding-right: 1.25rem; /* 20px */
}
.px-6 {
  padding-left: 1.5rem; /* 24px */
  padding-right: 1.5rem; /* 24px */
}
.px-7 {
  padding-left: 1.75rem; /* 28px */
  padding-right: 1.75rem; /* 28px */
}
.px-8 {
  padding-left: 2rem; /* 32px */
  padding-right: 2rem; /* 32px */
}
.px-9 {
  padding-left: 2.25rem; /* 36px */
  padding-right: 2.25rem; /* 36px */
}
.px-10 {
  padding-left: 2.5rem; /* 40px */
  padding-right: 2.5rem; /* 40px */
}

/* Padding Y-axis (Vertical) */
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-0.5 {
  padding-top: 0.125rem; /* 2px */
  padding-bottom: 0.125rem; /* 2px */
}
.py-1 {
  padding-top: 0.25rem; /* 4px */
  padding-bottom: 0.25rem; /* 4px */
}
.py-1.5 {
  padding-top: 0.375rem; /* 6px */
  padding-bottom: 0.375rem; /* 6px */
}
.py-2 {
  padding-top: 0.5rem; /* 8px */
  padding-bottom: 0.5rem; /* 8px */
}
.py-2.5 {
  padding-top: 0.625rem; /* 10px */
  padding-bottom: 0.625rem; /* 10px */
}
.py-3 {
  padding-top: 0.75rem; /* 12px */
  padding-bottom: 0.75rem; /* 12px */
}
.py-3.5 {
  padding-top: 0.875rem; /* 14px */
  padding-bottom: 0.875rem; /* 14px */
}
.py-4 {
  padding-top: 1rem; /* 16px */
  padding-bottom: 1rem; /* 16px */
}
.py-5 {
  padding-top: 1.25rem; /* 20px */
  padding-bottom: 1.25rem; /* 20px */
}
.py-6 {
  padding-top: 1.5rem; /* 24px */
  padding-bottom: 1.5rem; /* 24px */
}
.py-7 {
  padding-top: 1.75rem; /* 28px */
  padding-bottom: 1.75rem; /* 28px */
}
.py-8 {
  padding-top: 2rem; /* 32px */
  padding-bottom: 2rem; /* 32px */
}
.py-9 {
  padding-top: 2.25rem; /* 36px */
  padding-bottom: 2.25rem; /* 36px */
}
.py-10 {
  padding-top: 2.5rem; /* 40px */
  padding-bottom: 2.5rem; /* 40px */
}

.mt-2 {
  margin-top: 0.5rem; /* 8px */
}

.mb-8 {
  margin-bottom: 2rem; /* 32px */
}

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

.my-8 {
  margin-top: 2rem; /* 32px */
  margin-bottom: 2rem; /* 32px */
}

/* Space X-axis (Horizontal spacing between child elements) */
.space-x-0 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0;
}

.space-x-0.5 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.125rem; /* 2px */
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.25rem; /* 4px */
}

.space-x-1.5 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.375rem; /* 6px */
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.5rem; /* 8px */
}

.space-x-2.5 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.625rem; /* 10px */
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.75rem; /* 12px */
}

.space-x-3.5 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.875rem; /* 14px */
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem; /* 16px */
}

.space-x-5 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.25rem; /* 20px */
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.5rem; /* 24px */
}

.space-x-7 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1.75rem; /* 28px */
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2rem; /* 32px */
}

.space-x-9 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2.25rem; /* 36px */
}

.space-x-10 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2.5rem; /* 40px */
}

.max-w-780 {
  max-width: 780px;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

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

.justify-center {
  justify-content: center;
}

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

.h-full {
  height: 100%;
}

.gap-4 {
  gap: 1rem;
}

.gap-4 {
  gap: 1rem;
}

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

.flex {
  display: flex;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.bg-fd7cdb {
  background: #fd7cdb;
}
.text-sm {
  font-size: 0.75rem; /* 12px */
  line-height: 1rem; /* 16px */
}
.text-lg {
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}
.text-xl {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
}
.text-2xl {
  font-size: 24px; /* 24px */
  line-height: 2rem; /* 32px */
}
.text-3xl {
  font-size: 30px; /* 30px */
  line-height: 2.25rem; /* 36px */
}
.text-4xl {
  font-size: 2.25rem; /* 36px */
  line-height: 2.5rem; /* 40px */
}
.font-bold {
  font-weight: 700;
}

.text-white {
  color: white;
}

.text-FFFF00 {
  color: #ffff00;
}

.tracking-1 {
  letter-spacing: 1px;
}

.bg-white {
  background: white;
}

.hover\:\bg-white:hover {
  background: white;
}

.bg-fd7cdb {
  background: #fd7cdb;
}

.bg-DF4C3C {
  background: #df4c3c;
}

.bg-ff6f1a {
  background: #ff6f1a;
}

/* Border Radius */
.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem; /* 2px */
}

.rounded {
  border-radius: 0.25rem; /* 4px */
}

.rounded-md {
  border-radius: 0.375rem; /* 6px */
}

.rounded-lg {
  border-radius: 0.5rem; /* 8px */
}

.rounded-xl {
  border-radius: 0.75rem; /* 12px */
}

.rounded-2xl {
  border-radius: 1rem; /* 16px */
}

.rounded-3xl {
  border-radius: 1.5rem; /* 24px */
}

.rounded-full {
  border-radius: 9999px; /* Fully rounded */
}

.recruit-bnr__picture {
  width: 100%;
}

.border {
  border-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-slate-500 {
  border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
}

@media only screen and (max-width: 769px) {
  .sp\:\px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
