/* ========== EVENT / NEWS ========== */
.news {
  background-color: #ffffff;
  padding: 80px 0 80px;
}

.news__header {
  padding: 0 60px;
  margin-bottom: 48px;
}

.news__title-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.news__heading {
  font-family: var(--font-midashi-go);
  font-size: 75px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 1;
}

.news__subheading {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--color-dark-4);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* スライダー */
.news__slider-wrap {
  position: relative;
  padding: 0 60px;
}

.news__swiper {
  overflow: hidden;
}

.news__list {
  display: flex;
}

/* カード */
.news__card {
  display: block;
  /* background-color: var(--color-dark-3); */
  overflow: hidden;
  height: 100%;
  transition: opacity 0.2s;
}

.news__card:hover {
  opacity: 0.8;
}

.news__card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  /* background-color: var(--color-dark-3); */
}

.news__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.news__card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-4);
}

/* .news__card-body {
  padding: 16px 20px 20px;
}

.news__card-date {
  font-family: var(--font-bunkyu-go);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.news__card-title {
  font-family: var(--font-sawarabi);
  font-size: 15px;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.6;
} */

/* フッター（スクロールバー＋ナビ） */
.news__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}

.news__scrollbar {
  position: static !important;
  width: 120px !important;
  height: 4px !important;
  left: auto !important;
  bottom: auto !important;
  background-color: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0;
}

.news__scrollbar .swiper-scrollbar-drag {
  background-color: #000000;
  height: 100%;
  border-radius: 0;
}

/* ナビゲーション */
.news__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.news__nav-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: 10px;
  background: none;
  color: var(--color-gray-light);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  line-height: 1;
}

.news__nav-btn:hover {
  opacity: 0.6;
}

.news__empty {
  font-family: var(--font-sawarabi);
  font-size: 16px;
  color: var(--color-gray);
  padding: 40px 0;
}

/* ========== Mobile ========== */
@media (max-width: 768px) {
  .news {
    padding: 40px 0;
  }

  .news__header,
  .news__slider-wrap {
    padding: 0 16px;
  }

  .news__header {
    margin-bottom: 24px;
  }

  .news__heading {
    font-size: 28px;
  }

  .news__footer {
    justify-content: center;
  }
}
