
.list .article-list-item .form-group {
  display: none;
}

.list-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  background: rgba(163,163,163, 0.21);
  margin-top: 10px;
  padding: 6px 16px;
  width: 100%;
}

.list-search-title {
  font-size: 12px;
  font-weight: bold;
}

.list-search-wrap {
  display: flex;
  align-items: center;
}

.list-search-link {
  position: relative;
  display: block;
  font-size: 12px;
  margin: 0 20px;
  background-color: #333;
  color: #fff;
  padding: 9px 10px;
  border-radius: 5px;
}

.list-search-link:first-child {
  margin-left: 40px;
}

.list-search-link::before {
  content: '';
  display: block;
  width: 1px;
  height: 31px;
  background: #707070;
  position: absolute;
  top: 0;
  left: -20px;
}

/* .list-search-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
} */

.list-search-link:nth-child(2) {
  margin-left: 0;
}

.list-search-link:nth-child(2)::before {
  display: none;
}

.list-search-wrap + .guide-block,
.list-search-wrap + .form-entry-wrap {
  margin-top: 40px;
}

.list-search-wrap .search {
  display: flex;
  align-items: center;
}

.list-search-wrap .search-category-select {
  width: 150px;
  position: relative;
  display: none;
  margin-left: 40px;
}

.list-search-wrap .search-category-select::before {
  content: '';
  display: block;
  width: 1px;
  height: 19px;
  background: #707070;
  position: absolute;
  top: 0;
  left: -20px;
}

.list-search-wrap .search-category-select::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

.list-search-wrap .search-category-select select {
  appearance: none;
  width: 100%;
  height: 20px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  font-size: 12px;
}

.list-search-wrap .search-keyword {
  display: flex;
  align-items: center;
}

.list-search-wrap .search-keyword input{
  display: block;
  width: 200px;
  padding: 5px;
  height: 41px;
  background: #fff;
  border: 1px solid #D5D5D5;
  font-size: 12px;
}

.list-search-wrap .search-keyword-button {
  display: flex;
  background: #333;
  padding: 7px;
}

.list-search-wrap .search-keyword-button-white {
  display: block;
}

.list-search-wrap .search-keyword-button-black {
  display: none;
}

.list-sort {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}

.list-sort-select-wrap {
  display: flex;
}

.list-sort-select {
  background: #fff;
  width: 150px;
  position: relative;
  display: block;
  margin-left: 20px;
}

.list-sort-select:first-child {
  width: 100px;
  margin-left: 0;
}

.list-sort-select::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

.list-sort-select select {
  background: #fff;
  appearance: none;
  width: 100%;
  height: 30px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #b4b3b3;
  border-radius: 2px;
}

.list-sort-select:first-child select {
  padding: 0 20px 0 10px;
}

.article-list-price .article-list-price-category {
  width: 100%;
  margin: 15px 0 5px;
  padding: 5px 10px;
  background: #cf2915;
  border-radius: 33px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.article-list-button {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 8px 0;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.article-list-review {
  margin-top: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.article-list-review-star {
  color: #E4791F;
  letter-spacing: 0.05em;
}

.article-list-review-text {
  color: #16599A;
  font-size: 12px;
}

@media screen and (max-width: 600px) {

  .list-search {
    display: none;
  }

  .list-sort {
    align-items: center;
    border-top: 1px solid #707070;
    margin-top: 12px;
    padding-top: 12px;
  }
  
  .list-sort-result {
    font-size: 12px;
  }
  
  .list-sort-select {
    width: 120px;
    margin-left: 10px;
  }
  
  .list-sort-select select {
    padding: 0 20px 0 10px;
    border-radius: 5px;
    font-size: 12px;
  }

  .list .article-list-text {
    margin-bottom: 10px;
  }

  .article-list-button {
    font-size: 12px;
    font-weight: normal;
  }

  .article-list-review {
    display: none;
  }
}