

#news-article {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin: 20px;
  max-width: 800px;
}

#news-article .header {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
}

#news-article .meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

#news-article .ppp {
  font-size: 16px;
}

#news-article .image-right {
  float: right;
  margin-left: 20px;
  width: 240px;
}

#news-article .image-right img {
  width: 100%;
  height: auto;
}

#news-article .caption {
  font-size: 0.8em;
  color: #555;
  text-align: center;
  margin-top: 4px;
}

#news-article .clear {
  clear: both;
}

/* スマホ対応（画面幅が600px以下の場合） */
@media screen and (max-width: 600px) {
  #news-article {
    margin: 10px;
    font-size: 0.95em;
  }
  #news-article .image-right {
    float: none;
    margin: 0 auto 10px auto;
    width: 100%;
  }
  #news-article .header {
    font-size: 1.4em;
  }
}



#news-section {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #333;
  margin: 3px;
}

#news-section .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
}

#news-section .news-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#news-section .news-list li {
  margin: 0;
}

#news-section .news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

#news-section .news-title {
  display: flex;
  align-items: center;
  gap: 4px;
}

#news-section .news-title a {
  text-decoration: none;
}

#news-section .news-title a:hover {
  text-decoration: underline;
}

#news-section .news-date {
  color: #999;
  font-size: 13px;
  white-space: nowrap;
}



.sidebar-title {
  font-size: 16px;
  font-weight: bold;
  color: #004b8c;
  margin-bottom: 12px;
  border-left: 4px solid #357edd;
  padding-left: 8px;
}

.sidebar-news {
  background-color: #f7fafe;
  border: 1px solid #d0e3f0;
  border-radius: 5px;
  padding: 5px 8px 0px 0px;

  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

/* 各ニュース項目 */
.sidebar-news ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar-news li {
  margin-top: 10px;
  margin-bottom: 2px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}

.sidebar-news a {
  color: #0073cf;
  text-decoration: none;
}

.sidebar-news a:hover {
  text-decoration: underline;
  color: #005da0;
}

/* 配信日（小さくグレー） */
.sidebar-news .date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  margin-bottom: 10px;
}


.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

.article-nav .nav-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  background-color: #f0f4f8;
  color: #0073cf;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.article-nav .nav-btn:hover {
  background-color: #dbeaff;
}

.article-nav .disabled {
  display: none;
}

/* 真ん中ボタンだけちょっと差別化（任意） */
.article-nav .center {
  background-color: #e9eef5;
}

@media screen and (max-width: 600px) {
  .article-nav {
    flex-direction: column;
  }
}



/* ニュース一覧全体の枠 */
.news-list-s {
  border-top: 2px solid #ccc;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  list-style: none;
  padding-left: 0;
  margin: 0;

}

.news-list-s li {
  margin: 0;

}

/* 各ニュース項目 */
.news-item-s {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

/* サムネイル画像 */
.news-thumb-s {
  width: 80px;
  height: 60px;
  object-fit: cover;
  margin-right: 12px;
  border: 1px solid #ccc;
}

/* テキスト部 */
.news-content-s {
  flex: 1;
}

.news-title-s {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 4px;
}

.news-title-s a {
  color: #0044cc;
  text-decoration: none;
}

.news-title-s a:hover {
  text-decoration: underline;
}

.news-date-s {
  font-size: 13px;
  color: #888;
}

@media screen and (max-width: 600px) {
  .news-item-s {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-thumb-s {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
  }
}