/* breadcrumb */
@media (max-width: 639px) {
	.breadcrumb {
		position: absolute;
		left: 10px;
		bottom: -25px;
	}
	.breadcrumb li,
	.breadcrumb li a {
		font-size: 14px;
	}
}
/* title */
.search_ttl {
	display: flex;
	align-items: center;
	margin: 50px 20px;
}
.search_ttl h2 {
	font-size: 40px;
	font-weight: normal;
	margin-right: 3%;
}
.search_ttl h2:before {
  content: url(https://gropywu.me/search/search_bk.png);
display: inline-block;
  vertical-align: middle;
  transform: scale(0.5);
}
@media (max-width: 639px) {
	.search_ttl {
		margin: 70px 10px 30px;
	}
	.search_ttl h2 {
		font-size: 24px;
	}
	.search_ttl p {
		font-size: 14px;
	}
}
/* keyword */
.search_keyword {
	display: flex;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	border: 3px solid #00A63C;
	box-sizing: border-box;
}
.search_keyword input[type="text"] {
	width: calc(100% - 50px);
	font-size: 20px;
	margin: 0;
	padding: 15px;
	background: #fff;
	border: none;
}
.search_keyword input[type="text"]:focus {
	outline: 0;
}
.search_keyword input[type="submit"] {
	font-family: FontAwesome;
	color: #fff;
	width: 50px;
	height: 50px;
	background: #00A63C;
	border: none;
	cursor: pointer;
	outline : none;
	position: relative;
}
.search_keyword input[type="submit"]:after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: "\f002";
	font-family: "Font Awesome 5 Free";
	color: #fff;
}
@media (max-width: 639px) {
	.search_keyword input[type="text"] {
		width: calc(100% - 40px);
		font-size: 15px;
		padding: 10px;
	}
	.search_keyword input[type="submit"] {
		width: 40px;
		height: 40px;
	}
}
/* checkbox */
.search_checkbox {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.search_checkbox label {
	width: 20%;
	font-size: 16px;
	margin-bottom: 15px;
	padding-left: 30px;
	cursor: pointer;
	position: relative;
}
.search_checkbox input[type=checkbox] {
	display: none;
}
.search_checkbox label span:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
    border: 1px solid #ccc;
}
.search_checkbox label span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 4px;
    width: 15px;
    height: 24px;
    margin-top: -16px;
    border-right: 6px solid #00A63C;
    border-bottom: 3px solid #00A63C;
    transform: rotate(45deg);
    opacity: 0;
}
.search_checkbox input[type=checkbox]:checked + span:before {
    border-color: #666;
}
.search_checkbox input[type=checkbox]:checked + span:after {
    opacity: 1;
}
@media (max-width: 639px) {
	.search_checkbox label {
		width: 33%;
		font-size: 15px;
		margin-bottom: 10px;
		padding-left: 20px;
	}
	.search_checkbox label span:before {
	    width: 16px;
	    height: 16px;
	    margin-top: -8px;
	}
	.search_checkbox label span:after {
		width: 10px;
		height: 19px;
		margin-top: -13px;
		border-right: 5px solid #00A63C;
		border-bottom: 2px solid #00A63C;
	}
}
/* results */
.search_tbl {
	border: 3px solid #00A63C;
}
.search_tbl th,
.search_tbl td {
	padding: 10px;
	border: 1px solid #00A63C;
}
.search_tbl th {
	color: #fff;
	background: rgba(0, 166, 60, 0.6);
}
.search_tbl td.mail {
	text-align: center;
}
@media (max-width: 639px) {
	.search_tbl th,
	.search_tbl td {
		padding: 5px;
	}
}
/* button */



.search_btn button {
	text-align: center;
}
.search_btn input {
	width: 80%;
	max-width: 250px;
	font-size: 18px;
	color: #fff;
	padding: 15px;
	background: #FF555E;
	border: none;
	cursor: pointer;
	transition: 0.5s;
}
.search_btn input:hover {
	background: #00A63C;
}
.search_btn button{
	width: 80%;
	max-width: 350px;
	font-size: 18px;
	color: #fff;
	padding: 15px;
	background: #FF555E;
	border: none;
	cursor: pointer;
	transition: 0.5s;
    margin-top: 60px;
}

.search_btn button:hover {
background: #00A63C;
}

.search_btn {
    text-align: center;
}

input{
    font-size: 18px !important;
}


@media (max-width: 639px) {
	.search_btn input {
		font-size: 16px;
	}
}


/* button_form */
.search_btn {
	text-align: center;
}
.search_btn .search_btn_b {
	width: 80%;
	max-width: 250px;
	font-size: 18px;
	color: #fff;
	padding: 15px;
	background: #FF555E;
	border: none;
	cursor: pointer;
	transition: 0.5s;
}
.search_btn .search_btn_b:hover {
	background: #00A63C;
}
@media (max-width: 639px) {
	.search_btn .search_btn_b {
		font-size: 16px;
	}
}


