/* main */
.page-recruit_main {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.main-title-container {
  text-align: center;
  position: relative;
}
.main-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--default-color);
}
.main-text {
  margin-top: 2.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  color: var(--default-color);
}
.main-text-bold {
  font-size: 2.5rem;
  font-weight: 600;
}
.main-bg-logo {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  opacity: 0.05;
}
.main-details {
  margin-top: 10rem;
  max-width: 65.97%;
  width: 100%;
  margin-inline: auto;
}
.details-item {
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 7.5rem;
}
.details-item:first-child {
  border-top: 1px solid rgba(156, 156, 156, 0.3);
  border-bottom: 1px solid rgba(156, 156, 156, 0.3);
}
.details-item:not(:first-child) {
  border-bottom: 1px solid rgba(156, 156, 156, 0.3);
}
.details-term {
  width: 18%;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2;
  color: var(--default-color);
}
.details-desc {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2;
  color: var(--default-color);
}
.main-btn {
  margin-top: 5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 1.5rem;
  }
  .main-text {
    font-size: 1.5rem;
  }
  .main-text-bold {
    font-size: 1.875rem;
  }
  .main-bg-logo {
    top: -20%;
    width: 50%;
  }
  .main-details {
    margin-top: 5rem;
    max-width: 90.98%;
  }
  .details-item {
    flex-direction: column;
    gap: 2.5rem;
  }
  .details-term {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .page-recruit_main {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .main-text {
    font-size: 1rem;
  }
  .main-text-bold {
    font-size: 1.5rem;
    font-feature-settings: "palt";
  }
  .main-bg-logo {
    width: 70%;
  }
  .details-item {
    gap: 1.5rem;
  }
  .details-term {
    font-size: 1rem;
  }
  .details-desc {
    font-size: 1rem;
  }
  .main-btn {
    margin-top: 2.5rem;
  }
}
@media (max-width: 375px) {
  .main-text-bold {
    font-size: 1.25rem;
  }
}
