﻿<!-- スタイル -->
<style>
/* ====== 全体レイアウト ====== */
body {
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  background-color: #f8fafc;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* ====== ヘッダー部分 ====== */
h1 {
  background: linear-gradient(to right, #74b9ff, #a29bfe);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 0;
  font-size: 1.8em;
  letter-spacing: 1px;
  border-bottom: 4px solid #6c5ce7;
}

/* ====== ナビゲーション ====== */
h2 a {
  color: #0984e3;
  text-decoration: none;
  transition: 0.3s;
}

h2 a:hover {
  color: #6c5ce7;
  text-decoration: underline;
}

h2 {
  background: #ecf0f6;
  border-left: 5px solid #6c5ce7;
  padding: 12px 16px;
  font-size: 1.1em;
  margin: 20px auto;
  width: 90%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ====== リストデザイン（記事一覧） ====== */
h2 b {
  display: block;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #2d3436;
  border-bottom: 2px solid #6c5ce7;
  padding-bottom: 5px;
}

/* 記事リスト */
ul.article-list {
  list-style: none;
  padding: 0;
  margin: 10px 30px 30px 30px;
}

ul.article-list li {
  background: #fff;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: 0.2s;
}

ul.article-list li:hover {
  background: #f1f5ff;
  transform: translateY(-2px);
}

/* スポンサードリンク部分 */
.sponsor {
  text-align: center;
  margin: 20px 0;
  font-size: 0.9em;
  color: #777;
}

/* 底部余白 */
body > br:last-child {
  display: none;
}
</style>