html, body {
  height: 100%;
  margin: 0;
  background: #ffffff; /* 必要なら背景色変更 */
}

/* ロゴ画像の基本設定 */
.logo {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
}

/* 常にウィンドウ中央に固定 */
.center-fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
