/* --------------------------
   NEWSセクション全体
--------------------------- */
.news-section {
  max-width: 900px; /* スライダーに合わせる */
  margin: 2em auto;
  padding: 1em;
  background-color: #130e0a;
  border-radius: 8px;
  color: #c0b8af; /* 本文色 */
  font-family: 'Noto Serif JP', serif;
}

/* NEWSセクション見出し */
.news-section h2.news-title {
  font-size: 1.4em;
  margin-bottom: 0.8em;
  border-bottom: 1px solid #444;
  padding-bottom: 0.4em;
  color: #bfa46f; /* 見出しゴールド */
  text-align: center;
}

/* --------------------------
   NEWSリスト
--------------------------- */
#newsList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  margin-bottom: 0.8em;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

/* --------------------------
   NEWSヘッダー（タイトル＋日付＋アイコン）
--------------------------- */
.news-header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.6em 0;
  border-bottom: 1px solid #333;
  cursor: pointer;
  justify-content: flex-start;
}

.news-icon {
  display: inline-block;
  width: 1em;
  text-align: center;
  font-weight: bold;
  color: #bfa46f;
  transition: transform 0.3s ease;
}

.news-header.open .news-icon {
  transform: rotate(0deg);
}

.news-date {
  color: #bfa46f; /* ゴールド系に統一 */
  font-size: 0.9em;
  min-width: 90px;
}

.news-title-text {
  font-weight: bold;
  text-align: left;
  color: #bfa46f; /* タイトルもゴールド */
}

/* --------------------------
   NEWS本文
--------------------------- */
.news-content {
  padding: 0 0 0.6em 1.6em;
  font-size: 0.95em;
  line-height: 1.5em;
  overflow: hidden;
  transition: height 0.3s ease;
  text-align: left;
  white-space: pre-line; /* 改行を反映 */
  color: #c0b8af; /* 本文はベース色 */
}




@media (max-width: 600px) {
  .news-section {
    padding: 0.8em;
    margin: 1.5em auto;
  }

  .news-section h2.news-title {
    font-size: 1.2em;
    margin-bottom: 0.6em;
  }

  .news-header {
    gap: 0.4em; /* アイコンとタイトルの間隔を狭く */
    padding: 0.4em 0;
  }

  .news-icon {
    width: 0.9em; /* アイコンを少し小さく */
  }

  .news-date {
    font-size: 0.8em;
    min-width: 70px; /* 日付幅をスマホ向けに短く */
  }

  .news-title-text {
    font-size: 1em; /* タイトル文字サイズを少し小さく */
  }

  .news-content {
    padding: 0 0 0.4em 1.2em; /* インデントを少し小さく */
    font-size: 0.9em;          /* 本文文字サイズを少し小さく */
    line-height: 1.4em;
  }
}