#member_list {
  padding-top: 10rem;
  padding-bottom: 14rem;
}

.search_keyword {
  background-color: #D6E3E3;
  padding: 4rem 7.2rem;
}
.search_keyword form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50.3rem;
}
.search_keyword form input {
  width: 44.3rem;
  font-size: 1.2rem;
  padding: 1.4rem 1.5rem;
  background-color: #fff;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.search_keyword form input:placeholder {
  color: #B9BEBE;
}
.search_keyword form button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  width: 6rem;
  color: #fff;
  background-color: #00A0A1;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 1.2rem;
  text-align: left;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
.search_keyword form button:after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background: url(../images/common/icon_search_white.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.2rem;
}
.search_keyword form button:hover {
  background-color: #007D80;
}

.search_category {
  background-color: #F7FAFA;
  padding: 4rem 7.2rem 2.4rem;
}
.search_category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search_category ul li {
  list-style: none;
  width: 25%;
  padding-bottom: 1.6rem;
}
.search_category ul li a {
  color: #14629B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  text-decoration: underline;
  line-height: 1.4;
  width: 18.4rem;
  display: inline-block;
}
.search_category ul li a:hover {
  color: #7C8C98;
}

@media screen and (max-width: 767px) {
  #member_list {
    padding-top: 7rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10rem;
  }
  .search_keyword {
    padding: 3rem 2rem;
  }
  .search_keyword form {
    width: 100%;
  }
  .search_keyword form input {
    width: calc(100% - 6rem);
    font-size: 1.2rem;
    padding: 1.35rem 1.5rem;
  }
  .search_category {
    padding: 4rem 2rem 2.4rem;
  }
  .search_category ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .search_category ul li {
    width: 14rem;
    padding-bottom: 1.6rem;
  }
  .search_category ul li a {
    width: 100%;
  }
}