.displayNone {
  display: none;
}
.displayBlock {
  display: block;
}

/* 検索エリア */
.search__box {
  background-color: #f6f8f9;
  padding: 30px;
  margin: 25px auto 40px;
  height: auto;
}
.search__text {
  margin-bottom: 20px;
}
.search__form {
  width: 100%;
  margin-bottom: 30px;
  height: auto;
  position: relative;
}
.search__input {
  width: 100%;
  border: 1px solid #CCC;
  font-size: 16px;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.clear-button__box {
  position: relative;
}
.search__button {
  width: 200px;
  height: 40px;
  padding: 0;
  font-size: 14px;
  background-color: #2071bd;
  border-color: #2071bd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  flex-direction: column;
  border-width: 1px;
  border-style: solid;
  word-break: break-all;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.15);
}
.search__button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.clear-text {
  position: absolute;
  top: 50%;
  left: calc(50% + 130px);
  transform: translateY(-50%);
}
.btn--inactive {
  background-color: #ADADAD;
  border: #ADADAD;
}
.btn--inactive:hover {
  cursor: default;
}
.error-text {
  color: #de003f;
  text-align: center;
}

/* テーブル */
.service-list {
  margin: 40px auto;
}
table.service-table {
  margin-bottom: 10px;
}
.service-table,
.service-table tr,
.service-table tr th,
.service-table tr td {
  border: none;
}
.service-table col:nth-child(2) {
  width: 25%;
  min-width: 230px;
}
.service-table col:nth-child(3) {
  width: 165px;
}
.service-table tr th:nth-child(2),
.service-table tr td:nth-child(2) {
  border-left: 1px solid #CCC;
}
.service-table .service-table__head--category th {
  background-color: #2071BD;
  text-align: left;
  color: #fff;
  font-size: 16px;
}
.service-table .service-table__head--contents th {
  background-color: #F6F8F9;
  font-weight: normal;
  text-align: left;
}
.service-table .service-table__body tr {
  border-bottom: 1px solid #CCC;
}
.service-table .service-table__body tr td {
  padding: 30px 20px;
}
.service-table .service-table__body tr td .apply-icon__box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-table .service-table__body tr img.apply-icon:first-child {
  margin-right: 15px;
}
.service-table .service-table__body tr img.apply-icon {
  width: 86px;
}

@media screen and (max-width: 1019px) {
  .search__box {
    padding: 30px 20px;
  }

  .error-text {
    color: #de003f;
    text-align: left;
  }

  ul.list--down.sp-flex {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }
  ul.list--down.sp-flex li {
    margin-top: 13px;
    margin-right: 20px;
  }
  .clear-button__box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .clear-text {
    position: initial;
    margin-top: 35px;
  }
  .service-table col:first-child {
    width: 60%;
  }
  .service-table col:nth-child(2) {
    width: auto;
    min-width: auto;
  }
  .service-table tr:last-child th:nth-child(2),
  .service-table tr td:nth-child(2) {
    border-right: none;
  }
  .service-table .service-table__body tr td .apply-icon__box {
    flex-direction: column;
    margin: 0 auto;
    width: 86px;
  }
  .service-table .service-table__body tr td:nth-child(2) {
    padding: 16px 20px 16px 20px;
  }
  .service-table .service-table__body tr img.apply-icon {
    display: block;
    margin: 0 auto;
  }
  .service-table .service-table__body tr img.apply-icon:first-child {
    margin: 0 auto 10px;
  }
}


