@charset "utf-8";

.product_list {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.product_list > .flex {
	width: 50%;
}
.product_list > .flex:nth-child(odd) {
	padding-right: 2%;
}
.product_list > .flex:nth-child(even) {
	padding-left: 2%;
}
.product_list > .flex:nth-child(n+3) {
	border-top: 1px solid #e0e0e0;
	padding-top: 40px;
	margin-top: 40px;
}
.product_img {
	width: 30%;
	text-align: center;
}
.product_img img {
	max-width: 150px;
}
.product_body {
	width: 67%;
}
.product_body .list.pdf > li + li {
	margin-top: .5em;
}
.product_body .list.pdf > li ._link {
	display: inline-block;
	font-size: clamp(18px, 1.5vw, 20px);
}
.product_body .list.pdf > li ._text {
	line-height: 1.4;
	margin-top: .25em;
}



@media only screen and (max-width: 768px) {
	.product_list {
		flex-direction: column;
	}
	.product_list > .flex {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
	.product_list > .flex:nth-child(odd) {
		padding-right: 0;
	}
	.product_list > .flex:nth-child(even) {
		padding-left: 0;
	}
	.product_list > .flex:nth-child(n+2) {
		border-top: 1px solid #e0e0e0;
		padding-top: 20px;
		margin-top: 20px;
	}
	.product_img {
		width: 25%;
	}
	.product_body {
		width: 70%;
	}
	.product_body .list.pdf > li ._link {
		font-size: clamp(16px, 1.2vw, 17px);
	}
	
	
	
	
}
@media only screen and (min-width: 769px) {
	
}