@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------
   お知らせ詳細ページ（news/[id].astro）
-------------------------------------------------- */
.section.light-blue-bg {
  background-color: #f3f7fa;
  padding: 180px 30px 60px;
  position: relative;
}

.news-detail-box {
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.news-detail-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}

.news-detail-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.news-detail-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.news-detail-button-wrap {
  text-align: center;
  margin-top: 40px;
}

.news-back-button {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #333;
  border-radius: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.news-back-button:hover {
  background-color: #333;
  color: #fff;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #777;
  margin-top: 40px;
  text-align: left;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb a {
  color: #777;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
