#search_new {
  background-color: #d1d7d7;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.btn_List {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 80px 0;
}

.btn_List li {
  width: calc((100% - 40px) / 3);
}

.btn_List a {
  display: block;
  width: 100%;
  padding: 20px 0;
  background-color: #f2f2f2;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
}

.btn_List_b a {
  border: 1px solid #ddd;
  box-sizing: border-box;
}

@media all and (max-width: 1020px) {
  .btn_List {
    flex-wrap: wrap;
    padding: 40px 5%;
  }

  .btn_List li {
    width: calc((100% - 20px) / 2);
  }

  .btn_List a {
    padding: 15px 0;
    font-size: 14px;
  }

  .btn_List_b {
    padding: 40px 5%;
    box-sizing: border-box;
  }
}

/* 検索結果 */
#search_new_results {
  padding: 80px 0;
  border-top: 1px solid #999;
}

.area_Name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  font-size: min(4vw, 24px);
  font-weight: 500;
  text-align: center;
}

.area_Name::before,
.area_Name::after {
  display: block;
  content: '';
  width: 10vw;
  height: 5px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.none_Txt {
  font-size: min(3vw, 16px);
  text-align: center;
}

.newcondo_TableWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.newcondo_List {
  width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  font-weight: 400;
}

.newcondo_List th,
.newcondo_List td {
  padding: 10px 5px;
  box-sizing: border-box;
}

.newcondo_List th {
  color: #fff;
  background-color: #0091d2;
  border-right: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.newcondo_List td {
  border-right: 1px dotted #999;
  border-bottom: 1px solid #999;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  background-color: #fff;
}

.newcondo_List th:last-child,
.newcondo_List td:last-child {
  border-right: none;
}

.newcondo_List td a {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 7px 0;
  color: #fff;
  background-color: #999;
  border-radius: 3px;
  font-size: min(1vw, 14px);
  font-weight: 400;
  text-align: center;
}

@media all and (max-width: 1020px) {
  #search_new_results .container {
    width: 90%;
  }

  .newcondo_TableWrap {
    overflow-x: auto;
  }

  .newcondo_List {
    width: max-content;
    min-width: 1100px;
  }

  .newcondo_List th,
  .newcondo_List td {
    white-space: nowrap;
  }

  .newcondo_List th:first-child,
  .newcondo_List td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    white-space: normal;
  }

  .newcondo_List th:first-child {
    z-index: 3;
    background-color: #0091d2;
  }

  .newcondo_List td:first-child {
    background-color: #fff;
    border-right: 1px solid #999;
  }

  .newcondo_List td:first-child a {
    white-space: normal;
    font-size: 12px;
  }
}