/* search-form.css - SP共通検索フォームコンポーネント */

.sp-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
}

.sp-search-input-wrapper {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  height: 60px;
  align-items: center;
  padding: 10px 15px;
  background-color: #FFFFFF;
  border: 2px solid #FF1100;
  border-radius: 10px 0 0 10px;
}

.sp-search-input {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  border: none;
  outline: none;
}

.sp-search-input::placeholder {
  color: #797979;
}

.sp-search-button {
  display: inline-flex;
  height: 60px;
  align-items: center;
  padding: 10px 20px;
  background-color: #FF1100;
  border-radius: 0 10px 10px 0;
  border: none;
  cursor: pointer;
}

.sp-search-button-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
}
