/* 全体の基本設定 */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f8f8;
  padding: 24px;
  margin: 0;
}

/* メインタイトル */
h1 {
  color: #2a2a5a;
  font-family: serif;
  text-align: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

/* 文章 */
.txt {
  font-size: 20px;
}

/* おすすめセクション */
.items{
  display: flex;
  gap: 10px;
}

/* 各おすすめセクション */
.item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  flex: 1 1 0;
}

/* サブ見出し */
.item h2 {
  color: #006699;
  margin-top: 0;
}

/* 段落内のリンク */
.item a {
  color: #007acc;
  text-decoration: none;
  font-weight: bold;
}

.item a:hover {
  text-decoration: underline;
}

/* 画像スタイル */
.item img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
