.search {
  padding-bottom: 21px;
  border-bottom: 1px solid #cfd3da;
  margin-bottom: 15px;
}
.search .raw1, .search .raw2 {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
}
.search_bar {
  box-sizing: border-box;
  position: relative;
  border: 1px solid #d0d0d0;
  padding: 0 10px;
  border-radius: 20px;
  height: 2.3rem;
  width: 265px;
  overflow: hidden;
  flex: 7;
}
.search_bar input[type="text"] {
  border: none;
  width: calc(100% - 3.5em);
  height: 2.3rem;
  font-family: "LINE Seed JP", Noto Sans JP, sans-serif;
  line-height: 10;
  line-height: 10;
}
.search_bar input[type="submit"] {
  cursor: pointer;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  padding-right: 3px;
  border: none;
  background-color: #0f3278;
  color: #fff;
  position: absolute;
  width: 3.5em;
  height: calc(100% + 6px);
  right:0px;
  top: -3px;
  outline : none;
}
.search_sort {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 2;
  height: 2.3rem;
}
.search_sort::after {
  content: "\f160";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #535353;
  font-size: .8em;
  position: absolute;
  pointer-events: none;
  right: 9px;
}
.search_sort select {
  width: 100%;
  appearance: none;
  height: 2.3rem;
  padding: .4em .8em;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  cursor: pointer;
  font-family: "LINE Seed JP", Noto Sans JP, sans-serif;
}
input:focus, button:focus, select:focus, textarea:focus {
  outline: none;
}
.search_isfree {
  display: flex;
  gap: 5px;
}
.search_isfree div {
  padding: 1px 10px;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: .7rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.search_isfree div:hover {
  background: #f3f3f3;
}
.search_isfree div.active {
  background: #0f3278;
  color: #fff;
}
.search_category {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.search_category::after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #0f3278;
  font-size: .8em;
  position: absolute;
  right: 5px;
  pointer-events: none;
  background-color: transparent;
}
.search_category select {
  direction: rtl;
  width: 100%;
  appearance: none;
  padding: 0 calc(.8em + 12px);
  border: none;
  border-radius: 3px;
  background-color: #fff;
  color: #0f3278;
  cursor: pointer;
  font-family: "LINE Seed JP", Noto Sans JP, sans-serif;
}

@media screen and (max-width: 480px) {
  .search_sort {
    aspect-ratio: 1 / 1;
    flex: unset;
  }
  .search_sort::after {
    right: 33%;
  }
  #s-sort {
    color: transparent;
    padding: 0;
    border-radius: 50%;
  }
  #s-sort:hover {
    /*color: #333333;*/
  }
}
