/*
検索Box
---------------------------------------------------------------------------------------------------- */
#search_button {

	display: block;
	width: 30px;
	height: 30px;
	float: right;
	margin: 0;
	padding: 0;
	color: #666;
	background-image: url(/img/common/icons/search.svg);
	background-repeat: no-repeat;
	border: 1px solid #ccc;
	background-color: #ffffff;
	cursor: pointer;

}

#search_button:hover {

	background-color: #ffe0e0;

}


#search_button span {

	display: none;

}

#search_form {

	width: 100%;
	margin-top: 5px;
	position: absolute;
	background-color: #5c5c5c;
	z-index: 100;
	top: 35px;
	left: 0px;
	display: none;

}

#search_form form {

	width: 980px;
	margin: 10px auto;
	text-align: center;
	position: relative;
	font-family: "I-OTF-UDゴ本文Pro R";
}

#search_form form label {

	color: #ffffff;

}

#search_form form input {

	padding: 5px 10px;
	margin-left: 0px;
	font-size: 1.2em;
	font-family: "I-OTF-UDゴ本文Pro R";
}

#search_form form input[type=text] {

	width: 350px;
	height: 40px;
}

#search_form form input[type=submit] {

	color: #5c5c5c;
	font-size: 0.9em;
	font-family: "I-OTF-UDゴ本文Pro R";
	height: 40px;
	padding: 10px 20px;

}

#search_form form .search_close {
	position: absolute;
	right: 55px;
	top: 0px;
	display: inline-block;
	z-index: 120;
	cursor: pointer;
}

#search_form form .search_close span {
	background-image: url(/img/common/icons/search_close.svg);
	background-position: top center;
	background-repeat: no-repeat;
	color: #ffffff;
	font-weight: bold;
	padding-top: 5px;
	position: relative;
}

#search_form form .search_close span:after {

	content: "";
	position: absolute;
	top: -25px;
	left: 6px;
	border: 12px solid transparent;
	border-bottom: 12px solid #5c5c5c;

}