.result {
  min-height: 80vh;
}

.search-result__title {
  margin: 30px 0;
}

.search-result [total-result] {
  display: none;
}

.search-result__noresult {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.search-result__noresult__title {
  color: #c7c7c7;
  font-size: 38px;
  font-weight: 600;
  line-height: 3rem;
  text-align: center;
}

.search-result__search-area {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
  padding: 10px 10px;
  height: 100px;
  background-color: #fff;
  border: 2px solid #d1d1d1;
}

.search-result__footnote {
  color: #5e6a7d;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 20.8px;
  line-height: 1.3rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 500;
}

.search-result__results {
  border-top: 1px solid #d1d1d1;
  margin-top: 20px;
  padding: 20px 0 50px 0;
}

.search-result__item {
  padding: 20px 0;
  border-bottom: 1px solid #d1d1d1;
}

.search-result__item:last-child {
  border-bottom: 0;
}

.search-result__item-title {
  color: #5e6a7d;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 500;
}

.search-result__item-link {
  color: #011837;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28.8px;
  line-height: 1.8rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 500;
  transition: color 0.3s;
}

.search-result__item-link:hover {
  color: #7e0c1e;
}

.search-result__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  margin-bottom: 40px;
  font-weight: 100;
}

.search-result__loading::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #d1d1d1;
  border-top-color: #7e0c1e;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  margin-right: 1rem;
}

.-hidden {
  display: none;
}

@media only screen and (max-width: 1247px) {
  .search-result {
    padding-top: 140px;
  }
}

@media only screen and (max-width: 1023px) {
  .search-result {
    padding-top: 170px;
  }

  .search-result__title {
    margin: 0 0 20px 0;
  }

  .search-result__search-area {
    padding: 5px 5px;
    height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .search-result {
    padding-top: 90px;
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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