/* FAVTOWNキャリア 新着情報セクション figma準拠 */
.news-section {
  padding: 32px 24px 56px 24px;
  margin: 0 auto;
}
.news-header {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 24px;
}
.news-en {
  
  font-weight: 600;
  font-size: var(--12px);
  letter-spacing: 0.05em;
  color: #156fc6;
}
.news-ja {
  
  font-weight: 600;
  font-size: var(--22px);
  letter-spacing: 0.05em;
  color: #27292b;
  line-height: 1.7;
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-card {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 2px solid #e8f3ff;

}
.news-card-excerpt-container {
  padding: 16px;
}

.news-card:first-child {
  border-top: 2px solid #e8f3ff;
}

.news-card-date {
  
  font-size: var(--14px);
  color: #156fc6;
  letter-spacing: 0.05em;
}
.news-new-icon {
  background-color: #156fc6;
  color: #fff;
  text-align: center;
  
  font-size: var(--12px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 18px */
  letter-spacing: 0.6px;
  padding: 2px 4px;
  border-radius: 4px;
  margin-left: 8px;
}
.news-card-title {
  
  font-weight: 600;
  font-size: var(--16px);
  color: #27292b;
  line-height: 1.8;
  padding: 8px 0;
}
.news-card-title a {
  color: inherit;
  text-decoration: none;
}
.news-card-excerpt-container a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-card-excerpt {
  
  font-weight: 500;
  font-size: var(--14px);
  color: #27292b;
  line-height: 200%;/* 約28px (14px × 2) */
  /* 3行分の高さ制限 (28px × 3 ≈ 84px) */
  max-height: calc(var(--14px) * 2 * 3);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.news-footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.news-list-btn {
  display: flex;
  width: 243px;
  height: 58px;
  padding: 18px 33px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 3px solid #ffee56;
  background: #fff;
  color: #156fc6;
}
.news-list-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
