@charset "UTF-8";
.page-hero {
  position: relative;
  height: 216px;
  background: url("../images/news/page-hero-bg.webp") center/cover no-repeat;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-hero {
    height: 108px;
  }
}
.page-hero-content {
  display: flex;
  align-items: center;
  gap: 38px;
  position: absolute;
  left: 208px;
  bottom: 80px;
}
@media (max-width: 1200px) {
  .page-hero-content {
    left: 40px;
  }
}
@media (max-width: 768px) {
  .page-hero-content {
    left: 20px;
    gap: 24px;
    bottom: 36px;
  }
}
.page-hero-line {
  width: 3px;
  height: 56px;
  background: #BA0000;
}
@media (max-width: 768px) {
  .page-hero-line {
    height: 36px;
  }
}
.page-hero-title {
  margin: 0;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-hero-title {
    font-size: 20px;
  }
}

.news-detail {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .news-detail {
    padding-top: 24px;
  }
}
.news-detail__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.news-detail {
  /* ===== メタ情報 ===== */
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-detail__meta {
    gap: 10px;
    margin-bottom: 12px;
  }
}
.news-detail__date {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #6B7280;
}
@media (max-width: 768px) {
  .news-detail__date {
    font-size: 12px;
  }
}
.news-detail__category {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  background: #FBF2F3;
  color: #BA0000;
  padding: 6px 18px;
  border-radius: 4px;
  min-width: 84px;
}
@media (max-width: 768px) {
  .news-detail__category {
    font-size: 10px;
    padding: 5px 12px;
    min-width: 64px;
  }
}

.news-detail {
  /* ===== タイトル ===== */
}
.news-detail__title {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 24px;
  padding-bottom:16px;
  border-bottom:1px solid var(--wp--preset--color--red);;
}
@media (max-width: 768px) {
  .news-detail__title {
    font-size: 24px;
    margin: 0 0 32px;
  }
}


.news-detail__back {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .news-detail__back {
    margin-top: 64px;
  }
}
.news-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease;
}
.news-detail__back-link:hover {
  opacity: 0.7;
}
.news-detail__back-link .circle {
  flex-shrink: 0;
}
.news-detail__back-link .arrow {
  display: block;
}
