@charset "UTF-8";

.search_box {
	margin-bottom: 50px;
}

.search_box.last-child {
	margin-bottom: 60px;
}

.search_box_title {
	position: relative;
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: normal;
	padding-left: 30px;
}

.search_box_title::before {
	content: "";
	position: absolute;
	background: #74BC46;
	width: 18px;
	height: 18px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.search_box_inner {
	padding: 20px 30px 0;
}

.search_box_inner {
	display: flex;
	flex-wrap: wrap;
	background: #EFF7E1;
}



.search_box_inner li {
	width: calc(100% / 4);
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	/* margin-right: 50px; */
}

.search_box_inner.full li {
	width: 100%;
}

.search_box_inner li input {
	margin: 1px 5px 0 0;
	min-width: 14px;
	max-width: 14px;
}


.btn_search {
    display: block;
    position: relative;
    width: 290px;
    height: 60px;
    line-height: 60px;
    text-align: left;
    padding-left: 90px;
    background: #16892E;
    border: 1px solid #16892E;
    border-radius: 5px;
    color: #fff;
    margin: 0 auto 60px;
    font-weight: bold;
    box-sizing: border-box;
    font-size: 16px;
}


.btn_search::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 23px;
    background: url(../images/company/icon_data.svg) no-repeat left center;
    top: 0;
    bottom: 0;
    left: 60px;
    margin: auto;
}	

.btn_search:hover{
	background: #fff;
	color: #16892E;
}

.btn_search:hover::before{
	background: url(../images/company/icon_data_green.svg) no-repeat left center;
}	

@media screen and (max-width: 800px) {

	.search_box_inner li {
		width: calc(100% / 3);
	}

}

@media screen and (max-width: 600px) {

	.search_box_title .sp_only {
		display: block;
	}

}

@media screen and (max-width: 414px) {
	.search_box_title::before {
		top: 4px;
		bottom: auto;
	}

	.search_box_inner li {
		width: calc(100% / 2);
	}

	.search_box_inner {
		padding: 20px 20px 0;
	}

}