/*===============================
  news
================================*/
#news {
}
/* セクション全体 */
.news-archive-section {
 padding: 60px 0;
 background-color: #fff;
}

/* 横並び形式のニュース一覧 */
#news .news-archive-section .news-list {
 display: flex;
 flex-direction: column;
 gap: 32px;
}

#news .news-item-horizontal {
 display: flex;
 gap: 24px;
 padding: 20px;
 border-radius: 6px;
}
#news .news-item-horizontal a {
 display: flex;
 gap: 24px;
 text-decoration: none;
 color: inherit;
}

#news .news-thumb img {
 width: 180px;
 height: auto;
 border-radius: 6px;
 display: block;
}

#news .news-archive-section .news-meta {
 flex: 1;
}

#news .news-archive-section .news-date {
 font-size: 0.9rem;
 color: #666;
 margin-bottom: 0.3em;
}

#news .news-archive-section .news-title {
 font-size: 1.1rem;
 font-weight: 700;
 color: #cc3366;
 margin-bottom: 0.5em;
}

#news .news-archive-section .news-excerpt {
 font-size: 1rem;
 color: #444;
 line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
 #news .news-archive-section .news-item-horizontal {
  flex-direction: column;
 }
 #news .news-archive-section .news-thumb img {
  width: 100%;
 }
}

/* ===============================
   ページネーション（スタイル調整版）
================================ */
#news .pagination {
 margin-top: 60px;
 text-align: center;
}

#news .pagination .page-numbers {
 display: inline-flex;
 flex-wrap: wrap;
 gap: 12px;
 justify-content: center;
 padding: 0;
 list-style: none;
}

#news .pagination .page-numbers li {
 display: inline-block;
}

#news .pagination .page-numbers a,
#news .pagination .page-numbers span {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 36px;
 height: 36px;
 border: 2px solid #cc3366;
 border-radius: 8px;
 color: #cc3366;
 font-weight: 700;
 font-size: 1rem;
 text-decoration: none;
 transition: background-color 0.3s, color 0.3s;
}

#news .pagination .page-numbers a:hover {
 background-color: #cc3366;
 color: #fff;
}

#news .pagination .page-numbers .current {
 background-color: #cc3366;
 color: #fff;
 border-color: #cc3366;
 pointer-events: none;
}

#news .pagination .page-numbers .dots {
 border: none;
 background: none;
 color: #999;
 width: auto;
}

/*===============================
  news - single page
================================*/
.news-single-wrap02 {
 padding: 60px 0;
 background-color: #fff;
}

#news .news-single-wrap02 .news-detail {
 border: 1px solid #ccc;
 padding: 20px 10px;
 border-radius: 6px;
 background-color: #fafafa;
 margin-top: 20px;
}
@media screen and (min-width: 768px) {
 #news .news-single-wrap02 .news-detail {
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 6px;
  background-color: #fafafa;
  margin-top: 20px;
 }
}
#news .news-single-wrap02 .news-date {
 font-size: 0.9rem;
 color: #666;
 margin-bottom: 10px;
}

#news .news-single-wrap02 .news-title {
 font-size: 1.1rem;
 font-weight: 700;
 color: #333;
 margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
 #news .news-single-wrap02 .news-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
 }
}
#news .news-single-wrap02 .news-description p {
 font-size: 1rem;
 color: #444;
 line-height: 1.8;
 margin-bottom: 1em;
}

#news .news-single-wrap02 .news-description ul {
 margin-left: 1.5em;
 padding-left: 1em;
 list-style: disc;
}

/* 一覧へ戻るボタン */
.more-button-wrapper {
 margin-top: 40px;
 text-align: center;
 display: flex;
 justify-content: center;
}

.more-button {
 background-color: #cc3366;
 color: #fff;
 padding: 14px 24px;
 font-size: 1rem;
 border: none;
 border-radius: 4px;
 cursor: pointer;
}

.more-button:hover {
 background-color: #b42d59;
}
