/*recipe*/
.recipe-list:not([data-element-id]), .recipe-list [data-collection-list-content] {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
    
.recipe-list {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	background: #fffbe9;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.recipe-list li {
  width: calc(25% - 40px);
  margin: 0 20px;
}

.recipe-list li > a {
	display: block;
	width: 100%;
	line-height: 0;
	position: relative;
	overflow: hidden;
}

.recipe-list li > a::after {
	display: block;
	content: "";
	padding-bottom: 75%;
}

.recipe-list li > a > img {
	position: absolute;
	top:50%;
	left: 0;
	-webkit-transform: translateY(-50%);	transform: translateY(-50%);
	width: 100%;
	height: auto;
	min-height: 100%;
}

.recipe-list li a:hover {
	opacity: 0.6;
}

.recipe-list li p {
	font-size: 16px;
	margin: 1em 0;
}

.recipe-list li p a {
	color: #666;
	text-decoration: none;
	font-weight: 700;
}

.recipe-list li p a:hover {
	opacity: 0.6;
}

.recipe-list li p a.category {
	text-decoration: underline;
	font-weight: 500;
}

.recipe-list li p a.category:hover {
	opacity: 1;
	text-decoration: none;
}

.recipe-list li h3 {
	color: #333333;
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0;
}

@media(max-width: 767px) {
    .recipe-list:not([data-element-id]), .recipe-list [data-collection-list-content] {
        justify-content: space-between;
        margin: 0;
    }

    .recipe-list li {
        width: 47%;
        margin: 0 0 20px;
    }
}

/*recipe end*/
