@charset 'Shift_JIS';

/* iOSでのデフォルトスタイルをリセット */

input[type='text'], input[type='password'], textarea, select
{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand
{
  display: none;
}

input[type='submit'],input[type='button']
{
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type='submit']::-webkit-search-decoration, input[type='button']::-webkit-search-decoration
{
  display: none;
}
input[type='submit']::focus, input[type='button']::focus
{
  outline-offset: -2px;
}
button, input[type='submit']
{
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}


/* ボタン初期色 */
input[type='submit'],input[type='button']
{
  background-color: rgb(239, 239, 239);
  color: black;
}
