@charset "utf-8";

/*----------------------
common style
----------------------*/
h2.title {
	margin-bottom: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 3.4rem;
	letter-spacing: 0.1em;
}

.contents {
	padding: 90px 0;
}

/* 一覧 リンク */
.list_link {
	position: absolute;
	top: -54px;
	right: 10%;
}

.list_link a {
	padding: 7px 13px;
	background-color: #000000;
	font-size: 1.4rem;
	color: #ffffff;
}

@media screen and (max-width: 768px) {
	h2.title {
		font-size: 2.4rem;
		margin-bottom: 7px;
	}

	.list_link a {
		padding: 4px;
		background-color: #333;
		font-size: 1.2rem;
		color: #ffffff;
		width: 100%;
		max-width: 300px;
		display: block;
		margin: auto;
		border-radius: 2px;
		letter-spacing: 0.06em;
		line-height: 2;
		box-sizing: border-box;
	}
}




/*----------------------
.contentsWrap .SearchBox
----------------------*/
.index .contentsWrap .SearchBox .detail_title,
.index .contentsWrap .SearchBox .result_title {
	display: none;
}
.index .contentsWrap .SearchBox input.searchField {
    width: 100%;
}
.index .contentsWrap .SearchBox .searchtop .search_title + div,
.index .contentsWrap .SearchBox .keyword .search_title + div {
	vertical-align: middle;
	text-align: left;
}

.index .contentsWrap .SearchBox .food ul {
	display: block;
}

@media screen and (min-width: 769px) {
	.index .contentsWrap .SearchBox .searchtop .search_title + div {
		width: 63.2%;
	}

	.index .contentsWrap .SearchBox .food ul {
		display: block;
	}

	.index .contentsWrap .SearchBox .keyword li {
		margin: 5px 20px 5px 0;
	}

	.index .contentsWrap .SearchBox .keyword {
		margin-top: 0;
	}
}

/*----------------------
#recipe_movie
----------------------*/
#recipe_movie .movie_wrap {
	display: flex;
}

/* player */
#recipe_movie .play_movie {
	flex: 1;
	-webkit-align-items: stretch;
	align-items: stretch;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#recipe_movie .play_movie_thumb {
	display: block;
	height: 100%;
}

/* detaile */
#recipe_movie .movie_detail {
	position: relative;
	width: 100%;
	max-width: 430px;
	padding-bottom: 22%;
	flex-shrink: 0;
}

#recipe_movie .title {
	display: inline-block;
	padding: 10px 32px;
	margin-bottom: 48px;
	background-color: #d51519;
	font-size: 1.6rem;
	color: #ffffff;
}

#recipe_movie .movie_text {
	margin: 0 20px 0 45px;
}

#recipe_movie .movie_title {
	margin-bottom: 17px;
	font-size: 2.6rem;
	line-height: calc(49/26);
	letter-spacing: 0.1em;
}

#recipe_movie .movie_desc {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.06em;
}
#movie .middle_inner {
	position: relative;
}

/* movie btn */
#recipe_movie .btn_area {
	display: grid;
	position: absolute;
	bottom: 0;
	margin: 0 0 53px 45px;
}

#recipe_movie .btn_play_area {
	text-align: center;
	grid-row: 1 / 3;
	grid-column: 1 / 2;
}

#recipe_movie .btn_play_area .btn_play_movie {
	display: flex;
	position: relative;
	flex-direction: column;
	color: #d51519;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

#recipe_movie .btn_play_area .btn_play_movie::before {
	content: "";
	display: inline-block;
	margin-bottom: 18px;
	width: 86px;
	height: 86px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 4px solid #d61d21;
	background-color: #ffffff;
}

#recipe_movie .btn_play_area .btn_play_movie::after {
	content: "";
	display: block;
	position: absolute;
	top: 27%;
	left: 45%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 0 16px 22px;
	border-color: transparent transparent transparent #d61d21;
}

#recipe_movie .btn_recipe_area {
	margin-left: 25px;
}

#recipe_movie .btn_recipe_area a {
	display: block;
	position: relative;
	width: 170px;
	padding: 20px 26px 20px 0;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-align: center;
}

#recipe_movie .btn_recipe_area a::before {
	content: "";
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	width: 32px;
	height: 32px;
	margin-bottom: 18px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
}

#recipe_movie .btn_recipe_area a::after {
	content: "";
	position: absolute;
	display: block;
	right: 24px;
	top: 50%;
	-webkit-transform: translate(0%, -50%) rotate(45deg);
	-moz-transform: translate(0%, -50%) rotate(45deg);
	-ms-transform: translate(0%, -50%) rotate(45deg);
	-o-transform: translate(0%, -50%) rotate(45deg);
	transform: translate(0%, -50%) rotate(45deg);
	width: 7px;
	height: 7px;
}

