/* 募集要項信息区块样式 */
.recruit-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin: 2rem auto 2.5rem auto;
  max-width: 1000px;
}

.recruit-info .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.recruit-info .section-title h2 {
  font-size: 2rem;
  color: #0d2523;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.recruit-info .section-title h3 {
  font-size: 1.2rem;
  color: #666;
  font-weight: normal;
  margin-bottom: 1.2rem;
}

.recruit-info h4 {
  font-size: 1.1rem;
  color: #0d2523;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  border-left: 4px solid #b22222;
  padding-left: 0.5em;
}

.recruit-info ul {
  list-style: square;
  margin: 0.5em 0 1em 1.5em;
  padding-left: 1em;
}

.recruit-info ul ul {
  list-style: circle;
  margin: 0.2em 0 0.2em 1.2em;
  padding-left: 0.8em;
}

.recruit-info ul ul ul {
  list-style: armenian;
}

.recruit-info li {
  margin-bottom: 0.3em;
  line-height: 1.7;
  color: #666;
}

.recruit-info p {
  margin: 0.5em 0 1em 0;
  color: #666;
  line-height: 1.8;
}

.recruit-info b {
  color: #444;
}

/* 募集要項表格样式 */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: #fafbfc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.recruit-table th,
.recruit-table td {
  padding: 1rem 0.8rem;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}

.recruit-table th {
  background: #f5f5f5;
  color: #444;
  font-weight: bold;
  width: 140px;
  white-space: nowrap;
}

.recruit-table td {
  color: #666;
}

.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 868px) {

  .recruit-table th,
  .recruit-table td {
    padding: 0.7rem 0.4rem;
    font-size: 0.95rem;
  }

  .recruit-table th {
    width: 90px;
  }

  .recruit-info ul {
    margin: 0.2em 0 0.2em 1.2em;
    padding-left: 0em;
  }

  .recruit-info ul ul {
    margin: 0.2em 0 0.2em 1em;
    padding-left: 0em;
  }

}