.t-search__keyword {
  display: flex;
  justify-content: flex-start;
  font-weight: 600;
  align-items: center;
  margin: 0 0px 35px 0;
}
.t-search__keyword--list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.t-search__keyword--list li {
  margin: 0 5px;
  background: #eee;
  border-radius: 20px;
  padding: 2px 12px;
}
@media screen and (max-width: 600px) {
.t-search__keyword{
  display: block;
  width: 90%;
  margin: 0 auto 20px;
}
.t-search__keyword--list {
  flex-wrap: wrap;
}
.t-search__keyword--list li {
  width: 47%;
  text-align: center;
  margin: 5px 0;
}
}