.main_kv {
  position: relative;
  margin-bottom: 118px;
}

.main_seach {
  max-width: 800px;
  width: 100%;
  position: absolute;
  bottom: -118px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #fff;
}

.main_seach_inner {
  padding: 24px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

.main_seach_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main_seach_flex-item {
  border-radius: 4px;
}

.main_seach_flex-item:first-of-type {
  width: 100%;
  background:rgba(19, 19, 19, 0.1);
  margin-bottom: 16px;
}

.main_seach_flex-item input  {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
}

.main_seach_flex-item button {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
}

.main_seach_flex-item:nth-of-type(2) {
  max-width: 540px;
  width: 100%;
}

.search-submit {
  background-color: rgba(41, 64, 114, 1);
  color: #fff;
}

.search-submit:disabled {
  background-color: #cccccc;
  color: #757575;
}

@media screen and (max-width: 1000px) {
  .main_seach {
    width: 80%;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .main_seach {
    width: 90%;
  }
}

/* 結果ページ */
.search_titile {
  margin-bottom: 16px;
}

.page_seach {
  max-width: 1000px;
  margin: 32px auto 0;
}

.page_seach .main_seach_inner {
  box-shadow: none;
  padding: 0;
}

.no_search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
}

.no_search_text {
  text-align: center;
  line-height: 2;
}