@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------
 ナビ
--------------------------------------------- */
#header_navi {
	width: 100%;
	padding: 5px;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}
#header_navi > div {
	display: inline-block;
	vertical-align: middle;
}
#header_navi > div img {
	width: 100%;
}
/* 看板 */
#header_navi .logo{
	width: 60%;
	margin-right: 20px;
}
/* HRCロゴ */
#header_navi .hrc {
	width: 15%;
	text-align: center;
}
#header_navi .hrc span {
	display: block;
	font-size: 11px;
}

/* ---------------------------------------------
 メニュー
--------------------------------------------- */
#header_menu {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	background-color: #039;
}
#header_menu > li {
	width: calc(100%/4);
	padding: 6px 0;
	border-right: 1px solid #036;
	box-shadow: 1px 1px #03C;
	text-align: center;
}
#header_menu > li:last-child {
	border-right: 0;
}
#header_menu > li img {
	margin-bottom: 5px;
}
#header_menu > li span {
	display: block;
	color: #fff;
	font-size: 11px;
}

/* ---------------------------------------------
 検索
--------------------------------------------- */
#header_search {
	margin: auto;
	text-align: center;
}
#header_search > form {
	position: relative;
}
#header_search > form > .keywords {
	width: 70%;
    height: 20px;
	padding: 6px 8px;
    border: 3px solid #039;
	border-radius: 5px;
	outline: 0;
	font-size: 14px;
}
#header_search > form > .btn {
	position: absolute;
    top: 0;
    _top: 1px;
    left: 74%;
	padding: 6px 10px;
	background: #039;
	border: 3px solid #039;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #fff;
}

#header_search input[type="submit"] { /* iOS対処 */
	-webkit-appearance: none;
}