#recipe_movie .btn_view {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

#recipe_movie .btn_list {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

#recipe_movie .btn_recipe_view {
	border: 1px solid #000000;
}

#recipe_movie .btn_recipe_list {
	background-color: #000000;
	color: #ffffff;
}

#recipe_movie .btn_recipe_view::after {
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
}

#recipe_movie .btn_recipe_list::after {
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

#recipe_movie .movie_image {
	display: none;
}

@media screen and (max-width: 768px) {

	/*----------------------
	#recipe_movie
	----------------------*/

	/* player */
	#recipe_movie .movie_detail {
		padding-bottom: 37px;
		margin: auto;
	}

	#recipe_movie .movie_wrap {
		display: block;
	}

	#recipe_movie .play_movie {
		padding-bottom: 56.25%;
	}

	/* detaile */
	#recipe_movie .title {
		font-size: 11px;
		padding: 10px;
		margin: auto;
	}

	#recipe_movie .movie_text {
		margin: 23px 23px 28px;
	}

	#recipe_movie .movie_title {
		font-size: 18px;
		line-height: 1.8;
		margin-bottom: 7px;
	}
	#recipe_movie .play_movie_thumb {
		height: auto;
	}

	#recipe_movie .movie_desc {
		font-size: 13px;
		line-height: 1.8;
	}

	/* movie btn */
	#recipe_movie .btn_area {
		display: block;
		position: initial;
		margin: auto;
		width: 80%;
		overflow: hidden;
	}

	#recipe_movie .btn_area_sp {
		display: grid;
		position: absolute;
		top: -28px;
		right: 11px;
	}

	#recipe_movie .btn_play_area .btn_play_movie::before {
		margin: 0 auto 7px;
		width: 53px;
		height: 53px;
		border: 2px solid #d61d21;
	}

	#recipe_movie .btn_play_area .btn_play_movie::after {
		top: 25.5%;
		left: 45%;
		border-width: 9px 0 9px 13px;
	}

	#recipe_movie .btn_play_area .btn_play_movie {
		font-size: 10px;
	}

	#recipe_movie .btn_view {
		margin-left: 0;
		margin-right: 2.5%;
		float: left;
		width: 56.5%;
	}

	#recipe_movie .btn_recipe_area a {
		padding: 10.5px 0;
		width: 100%;
		font-size: 13px;
		box-sizing: border-box;
	}

	#recipe_movie .btn_recipe_area a.btn_recipe_view {
		padding: 10.5px 19px 10.5px 0;
	}

	#recipe_movie .btn_list {
		margin-left: 0;
		float: left;
		width: 40%;
		font-size: 13px;
	}

	#recipe_movie .btn_recipe_area a::before {
		width: 16px;
		height: 16px;
	}

	#recipe_movie .btn_recipe_area a::after {
		width: 3.5px;
		height: 3.5px;
		right: 18px;

	}

	#recipe_movie .btn_recipe_area a.btn_recipe_list::before {
		display: none;
	}

	#recipe_movie .btn_recipe_area a.btn_recipe_list::after {
		display: none;
	}
	#recipe_movie .movie_image {
		height: 56.25vw;
	}
}

/*----------------------
#pick_up
----------------------*/
#pick_up {
	background: rgb(246, 246, 246);
	background: linear-gradient(180deg, rgba(246, 246, 246, 1) 50%, rgba(255, 255, 255, 1) 50%);
}
/*----------------------
#movie
----------------------*/
#movie {
	width: 100%;
	overflow: hidden;
	padding-bottom: 0;
}

/* スライダーの設定に必要 */
#movie .view_block {
	width: 540px;
}

#movie .movie_wrap {
	background-color: #f6f6f6;
}

#movie .wrap_bgc {
	margin-top: 80px;
}

#movie .slide_movie {
	padding-bottom: 510px !important;
}

#movie .slideArea {
	/* align-items:center; */
}

#movie .img img {
	width: 428px;
	height: 295px;
	margin-bottom: 25px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

#movie p.title,
#movie .btn_play {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	font-size: 2.0rem;
	line-height: 1.8;
}

#movie .list_item {
	text-align: center;
}

#movie .list_item.currentItem {
	margin-left: -30px;
}

#movie .list_item:not(.currentItem) {
	width: 428px;
	margin-top: 20px;
	margin-left: 56px;

}

#movie .currentItem {
	margin-top: -50px;
}

#movie .currentItem .img img {
	width: 600px;
	height: 415px;
}

#movie .currentItem .title,
#movie .currentItem .btn_play {
	visibility: visible;
	opacity: 1;
}
#movie  .btn_play {
	position: absolute;
	flex-direction: column;
	color: #d51519;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.07em;
}

