@charset "UTF-8";

p {
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  color: #555;
}

.search-container {
  text-align: center;
}

.search-box {
  position: relative;
  width: 300px;
  margin: 0 auto 280px;
}

#searchInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.suggest-list {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 100;
  display: none;
}

.suggest-item {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggest-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.suggest-item:hover {
  background: #f0f0f0;
}

/*-------------------------------------------モバイル ------------------------------------------*/
@media screen and (max-width: 767px) {

  h1,
  p {
    padding: 0 20px;
  }
}