/* -------------------------------------------------------
	font face load
------------------------------------------------------- */

@font-face {
 font-family: 'Noto Sans JP';
 font-weight: 100;
 src: url(/common/css/fonts/Noto_Sans_JP/NotoSansJP-Thin.otf) format('opentype');
}
@font-face {
 font-family: 'Noto Sans JP';
 font-weight: 300;
 src: url(/common/css/fonts/Noto_Sans_JP/NotoSansJP-Light.otf) format('opentype');
}
@font-face {
 font-family: 'Noto Sans JP';
 font-weight: 400;
 src: url(/common/css/fonts/Noto_Sans_JP/NotoSansJP-Regular.otf) format('opentype');
}
@font-face {
 font-family: 'Noto Sans JP';
 font-weight: 500;
 src: url(/common/css/fonts/Noto_Sans_JP/NotoSansJP-Medium.otf) format('opentype');
}
@font-face {
 font-family: 'Noto Sans JP';
 font-weight: 700;
 src: url(/common/css/fonts/Noto_Sans_JP/NotoSansJP-Bold.otf) format('opentype');
}
@font-face {
 font-family: 'Noto Sans JP';
 font-weight: 900;
 src: url(/common/css/fonts/Noto_Sans_JP/NotoSansJP-Black.otf) format('opentype');
}

@font-face {
 font-family: 'Poppins';
 font-weight: 400;
 src: url(/common/css/fonts/Poppins/Poppins-Regular.ttf) format('truetype');
}
@font-face {
 font-family: 'Poppins';
 font-weight: 700;
 src: url(/common/css/fonts/Poppins/Poppins-Bold.ttf) format('truetype');
}

@font-face {
 font-family: 'Roboto Condensed';
 font-weight: 400;
 src: url(/common/css/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf) format('truetype');
}
@font-face {
 font-family: 'Roboto Condensed';
 font-weight: 700;
 src: url(/common/css/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf) format('truetype');
}




/* -------------------------------------------------------
	common style
------------------------------------------------------- */

html{
	font-size: 62.5%;
}
body {
	font-family: 'メイリオ', Meiryo, 'Noto Sans JP', sans-serif;
	position: relative;
	color: #333;
	font-size: 1.6rem;
	word-break : break-all;
	overflow-wrap : break-word;
}
body * {
	box-sizing: border-box;
}
a{
	color:#333;
}
a:hover{
	color:#767676;
}
a:hover,
button:hover {
	opacity: 0.7;
}
button {
	cursor: pointer;
}
.u-ta-right  { text-align: right !important;  }
.u-ta-center { text-align: center !important; }
.u-ta-left   { text-align: left !important;   }

@media (min-width: 768px) { .forSP, .spCont { display: none !important; } }
@media screen and (max-width: 768px) { .forPC, .pcCont { display: none !important;} }



