.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2%; /* ％で統一 */
}

.product_list li {
  /* PC: 5カラム → 余白は gap(2%)×4個 */
  flex: 0 0 calc((100% - 4 * 2%) / 5);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px 10px 20px;
  text-align: center;
  margin-bottom: 20px; /* gapがあるので無くしてもOK */
}



.product_list_img {
	max-width: 195px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.product_list_txt {
	display: inline;
	text-align: center;
	line-height: 1.4;
	position: relative;
	padding-left: 20px;
	font-size: .8rem;
}

.product_list_txt::before {
	position: absolute;
	content: "";
	background: url(../img/index_arrow.png) no-repeat;
	background-size: 100%;
	width: 14px;
	height: 14px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.product_list_txt02::before {
	top: 12px;
}
@media (max-width: 768px) {
	.product_list_txt02::before {
	top: 10px;
}
}

.product_list_txt_linetwo {
	margin-bottom: -10px;
}



@media (max-width: 768px) {
  .product_list li {
    flex-basis: calc((100% - 1 * 2%) / 2);
	margin-bottom: 10px;
  }
  .product_list_txt {
	font-size: .8rem;
  }
}


/*0929*/

#index #area02 {
  padding-top: 30px;
  padding-bottom: 30px;
}

#product_area {
	background: #e9f3fd;
	padding-top: 0px;
}

.top_txt2 {
	margin-bottom: 20px;
	font-size: 1.2rem;
	margin-top: 30px;
}

@media (max-width: 768px) {
	.top_txt2 {
	font-size: 1rem;
}
}

#index #news {
	margin-bottom: 0 !important;
}


.index_search_btn {
	max-width: 630px;
}