/* ===================================================================== */
/* キーワードサーチ用css */
.search{
	position:relative;
	max-width:700px;	
	margin-bottom:20px;
}
.search > input{
	height:72px;
	width: 700px;
	padding:0 10px; 
	position:absolute; 
	left:0;
	top:0; 
	border-radius:36px;
	border:0;
	outline:0;
	background:#eee;
	font-size:30px;
	text-align:center;
}
.search > button{
	height:72px;
	width:172px;	
	position:absolute; 
	right:0px;
	background:#008080;
	color:#fff;
	border:;
	border-radius:36px;
	border:0;
}
.search > button .fa-search{
	font-size:2rem;	
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

}
.search > button:hover{
	color:#888;
}