.recruit-detail {
  margin-top: 2rem;
}
.recruit-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.recruit-detail__label {
  width: 180px;
  padding: 14px 16px;
  background-color: #04285B;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 1px solid #fff;
}
.recruit-detail__value {
  padding: 14px 20px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.8;
}
.recruit-detail__value iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

@media (max-width: 767.98px) {
  .recruit-detail__table, .recruit-detail__label, .recruit-detail__value {
    display: block;
    width: 100%;
  }
  .recruit-detail__label {
    white-space: normal;
  }
}
.recruit-list-item {
  margin-bottom: 2rem;
  border: 1px solid #d8dee9;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.recruit-list-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.recruit-list-item__inner {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}
.recruit-list-item__thumb {
  flex: 0 0 240px;
  width: 240px;
  overflow: hidden;
  background: #e9eef5;
}
.recruit-list-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit-list-item__thumb--noimg {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #04285B;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
}
.recruit-list-item__body {
  flex: 1;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recruit-list-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #04285B;
  margin: 0 0 1rem;
  line-height: 1.4;
}
.recruit-list-item__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.recruit-list-item__table th, .recruit-list-item__table td {
  padding: 6px 10px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}
.recruit-list-item__table th {
  color: #04285B;
  font-weight: 700;
  white-space: nowrap;
  width: 120px;
}
.recruit-list-item__table td {
  color: #555555;
}
.recruit-list-item__btn-wrap {
  text-align: right;
}
.recruit-list-item__btn {
  display: inline-block;
  padding: 10px 2rem;
  background: #04285B;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}
.recruit-list-item__btn:hover {
  background: #5B72D6;
}

@media (max-width: 767.98px) {
  .recruit-list-item__inner {
    flex-direction: column;
  }
  .recruit-list-item__thumb {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .recruit-list-item__body {
    padding: 1rem;
  }
  .recruit-list-item__table th {
    width: 90px;
  }
  .recruit-list-item__btn-wrap {
    text-align: center;
  }
}
.page-header-title {
  margin-top: 5rem !important;
}