@import url("../common.css");

/* 1. 土台の設定：背景色を一旦透明にする */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #ede2ce;
}

.basecamp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.basecamp-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(100%); /* ← 以前修正した現代版の書き方 */
  white-space: nowrap;
  border-width: 0;
}

@media (width <= 520px) {
  .basecamp-container img {
    object-fit: contain;
  }
}
