@charset "utf-8";

/* appearance: none; でデフォルトスタイルを消す */
.item-row select {
  -webkit-appearance: none; /* Chrome/Safari */
  -moz-appearance: none;    /* Firefox */
  appearance: none;        /* Standard */
}

/* Firefox用のスタイル設定 */
.item-row select::-ms-expand {
  display: none; /* IE10/11 */
}

 input[type="button"],
   input[type="submit"],
   button {
       appearance: none;
       -webkit-appearance: none; /* iPhoneのSafari対応 */
       /* 必要なスタイルを追記 */
   }

