.ms-side-search {
  position: relative;
  background: transparent; /* 背景に溶け込む透明！ */
  border: none; /* 枠線なし！ */
  padding: 0; /* 余白もスッキリ */
  box-shadow: none; /* 影もなし！ */
  margin-bottom: 30px;
  box-sizing: border-box;
}

/* ※ 上にあったオレンジのライン（::before）も消したよ！ */

.ms-side-search--top {
  width: 100%;
}

.ms-side-search__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ms-side-search__headMain {
  min-width: 0;
}

.ms-side-search__sub {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #f57c22;
}

.ms-side-search__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #222222;
}

.ms-side-search__clear {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #ffffff;
  color: #444444;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.ms-side-search__clear:hover {
  background: #fff5ee;
  border-color: #f3a064;
}

.ms-side-search__clear:active {
  opacity: 0.9;
}

.ms-side-search__form {
  margin: 0;
}

.ms-side-search__grid {
  display: grid;
  grid-template-columns: minmax(220px, 2.2fr) repeat(5, minmax(120px, 1fr));
  gap: 14px;
  align-items: end;
}

.ms-side-search__group {
  min-width: 0;
}

.ms-side-search__label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #3c4043;
}

.ms-side-search__input,
.ms-side-search__select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  background: #ffffff; /* 入力欄は白くして目立たせる！ */
  font-size: 14px;
  color: #222222;
  box-sizing: border-box;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ms-side-search__input::placeholder {
  color: #9aa0a6;
}

.ms-side-search__input:focus,
.ms-side-search__select:focus,
.ms-side-search__choiceInput:focus + .ms-side-search__choiceLabel {
  outline: none;
  border-color: #f57c22;
  box-shadow: 0 0 0 4px rgba(245, 124, 34, 0.14);
}

.ms-side-search__select {
  background-image:
    linear-gradient(45deg, transparent 50%, #9a9a9a 50%),
    linear-gradient(135deg, #9a9a9a 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.ms-side-search__select:disabled,
.ms-side-search__input:disabled {
  background-color: #f6f6f6;
  color: #9aa0a6;
  cursor: not-allowed;
}

.ms-side-search__choices {
  display: none;
  margin-top: 14px;
  padding: 0; /* 余白なし */
  border: none; /* 枠線なし */
  background: transparent; /* 背景透明 */
}

.ms-side-search__choices.is-active {
  display: block;
}

.ms-side-search__choiceList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ms-side-search__choice {
  position: relative;
}

.ms-side-search__choiceInput {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ms-side-search__choiceLabel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #ffffff; /* ボタンは白ベースで清潔感！ */
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #444444;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.ms-side-search__choiceLabel:hover {
  border-color: #f3a064;
  background: #fff8f2;
}

.ms-side-search__choiceInput:checked + .ms-side-search__choiceLabel {
  border-color: #f57c22;
  background: #f57c22;
  color: #ffffff;
}

.ms-side-search__empty {
  padding: 10px 0; /* 余白スッキリ */
  border: none; /* 枠線なし */
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
  background: transparent; /* 背景透明 */
}

.ms-side-search__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.ms-side-search__note {
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
  color: #6b7280;
}

.ms-side-search__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f57c22 0%, #ff9b4a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(245, 124, 34, 0.22);
}

.ms-side-search__button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.ms-side-search__button:active {
  transform: translateY(1px);
}