html {
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
}

body {
	margin: 10px;
	padding: 0;
	background-color: pink;
	color: deeppink;
}

input[type=text] {
	font-size: 1rem;
}

button {
	background-color: dodgerblue;
	color: white;
	font-size: 1rem;
	border: 2px outset;
	width: auto;
	height: 30px;
}

button:active {
	background-color: blue;
	border: 2px inset;
}

button {
	cursor: pointer;
}

label {
	font-weight: bold;
}

textarea {
	font-size: 1rem;
	line-height: 1.2rem;
	font-family: 'Noto Sans JP', sans-serif;
}