/*=============================
  お知らせ詳細ページCSS
===============================*/

/* 全体ラップ */
.news-detail {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-detail .inner {
  max-width: 900px;
  margin: 0 auto;
	padding: 0;
}
.news-detail-content {
    background: #fffdf5;
    border-radius: 15px;
	padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.15);
}
/* タイトル */
.news-detail-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align:center;
}

/* メタ情報 */
.news-detail-meta {
  font-size: 1rem;
  text-align:center;
  margin-bottom: 20px;
}

.news-detail-meta .category {
  display: inline-block;
  background-color: #ff7bac; /* サイトテーマカラー */
  color: #fff;
  padding: 6px 17px;
  border-radius: 30px;
  margin-right: 10px;
}

.news-detail-meta .date {
  color: #999;
}
.news-detail-title::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: repeating-linear-gradient(to right, #ccc, #ccc 4px, transparent 4px, transparent 8px);
    margin-top: auto;
}
/* サムネイル */
.news-detail-thumb {
	width: 100%;
  text-align: center;
	margin:30px auto;
}

.news-detail-thumb img {
	width: 100%;        /* 画像を親にフィットさせる */
  height: auto;       /* 縦横比を維持 */
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 本文 */
.news-detail-body {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
}

.news-detail-body p {
  margin-bottom: 16px;
}

.news-detail-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.news-detail-body ul {
  list-style: disc;
  padding-left: 20px;
}

.news-detail-body ol {
  list-style: decimal;
  padding-left: 20px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .news-detail-title {
    font-size: 1.5rem;
  }
  .news-detail {
    padding: 40px 15px;
  }
  nav.breadcrumb {
    font-size: 12px;
}
}