@charset "UTF-8";

html {
	box-sizing: border-box;}

body {
	line-height: 1.5;}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;}

/*option*/
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  /*background-color: transparent;*/
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

input:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked + label {
    background: #ff0000;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
    display: none;
}