@charset "utf-8";
/*===========================
add
===========================*/
.jobBox {
  background: #fff;
  border-radius: 20px;
  padding: 2em;
  margin-bottom: 2em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}
.jobContent p {
  line-height: 2;
  color: #333;
  margin-bottom: 1.2em;
}
.jobContent p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .jobBox {
    padding: 1.5em;
    border-radius: 15px;
  }
  .jobTitle {
    font-size: 1.2rem;
  }
}
.recruitList {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.recruitItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    padding: 1.4em 1.8em;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #D8F5D9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06), 0 3px 10px rgba(59, 119, 90, 0.5);
    transition: 0.3s;
}
/*.recruitItem:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.10), 0 5px 15px rgba(0, 160, 233, 0.15);
}*/
.recruitName {
  position: relative;
  padding-left: 1em;
  font-size: 1.08rem;
  font-weight: bold;
  color: #000;
  line-height: 1.6;
}
.recruitName::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3B775A;
    box-shadow: 0 0 10px rgba(59, 119, 90, 0.5);
}
.recruitStatus {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: bold;
  color: #fff;
  padding: 0.6em 1.4em;
  border-radius: 100px;
  background: linear-gradient(135deg, #569174 0%, #3B775A 100%);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .recruitItem {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2em;
  }
  .recruitStatus {
    margin-left: 1em;
  }
  .recruitName {
    font-size: 1rem;
  }
}