.contents__news {
  padding: 150px 0;
}

.contents__news h1 {
  margin-bottom: 70px;
}

.contents__news .search-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contents__news .search-wrap select,
.contents__news .search-wrap input {
  border: 1px solid #ccc;
  outline: none;
  padding: 5px 10px;
  box-sizing: border-box;
  transition: 0.3s;
}

.contents__news .search-wrap select:focus,
.contents__news .search-wrap input:focus {
  border: 1px solid #666;
}

.contents__news .search-wrap select {
  width: 100px;
}

.contents__news .search-wrap input[type="text"] {
  width: 200px;
  margin: 0 10px;
}

.contents__news .search-wrap button {
  width: 50px;
  height: 30px;
  color: #fff;
  background-color: #343a40;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contents__news .search-wrap button:hover {
  opacity: 0.9;
}

.contents__news table {
  width: 100%;
  text-align: center;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.contents__news table th,
.contents__news table td {
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contents__news table th {
  background-color: #fff;
  border-bottom: 2px solid #000;
}

@media (max-width: 768px) {
  .contents__news {
    padding: 50px 0;
  }

  .contents__news h1 {
    font-size: 30px;
  }

  .contents__news .table_wrap {
    overflow-x: scroll;
  }

  .contents__news table th,
  .contents__news table td {
    font-size: 12px;
  }
  .contents__news .search-wrap select {
    width: 30%;
  }
  .contents__news .search-wrap input[type="text"] {
    width: 50%;
  }
  .contents__news .search-wrap button {
    width: 15%;
  }
}
