/*--------------------------------------



--------------------------------------*/
.contentSubBox:not(:last-of-type) {
  margin: 0 0 60px;
}

.searchBox {
  background: #F9F9F9;
  padding: 25px 20px;
}

.searchTitle {
  font-weight: 400;
  font-size: 14;
  margin: 0 0 15px;
}

.searchText {
  font-size: 14;
}

.resultWrap {
  margin: 0 0 70px;
}

.resultList {
  display: grid;
  grid-template-columns: calc(50% - 6px) calc(50% - 6px);
  grid-column-gap: 12px;
  grid-row-gap: 13px;
}

.resultLink {
  position: relative;
  background: #F9F9F9;
  border: solid 1px #DFDFDF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 45px;
  color: #444444;
  transition: 0.3s;
  text-decoration: none;
}
.resultLink:hover {
  opacity: 0.8;
}
.resultLink::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #61D2DB;
  border-right: solid 2px #61D2DB;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.resultTableWrap {
  overflow-x: scroll;
}

.resultTable {
  width: 100%;
  border-top: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
  min-width: 800px;
}

.resultTableHeadMenu {
  border-bottom: solid 1px #CCCCCC;
  border-left: solid 1px #CCCCCC;
  background: #F9F9F9;
  font-weight: 400;
  padding: 5px 5px;
}
.resultTableHeadMenu:nth-of-type(1) {
  width: 68px;
}
.resultTableHeadMenu:nth-of-type(2) {
  width: 550px;
}
.resultTableHeadMenu:nth-of-type(3) {
  width: 262px;
}

.resultTableHead {
  border-bottom: solid 1px #CCCCCC;
  border-left: solid 1px #CCCCCC;
}

.resultTableData {
  border-bottom: solid 1px #CCCCCC;
  border-left: solid 1px #CCCCCC;
}
.resultTableData:nth-of-type(1) {
  padding: 20px 15px;
}
.resultTableData:nth-of-type(2) {
  text-align: left;
  padding: 5px 5px;
}
.resultTableData:nth-of-type(3) {
  text-align: center;
}
@media print, screen and (min-width: 800px) {
  .resultTableWrap {
    overflow: auto;
  }
}
@media print, screen and (min-width: 960px) {
  .resultList {
    grid-template-columns: calc(25% - 9px) calc(25% - 9px) calc(25% - 9px) calc(25% - 9px);
    grid-column-gap: 12px;
  }
}

/*# sourceMappingURL=search.css.map*/