/* 共通のボタンスタイル */
button {
	background-color: dodgerblue;
	color: white;
	font-size: 1rem;
	border: 2px outset;
	width: auto;
	height: 30px;
	cursor: pointer;
	margin: 5px;
	padding: 0px 10px;
	border-radius: var(--borderRadius);
}

button:hover {
	background-color: royalblue;
}

button:active {
	background-color: royalblue;
	border: 2px inset;
}

button:focus {
	outline: 2px solid orange;
	outline-offset: 0px;
}