@media (min-width: 768px) {
	#container {
		width: 100%;
		min-width: 1240px;
		padding-top: 62px;
		overflow: hidden;
	}
	:target {
		scroll-margin-top: 62px;
	}


	header {
		position: fixed;
		box-sizing: border-box;
		left: 0;
		top: 0;
		width: 100%;
		min-width: 1240px;
		padding: 15px 20px;
		background-color: #fff;
		border-bottom: 2px solid #f1001a;
		z-index: 10001;
	}
	header .inner {
		display: flex;
		justify-content: space-between;
		width: 100%;
		position: relative;
	}
	header .inner .logo {
		display: flex;
		align-items: center;
	}
	header .inner .logo img {
		height: 30px;
	}
	header .inner .subMenu {
		display: flex;
		align-items: center;
	}
	header .inner .subMenu ul {
		display: flex;
		align-items: center;
	}
	header .inner .subMenu ul.sub_menu_links {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 3px;
	}
	header .inner .subMenu ul li {
		margin-left: 60px;
		white-space: nowrap;
		font-size: 1.8rem;
	}
	header .inner .subMenu ul > li:first-of-type {
		margin-left: 0px;
	}
	header .inner .subMenu ul li.mail {
		font-size: 1.8rem;
	}
	header .inner .subMenu ul li.mail::before {
		content: "";
		width: 21px;
		height: 1em;
		display: inline-block;
		margin-right: 5px;
		background: url("../images/ic_faq.svg") left center no-repeat;
		background-size: contain;
		vertical-align: middle;
	}
	header .inner .subMenu ul li a{
		color: #333;
		text-decoration: none;
	}



	/*

		#container > nav 

	*/
	#container > nav {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10001;
	background: #fff;
	border-radius: 10px 0 0 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	padding: 5px;
	}
	#container > nav ul  {
		border-radius: 5px 0 0 5px;
		overflow: hidden;
	}
	#container > nav ul li  {
		border-top: 1px solid #dddddd;
	}
	#container > nav ul li:nth-of-type(1) {
		border-top: none;
	}
	#container > nav ul li a {
		display: flex;
		padding: 0px 5px;
		color: #666;
		line-height: 25px;
		align-items: center;
		min-height: 40px;
	}
	#container > nav ul li a:hover span {
		color: #f1001a;
		text-decoration: underline;
	}
	#container > nav ul li a i {
		width: 25px;
		display: flex;
		align-items: center;
	}
	#container > nav ul li a span {
		padding-left: 8px;
	}
	#container > nav ul li a:hover i span {
		text-decoration: underline;
	}
	#container > nav ul li a i svg,
	#container > nav ul li a i img {
		max-width: 25px;
		max-height: 25px;
	}
	#container > nav ul li.instagram a {
		font-size: 0.8em;
		line-height: 1.2;
	}

	#container > nav ul li a span {
		display: none;
	}


}



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

	html {
		position: relative;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	body {
	}
	#container {
		padding: 44px 0 75px;
	}
	:target {
		scroll-margin-top: 44px;
	}

	header {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 10001;
		width: 100%;
		background: #fff;
	}
	header .inner {
		display: flex;
		justify-content: space-between;
		padding: 10px;
	}
	header .inner .logo img {
		height: 1.5em;
	}
	header .inner .menu img {
		height: 1.5em;
	}
	header .inner .menu button {
		cursor: pointer;
		border: none;
		padding: 0;
		background: transparent;
	}
	header .inner .menu button.open {
		background: #f1001a;
		position: relative;
		height: 2em;
	}
	header .inner .menu button.open::before {
		content: "\f00d";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		font-size: 1.2em;
		display: inline-block;
		position: absolute;
		left: 50%;
		top: 50%;
		margin: -0.5em 0 0 -0.3em;
		color: #fff;
	}
	header .subMenu {
		display: none;
		position: fixed;
		left: 0;
		top:  calc( 1.5em + 20px );
		width: 100%;
		z-index: 10001;
		background: #fff;
	}
	header .menu.open + .subMenu {
		display: block;
	}

	header .subMenu ul li a {
		color: #fff;
		background: #f1001a;
		display: block;
		padding: 10px;
		border-top: 1px solid rgba(255,255,255,0.4);
	}



	/*

		#container > nav 

	*/
	#container > nav {
	position: fixed;
	left: 0;
	bottom: 0%;
	z-index: 9999;
	width: 100%;
	}

	#container > nav ul {
		display: flex;
		width: 100%;
	}
	#container > nav ul li.home       { background-position: 0 0;}
	#container > nav ul li.corporate { background-position: -144px -140px;}
	#container > nav ul li.products { background-position: -36px -35px;}
	#container > nav ul li.recipe    { background-position: -72px -70px;}
	#container > nav ul li.faq     { background-position: -108px -105px;}
	#container > nav ul li.twitter   { background-position: -180px -175px;}
	#container > nav ul li.line     { background-position: -216px -210px;}


	#container > nav ul li a span {
		display: none;
	}




}


/* -------------------------------------------------------

	main 

------------------------------------------------------- */

section.pankuzu {
	background-color:#ffedec;
}
section.pankuzu ul {
	color: #888;
	background-color:#ffedec;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
section.pankuzu ul li {
	line-height: 1;
	font-size: 14px;
	margin: 5px 0;
}
section.pankuzu ul li::after {
	content: "";
	background: url(../images/ic_arrow_right_red.svg) center 0.25em no-repeat;
	background-size: auto 0.75em;
	font-weight: bold;
	margin: 0 8px;
	display: inline-block;
	width: 1em;
	height: 1em;
}
section.pankuzu ul li:last-of-type::after {
	visibility: hidden;
}
section.pankuzu ul li a {
	color: #727272;
}
.category_title {
	border-bottom: 2px solid #f1001a;
}
.category_title .inner {
}


#btn_back{
	margin: 20px auto;
}
#btn_back p{
	margin-bottom:5px;
	letter-spacing:1px;
}
#btn_back p a{
	background:url(../images/ic_tri_left_red.svg) no-repeat 17px center #fff;
	background-size: 7px auto;
	display:inline-block;
	font-size:16px;
	border-radius: 10px;
	color:#e61713;
	padding:11px 31px 11px 48px;
	text-decoration:none;
	border:1px solid #d9d9d9;
}