#movie .btn_play {
	bottom: 60px;
	left: -52px;
	position: absolute;
	display: block;
	width: 94px;
	height: 94px;
	background-color: unset;
	border: none;
	padding: 0;
	cursor: pointer;
}

#movie .btn_play::before {
	content: "";
	display: inline-block;
	width: 86px;
	height: 86px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 4px solid #d61d21;
	background-color: #ffffff;
}

#movie .btn_play::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 6px;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	margin: auto;
	border-style: solid;
	border-width: 16px 0 16px 22px;
	border-color: transparent transparent transparent #d61d21;
}
.list_link.movie_link {
	right: 3%;
}

@media screen and (max-width: 768px) {
	#movie {
		padding: 19px 0 0;
	}

	#movie .view_block {
		width: 75%;
		margin: auto;
	}

	#movie .img img {
		min-width: 219px;
		width: 219px;
		height: auto;
		margin-bottom: 7px;
	}

	#movie .currentItem .img img {
/*		max-width: 309px;*/
		width: 110%;
		height: auto;
		margin-left: -5%;

	}

	#movie .list_item.currentItem {
		margin: -25px 0 0;

	}

	#movie .list_item:not(.currentItem) {
		min-width: 95%;
		width: 95%;
		margin: 0 0 0 2.5%;
	}

	#movie .img img {
		-webkit-transition: 0.8s;
		-moz-transition: 0.8s;
		-ms-transition: 0.8s;
		-o-transition: 0.8s;
		transition: 0.8s;
	}

	#movie .mrcm_slide_wrap .list_item {
		-webkit-transition: 0.8s all;
		-moz-transition: 0.8s all;
		-ms-transition: 0.s all;
		-o-transition: 0.8s all;
		transition: 0.8s all;
	}

	#movie .wrap_bgc {
		margin-top: 40px;
	}

	#movie p.title {
		font-size: 13px;
	}

	#movie .btn_play {
		bottom: 0;
		left: -43px;
		width: 57px;
		height: 57px;
	}

	#movie .btn_play::before {
		margin: 0 auto 7px;
		width: 53px;
		height: 53px;
		border: 2px solid #d61d21;
	}

	#movie .btn_play::after {
		border-width: 9px 0 9px 13px;
	}

	#movie .mrcm_slide_wrap .slide_nav_prev {
		right: 54%;
		top: auto;
		bottom: 26%;
	}

	#movie .mrcm_slide_wrap .slide_nav_next {
		right: 36.5%;
		top: auto;
		bottom: 26%;
	}

	#movie .slide_movie {
		padding-bottom: 90% !important;
	}

	#movie .middle_inner {
		position: relative;
	}

	#movie .list_link.movie_link {
		bottom: 9%;
		top: auto;
		right: 0;
		left: 0;
		margin: 20px auto auto;
		text-align: center;
	}
}
@media screen and (max-width: 500px) {
	#movie .slide_movie {
		padding-bottom: 106% !important;
	}
}
/*----------------------
#ranking
----------------------*/
#ranking {
	padding: 50px 0 280px;
}

#ranking .middle_inner {
	position: relative;
}

#ranking .title::before {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background: url('/recipe/img/common/icon_title.png') no-repeat top center;
}

#ranking .list_wrap {
	display: flex;
}

#ranking .list_item {
	position: relative;
	width: 50%;
	margin: auto;
}

/* text area */
#ranking .item_text {
	position: absolute;
	top: 85%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 30px 27px;
	width: 78.828%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #ffffff;
	font-size: 1.6rem;
}

#ranking .product_img {
	float: right;
}

#ranking .item_title {
	margin-bottom: 30px;
	font-size: 2.0rem;
	line-height: 1.6;
}

#ranking .item_discription {
	padding-bottom: 30px;
	margin-bottom: 30px;
	background: url('/recipe/img/top/border_ranking.png') repeat-x bottom;
	line-height: 1.6;
}

#ranking .product_name span {
	display: inline-block;
	padding: 10px 20px;
	margin-right: 20px;
	background: #909090;
	color: #FFF;
}
.list_link.ranking_link {
	right: 3%;
}

