/* 採用情報ページのスタイル */
.recruitment {
  padding: 80px 0;
}

.recruitment-content {
  max-width: 1000px;
  margin: 0 auto;
}

.recruitment-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
}

.recruitment-box h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

/* 募集職種のスタイル */
.recruitment-list {
  list-style: none;
  padding: 0;
}

.recruitment-list li {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 4px;
}

.recruitment-title {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.recruitment-desc {
  display: block;
  color: #666;
  font-size: 0.9rem;
}

/* 勤務条件のスタイル */
.recruitment-dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
}

.recruitment-dl dt {
  font-weight: bold;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.recruitment-dl dd {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
}

/* 応募方法のスタイル */
.contact-info {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
}

.contact-info p {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .recruitment {
    padding: 40px 0;
  }

  .recruitment-box {
    padding: 20px;
  }

  .recruitment-dl {
    grid-template-columns: 1fr;
  }

  .recruitment-dl dt {
    border-bottom: none;
    padding-bottom: 5px;
  }

  .recruitment-dl dd {
    padding-top: 0;
    margin-bottom: 15px;
  }
}