@media (min-width: 768px) {
	#main {
		margin: 0 auto;
		width: 1240px;
		padding: 0 20px;
	}
	section.pankuzu ul {
		width: 1240px;
		margin: 0 auto;
		padding: 5px 20px;
	}
	.category_title {
		margin-bottom: 30px;
	}
	.category_title > .inner {
		width: 1240px;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		position: relative;
	}
	.category_title .category_title_name {
		font-size: 3.2rem;
		padding: 20px;
		font-weight: bold;
	}
	/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	　■一覧ページ
	━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	/*メニュー*/
	.category_title .menu > ul {
		display: flex;
	}
	.category_title .menu > ul > li{
		margin-left: 20px;
		font-weight: normal;
		display: flex;
		align-items: center;
	}
	.category_title .menu ul > li > span{
		cursor:pointer;
	}
	.category_title .menu > ul > li > span,
	.category_title .menu > ul > li > a {
		font-size: 20px;
		line-height: 1em;
	}
	.category_title .menu ul li div {
		font-size: 16px;
	}
	.category_title .menu ul li a.big_cat,
	.category_title .menu ul li span{
		padding:1px;
		padding: 10px 20px;
		color: #333;
	}
	.category_title .menu > ul li a.big_cat::before{
		display: inline-block;
		content: "";
		background: url("../images/ic_tri_right_red.svg") center 0.1em no-repeat;
		background-size: 0.4em auto;
		width: 1em;
		height: 1em;
		line-height: 1;
		vertical-align: middle;
		margin-right: 0.25em;
	}
	.category_title .menu > ul > li.pull > span::before{
		display: inline-block;
		content: "";
		background: url("../images/ic_arrow_down_red.svg") center center no-repeat;
		background-size: 0.8em auto;
		width: 1em;
		height: 1em;
		line-height: 1;
		vertical-align: middle;
		margin-right: 0.25em;
	}
	.category_title .menu ul > li.pull.on_hover > span::before{
		background-image: url("../images/ic_arrow_down_white.svg");
	}
	.category_title .menu ul li span:hover,
	.category_title .menu ul li.on_hover span{
		color: #fff;
		background-color:#ea0000;
	}
	.category_title .menu ul dl,
	.category_title .menu ul li ul.normal{
		position:absolute;
		top:65px;
		left:50%;
		width:1200px;
		transform: translateX(-50%);
		padding:39px 40px 22px 40px;
		background-color:#fff;
		box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
		display:none;
		z-index: 5;
	}
	.category_title .menu ul dt{
		font-weight:bold;
		margin-bottom:5px;
	}
	.category_title .menu ul dd{
		border-bottom:1px dotted #ccc;
		margin-bottom:18px;
		padding-bottom:5px;
	}
	.category_title .menu  ul li ul{
		display: flex;
		flex-wrap: wrap;
	}
	.category_title .menu ul li ul li{
		margin:0 27px 5px 0;
	}
	.category_title .menu ul li ul li a{
		color: #333;
		background: url("../images/ic_tri_right_red.svg") left 0.6em no-repeat;
		background-size:5px auto;
		padding-left:11px;
	}
	.category_title .menu ul li:hover dl,
	.category_title .menu ul li:hover ul.normal{
		display:block;
	} 
	.category_title .menu .pull_menu .top,
	.category_title .menu .pull_menu .close02{
		display:none;
	}

	#btn_back {
		max-width: 1200px;
		margin: 20px auto;
	}
}

@media screen and (max-width: 768px) {
	section.pankuzu ul {
		padding: 5px 15px;
	}
	.category_title {
		margin-bottom: 15px;
	}
	.category_title .inner {
		padding: 5px 15px;
	}
	.category_title .category_title_name {
		font-size: 20px;;
		font-weight: bold;
	}
	.category_title .menu > ul {
		display: none;
	}
	#btn_back{
		padding: 0 15px;
	}
}



/*

	productsIndex 

*/
.productsIndex {
	padding: 0 15px;
	margin: 60px 0;
}
.productsIndex ul {
	display: flex;
	justify-content: space-between;
}
.productsIndex ul li a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	box-sizing: border-box;
	border: 1px solid #f1001a;
	font-weight: bold;
	color: #333;
}
.productsIndex ul li a::before,
.productsIndex ul li a::after {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}
.productsIndex ul li a::before {
	z-index: 2;
}
.productsIndex ul li a::after {
	z-index: 3;
}
.productsIndex ul li a span {
	text-align: center;
}

