/*
ボタンCSS
*/

.btn_normal {
	letter-spacing: 0.5em;
	padding: 0.3em 1em;
	padding-left: 1.5em;
	color: #ffffff;
	border: solid 2px #eb6101;
	border-radius: 3px;
	transition: .4s;
	font-size: 20px;
	font-weight: bold;
	background-color: #eb6101;
	cursor: pointer;
	font-size: 20px;
}

.btn_normal:hover,
.btn_normal:active {
	border: solid 2px #f08300;
	background-color: #f08300;
}


.btn_reentry {
	margin-bottom: 50px;
	letter-spacing: 0.5em;
	padding: 0.3em 1em;
	padding-left: 1.5em;
	color: #ffffff;
	border: solid 2px #0095d9;
	border-radius: 3px;
	transition: .4s;
	font-size: 20px;
	font-weight: bold;
	background-color: #0095d9;
	cursor: pointer;
	font-size: 22px;
}


.btn_close {
	text-align: center;
}

.btn_close button {
	height: 40px;
	width: 180px;
	padding:1px;
	font-size: 16px;
	line-height: 35px;
	text-shadow: 0px -1px 0px darkgoldenrod;
	background: white;
	border: 1px solid orange;
	border-radius: 5px;
	box-shadow: 1px 1px 2px #ccc;
	transition: 0.3s;
}

.btn_close button span {
	display: inline-block;
	height: 100%;
	width: 100%;
	text-align: center;
	background: orange;
	background: linear-gradient(top, gold, orange);
	border-radius: 5px;
	color: white;
}

.btn_close button:hover {
	opacity: 0.8;
}

.btn_close button:active{  /* クリックした時 */
	transform: translateY(2px);
	box-shadow: none;
}

.btn_close button span i {
	color: white;
}
