/* 全画面・黒背景・中央ロゴ・下部テキスト */

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

/* 画面全体レイアウト */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;    /* 中央寄せ（横） */
  justify-content: center;/* 中央寄せ（縦） */
  position: relative;
}

/* ロゴ画像を中央に */
.logo-wrap img {
    display:block;
    width:300px;
    max-width: 60vw;   /* 必要ならサイズ調整 */
    max-height: 40vh;
}

/* 画面下中央の "coming soon" */
.coming-soon {
  position: fixed;
  left: 50%;
  bottom: 24px;      /* 下からの余白 */
  transform: translateX(-50%);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}