@charset "UTF-8";

/*----------------------------------------
	- mv_wrap
-----------------------------------------*/

/*=======================================
	mv_wrap
=======================================*/
#mv_wrap .mv_bg {
	margin: 80px 0 85px;
	width: 100%;
	background: url(../../image/recipe/main.jpg) no-repeat center;
	background-size: cover;
	height: 520px;
}
#mv_wrap .mv_bg .contents {
	display: flex;
	align-items: center;
	writing-mode: vertical-rl;
	height: 100%;
	padding-top: 85px;
}
#mv_wrap .mv_bg .contents .title {
	font-size: 30px;
	letter-spacing: 0.4em;
	color: #fff;
	font-weight: 600;
	padding-left: 8px;
}
@media screen and (max-width: 768px) {
	#mv_wrap .mv_bg {
		margin: 50px 0 40px;
		width: 100%;
		background: url(../../image/recipe/main_sp.jpg) no-repeat center;
		background-size: cover;
		height: 520px;
	}
	#mv_wrap .mv_bg .contents {
		padding-top: 77px;
	}
	#mv_wrap .mv_bg .contents .title {
		font-size: 30px;
		padding-left: 0;
		letter-spacing: 0.28em;
	}
}


/*=======================================
	recipe_list_wrap
=======================================*/
#recipe_list_wrap .contents {
	margin-bottom: 120px;
}
#recipe_list_wrap .contents h2 {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-align: center;
	margin-bottom: 85px;
}
#recipe_list_wrap .contents ul {
	display: flex;
	flex-wrap: wrap;
	gap: 80px 50px;
}
#recipe_list_wrap .contents ul li {
	display: flex;
	width: calc((100% - 100px) / 3);
}
#recipe_list_wrap .contents ul li picture{
margin-top:auto;
}

#recipe_list_wrap .contents ul li a {
	display: flex;
	flex-direction: column;
}
#recipe_list_wrap .contents ul li a span.add_line {
	width: 100px; height: 1px;
	display: block;
	background-color: #B99C5C;
	position: relative;
	margin-bottom: 15px;
}
#recipe_list_wrap .contents ul li a span.add_line::before {
	content: '';
	position: absolute;
	top: 50%; left: 0;
	transform: translateY(-50%);
	width: 40px; height: 3px;
	background-color: #B99C5C;
}
#recipe_list_wrap .contents ul li a .cuisine_title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
#recipe_list_wrap .contents ul li a .cuisine_title p {
	font-size: 18px;
	font-weight: 500;
}
.arrow_line {
	width: 42px;
	position: relative;
	padding-right: 5px;
	transition: all .5s ease;
}
.arrow_line span {
	display: block;
}
.arrow_line span.line01 {
	width: 100%;
	height: 1px;
	background-color: #000;
}
.arrow_line span.line02 {
	position: absolute;
	top: 0;
	right: 5px;
	transform-origin: right bottom;
	width: 8px;
	height: 1px;
	background-color: #000;
	transform: rotate(40deg);
	transition: right .5s ease;
}
@media (hover: hover) {
	#recipe_list_wrap .contents ul li a:hover .arrow_line {
		padding-right: 0;
	}
	#recipe_list_wrap .contents ul li a:hover .arrow_line span.line02 {
		right: 0;
	}
}

@media screen and (max-width: 1160px) {
	#recipe_list_wrap .contents {
		margin-bottom: 10vw;
	}
	#recipe_list_wrap .contents h2 {
		font-size: calc((22 / 1160) * 100vw);
		margin-bottom: 7.3vw;
	}
	#recipe_list_wrap .contents ul {
		gap: 6.9vw 4.3vw;
	}
	#recipe_list_wrap .contents ul li a .cuisine_title p {
		font-size: calc((16 / 1160) * 100vw);
	}
}

@media screen and (max-width: 768px) {
	#recipe_list_wrap .contents {
		margin-bottom: 120px;
	}
	#recipe_list_wrap .contents h2 {
		font-size: 20px;
		line-height: 1.8;
		margin-bottom: 55px;
		text-align: left;
	}
	#recipe_list_wrap .contents ul {
		flex-direction: column;
		gap: 90px 0;
	}
	#recipe_list_wrap .contents ul li {
		width: 100%;
	}
	#recipe_list_wrap .contents ul li a .cuisine_title p {
		font-size: 18px;
	}
	#recipe_list_wrap .contents ul li a .img {
		margin: 0 auto;
	}


}