/* ニュースセクション */
.recruit-section {
  padding: 80px 0;
  background-color: var(--light-background);
  position: relative;
  overflow: hidden;
}

.recruit-section::before,
.recruit-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.recruit-section::before {
  background: url("../assets/images/recruit-bg-01.png") no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: 100px;
}

.recruit-section::after {
  background: url("../assets/images/recruit-bg-02.png") no-repeat;
  background-size: contain;
  width: 300px;
  height: 300px;
  top: 90px;
  right: 80px;
}

.recruit-section .container {
  position: relative;
  z-index: 2;
}

.recruit-card {
  background-color: var(--light-background);
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-bottom: 30px;
  max-width: 775px;
  margin-left: auto;
  margin-right: auto;
}

.recruit-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.recruit-item:last-child {
  border-bottom: none;
}

.recruit-date {
  font-size: 16px;
  color: var(--text-color);
  margin-right: 30px;
  min-width: 120px;
}

.recruit-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
}

.recruit-arrow {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.recruit-arrow:hover {
  transform: translateX(5px);
}

.recruit-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.recruit-title-with-icon {
  display: flex;
  align-items: center;
}

.recruit-icon {
  margin-left: 15px;
  width: 130px;
  position: relative;
  top: -25px;
  height: auto;
}

/* 会社概要テーブル */
.recruit-info {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.recruit-table {
  width: 676px;
  border-collapse: collapse;
}

.recruit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.recruit-description {
  color: var(--text-color);
  text-align: center;
  margin: 0 0 30px;
  line-height: 1.6;
  width: 100%;
}

.recruit-image {
  margin-top: 20px;
  max-width: 100%;
  text-align: center;
}

.recruit-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recruit-table th,
.recruit-table td {
  padding: 20px;
  border-bottom: 1px solid #d9d9d9;
  line-height: 1.5;
}

.recruit-table th {
  width: 140px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.recruit-table td {
  font-weight: 400;
}

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

/* 採用情報ボタン */
.recruit-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.new-graduate-btn,
.career-btn {
  text-align: center;
}

@media (max-width: 768px) {
  .recruit-buttons {
    flex-direction: column;
    align-items: center;
  }

  .new-graduate-btn,
  .career-btn {
    margin-bottom: 20px;
  }
}
