/* ===== リセット（簡易版） ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family:
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Noto Sans JP',
    'Helvetica Neue',
    Arial,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #fff;
}

img {
  max-width: 100%;
}

/* ===== リンク ===== */
a {
  color: #007BFF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ===== ヘッダー / フッター ===== */
header, footer {
  background-color: #f8f9fa;
  padding: 1rem;
  text-align: center;
}

/* ===== メインコンテナ ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== セクション ===== */
section {
  padding: 2rem 0;
}

/* ===== タイトル・見出し ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}

/* ===== ボタン ===== */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007BFF;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #0056b3;
}

/* ===== フォーム ===== */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ===== グリッド（簡易） ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.col {
  flex: 1;
  padding: 0.5rem;
}

/* ===== レスポンシブ補助 ===== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}