/* new.css */
/* =========================================
   ゲーム全体のヘッダー
   ========================================= */

.game-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 50px;
  padding: 0 24px;

  background: #111;
  border-bottom: 1px solid #444;
}

.game-header__title {
  font-size: 14px;
  letter-spacing: 0.15em;
}

.game-header__nav a {
  color: inherit;
  text-decoration: none;
}

.game-header__nav a:hover {
  text-decoration: underline;
}

.game-header__nav img {
  position: relative;
  top: 6px;
}
/* =========================================
   検索トップ
   ========================================= */

.search-home {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}

.search-home__title {
  margin-bottom: 20px;
  font-size: 32px;
  letter-spacing: 0.2em;
}

.search-home__description {
  margin-bottom: 30px;
}

/* =========================
   検索窓の共通調整
   ========================= */

.header-search input {
  min-width: 0;
}

.header-search button {
  min-width: 70px;
  white-space: nowrap;
  flex-shrink: 0;
  writing-mode: horizontal-tb;
}

/* =========================================
   検索トップ専用の検索窓
   ========================================= */

.search-home__search {
  display: flex;
  width: min(750px, 90vw);
  margin: 0 auto;
}

.search-home__search input {
  flex: 1;
  min-width: 0;

  height: 56px;
  padding: 0 18px;

  font-size: 16px;
}

.search-home__search button {
  width: 90px;
  min-width: 90px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;
  flex-shrink: 0;

  writing-mode: horizontal-tb;
}

.search-home__search button img {
  display: block;
}