@charset "UTF-8";

/*-----------------------------------

	news 共通（一覧・詳細）

-----------------------------------*/
.news-page {
  padding-top: 70px; /* fixed header 分 */
}

/* パンくずリスト */
.breadcrumb {
  background: #f5f3eb;
  padding: 14px 0;
  border-bottom: 1px solid #e8e4d8;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: #888;
  align-items: center;
}
.breadcrumb-list li + li::before {
  content: '›';
  margin-right: 6px;
  color: #bbb;
}
.breadcrumb-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover {
  color: var(--gold-color);
}
.breadcrumb-list .current {
  color: #999;
}

/*-----------------------------------

	news/index.html（一覧ページ）

-----------------------------------*/
.news-list-section {
  padding: 80px 0 100px;
}

.news-list-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.2rem;
  color: var(--primary-color);
  position: relative;
  letter-spacing: 0.1em;
}
.news-list-section .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-color);
  margin: 15px auto 0;
}

.news-index-list {
  list-style: none;
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid #e8e4d8;
}

.news-index-item {
  border-bottom: 1px solid #e8e4d8;
  transition: background 0.2s;
}
.news-index-item a {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: background 0.2s;
}
.news-index-item a:hover {
  background: #f9f7f0;
}

.news-index-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 2px;
}

.news-index-date {
  font-size: 0.85rem;
  color: var(--gold-color);
  font-weight: bold;
  white-space: nowrap;
  min-width: 90px;
}

.news-category {
  font-size: 0.7rem;
  border: 1px solid currentColor;
  padding: 2px 10px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.news-category.cat-release  { color: var(--accent-color); }
.news-category.cat-live     { color: #2e6fb0; }
.news-category.cat-media    { color: #3a8c5c; }
.news-category.cat-info     { color: var(--primary-color); }

.news-index-title {
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  color: var(--primary-color);
}

/* ページネーション（将来的な拡張用） */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.news-pagination a,
.news-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 0.88rem;
  border: 1px solid #ddd;
  text-decoration: none;
  color: var(--primary-color);
  transition: background 0.2s, color 0.2s;
}
.news-pagination a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.news-pagination .current-page {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

@media (max-width: 850px) {
  .news-list-section {
    padding: 50px 0 70px;
  }
  .news-index-item a {
    flex-direction: column;
    gap: 10px;
    padding: 18px 12px;
  }
  .news-index-meta {
    gap: 10px;
  }
}

/*-----------------------------------

	news/detail.html（詳細ページ）

-----------------------------------*/
.news-detail-section {
  padding: 80px 0 100px;
}

.news-detail-inner {
  max-width: 800px;
  margin: 0 auto;
}

.news-detail-header {
  margin-bottom: 48px;
  padding: 36px 40px 36px;
  background: #fff;
  border-top: 3px solid var(--primary-color);
  border-bottom: 1px solid #e8e4d8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.news-detail-date {
  font-size: 0.88rem;
  color: var(--gold-color);
  font-weight: bold;
  letter-spacing: 0.06em;
}

.news-detail-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-top: 4px;
  border-left: 4px solid var(--gold-color);
  padding-left: 18px;
}

@media (max-width: 850px) {
  .news-detail-header {
    padding: 24px 20px;
  }
  .news-detail-title {
    font-size: 1.35rem;
    padding-left: 14px;
  }
}

/* 本文エリア */
.news-detail-body {
  font-size: 0.97rem;
  line-height: 2;
  color: var(--text-color);
}
.news-detail-body p + p {
  margin-top: 1.5em;
}
.news-detail-body a {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-detail-body a:hover {
  color: #8e2f25;
}
.news-detail-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 36px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.news-detail-body ul {
  list-style: none;
  margin: 1.5em 0;
  padding: 24px 28px;
  background: #f9f7f0;
  border-left: 3px solid var(--gold-color);
}
.news-detail-body ul li {
  padding: 6px 0;
  line-height: 1.8;
}
.news-detail-body ul li + li {
  border-top: 1px dashed #e0ddd4;
}
.news-detail-body ul li::before {
  content: '・';
  color: var(--gold-color);
  margin-right: 4px;
}

/* 一覧へ戻るボタン */
.news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  padding: 13px 32px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: background 0.25s, color 0.25s;
}
.news-back-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* 前後ナビ */
.news-detail-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e8e4d8;
  gap: 20px;
}
.news-detail-nav a {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 48%;
  line-height: 1.5;
  transition: color 0.2s;
}
.news-detail-nav a:hover {
  color: var(--gold-color);
}
.news-detail-nav .nav-prev { margin-right: auto; }
.news-detail-nav .nav-next { margin-left: auto; text-align: right; }

@media (max-width: 850px) {
  .news-detail-section {
    padding: 50px 0 70px;
  }
  .news-detail-nav {
    flex-direction: column;
    gap: 16px;
  }
  .news-detail-nav a {
    max-width: 100%;
  }
}