@media (min-width: 768px) {
	.productsIndex .inner {
		box-sizing: border-box;
		width: 1240px;
		margin: 0 auto;
		padding: 0 20px;
	}
	.productsIndex ul li {
		width: calc( 45/150*100% );
	}
	.productsIndex ul li a {
		display: flex;
		padding: 10px 40px 10px 20px;
		border-radius: 10px;
		font-size: 1.8rem;
		align-items: center;
	}
	.productsIndex ul li a::before {
		width: 20px;
		height: 20px;
		z-index: 2;
		background-color: #f1001a;
		border-radius: 100%;
		right: 30px;
		top: calc( 50% - 10px );
	}
	.productsIndex ul li a::after {
		width: 20px;
		height: 20px;
		z-index: 3;
		background: url("../images/ic_tri_right_white.svg") center center no-repeat;
		background-size: 7px auto;
		right: 30px;
		top: calc( 50% - 10px );
	}
	.productsIndex ul li.cat0001 a img { width: 170px; height: auto; }
	.productsIndex ul li.cat0002 a img { width: 96px; height: auto; }
	.productsIndex ul li.cat0003 a img { width: 109px; height: auto; }
	.productsIndex ul li a span { flex-grow: 2; }
	.productsIndex ul li a:hover span { color: #f1001a; text-decoration: underline; }
	
}
@media screen and (max-width: 768px) {
	.productsIndex ul li {
		width: calc( 210/690*100% );
	}
	.productsIndex ul li a {
		padding: 10px 10px 30px;
		border-radius: 5px;
		text-align: center;
		font-size: 13px;
		line-height: 1.5;
	}
	.productsIndex ul li a::before {
		width: 14px;
		height: 14px;
		background-color: #f1001a;
		border-radius: 100%;
		left: calc( 50% - 7px );
		bottom: 10px;
	}
	.productsIndex ul li a::after {
		width: 14px;
		height: 14px;
		background: url("../images/ic_tri_right_white.svg") center center no-repeat;
		background-size: 7px auto;
		left: calc( 50% - 7px );
		bottom: 10px;
	}
	.productsIndex ul li a img {
		max-width: 100%;
		max-height: 100%;
	}
	.productsIndex ul li a span {
		display: block;
	}
	.productsIndex ul li.cat0001 a span {
		margin-top: 1.5em;
	}
	.productsIndex ul li div {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 120px;
		margin-bottom: 10px
	}

}



/*

	pickup_recipe 

*/
.pickup_recipe .recipes {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pickup_recipe .recipes a {
	display: block;
}
.pickup_recipe .recipes .recipeTitle {
	width: calc( 100% + 2px );
	font-size: 2.4rem;
	padding: 0 0.9em;
	height: calc( 54em/24);
	color: #fff;
	background: url(../../images/index/bg_recipe_recipes_title.jpg);
	font-weight: bold;
	display: flex;
	align-items: center;
	position: relative;
	left: -1px;
	top: -1px;
	border-radius: 0.45em 0.45em 0 0 ;
}
.pickup_recipe .recipes .recipeTitle::before {
	content: "";
	width: 2.0em;
	height: 2.0em;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.9em;
}
.pickup_recipe .recipes .new .recipeTitle::before {
	background-image: url(../images/ic_recipe_new.png);
}
.pickup_recipe .recipes .popular .recipeTitle::before {
	background-image: url(../images/ic_recipe_use.png);
}
.pickup_recipe .recipes > .new,
.pickup_recipe .recipes > .popular  {
	border-radius: 0.45em;
	background-color: #fff;
	border: 1px solid #f3f4f5;
}
.pickup_recipe .recipes > .new > ul,
.pickup_recipe .recipes > .popular > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: calc( 30/580*100% ) calc( 20/580*100% ) 0;
	font-size: 1.4rem;
	line-height: 2.0rem;
}
.pickup_recipe .recipes > .new ul span,
.pickup_recipe .recipes > .popular ul span {
	display: block;
	position: relative ;
}
.pickup_recipe .recipes > .new > ul > li,
.pickup_recipe .recipes > .popular > ul > li {
	position: relative;
	z-index: 1;
}
.pickup_recipe .recipes > .new > ul > li {
	width: calc( 320/660*100% );
	margin-bottom: calc( 30/540*100% );
}
.pickup_recipe .recipes > .popular > ul > li {
	width: calc( 330/680*100% );
	padding-bottom: calc( 10/540*100% );
	margin-bottom: calc( 20/540*100% );
}
.pickup_recipe .recipes > .new > ul > li.recipe_weekly span.img::before {
	z-index: 2;
	content: "";
	width: 120px;
	height: 120px;
	display: block;
	position: absolute;
	background: url(../images/ic_recipe_weekly.png) center center/contain no-repeat;
	left: -15px;
	top: -15px;
}
.pickup_recipe .recipes > .popular ul li.recipe_rank span.img {
	font-size: 2.8rem;
}
.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::before,
.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::after {
	position: absolute;
	width: calc( 52em/28 );
	display: block;
	text-align: center;
	left: calc( -8em/28 );
	top: calc( -8em/28 );
}
.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::before {
	z-index: 3;
	line-height: calc( 48em/28 );
	color: #fff;
	font-family: "Poppins";
}
.pickup_recipe .recipes > .popular ul li.recipe_rank.rank1 span.img::before { content: "1"; }
.pickup_recipe .recipes > .popular ul li.recipe_rank.rank2 span.img::before { content: "2"; }
.pickup_recipe .recipes > .popular ul li.recipe_rank.rank3 span.img::before { content: "3"; }
.pickup_recipe .recipes > .popular ul li.recipe_rank.rank4 span.img::before { content: "4"; }
.pickup_recipe .recipes > .popular ul li.recipe_rank.rank5 span.img::before { content: "5"; }
.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::after {
	content: "";
	z-index: 2;
	height: calc( 62em/28 );
	background: url(../images/ic_recipe_rank.png) ;
	background-size: contain;
}
.pickup_recipe .recipes > .new ul li.col2 {
	width: 100%;
	font-size: 2.0rem;
}
.pickup_recipe .recipes > .new ul li span.img,
.pickup_recipe .recipes > .popular ul li span.img {
	width: 100%;
	background-color: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.pickup_recipe .recipes > .new ul li span.img img,
.pickup_recipe .recipes > .popular ul li span.img img {
	width: 100%;
}
.pickup_recipe .recipes > .popular ul li.recipe_recommend {
	border: 2px solid #cccccc;
	border-radius: 8px;
}
.pickup_recipe .recipes > .popular .recipe_recommend_title {
	display: flex;
	padding: 20px;
	align-items: center;
	font-size: 2.4rem;
	line-height: 2.8rem;
	font-weight: bold;
	color: #000;
	border-bottom: 1px dashed #ccc;
}
.pickup_recipe .recipes > .popular .recipe_recommend_title::before {
	content: "";
	width: 30px;
	height: 40px;
	background:url("../images/ic_recipe_recommend_material.png") center center/contain no-repeat;
	margin-right: 20px;
}
.pickup_recipe .recipes > .popular .recipe_recommend_material {
	padding: 20px 20px 5px;
	display: flex;
	flex-wrap: wrap;
}
.pickup_recipe .recipes > .popular .recipe_recommend_material li {
	width: 48%;
	margin: 0 0 15px 4%;
	padding-left: 15px;
	background: url(../images/ic_tri_right_red.svg) left 0.2em/0.4em no-repeat;
}
.pickup_recipe .recipes > .popular .recipe_recommend_material li:nth-of-type(2n+1) {
	margin-left: 0;
}
.pickup_recipe .search {
	margin: 25px 0 ;
	width: 100%;
	padding: 20px;
	border-radius: 10px;
	background-image:url("../../images/index/bg_recipe_search.png")
}
.pickup_recipe .search .search_title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	font-weight: bold;
	position: relative;
	margin: 0 0 30px;
}
.pickup_recipe .search .search_icons + .search_title {
	margin-top: 40px;
}
.pickup_recipe .search .search_title::before {
	content: "";
	width: 50px;
	height: 50px;
	background:url("../images/ic_recipe_search.png") center center/contain no-repeat;
	margin-right: 20px;
}
.pickup_recipe .search .search_title > span {
	display: inline-block;
	position: relative;
}
.pickup_recipe .search .search_title > span::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	display: block;
	border-bottom: 3px dotted #f1001a;
	bottom: -5px;
	left: 0;
}
.pickup_recipe .search .search_icons {
	display: flex;
	justify-content: center;
}
.pickup_recipe .search .search_icons li {
	margin: 0 15px;
	width: 142px;
}
.pickup_recipe .search .search_icons li a span {
	display: block;
	text-align: center;
	font-size: 1.8rem;
	margin: 10px 0 0;
}
.pickup_recipe .search .searchWords {
	width: calc( 950/1460*100%);
	margin: 25px auto;
	padding: 0 120px 0 40px;
	background-color: #fff;
	height: 60px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}
