
/* 検索バーとボタン全体の位置調整 */
.search_style{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* 検索バーの調整 */
.search_word{
  display: flex;
  width: 200px;
  height: 35px;
}

/* 検索ボタンの調整 */
button.search_button_tokyo,
button.search_button_kanagawa,
button.search_button_saitama,
button.search_button_chiba {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  border-width: 0;
}


/* 東京会場 */
/* 検索ボタンの色調整 */
.search_button_tokyo{
  background-color: #f3505a;
}
.search_button_tokyo:hover{
  color: #fff;
}

/* 神奈川会場 */
/* 検索ボタンの色調整 */
.search_button_kanagawa{
  background-color: #00BFB2;
}
.search_button_kanagawa:hover{
  color: #fff;
}

/* 埼玉会場 */
/* 検索ボタンの色調整 */
.search_button_saitama{
  background-color: #1FA3F4;
}
.search_button_saitama:hover{
  color: #fff;
}

/* 千葉会場 */
/* 検索ボタンの色調整 */
.search_button_chiba{
  background-color: #fab35f;
}
.search_button_chiba:hover{
  color: #fff;
}

