.search_sidebar {
  display: block !important;
}

.search_sidebar-title {
  padding: 15px;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: bold;
}

.search_sidebar-content {
  padding: 10px;
  border: 1px solid var(--border-color);
}

.search-item {
  margin-bottom: 10px;
}

.search-title {
  font-size: 18px;
  position: relative;
  padding-left: 10px;
}

.search-title::before {
  content: "";
  background-color: var(--green);
  width: 4px;
  height: 70%;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 15%;
}

.search-content {
  margin: 10px 0;
}

.search-content select {
  width: 100%;
  padding: 5px;
}

.button-submit {
  width: 100%;
  height: 2.5em;
}

.button-submit-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .search_sidebar {
    display: none !important;
  }

  .open-search-sp {
    display: block !important;
  }

  .button-submit {
    display: none;
  }

  .button-submit-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .button-submit-sp button {
    background-color: #86ce32;
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
  }
}
