@charset "UTF-8";

.pageListRecipeArea{
	margin: 80px 0 0;
}
.pageListRecipeArea:first-of-type{
	margin: 0 0 0;
}
@media screen and (max-width:667px){
	.pageListRecipeArea{
		margin: 40px 0 0;
	}
}

/* アンカーリンク */
.listAnkerLink li:nth-of-type(1) a{
	background-color: #f8834c;
}
.listAnkerLink li:nth-of-type(2) a{
	background-color: #f8696b;
}
.listAnkerLink li:nth-of-type(3) a{
	background-color: #b7c52b;
}

/* タイトル */
#listCone.titBorder{
	border-left: 5px solid #f8834c;
}
#listSauce.titBorder{
	border-left: 5px solid #f8696b;
}
#listButter.titBorder{
	border-left: 5px solid #b7c52b;
}


/*
	使用商品一覧
-----------------------------------------------------------------------------------------------*/
#listProductArea{
	margin: 0 0 30px;
	padding: 50px;
	border-radius: 15px;
	background-color: #fcf9f0;
	position: relative;
}
.listProductArea__tit{
	font-size: 2.2rem;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}
.listProductArea__tit span{
	display: inline-block;
	position: relative;
}
.listProductArea__tit span::before,
.listProductArea__tit span::after{
	content: "";
	width: 2px;
	height: 25px;
	background-color: #000;
	position: absolute;
	bottom: 0;
}
.listProductArea__tit span::before{
	left: -20px;
	transform: rotate(315deg);
}
.listProductArea__tit span::after{
	right: -20px;
	transform: rotate(45deg);
}
@media screen and (max-width:668px){
	#listProductArea{
		margin: 0 0 20px;
		padding: 35px 15px 25px;
		border-radius: 10px;
	}
	.listProductArea__tit{
		font-size: 2.0rem;
		top: -12px;
	}
	.listProductArea__tit span::before,
	.listProductArea__tit span::after{
		height: 22px;
	}
}


/* リスト */
.listProduct{
	margin: 0 0 -35px;
}
.listProduct__item{
	width: calc((100% - 120px)/5);
	margin: 0 30px 35px 0;
}
.listProduct__item:last-of-type{
	margin: 0 0 35px 0;
}
.listProduct__item a{
	display: block;
}
.listProduct__ph{
	height: 150px;
	text-align: center;
}
.listProduct__ph img{
	width: auto;
	height: 100%;
}
.listProduct__tit{
	margin: 10px 0 0;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}
.listProduct__tit span{
	display: inline-block;
	margin: 5px 0 0;
	padding: 6px 15px;
	font-size: 1.0rem;
	line-height: 1.0;
	color: #fff;
	border-radius: 12px;
}
@media screen and (max-width:668px){
	.listProduct{
		margin: 0 0 -20px;
	}
	.listProduct__item{
		width: calc((100% - 30px)/3);
		margin: 0 15px 20px 0;
	}
	.listProduct__item:nth-of-type(3n),
	.listProduct__item:last-of-type{
		margin: 0 0 20px 0;
	}
	.listProduct__ph{
		height: 100px;
	}
	.listProduct__tit{
		margin: 5px 0 0;
		font-size: 1.3rem;
	}
	.listProduct__tit span{
		padding: 5px 12px;
	}
}

.listProduct__tit_sauce01{
	background-color: #f72731;
}
.listProduct__tit_sauce02{
	background-color: #4763b7;
}
.listProduct__tit_sauce03{
	background-color: #e49122;
}
.listProduct__tit_sauce04{
	background-color: #71ab29;
}
.listProduct__tit_sauce05{
	background-color: #e8811f;
}

.listProduct__tit_butter02{
	background-color: #e2bb6d;
}