@charset "utf-8";

/*	border: 1px solid red;*/

.recipe {
	width: 788px;
	text-align: center;
	margin: 0 auto;
}
.recipe ul.recipe__list {
	display: flex;/*横並び*/
	justify-content: space-between;/*左右をピッタリで等間隔*/
	flex-wrap: wrap;/*折返し*/
}
.recipe ul.recipe__list li.recipe__list__txt {
	width: 374px;
	display: block;
	border-top: 17px solid #831128;
	border-radius: 0.6em 0 0 0;
	text-align: center;
	margin: 15px auto;
}
.recipe ul.recipe__list li.recipe__list__txt .recipe__list__ttl {
	font-weight: bold;
	font-size: 20px; 
	line-height: 26px;
	text-align: center;
	padding: 5px 0px;
}


.recipe__cp__banner{
	margin: 30px auto 0 auto;
	text-align: center;
}
.creamyplusbanner {
	width: 600px;
}





@media screen and ( max-width:767px ) {

.recipe {
	width: 100%;
}
.recipe ul.recipe__list {
	flex-direction: column;/*横並びから縦並びに変更*/
}
.recipe ul.recipe__list li.recipe__list__txt {
	width: 100%;
}
.creamyplusbanner {
	width: 100%;
}



}