/* ===========================
   ヒーロー部分（画像＋タイトル）
=========================== */
.news-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
    /* パララックス背景位置の個別設定 */
  --hero-bg-position: center bottom;
}

.news-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.content-label {
  font-family: var(--font-family-special-2);
  font-size: var(--font-size-label);
  line-height: var(--lh-label);
  color: white;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
}

.content-title {
  font-family: var(--font-family-default);
  font-size: var(--font-size-title);
  line-height: var(--lh-main-title);
  font-weight: bold;
  color: white;
  margin: 0;
  letter-spacing: var(--letter-spacing-sec-title);
}

/* ===========================
   ニュース一覧セクション
=========================== */
.news-list-section {
  padding: 5rem 0 20rem 0;
  background-color: white;
}

.news-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-list {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.news-list.start {
  opacity: 1;
  transform: translateY(0);
}

.news-item {
  padding: 2rem 0;
  display: block;
}

.news-item:last-child .news-divider {
  display: none;
}

.news-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.news-date .news-title-text{
    font-family: var(--font-family-default);
    font-size: var(--font-size-sec-label);
    letter-spacing: var(--letter-spacing-text-m);
    font-weight: 500;
    margin: 0;
    line-height: 1.8;
}

.news-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(77, 77, 77, 0.2);
}

/* モバイル対応 */
@media (max-width: 768px) {
  .news-hero {
    height: 200px;
  }
  
  .news-hero-content {
    padding: 1.5rem;
  }
  
  .content-title {
    font-size: 2rem;
  }
  
  .news-list-section {
    padding: 3rem 0;
  }
  
  .news-list-container {
    padding: 0 1rem;
  }
  
  .news-item {
    padding: 1.5rem 0;
  }
  
  .news-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .news-date {
    font-size: 1rem;
  }
  
  .news-title-text {
    font-size: 1rem;
  }
}
