/****************************** mobile,cpmmon ******************************/

.search_item_con h3 {
	display: none;
}
.search_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.search_item {
  width: 47.5%;
  height: 120px;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #fff;
  /* padding: 0 20px; */
  line-height: 18px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.search_item a {
  width: 100%;
  height: 100%;
  position: relative;
}
.search_item a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}
.search_item img {
  border-radius: 10px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.search_item h4 {
  font-size: 14px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 2;
}

.search_item_hide {
	display: none;
}

/* ラジオボタン  */
*, *::before, *::after {
  box-sizing: border-box;
}

.search_kind_radio {
  margin-bottom: 25px;
}

.search_kind_radio {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #b6b6b6;
  }

.search_kind_radio li {
	position: relative;
	flex: 1;
}

.search_kind_radio input {
  width: 100%;
  height: 35px;
  opacity: 0;
}

.search_kind_radio label {
  position: absolute;
  top: 0;
	left: 0;
  font-size: 14px;
	font-weight: 600;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--black_text);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-right: 1px solid #b6b6b6;
}

.search_kind_radio li:last-child label {
  border-right: 0;
}

.search_kind_radio input:checked + label {
  background: var(--corp_color);
  color: #fff;
}

/****************************** tablet ******************************/
@media (min-width: 600px){

}

/****************************** PC ******************************/
@media (min-width: 1025px){
	.search_item {
		width: 23%;
		height: 140px;
		margin-bottom: 25px;
	}
	.search_item img {
		margin-bottom: 12px;
	}
	.search_item h4 {
		font-size: 16px;
	}
}
