@charset "UTF-8";
/*
Main Color
#F6ADC6; ピンク
#F0F8FF; アリスブルー
#F6F7F8 スノーグレー
#292524 黒に近いグレー
*/

.search-button-group {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px auto;
  margin-top: 16px;
}

.btn-search {
  display: block;
  width: 200px;
  margin: 12px auto;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #F6ADC6 0%, #a18cd1 100%);
  color: white;
  font-size: 1.05rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: linear-gradient(to right, #f9748f, #f78ca0);
  transform: scale(1.05);
}

@media screen and (max-width: 600px) {

  #h1 {
    margin-left: 50px;
  }
  .search-button-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-search {
    width: 200px;
    text-align: center;
  }
}