@charset "UTF-8";

/***********************************************************************************
  全般
***********************************************************************************/

a {
	transition: color 0.1s linear;
}

a:hover {
	color: #000000;
}

/***********************************************************************************
  フォーム
***********************************************************************************/

label,
select,
input[type=submit],
input[type=reset],
input[type=button] {
	cursor: pointer;
	transition: color 0.1s linear;
}

label:hover,
select:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
	color: #111111;
}

/***********************************************************************************
  バックリンク
***********************************************************************************/

main .back {
	transition: opacity 0.1s linear;
}

main .back:hover {
	opacity: 1;
}
