@charset "utf-8";

.recruit {
  width: 1070px;
  background: #f7f5f1;
  border-radius: 20px;
  margin-top: 6em;
  margin-bottom: 4em;
}

.recruitBox {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.recruitBox > div{
  width: 50%;
}

@media (max-width: 768px) {
  .recruit {
    width: 90%;
    margin-top: 3em;
  }
  .recruitBox {
    flex-direction: column;
  }
  .recruitBox > div{
    width: 100%;
  }
}