.search_bg {
  background: #E4F5FA;
  width: 90%;
  margin: 1em auto 0;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
}
.search_list {}
.search_list > li {
  margin: 0 auto 1.5em;
  text-align: left;
}
.search_list > li > p {
  color: #0086CC;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 auto 0.5em;
}
/* キーワード検索 */
.search-form {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.search-form input {
  width: 100%;
  height: 45px;
  padding: 5px 50px 5px 15px;
  border: none;
  border-radius: 50px;
  box-sizing: border-box;
  background-color: #ffffff;
  font-size: 1em;
  outline: none;
}
.search-form input::placeholder {
  color: #BCBCBC;
}
.search-form button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: #2589d0;
  cursor: pointer;
}
.search-form button::after {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}
.selectbox {
  width: 100%;
}
.choices__inner {
  box-sizing: border-box;
  height: 45px !important;
  padding: 7px 5px 5px 10px !important;
  border-radius: 50px !important;
  background-color: #fff !important;
  border: none !important;
  min-height: 45px !important;
}
.choices__list--multiple .choices__item {
  background-color: #535353;
  border: none;
  border-radius: 15px;
  font-size: 0.9em;
}
.choices__list--dropdown {
  border-radius: 15px;
}
.choices__input {
  padding: 7px 0 0 5px !important;
  font-size: 1.3rem !important;
  margin-bottom: 0 !important;
  background-color: #fff !important;
  width: 300px !important;
  font-weight: 600;
}
.choices__list--multiple .choices__item {
  background-color: #0086CC !important;
  border: 1px solid #0086CC !important;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
  border-left: 1px solid #fff !important;
}
/* ------------------------------------ */
/* PC */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .search_bg {
    max-width: 1100px;
    margin: 1em auto 2em;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 20px;
  }
  .search_list {
    max-width: calc(950px + 30px);
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
  }
  .search_list > li {
    margin: 0 15px 0em;
    width: calc(100% / 2 - 30px);
  }
  .search_list > li > p {
    letter-spacing: 2px;
    font-size: 2rem;
  }
  .choices__input {
    font-size: 1.5rem !important;
    width: 350px !important;
  }
}