.search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.search__visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  width: 100%;
  height: 500px;
  background-color: #000000;
}

.search__visual__title {
  color: #ffffff;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 57.6px;
  line-height: 3.6rem;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-weight: 700;
  letter-spacing: 0.94px;
  text-align: center;
}

.search__visual__case {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.search__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.search__form__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
  width: 100%;
  background-color: #ffffff;
}

.search__form__input {
  background-color: transparent;
  border: none;
  color: #1b191c;
  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;
  -webkit-font-kerning: normal;
          font-kerning: normal;
}

.search__form__button {
  padding: 10px 15px;
  background-color: #e22927;
  border: none;
  color: #ffffff;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 27.2px;
  line-height: 1.7rem;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.search__form__button:hover {
  background-color: #bd1b19;
}

.search__form__total {
  padding: 20px 0;
  color: #8d8c8d;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  letter-spacing: 0.5px;
}

.search__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 25px;
  width: 100%;
}

.search-result {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.search-result__noresult__title {
  color: #363338;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 48px;
  line-height: 3rem;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
}

.search-result__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 0;
  padding: 15px;
  width: 100%;
  background-color: #f3f3f3;
  box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.1);
  transition: background-color 0.3s;
}

.search-result__item:hover {
  background-color: #e9e9e9;
}

.search-result__item h3 {
  margin: 10px 0;
  color: #e1201e;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 40px;
  line-height: 2.5rem;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-weight: bold;
}

.search-result__item a {
  color: #363338;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
}

.search-result__item a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 920px) {
  .search__visual {
    padding: 0 100px;
  }
  .search__form__item {
    padding: 15px 25px;
  }
  .search__container {
    padding: 40px 100px;
  }
}

@media only screen and (min-width: 1400px) {
  .search__visual {
    padding: 0  170px;
  }
  .search__container {
    padding: 40px 170px;
  }
}
