/* Reset CSS */
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
  background-color: black; /* 背景を黒に設定 */
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-image {
  width: 100%; /* 横幅を100%に設定 */
  height: 100%; /* 高さを100%に設定 */
  object-fit: cover; /* 画像が中央に配置されるように変更 */
  position: relative; /* 画像を中央に配置するために変更 */
}
@media (min-width: 800px) {
  .background-image {
    max-width: 800px;
  }
}