.pickup_recipe .search .searchWords input[type="text"]{
	width: calc( 100% - 20px );
	padding: 15px 0 0;
	font-size: 2.0rem;
	outline: none;
	border: none;
}
.pickup_recipe .search .searchWords input[type="text"]:placeholder-shown {
	color: #b9b9b9;
}

.pickup_recipe .search .searchWords button {
	width: 120px;
	height: 60px;
	padding: 15px 0;
	text-align: center;
	background-color: #f1001a;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
}
.pickup_recipe .search .searchWords button img {
	width: 30px;
	height: 30px;
}

@media (min-width: 768px) {
	.pickup_recipe {
		margin: 65px 0;
	}
	.pickup_recipe .inner {
		box-sizing: border-box;
		width: 1240px;
		margin: 0 auto;
		padding: 0 20px;
	}
	.pickup_recipe .recipes > .new {
		width: calc( 710/1460*100% );
	}
	.pickup_recipe .recipes > .popular {
		width: calc( 730/1460*100% );
	}
}
@media screen and (max-width: 768px) {
	.pickup_recipe {
	}
	.pickup_recipe .inner {
		box-sizing: border-box;
		width: 100%;
		min-width: 0;
		padding: 0;
	}
	.pickup_recipe .recipes {
		padding: 0 15px;
	}
	.pickup_recipe .recipes .recipeTitle {
		font-size: 1.6rem;
		height: calc( 38/16em );
		padding: 0 0.5em;
	}
	.pickup_recipe .recipes .recipeTitle::before {
		width: 1.5em;
		height: 1.5em;
		margin-right: 0.5em;
	}
	.pickup_recipe .recipes > .popular{
		margin-top: 25px;;
	}
	.pickup_recipe .recipes > .new > ul,
	.pickup_recipe .recipes > .popular > ul {
		padding: 20px 20px 0;
	}
	.pickup_recipe .recipes > .new > ul > li,
	.pickup_recipe .recipes > .popular > ul > li {
	}
	.pickup_recipe .recipes > .new > ul,
	.pickup_recipe .recipes > .popular > ul > li {
		font-size: 1.2rem;
	}
	.pickup_recipe .recipes > .new ul span,
	.pickup_recipe .recipes > .popular ul span {
		margin: 0 auto 5px !important;
	}
	.pickup_recipe .recipes > .new > ul > li.col2 {
		font-size: 1.5rem;
	}
	.pickup_recipe .recipes > .popular > ul > li {
		width: calc( 290/620*100% );
	}
	.pickup_recipe .recipes > .new > ul > li:not(.recipe_weekly) {
		display: none;
	}
	.pickup_recipe .recipes > .new > ul > li.recipe_weekly span.img::before {
		width: 60px;
		height: 60px;
	}
	.pickup_recipe .recipes > .popular > ul > li.recipe_rank.rank1 {
		width: 100%;
	}
	.pickup_recipe .recipes > .popular > ul > li.recipe_rank.rank1::after {
		display: none;
	}
	.pickup_recipe .recipes > .popular > ul > li.recipe_rank.rank1 span {
		width: calc( 290/620*100% );
	}
	.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::before,
	.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::after {
		font-size: 1.1rem;
		line-height: 1.8rem;
		width: calc( 21em/11) ;
	}
	.pickup_recipe .recipes > .popular ul li.recipe_rank span.img::after {
		height: calc( 25em/11) ;
	}
	.pickup_recipe .recipes > .popular ul li.recipe_recommend {
		width: 100%;
		border: none;
	}
	.pickup_recipe .recipes > .popular .recipe_recommend_title {
		padding: 0;
		font-size: 1.5rem;
		border-bottom: none;
		justify-content: center;
	}
	.pickup_recipe .recipes > .popular .recipe_recommend_title::before {
		width: 15px;
		height: 20px;
		margin-right: 5px;
	}
	.pickup_recipe .recipes > .popular .recipe_recommend_title span {
		margin: 0 !important;
	}
	.pickup_recipe .recipes > .popular .recipe_recommend_material {
		padding: 15px 0 0;
		justify-content: space-around;
	}
	.pickup_recipe .recipes > .popular .recipe_recommend_material li {
		width: auto;
		padding-left: 10px;
		margin: 0 5px 10px;
		background-position: left 6px;
	}

	.pickup_recipe .search {
		padding: 15px;
		border-radius: 0;
	}
	.pickup_recipe .search .search_title {
		font-size: 1.5rem;
		padding-bottom: 10px;
	}
	.pickup_recipe .search .search_title::before {
		width: 25px;
		height: 25px;
		margin-right: 10px;
	}
	.pickup_recipe .search .search_icons {
		flex-wrap: wrap;
	}
	.pickup_recipe .search .search_icons li {
		margin: 0 0 10px;
		width: calc( 143/690*100% );
		margin-left: calc( 39/690*100% );
	}
	.pickup_recipe .search .search_icons li:nth-of-type(4n+1) {
		margin-left: 0;
	}
	.pickup_recipe .search .search_icons li a span {
		margin: 5px 0 0;
		font-size: 1.2rem;
	}
	.pickup_recipe .search .searchWords {
		width: 100%;
		padding: 0 60px 0 20px;
		height: 45px;
		border-radius: 22.5px;
	}
	.pickup_recipe .search .searchWords input[type="text"] {
		font-size: 1.2rem;
	}
	.pickup_recipe .search .searchWords button {
		width: 60px;
		height: 45px;
		padding: 12px 0;
	}
	.pickup_recipe .search .searchWords button img {
		width: 20px;
		height: 20px;
	}
}