@media screen and (max-width: 768px) {
	#ranking .list_wrap {
		display: block;
	}
	#ranking{
		position: relative;
		padding: 34px 0 80px;
	}
	#ranking h2.title{
		margin-bottom: 22px;
	}
	#ranking .title::before {
	    height: 26px;
	}
	#ranking .list_link.ranking_link {
		top: auto;
		bottom: 35px;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
	}
	#ranking .list_item {
		width: 100%;
		margin: auto;
	}
	#ranking .item_text {
		position: inherit;
		bottom: auto;
		left: auto;
		width: 95%;
		margin: -15% auto 0;
		transform: inherit;
    	padding: 14px 0 24px 32px;
	}
	#ranking .item_title {
		font-size: 1.2rem;
		font-size: 12px;
		margin-bottom: 18px;
	}
	#ranking .item_img {
		text-align: center;
	}
	#ranking .product_name{
		font-size: 1.0rem;
		font-size: 10px;
			padding-right: 80px;
	}
	#ranking .product_name span{
		font-size: 1.0rem;
		font-size: 10px;
	    padding: 8px;
	}
	#ranking .item_discription{
		font-size: 1.0rem;
		font-size: 10px;
		padding-right: 80px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
	#ranking .product_img {
		max-width: 80px;
		padding: 0 4px;
		box-sizing: border-box;
	}

}

/*----------------------
#oyaku_tieup
----------------------*/
#oyaku_tieup {
	background: #f7f7f7
}

#oyaku_tieup.contents {
	padding: 60px 0 50px;
}

/* common */
#oyaku_tieup .oyaku_tieup_content {
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	align-items: stretch;
	background: #ffffff;
}

#oyaku_tieup .detail {
	width: 50%;
	order: 1;
	padding: 53px 0;
}

#oyaku_tieup .img {
	width: 50%;
	order: 2;
	background-position: center center;
	background-size: cover;
}

#oyaku_tieup .title {
	font-size: 2.6rem;
	font-weight: bold;
}

#oyaku_tieup .disc {
	max-width: 440px;
	margin: 0 auto 30px;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.04em;
}

/* oyaku */
#oyaku .img {
	background-image: url('/recipe/img/top/img_oyakudachi.jpg');
}

/* tie-up */
#tie_up.oyaku_tieup_content {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

#tie_up .img {
	background-image: url('/recipe/img/top/img_tie_up.jpg');
}


@media screen and (max-width: 768px) {
	#oyaku_tieup.contents {
		padding: 40px 0 30px;
	}
	#oyaku_tieup .oyaku_tieup_content {
		display: block;
	}
	#oyaku_tieup .title {
		font-size: 1.7rem;
		margin-bottom: 20px;
	}
	#oyaku_tieup .img {
		width: 100%;
		background: none;
	}
	#oyaku_tieup .detail{
		width: 90%;
		margin: auto;
		padding: 24px 18px;
    	box-sizing: border-box;
	}
	#oyaku_tieup .disc {
	    margin: 0px auto 14px;
		font-size: 1.0rem;
		line-height: 1.6;
	}
	#oyaku_tieup .img>img{
		margin: 0 auto;
	}
}

/*----------------------
#restaurant_artist
----------------------*/
#restaurant_artist.contents {
	padding: 50px 0;
	margin-bottom: 250px;
}

#restaurant_artist .middle_inner {
	display: flex;
}

#restaurant_artist .restaurant_artist_contents {
	position: relative;
}

#restaurant_artist .title {
	position: absolute;
	top: 35px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

#restaurant_artist .detail {
	position: absolute;
	bottom: ;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 30px 27px;
	width: 78.828%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #ffffff;
	font-size: 1.6rem;
}

#restaurant_artist .title {
	width: 100%;
	margin-bottom: 30px;
	font-size: 2.0rem;
	line-height: 1.8;
}

#restaurant_artist .desc {
	max-width: 325px;
	padding: 90px 0 0;
	margin: 0 auto 30px;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
	#restaurant_artist .middle_inner {
		display: block;
	}
	#restaurant_artist .detail {
		position: inherit;
		bottom: 0;
		left: 0;
    	transform: none;
		padding: 12px 40px;
		width: 100%;
		margin: 0 auto 12px;
	}
	#restaurant_artist.contents {
		padding: 0;
		margin-bottom: 30px;
	}
	#restaurant_artist .title {
		font-size: 12px;
		margin-bottom: 10px;
		position: inherit;
		top: 0;
		left: 0;
		transform: none;
	}
	#restaurant_artist .desc {
		padding: 0;
		font-size: 10px;
		text-align: center;
		margin: 0 auto 14px;
	}
	#restaurant_artist .img{
		text-align: center;
	}
}
/*----------------------
#user
----------------------*/
#user.contents {
	position: relative;
	padding: 85px 0;
}

#user .title {
	font-size: 3.4rem;
	letter-spacing: 0.1em;
}
#user .middle_inner {
	position: relative;
}
@media screen and (max-width: 768px) {
	#user h2.title {
		font-size: 2.4rem;
		margin-bottom: 14px;
	}
	#user.contents {
		padding: 10px 0 135px;
	}
	#user .middle_inner {
		position: relative;
	}
	#user .list_link.user_link {
		bottom: -60px;
		top: auto;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
	}
}
.more-btn-borderline{
	display: none;
}
