body {
  font-family: sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.7;
  color: #333;
}

header {
  display: flex;
  justify-content: center;  /* ← 横方向の中央寄せ */
  align-items: center;       /* ← 縦方向の中央揃え */
  gap: 20px;                 /* ロゴとタイトルの間隔 */
  padding: 20px;
}

header .logo {
  height: 70px;              /* ロゴの大きさ（調整可） */
  width: auto;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
}

nav a:hover {
  text-decoration: underline;
}

h2 {
  margin-top: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

footer {
  margin-top: 40px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

main p {
  text-indent: 1em;
}

.address {
  padding-left: 1.5em;   /* 全体を少し右へ */
  text-indent: -1.5em;   /* 1行目だけ戻す → 2行目以降が揃う */
  line-height: 1.6;
}

.contact {
  text-indent: 1em;
  display: flex;
  gap: 20px;   /* TEL と メールの間隔 */
  align-items: center;
}

.tohome {
  margin-top: 20px;
}