body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  padding-top: 80px; /* ナビバー固定分の余白（ここで一元管理） */
}

/* ナビバーリンク */
a.nav-link {
  color: white !important;
}

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

/* コンテンツの白いカード */
.container-content {
  background-color: #fff;
  padding: 40px;              /* 少し広めにして見やすく */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  /* max-width: 1100px; */
  width: 97%;
  margin: 0 auto;
}

/* リスト */
ul {
  list-style-type: square;
  padding-left: 20px;
}
