@charset "utf-8";
/* CSS Document */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-weight: normal;
	color: #444;
}

textarea {
  resize: vertical;
	background: #fff;
}

input[type="text"], input[type="password"] {
	background: #fff;
}

/*input[type='checkbox'],
input[type='radio'] {
  display: none;
}*/

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

::placeholder {
  color: skyblue;
  font-size: .95em;
}


input[type='submit']:disabled{
	filter: opacity(.7);
	cursor:not-allowed;
	color: #aaa;
}
input[type='submit']:disabled:hover {
	opacity: 1!important;
	cursor:not-allowed;
}

body{
  font-family: 'メイリオ', 'Meiryo', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'MSゴシック',sans-serif;
}