/* -------------------------------------------------------

	footer 

------------------------------------------------------- */
section.recommend_banner {
	background: #f3f4f5;
}
section.recommend_banner .inner {
	box-sizing: border-box;
	width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	position: relative;
	z-index: 1;
}
section.recommend_banner .inner #recommend_slider {
	padding: 0 35px 0 35px;
}
section.recommend_banner .inner #recommend_slider .slick-btn {
	position: absolute;
	top: 50%;
	webkit-transform:translate(0, -50%);
	transform:translate(0, -50%);
}
section.recommend_banner .inner #recommend_slider .slick-btn.slick-prev {
	left: 0;
}
section.recommend_banner .inner #recommend_slider .slick-btn.slick-next {
	right: 0;
}
section.recommend_banner .inner #recommend_slider .slick-btn span {
	width: 28px;
	height: 28px;
	display: block;
	border-radius: 50%;
	background-color: #e61713;
	cursor: pointer;
	text-align: center;
	line-height: 28px;
}
section.recommend_banner .inner #recommend_slider .slick-btn span:hover {
	opacity: 0.5;
}
section.recommend_banner .inner #recommend_slider .slick-btn span i {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
}
section.recommend_banner .inner #recommend_slider .slick-btn.slick-prev span i {
	margin-left: -2px;
}
section.recommend_banner .inner #recommend_slider .slick-btn.slick-next span i {
	margin-right: -2px;
}
section.recommend_banner .inner #recommend_slider .slick-list {
	overflow: hidden;
	
}
section.recommend_banner .inner #recommend_slider .recommend_slider_item {
	/*width: 20%;*/
	display: inline-block;
	padding: 0 5px;
	box-sizing: border-box;
}
section.recommend_banner .inner #recommend_slider .recommend_slider_item a img {
	width: 100%;
	border: 1px solid #bbb;
}
section.recommend_banner .inner #recommend_slider .recommend_slider_item a span {
	display: block;
	margin: 5px 0 0;
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.0rem;
	font-weight: bold;
}


