/* --- 固定表示検索ボックス（検索ボックス）20250828 --- */
#searchBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 8px;
  box-sizing: border-box;
  z-index: 9999;

  /* 横並びデザイン */
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin: 10px 0;
}

/* --- 入力欄 --- */
#searchInput {
  width: 50%;
  min-width: 120px;
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #666;
  border-radius: 6px;
}

/* --- ボタン --- */
#searchBox button {
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

/* --- 本文との重なり防止 --- */
#content {
  margin-top: 70px;
}

/* --- スマホ向け（480px以下） --- */
@media (max-width: 480px) {
  #searchInput {
    width: 55%;
    font-size: 14px;
  }
  #searchBox button {
    font-size: 12px;
    padding: 6px 10px;
  }
  #content {
    margin-top: 90px;
  }
}
