@charset "utf-8";

/* =========================
   News Page Layout
========================= */

.news-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

/* =========================
   Category Navigation
========================= */

.news-category {
  margin: 40px 0 60px;
  text-align: center;
}

.news-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 28px;
  border-bottom: 1px solid #e5e5e5;
}

.news-category li {
  position: relative;
  padding: 12px 0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #777;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news-category li:hover {
  color: #2e7d32;
}

/* 選択中 */
.news-category li.active {
  color: #2e7d32;
  font-weight: 600;
}

.news-category li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #2e7d32;
}

/* =========================
   News List
========================= */

.news-list {
  display: flex;
  flex-direction: column;
}

/* 1件 */
.news-item {
  padding: 28px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
  transition: background 0.3s ease;
}

.news-item:hover {
  background: #f7faf7;
}

/* =========================
   Meta Info
========================= */

.news-date {
  display: inline-block;
  font-size: 0.85rem;
  color: #999;
  margin-right: 12px;
  letter-spacing: 0.05em;
}

/* ラベル */
.news-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 10px;
  font-weight: 600;
  vertical-align: middle;
}

/* カテゴリ別カラー */
.news-label.info {
  background: #e8f5e9;
  color: #2e7d32;
}

.news-label.live {
  background: #e3f2fd;
  color: #1565c0;
}

.news-label.media {
  background: #fff3e0;
  color: #ef6c00;
}

.news-label.tv {
  background: #f3e5f5;
  color: #6a1b9a;
}

/* =========================
   Title
========================= */

.news-title {
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  transition: color 0.3s ease;
}

/* hoverでタイトルだけ色変化 */
.news-item:hover .news-title {
  color: #2e7d32;
}

/* =========================
   Responsive
========================= */

@media (max-width: 600px) {
  .news-page {
    padding: 40px 16px 80px;
  }

  .news-category ul {
    gap: 18px;
  }

  .news-title {
    font-size: 1rem;
  }
}



/* 共通 */
.news {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.3s;
}

.news:hover {
  background: #f5f7f5;
}


.news:hover .news-text p,
.news:hover .news-text h4 {
  color: #3e3e3e;
}

/* 日付 */
.date-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #fff;
  font-size: 14px;
}

/* 種別文字 */
.news-text p {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
}

/* ===== 種別ごとの色 ===== */

/* LIVE（ミセスらしいグリーン） */
.news.live .date-circle {
  background: #2f6f4e;
}
.news.live .news-text p {
  color: #2f6f4e;
}

/* INFO（落ち着いたグレー） */
.news.info .date-circle {
  background: #555;
}
.news.info .news-text p {
  color: #555;
}

/* MEDIA（やや明るいグリーン） */
.news.media .date-circle {
  background: #4fa87a;
}
.news.media .news-text p {
  color: #4fa87a;
}

/* TV（アクセントに青系） */
.news.tv .date-circle {
  background: #3b6cb7;
}
.news.tv .news-text p {
  color: #3b6cb7;
}




/* 全体レイアウト */
.news-wrapper {
  max-width: 1000px;
  margin: 60px auto;
  display: flex;
  gap: 40px;
}

/* 左フィルター */
.news-filter {
  width: 180px;
  position: sticky;
  top: 120px; /* ヘッダー分 */
}

.news-filter h3 {
  font-size: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

/* ラベル */
.news-filter label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}

/* ラジオボタンを公式っぽく */
.news-filter input[type="radio"] {
  margin-right: 8px;
  accent-color: #2f6f4e; /* ミセスグリーン */
}

/* 右ニュース */
.news-list {
  flex: 1;
}
