/* --- お知らせ一覧 (新デザイン) --- */

#readArea ul, #readArea ol{
    padding-left: 0;
  }
  
.news-list-simple {
  list-style: none;
  padding: 0;
}

.news-item-simple {
  margin-bottom: 1rem;
}

.news-item-simple a {
  display: block;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border-left: 8px solid var(--main-color);
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-item-simple a:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-list-dates {
  margin-bottom: 0.25rem;
  font-size: 0.9em;
}

.news-list-date {
  color: #666;
  margin-right: 1em; /* 日付間のスペース */
}

.news-list-update {
  color: #c0392b; /* 赤色 */
  font-weight: bold;
}

.news-list-publish {
  color: var(--main-color); /* 緑色 */
  font-weight: bold;
}

.news-item-simple .news-list-title {
  font-weight: bold;
  font-size: 1.1em;
}


/* --- お知らせ詳細 --- */
.news-detail-item {
  margin-bottom: 3rem;
}

.news-detail-item h3 {
  font-size: 1.6rem;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.news-meta {
  text-align: right;
  color: #666;
  margin-bottom: 2rem;
}

.news-meta time {
  display: block;
  font-size: 0.9em;
  margin-left: 1em;
}

.news-content {
  line-height: 1.8;
}

.news-content p {
  margin-bottom: 1.5em;
}

.news-content ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.news-content li {
  margin-bottom: 0.8em;
}

.news-link {
    margin-top: 3rem;
    text-align: center;
}

#readArea a.button-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#readArea a.button-link:hover {
    background-color: color-mix(in srgb, var(--main-color) 80%, #000);
}

.back-to-list {
    margin-top: 3rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
  
  
}