/* ベーススタイル */
body {
  margin: 0;
  font-family: tbudgothic-std;
  background-color: #ffffff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* header {
  text-align: center;
  padding: 2rem 1rem 1rem;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem; 
  font-family: 'nitalago-ruika', 'Kosugi Maru', 'Roboto', Tahoma, Geneva, sans-serif;
} */


header {
  display: flex;
  justify-content: flex-end;  /* 右寄せ */
  align-items: center;
  padding: 1rem;
  background-color: #f9f9f9; /* ← フッターと同じ薄いグレー */
  height: 50px;
}

.logo-container {
  height: 100%;
}

.logo {
  height: 40px;       /* ロゴの高さ調整（必要に応じて変更可） */
  width: auto;
  display: block;
}

header h1 {
  font-family: 'tbudgothic-std', 'Kosugi Maru', 'Roboto', Tahoma, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}


.main-image {
  display: block;
  width: 90%;
  max-width: 800px;
  height: auto;
  margin: 3rem auto 0.25rem; /* ← 上に2remの余白を追加 */
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* おしゃれなボタン */
.button {
  display: block;
  text-align: center;
  background-color: #0DCAF0;
  color: white;
  padding: 0.8rem 1.5rem;
  margin: 0 auto 3rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  width: fit-content;
}

.button:hover {
  background-color: #3E7084;
}

/* フッター */
footer {
  margin-top: auto;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  background-color: #f9f9f9;
  font-family: Tahoma, Geneva, sans-serif;
}




@media (max-width: 600px) {
  .indent {
    padding-left: 2em;
  }
}


.centered-block {
  text-align: center;
  margin-bottom: 1.5rem;  /* ← この行を追加 */
}


.description {
  max-width: 1000px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.description p {
  margin-bottom: 1rem;
}


.responsive-center {
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* スマホ表示：自動改行＋余白 */
@media (max-width: 600px) {
  .responsive-center {
    white-space: normal;
    padding-left: 1em;
    padding-right: 1em;
  }
}



.small-note {
  font-size: 0.8em;   /* 親要素の80%のサイズに */
  /* color: #666;        やや薄めのグレーにするのもおすすめ */
}