/* menu button */

/* red */
.button-red{
	font-family: -apple-system, blinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	background: linear-gradient(#FED6E3 10%, #CA556C 100%);
	border-radius: 3px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	color: firebrick;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	height: 45px;
	line-height: 20px;
	overflow: hidden;
	/* padding: 0px 10px; */
	position: relative;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	vertical-align: middle;
}
.button-red:hover {
	color: lightcyan;
}
.button-red:active{
	background: linear-gradient(#CA556C 100%, #FED6E3 10%);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	transform: translateY(2px);
	transform: translateY(2px);
}

/* red slim */
.button-red-slim{
	background: linear-gradient(#FED6E3 10%, #CA556C 100%);
	border-radius: 3px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	color: firebrick;
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	height: 24px;
	line-height: 14px;
	overflow: hidden;
	padding: 0px 10px;
	position: relative;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	vertical-align: middle;
}
.button-red-slim:hover {
	color: lightcyan;
}
.button-red-slim:active{
	background: linear-gradient(#CA556C 100%, #FED6E3 10%);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	transform: translateY(2px);
	transform: translateY(2px);
}

/* blue */
.button-blue {
	font-family: -apple-system, blinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	background: linear-gradient(lavender 10%, #0090CA 100%);
	border-radius: 3px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	color: dodgerblue;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	height: 45px;
	line-height: 20px;
	overflow: hidden;
	/* padding: 0px 10px; */
	position: relative;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	vertical-align: middle;
}
.button-blue:visited {
	color: dodgerblue;
}
.button-blue:link {
	color: dodgerblue;
}
.button-blue:hover {
	color: lightcyan;
}
.button-blue:active{
	background: linear-gradient(#0090CA 100%, lavender 10%);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	transform: translateY(2px);
	transform: translateY(2px);
}

/* blue slim */
.button-blue-slim{
	font-family: -apple-system, blinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	background: linear-gradient(lavender 10%, #0090CA 100%);
	border-radius: 3px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	color: dodgerblue;
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	height: 20px;
	line-height: 16px;
	overflow: hidden;
	position: relative;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	vertical-align: middle;
}
.button-blue-slim:hover {
	color: lightcyan;
}
.button-blue-slim:active{
	background: linear-gradient(#0090CA 100%, lavender 10%);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	transform: translateY(2px);
	transform: translateY(2px);
}

/* service request button */
.button-request{
	font-family: -apple-system, blinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	background: linear-gradient(lavender 10%, #0090CA 100%);
	border-radius: 45px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	color: dodgerblue;
	display: inline-block;
	font-size: 28px;
	font-weight: bold;
	height: 60px;
	line-height: 32px;
	overflow: hidden;
	/* padding: 0px 10px; */
	position: relative;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	vertical-align: middle;
}
.button-request:hover {
	color: lightcyan;
}
.button-request:active{
	background: linear-gradient(#0090CA 100%, lavender 10%);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	transform: translateY(2px);
	transform: translateY(2px);
}
