@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400&display=swap');


.view-btn{
	background: #ff9d1b;
	color: #fff;
	padding: 10px 0;
	width: 90%;
	max-width: 273px;
	margin: 30px auto;
	display: block;
	border-radius: 30px;
	text-align: center;
	position: relative;
}
.view-btn:after{
	content: '';
	display: inline-block;
	background: url(images/arrow-icon.svg) no-repeat;
	background-size: contain;
	width: 14px;
	height: 16px;
	vertical-align: middle;
	margin-left: 20px;
	margin-right: -20px;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
}
/* main
------------------------------------------------------ */
.main-bg{
	background: url(images/main-img.jpg) no-repeat;
	background-size: cover;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	height: 340px;
	position: relative;
	background-position: center;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px){
	.main-bg{
		height: 300px;
	}
}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
}

/* page-contents
------------------------------------------------------ */
.page-contents{
	width: 90%;
	max-width: 910px;
	margin: 120px auto 160px;
}
.category-bg{
	background: #E6F1EB;
	padding: 20px 0;
	margin-bottom: 60px;
}



.category-wrap{
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: 0 auto;
}
.category-item{
	width: 20%;
	text-align: center;
}
.category-name{
	text-align: center;
}
.product-wrap{
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: 60px auto;
	flex-wrap: wrap;
}
.product-item{
	width: 28%;
	margin-bottom: 60px;
}
.product-img{
	margin-bottom: 20px;
}
.product-category-name {
  color: #00BA88;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
	padding-bottom: 10px;
}
.product-price span{
	font-size: 1rem;
}


/*SP Layout
===================================*/
@media all and (max-width: 768px){
	.main-bg{
		height: 300px;
	}
	.product-item{
		width: 48%;
		margin-bottom: 20px;
	}
	.product-wrap{
		width: 100%;
	}
}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
}
