/*レビューの回数を非表示に*/
.fs-c-reviewer__name__reviewNumber{
 display:none;
}

/*検索テキストボックス位置調整*/
@media screen and (min-width: 767px) {
.l-header__icon__search {
  left: 0;
}
}

/*検索テキストボックス背景色修正*/
input:-webkit-autofill {
    transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s!important;
}

/*検索アイコンクリックで検索結果に遷移*/
#search-form .search-icon {
    background-color: inherit;
    position: absolute;
    top: 0;
    left: 165px;
    opacity: 0;
}
.transparent {
    z-index: -999;
}
@media screen and (max-width: 767px) {
  #search-form .search-icon {
    top: -7.3vw;
    left: auto;
    right: 16vw;
    width: 4vw;
}

}