@charset "UTF-8";

/* ----------------------------------------
   RECRUIT NEWS
---------------------------------------- */
.recruit-news{
  background: #F5F9FA;
  padding: 75px 0 ;
}

.recruit-news__inner{
  width: min(100%, 1200px);
  margin: 0 auto;
}

.recruit-news__header{
  text-align: center;
}

.recruit-news__title{
  margin: 0;
  color: #1759A5;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.recruit-news__subtitle{
  margin: 23px 0 0;
  color: #1759A5;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.recruit-news__panel{
  max-width: 1200px;
  margin: 63px auto 0;
  padding: 60px 70px;
  background: #FFFFFF;
  border-radius: 30px;
}

.recruit-news-group{
  max-width: 1060px;
  margin: 0 auto;
}

.recruit-news-group + .recruit-news-group{
  margin-top: 84px;
}

.recruit-news-group__title{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 8px 20px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  border-radius: 4px 4px 0 0;
}

.recruit-news-group--job .recruit-news-group__title{
  background: #1759A5;
}

.recruit-news-group--notice .recruit-news-group__title{
  background: #30A229;
}

.recruit-news-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-news-list__item{
  border-bottom: 1px solid #D8E0E3;
}

.recruit-news-list__link{
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  column-gap: 0;
  min-height: 72px;
  padding: 0;
  color: #2F2F2F;
  text-decoration: none;
}

.recruit-news-list__date-wrap{
  display: inline-flex;
  align-items: center;
  gap: 0; /* 使わない */
}
.recruit-news-list__date{
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-right: 1em; /* 日付 → ライン */
}

.recruit-news-list__marker{
  width: 2px;
  height: 21px;
  margin-right: 1em; /* ライン → タイトル */
}

.recruit-news-group--job .recruit-news-list__marker{
  background: #1759A5;
}

.recruit-news-group--notice .recruit-news-list__marker{
  background: #30A229;
}

.recruit-news-list__title-text{
  min-width: 0;
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  word-break: break-word;
}

.recruit-news-group__more{
  display: flex;
  justify-content: flex-end;
  margin: 19px 0 0;
}

.recruit-news-group__more-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.recruit-news-group__more-icon{
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2D3033;
}

.recruit-news-group__more-icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #FFFFFF;
  border-right: 1.5px solid #FFFFFF;
  transform: translate(-62%, -50%) rotate(45deg);
}

.recruit-news-group__empty{
  padding: 24px 0 0;
}

.recruit-news-group__empty-text{
  margin: 0;
  color: #2F2F2F;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

/* ----------------------------------------
   SP
---------------------------------------- */
@media screen and (max-width: 767px){
  .recruit-news{
    padding: 75px 0 0;
  }

  .recruit-news__inner{
    width: 100%;
  }

  .recruit-news__title{
    font-size: 58px;
  }

  .recruit-news__subtitle{
    margin-top: 23px;
    font-size: 24px;
  }

  .recruit-news__panel{
    margin-top: 63px;
    padding: 32px 16px 36px;
    border-radius: 30px;
    margin-left: 14px;
    margin-right: 14px;
  }

  .recruit-news-group{
    max-width: none;
  }

  .recruit-news-group + .recruit-news-group{
    margin-top: 84px;
  }

  .recruit-news-group__title{
    min-height: 44px;
    font-size: 18px;
  }

  .recruit-news-list__link{
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 10px;
    min-height: 72px;
    padding: 14px 0;
  }

  .recruit-news-list__date-wrap{
    gap: 10px;
  }

  .recruit-news-list__date{
    font-size: 18px;
  }

  .recruit-news-list__marker{
    height: 21px;
  }

  .recruit-news-list__title-text{
    font-size: 18px;
    line-height: 1.6;
  }

  .recruit-news-group__more{
    margin-top: 19px;
  }

  .recruit-news-group__more-link{
    font-size: 18px;
  }
}