/* link_area */
#link_area{
	background:url(../images/bg_link_areg.png);
	margin: 20px 0;
}
#link_area ul{
	width:1200px;
	margin:0 auto;
	overflow:hidden;
	padding:45px 0;
}
#link_area ul li{
	float:left;
	margin-right:20px;
	font-size:16px;
}
#link_area ul li a{
	color: #333;
	border:1px solid #dbdbdb;
	border-radius:5px;
	text-decoration:none;
	padding:12px 32px 12px 35px;
	background:url(../images/ic_tri_right_red.svg) no-repeat 15px 19px #fff;
	background-size:7px auto;
}
#link_area ul li.blank a{
	background:url(../images/ic_window_blank_red.svg) no-repeat 15px center #fff;
	background-size:12px auto;
	padding-left:37px;
}
@media screen and (max-width: 768px) {
	#link_area{
		background-size:45px auto;
		margin-bottom:20px;
		padding:0 15px;
	}
	#link_area ul{
		width:100%;
		padding:18px 0 6px 0;
	}
	#link_area ul li{
		float:none;
		margin-right:0;
		margin-bottom:12px;
		font-size:14px;
	}
	#link_area ul li a{
		width:100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding:12px 5px 12px 33px;
		display:block;
		background-size:5px auto;
		background-position:18px center;
	}
	#link_area ul li.blank a{
		background-size:10px auto;
		padding-left:33px;
	}
}




#pagetop {
	position: fixed;
	right: 50px;
	bottom: 20px;
	z-index: 10000;
	display: none;
}
#pagetop a {
	display: block;
	width: 46px;
	height: 46px;
	position: relative;
	background-color: #999;
	border-radius: 100%;
}
#pagetop a i {
	color: #fff;
	font-size: 28px;
	position: absolute;
	left: 50%;
	top: 50%;
	webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin-top: -3px;
}



footer .sitemap {
	background: #f4f4f4;
	font-size: 13px;
}
footer .sitemap dl a {
	color: #333;
}
footer .sitemap dl dt button {
	font-weight: bold;
	border: none;
	background-color: transparent;
}
footer .copy {
	color: #fff;
	background: #f1001a;
}

