/* 全体のベース */
body {
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* ヘッダー */
header {
  background: #2c3e50;
  color: #fff;
  padding: 1.5em;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 1.8em;
}
header p {
  margin: 0.5em 0 0;
  font-size: 1.1em;
}

/* メイン */
main {
  max-width: 900px;
  margin: auto;
  padding: 2em;
}
section {
  margin-bottom: 3em;
}
section h2 {
  border-left: 6px solid #3498db;
  padding-left: 0.5em;
  margin-bottom: 0.8em;
  font-size: 1.4em;
  color: #2c3e50;
}
section ul {
  padding-left: 1.5em;
}

/* フッター */
footer{
  background: #2c3e50;
  color: #fff;
  margin: 0.5em 0 0;
  font-size: 1.1em;
  text-align: center;
}

/* 画像のスタイル調整 */
section img {
  width: 100%;
  height: 250px;          /* 高さを固定（お好みで200px〜300pxなどに調整可） */
  object-fit: cover;      /* アスペクト比を維持して切り取り */
  object-position: center;/* 中央基準でトリミング */
  border-radius: 8px;
  margin: 1em 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* CTAボタン */
.cta {
  display: inline-block;
  padding: 0.8em 1.5em;
  background: #3498db;
  color: #fff;
