html, body {
  margin: 0;
  min-height: 100%;
  background: #dff3ff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
               "Yu Gothic", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.design {
  position: relative;
  width: min(100vw, 1536px);
}

.top-image {
  display: block;
  width: 100%;
  height: auto;
}

/*
  元画像に焼き込まれている人数表示だけを隠して、
  その上にHTMLの文字を重ねています。
  人数を変える時は index.html の
  <span class="member-number">35</span>
  の「35」だけ変更してください。
*/
.member-count {
  position: absolute;
  left: 32.5%;
  top: 61.1%;
  width: 35%;
  margin: 0;
  padding: 0.45em 0.8em;
  text-align: center;
  background: rgba(246, 250, 251, 0.97);
  color: #243442;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN",
               serif;
  font-size: clamp(12px, 1.45vw, 22px);
  line-height: 1.4;
  white-space: nowrap;
}

.member-number {
  color: #078fd3;
  font-size: 1.55em;
  font-weight: 700;
  margin: 0 0.08em;
}

/* 画像の LITTLA PRESS ボタンにだけ実リンクを重ねています */
.press-link {
  position: absolute;
  left: 39.0%;
  top: 68.1%;
  width: 22.4%;
  height: 6.4%;
  border-radius: 999px;
}

.press-link:focus-visible {
  outline: 4px solid #0797d4;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .member-count {
    left: 28%;
    width: 44%;
    font-size: clamp(8px, 2.2vw, 13px);
    padding: 0.3em 0.45em;
  }
}
