/* 検索切り替え */
input.srchTxt::-webkit-input-placeholder {
  color: #b2bbc3;
  font-size: 16px;
}
input.srchTxt:-moz-placeholder {
  color: #b2bbc3;
  font-size: 16px;
}
input.srchTxt::-moz-placeholder {
  color: #b2bbc3;
  font-size: 16px;
}
input.srchTxt:-ms-input-placeholder {
  color: #b2bbc3;
  font-size: 16px;
}

.srch_tab {
  position: relative;
  width: 109px;
  height: 40px;
}
.srch_tab::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 30px;
  background-color: #b8c3ce;
}


/** Custom Select **/
.srch-select__wrapper {
  position: relative;
  height: 100%;
  user-select: none;
}
.srch-select__wrapper select {
  display: none;
}
.srch-select {
  height: 100%;
  border: none;
  font-size: 0;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
}
.srch-select__trigger {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  background-color: #fff;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
}
.srch-select__trigger__icon.type-amazon-icon {
  left: 9px;
}
.srch-select__trigger__icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  z-index: 1;
}
.srch-select__trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 15px;
  border-top: 2px solid #5f6b78;
  border-right: 2px solid #5f6b78;
  width: 8px;
  height: 8px;
  transform: rotate(135deg);
  z-index: 1;
  pointer-events: none;
}
.srch-select__list {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  min-width: 100%;
  margin-top: 8px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 9px rgba(0,0,0,.2);
  transition: all .4s ease-in-out;
  z-index: 1;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.srch-select.opened .srch-select__list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.srch-select__item {
  display: block;
  position: relative;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.srch-select__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 92px;
  height: 1px;
  background-color: #b8c3ce;
  transform: translateX(-50%);
}
.srch-select__item:first-of-type::before {
  content: none;
}
.srch-select__label {
  display: inline-block;
  width: 92px;
  height: 26px;
  padding-left: 20px;
  line-height: 26px;
  border-radius: 20px;
}
.srch-select__icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
  z-index: 1;
}
.srch-select__item .type-amazon-icon {
  left: 17px;
}
.srch-select__item:hover .srch-select__label {
  background-color: #f7e2e4;
}