/* ニュース詳細表示のスタイル */
.news-wrapper {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}

.news-day-font {
  font-family: 'Noto Serif JP', sans-serif;
}

.news-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.news-content-text {
  font-family: 'Noto Serif JP', sans-serif;
  flex: 1;
}

.news-toggle-icon {
  color: #fff;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 12px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-left: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.news-toggle-icon.close-icon {
  font-size: 14px;
  padding: 1px 5px;
  font-weight: bold;
}

.news-toggle-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.news-body-container {
  margin-top: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.news-body-content {
  color:#d2d2d2;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* リッチテキスト内の要素のスタイル */
.news-body-content p {
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', sans-serif;
}

.news-body-content a {
  color: #d4af37;
  text-decoration: underline;
  font-family: 'Noto Serif JP', sans-serif;
}

.news-body-content img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 4px;
}

.news-body-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.news-body-content th,
.news-body-content td {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Noto Serif JP', sans-serif;
}

.news-body-content th {
  background-color: rgba(255, 255, 255, 0.1);
  font-family: 'Noto Serif JP', sans-serif;
} 