/* 採用詳細  */
@media (max-height: 959px) {
  .reqrute.u-padding--medium {
    padding-top: 40px;
  }
}
.recruit-title{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #063664;
  padding: 20px;
  gap: 16px;
}
.recruit-title h2{
  margin-bottom: 10px;
}
.recruit-title p {
  margin: 0;
}
.apply-button {
  background-color: #063664;
  color: #fff;
  border: 1px solid #063664;
  border-radius: 4px;
  height: 48px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply-button:hover{
  background-color: #095195;
}
a.apply-button{
  text-decoration: none;
  color: #fff;
}
.recruit-content {
  padding: 40px;
}
.apply-form-button{
  width: 30%;
  margin: 0 auto;
}

@media (max-width: 819px){
  .recruit-title{
    flex-direction: column;
    padding: 0 0 20px:
  }
  .apply-button {
    width: 100%;
  }
}

@media (max-width: 639px){
  .recruit-content {
    padding: 20px 0px 40px;
  }
  .apply-form-button {
  width: 100%;
  }
}

/* 採用一覧 */
.job-list {
  padding: 80px 0 120px;
}
.Section-header{
  margin-bottom: 40px;
}
.job-list__card a {
  color: #4a4a4a;
  text-decoration: none;
}
.job-list__card {
  padding: 8px;
  margin: 0 auto 20px;
  max-width: 960px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25);
}
.job-list__card:last-child {
  margin-bottom: 0px;
}
.job-list__card .content {
  display: flex;
  gap: 10px;
}
.job-list__card .content__image {
  aspect-ratio: 4 / 3;
  max-width: 220px;
  width: 100%;
  overflow: hidden;
}
.job-list__card .content__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-list__card .content__text {
  flex: 1;
  padding: 16px;
}
.job-list__card .content__text h4 {
  font-weight: bold;
  margin-bottom: 0;
}
.job-list__card .content__text p {
  margin-top: 4px;
}
@media (max-width: 819px){
  .job-list__card .content{
    flex-direction: column;
  }
  .job-list__card .content__image {
    max-width: none;
    aspect-ratio: 16 / 9;
    object-position: top center;
  }
}