﻿/*2019/03/06 S21追加*/

.btnSearch {
	display: inline-block;
	position: relative;
	width: 12.5vw;
	max-width: 145px;
	height: 2.7em;
	box-sizing: border-box;
	margin: 0 auto;
}
.btnSearch > a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 3em;
	/*
  box-shadow: 0 8px 21.6px 2.4px rgba(0, 51, 43, 0.3);
  */
}
.btnSearch > a:hover {
	border-radius: 3em;
	/*
  box-shadow: 0 10px 24px 2.4px rgba(0, 51, 43, 0.3);
	transform: scale(1.05);
  */
}
.btnSearch > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0.6em;
	text-align:center;
	line-height: 1;
	box-sizing: border-box;
	color: #fff;
	display: inline-block;
	pointer-events:none;
}
.btnSearch > span > span {
	padding-right: 0.5em;
}

@media screen and (max-width: 800px) {
	.btnSearch {
		width: 100%;
		max-width: inherit;
		margin: 1em 0 0;
		padding: 0;
 	}
}
/**/
