@charset "utf-8";
/* CSS Document */

.recipe {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	max-width: 1130px;
	width: 100%;
	margin-bottom:70px;
}

.recipe_lineup {
	width: 100%;
	padding-top: 26px;
}
.recipe_tit {
	font-size: 2rem;
	position: relative;
	display: inline-block;
	margin-bottom: 1.5em;
	color: #d70e0f;
}
.recipe_tit:before {
	content: '';
	position: absolute;
	left: 27px;
	top: -25px;
	display: inline-block;
	width: 52px;
	height: 4px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #d70e0f;
}
.recipe_list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	max-width: 1130px;
	width: 100%;
	margin-bottom:70px;
}
.list_navi {
	display: flex;
	flex-direction: column;
	width: 24%;
	height: 200px;
	border:1px solid #FC9;
}
.list_navi_ttl {
	background: linear-gradient(180deg, #FFF7DD, #FC9);
	font-size: 1.1rem;
	color: #d70e0f;
	font-weight: bold;
	text-align:center;
	padding: 10px;
}
.list_navi_series {
	margin: 15px;
}
.list_navi_series div {
	padding: 10px 0;
	border-bottom: 1px solid #FC9;
	font-size: .9rem;
	color: #666;
	background:url(../images/list_navi_yajirusi.png) no-repeat right 50%;
}
.list_navi_series div a {
	display: block;
	text-decoration: none;
	color: #666;
}
.list_navi_series div.on a {
	background:url(../images/list_navi_yajirusi_on.png) no-repeat right 50%;
	color: #d70e0f;
}
.list_navi_series div:last-child {
	border: none;
}

.list_lineup {
	width: 74%;
	padding-top: 26px;
}
.lineup_tit {
	font-size: 1.8rem;
	position: relative;
	display: inline-block;
	margin-bottom: 1.5em;
	color: #d70e0f;
}
.lineup_tit:before {
	content: '';
	position: absolute;
	left: 27px;
	top: -25px;
	display: inline-block;
	width: 52px;
	height: 4px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #d70e0f;
}
.lineup_tit span {
	font-size:1.1rem;
	color: #333;
}
.lineup_items {
	display: flex;
	flex-wrap: wrap;
}
.lineup_item {
	border: 1px solid #FC9;
	background: #FFF7DD;
	display: block;
	width: 31.0%;
	text-align:center;
	padding: 0;
	margin: 0 2.3% 2.3% 0;
	border-radius: 10px;
}
.lineup_item:nth-child(3n) {
	margin-right: 0;
}
.lineup_item img {
	width: 90%;
	height: auto;
	padding: 0 5%;
}

.recipe_name {
	font-weight:bold;
	font-size: 0.9rem;
	padding: 20px 0 0;
	margin: 0;
}
.lineup_item a {
	text-decoration: none;
	color: #000;
}

.recipe_box {
	max-width: 1130px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.recipe_photo {
	width: 30%;
	height: 100%;
	background: #eee;
	padding: 1%;
}
.recipe_txt_box {
	width: 59%;
	border: 2px solid #ddd;
	padding: 1.5% 3.5% 1.5%;
	font-size: .8rem;
	color: #666;
	line-height: 1.8em;
}
.recipe_txt_box table {
	width: 72%;
	margin: 10px 0 30px;
}
.recipe_txt_box td {
	padding: 0;
	width:37%;
}
.recipe_txt_box p {
	margin-bottom:10px;
	padding:0;
}
.recipe_txt_box ul {
	list-style-type:decimal;
	margin-left: 17px;
	padding:0;
}
.recipe_txt_box li {
	margin:0;
	padding:0;
}
.series_tit {
	max-width: 1130px;
	width: 100%;
	font-size: 1.1rem;
	font-weight: bold;
	position: relative;
	display: inline-block;
	margin: 1.0em auto;
	color: #333;
	padding-left:15px;
}
.series_tit:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	width: 4px;
	height: 25px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #d70e0f;
}
.series_tit:after {
	content: '';
	position: absolute;
	left: -2px;
	top: 35px;
	display: inline-block;
	width: 100%;
	height: 1px;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	background-color: #ddd;
}
.recipe_txt_box td.seasoning {
	font-size: 1rem;
	color: #d70e0f;
	font-weight: bold;
	padding-top: 20px;
}


@media screen and (max-width: 998px){
.lineup_item {
	border: 1px solid #FC9;
	display: block;
	width: 29.0%;
	text-align:center;
	padding: 5px 1%;
	margin: 0 2.3% 2.3% 0;
}
}

@media screen and (max-width: 767px){
/* Item list page */
.recipe_list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	margin-bottom:70px;
}
.list_navi {
	display: flex;
	flex-direction: column;
	width: 100%;
	border:1px solid #ddd;
	margin-bottom:100px;
}
.list_navi_ttl {
	background: linear-gradient(180deg, #f3f3f3, #dbdbdb);
	font-size: 1.1rem;
	color: #000;
	font-weight: bold;
	text-align:center;
	padding: 10px;
}
.list_navi_series {
	margin: 15px;
}
.list_navi_series div {
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
	font-size: .9rem;
	color: #666;
	background:url(../images/list_navi_yajirusi.png) no-repeat right 50%;
}
.list_navi_series div.on {
	background:url(../images/list_navi_yajirusi_on.png) no-repeat right 50%;
	color: #d70e0f;
}
.list_navi_series div:last-child {
	border: none;
}

.list_lineup {
	width: 100%;
	padding-top: 25px;
}
.lineup_tit {
	font-size: 1.8rem;
	position: relative;
	display: inline-block;
	margin-bottom: 2.5em;
	color: #d70e0f;
}
.lineup_tit:before {
	content: '';
	position: absolute;
	left: 27px;
	top: -25px;
	display: inline-block;
	width: 52px;
	height: 4px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #d70e0f;
}
.lineup_tit span {
	font-size:1.3rem;
	color: #333;
}
.lineup_item {
	border: 1px solid #FC9;
	display: block;
	width: 100%;
	text-align:center;
	padding: 5px 0;
	margin-bottom: 3%;
}

.recipe_box {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.recipe_photo {
	width: 98%;
	height: 100%;
	background: #eee;
	padding: 1%;
	margin-bottom:20px;
}
.recipe_txt_box {
	width: 93%;
	border: 2px solid #ddd;
	padding: 3.5% 3.5% 1.5%;
	font-size: .8rem;
	color: #666;
	line-height: 1.8em;
}
.recipe_txt_box table {
	width: 70%;
	margin: 10px 0 30px;
}
}
