/* === 中央配置 === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ステージ */
.stage { text-align: center; }

/* === ロゴ（サイズアップ）=== */
.logo {
  width: 35vw;          /* ← 大きめ比率にアップ */
  max-width: 900px;     /* ← 上限も引き上げ */
  min-width: 220px;
  height: auto;
  cursor: pointer;

  filter: none !important;
  -webkit-filter: none !important;

  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

/* クリックで黒っぽく */
.logo.dim {
  filter: brightness(0.3) contrast(1.3) saturate(0.8) !important;
  -webkit-filter: brightness(0.3) contrast(1.3) saturate(0.8) !important;
  opacity: 1;
  transform: scale(1.02);
}

/* スマホ最適化（必要なら調整） */
@media (max-width: 600px) {
  .logo { width: 70vw; max-width: none; }
}