body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: #fff;  /* 白ベース */
  color: #333;
  text-align: center;
}

/* サイトタイトル */
.site-title {
  background: #e74c3c;   /* 赤系背景 */
  color: #fff;           /* 白文字 */
  padding: 1.5rem 0;
}

.site-title h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* ヒーロー部分 */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 2rem;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #000;  /* 黒で見やすく */
}

.sub {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e74c3c; /* 赤でサブキャッチを強調 */
}

/* ボタン */
.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #fff;
  background: #e74c3c; /* 赤メイン */
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: bold;
}

.btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #d4af37; /* ゴールド */
  color: #000;
}

.btn.secondary:hover {
  background: #b7950b;
  color: #fff;
}

/* フッター */
.footer {
  padding: 1rem;
  font-size: 0.85rem;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  color: #555;
}
