@charset "UTF-8";
/* CSS Document */


.recipeList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
.recipeList > li {
	width: 47%;
	padding: 0;
	background: #fff;
	margin: 1em 0;
	-moz-box-shadow: 0px 1px 5px rgba(000,000,000,0.1);
	-webkit-box-shadow: 0px 1px 5px rgba(000,000,000,0.1);
	box-shadow: 0px 1px 5px rgba(000,000,000,0.1);
}
.emptycell {
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}
ul.recipeList li .image {
	position: relative;
}
ul.recipeList li .image p {
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.load-image {
	background: rgba(255, 255, 255, 1);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
.load-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: auto;
}
.recipeName {
	padding: 5px 5px 15px 7px;
}
.recipeName h3 {
	font-size: 1.05rem;
	padding: 5px;
}
.recipeProducts {
	line-height: 1;
}
.recipeProducts span:not(:last-child) {
	margin-right: .5em;
}
.recipeProducts span {
	display: inline-block;
	/*border: #d00 solid 1px;*/
	padding: 5px .8em;
	border-radius: 19px;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: -0.1em;
	margin-top: 5px;
 background-image: linear-gradient(90deg, rgba(255, 104, 66,1) 0%,rgba(239, 59, 114,1)100%);
}
.recipedetail .recipeProducts {
 margin-top: 2em;
}
.recipedetail .recipeProducts span {
	font-size: 13px;
}
.recipedetail .recipeProducts span:not(:last-child) {
	margin-right: 1em;
}
.recipedetail h1 {
	font-size: 1.6em;
	position: relative;
	padding: 0 0 25px 0
}

.recipeimage img {
	margin-bottom: 2em;
}
.summary {
 margin-bottom: 20px;
}
.ingredient ul {list-style: none;
font-size:.97em;}
.ingredient ul li{
 padding: 5px 0;
 border-bottom:1px dashed #ddd;
}
.making {
	padding: 40px 0 0 0
}
h4 {
 font-size:1.05rem;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #ddd;
	position: relative;
	letter-spacing: .1em;
}
h4::after {
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #d00;
}
ol {
	counter-reset: list-count;
	list-style: none;
	text-indent: -1.4em;
	padding-left: 1.4em;
	font-size: .97em;
}
ol > li {
	padding-bottom: .5em;
	line-height: 1.4;
 /*font-weight: bold*/;
}
ol > li::before {
	content: counter(list-count) " . ";
	counter-increment: list-count;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #d00;
}

@media print, screen and (min-width: 568px)/*SPヨコ*/ {
.recipeList > li {
	width: 31%;
}
.recipedetail {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
 .recipeimage {width: 45%;}
 .howto {width: 50%;}
}

@media print, screen and (min-width: 769px)/*タブレットタテ*/ {
.recipeName {
	padding: 12px 10px 18px 10px;
}
.recipedetail h1 {
	font-size: 1.8em;
 }
.summary {
	font-size: 1rem;
 margin-bottom: 20px;
}
}

@media print, screen and (min-width: 960px)/*小型PC*/ {
.recipeList > li {
	width: 23%;
}
ul.recipeList li a .image p img {
	transition-duration: 0.4s;
}
ul.recipeList li a:hover .image p img {
	transform: scale(1.1);
	transition-duration: 0.4s;
 opacity: 1!important;
}
}

@media print, screen and (min-width: 1280px)/*PC*/ {
}