@media (min-width: 768px) {
	footer .sitemap {
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		min-width: 1240px;
		padding: 35px 20px 30px;
		border-top: 1px solid #ccc;
	}
	footer .sitemap dl {
		display: flex;
		margin-left: 15px;
		padding-left: 15px;
		border-left: 1px solid #ccc;
	}
	footer .sitemap dl:first-of-type {
		padding-left: 0px;
		margin-left: 0px;
		border-left: none;
	}
	footer .sitemap dl:last-of-type {
		border-right: 1px solid #ccc;
	}
	footer .sitemap dl dt {
		font-weight: bold;
		padding-right: 15px;
	}
	footer .sitemap dl dt button:hover {
		opacity: 1;
		cursor: default;
	}
	footer .sitemap dl dd {
		font-weight: 400;
	}
	footer .sitemap dl dd ul li + li {
		margin-top: 10px;
	}
	footer .sitemap dl dd ul.social {
		display: flex;
		padding-right: 20px;
		flex-wrap: wrap;
		margin-left: -10px;
	}
	footer .sitemap dl dd ul.social a {
		display: flex;
		font-size: 0.8em;
		align-items: center;
	}
	footer .sitemap dl dd ul.social li {
		width: 45%;
		margin: 0 0 10px 10px;
	}
	footer .sitemap dl dd ul.social li:nth-of-type(1) { order: 1 }
	footer .sitemap dl dd ul.social li:nth-of-type(2) { order: 3 }
	footer .sitemap dl dd ul.social li:nth-of-type(3) { order: 2 }
	footer .sitemap dl dd ul.social li:nth-of-type(4) { order: 4 }
	footer .sitemap dl dd ul.social img {
		width: 35px;
		margin-right: 5px;
	}
	footer .sitemap dl dd ul.social li span  {
	}
	footer .sitemap dl a:hover {
		color: #f1001a;
		text-decoration: underline;
	}
	footer .sitemap dl dd p {
		margin-bottom: 20px;
	}
	footer .copy {
		width: 100%;
		min-width: 1240px;
		padding: 10px 20px;
		font-size: 14px;
		line-height: 1em;
	}
	footer .copy p {
		margin: 0 auto;
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	section.recommend_banner .inner {
		min-width: 0;
		width: 100%;
		margin: 0 auto;
		padding: 15px;
		position: relative;
		z-index: 1;
	}
	section.recommend_banner .inner #recommend_slider {
		padding: 0 25px;
	}
	section.recommend_banner .inner #recommend_slider .slick-slide{
		line-height: 1 ;
	}
	section.recommend_banner .inner #recommend_slider .slick-btn span {
		width: 20px;
		height: 20px;
		line-height: 20px;
	}
	section.recommend_banner .inner #recommend_slider .slick-btn span i {
		font-size: 1.4rem;
		line-height: 20px;
	}
	section.recommend_banner .inner #recommend_slider .recommend_slider_item a span {
		display: none;
	}

	#pagetop {
		position: fixed!important;
		right: 10px!important;
		top: auto!important;
		bottom: 55px!important;
	}
	#pagetop a {
		width: 34px;
		height: 34px;
	}
	#pagetop a i {
		font-size: 20px;
		margin-top: -1px;
	}

	footer .sitemap {
	}
	footer .sitemap dl dt button {
		padding: 15px;
		box-sizing: border-box;
		width: 100%;
		text-align: left;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		cursor: pointer;
		position: relative;
		margin-top: -1px;
	}
	footer .sitemap dl dt button span {
		position: absolute;
		width: 30px;
		height: 30px;
		right: 15px;
		top: 50%;
		margin-top: -15px;
		box-sizing: border-box;
		content: "";
		border-radius: 4px;
		background-color: #8a8a8a;
		z-index: 2;
	}
	footer .sitemap dl dt button span::before,
	footer .sitemap dl dt button span::after {
		position: absolute;
		content: "";
		display: block;
		background-color: #fff;
		z-index: 3;
	}	
	footer .sitemap dl dt button span::before {
		width: 16px;
		height: 2px;
		left: 7px;
		top: 14px;
	}	
	footer .sitemap dl:not(.open) dt button span::after {
		width: 2px;
		height: 16px;
		left: 14px;
		top: 7px;
	}	

	footer .sitemap dl {
		position: relative;
	}
	footer .sitemap dl.open::after {
		display: block;
		position: absolute;
		width: 100%;
		content: "";
		height: 1px;
		border-bottom: 1px solid #ccc;
		left: 0;
		bottom: 0;
	}
	footer .sitemap dl dt + dd {
		display: none;
	}
	footer .sitemap dl.open dt + dd {
		display: block;
	}
	footer .sitemap dl dd ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	footer .sitemap dl dd ul li {
		box-sizing: border-box;
		width: 50%;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
	footer .sitemap dl.open dd ul li {
		background-color: #fff;
	}
	footer .sitemap dl dd ul li a {
		padding: 15px;
		display: block;
	}
	footer .sitemap dl dd p {
		padding: 15px 15px 0;
		text-align: center;
	}
	footer .sitemap dl dd ul.social {
		justify-content: center;
		padding: 10px 15px 20px;
	}
	footer .sitemap dl dd ul.social li {
		margin: 0 5px;
		border: none;
		width: auto;
		font-size: 0.85em;
	}
	footer .sitemap dl dd ul.social li a {
		padding: 0;
		display: flex;
		align-items: center;
		line-height: 1.2;
	}
	footer .sitemap dl dd ul.social li a img {
		width: 30px;
		margin-right: 5px;
	}
	footer .copy {
		padding: 7px 0;
		font-size: 10px;
		line-height: 1em;
	}
	footer .copy p {
		margin: 0 auto;
		padding: 0 10px;
		text-align: center;
	}
}

