/* 全体の初期設定 */
body {
  margin: 0;
  padding: 0;
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  background-color: #ffffff;
  color: #3c2f2f;
  line-height: 1.8;
}

/* コンテナ（中央寄せ・余白・背景オレンジ） */
.container {
  background-color: #fff4e6; /* 淡いオレンジ色 */
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* コンテナ（中央寄せ・余白・背景ブルー） */
.container1 {
  background-color: #e6f2ff; /* 淡いブルー */
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* コンテナ（中央寄せ・余白） */
.container2 {
  background-color: #ffffff; /* 白 */
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* タイトル */
h1 {
  font-weight: bold;
  text-align: center;
  color: #6b4c3b;
  margin-bottom: 20px;
}
h2, h3 {
  text-align: center;
  color: #6b4c3b;
  margin-bottom: 20px;
}

/* 段落 */
p {
  font-size: 1rem;
  margin-bottom: 1.2em;
}

.center {
  text-align: center;
}

/* リンク */
a {
  color: blue;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

/* ボタン（必要に応じて） */
.button {
  display: inline-block;
  background-color: #8b5e3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.button:hover {
  background-color: #a06b45;
}

.email {
  user-select: all;
  font-family: monospace;
  background-color: #f0f0f0;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* フッター */
footer {
  text-align: center;
}
/* セクションの余白 */
section {
  margin-bottom: 60px;
}