@charset "UTF-8";

/* コンテンツ */
.bg_cmn{
	background: url(../images/mainCtsBg.jpg) repeat-x;
	background-size: cover;
}
.ctsArea{
	width: 1040px;
	margin: 0 auto;
	padding: 100px 0;
}
@media screen and (max-width:767px){
	.ctsArea{
		width: 100%;
		padding: 50px 20px;
	}
}

/* ボタン */
[class^="btnBase"]{
	display: flex;
	justify-content: center;
	padding-top: 40px;
	gap: 15px;
}
[class^="btn__"]{
	text-align: center;
}
[class^="btn__"] span{
	display: inline-block;
	width: 220px;
	margin-top: 40px;
	padding: 20px;
	font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	font-size: 1.5rem;
	font-style: italic;
	font-weight: var(--bold);
	text-align: center;
	line-height: 1.0;
	color: #fff;
	background-color: #694133;
	cursor: pointer;
	transition: opacity 0.2s;
}
[class^="btn__"] span:hover{
	opacity: 0.7;
}
@media screen and (max-width:767px){
	[class^="btnBase"]{
		padding-top: 20px;
		gap: 10px;
	}
	[class^="btn__"] span{
		width: 150px;
		margin-top: 20px;
		padding: 15px;
		font-size: 1.3rem;
	}
}

/* アンカーリンク */
.anker__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.anker__list li a{
	display: block;
	width: 220px;
	padding: 15px 25px 15px 15px;
	font-weight: bold;
	color: #694133;
	text-align: center;
	border: 1px solid #694133;
	position: relative;
	transition: color 0.2s, background-color 0.2s;
}
.anker__list li a::after{
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top:1px solid #694133;
	border-right:1px solid #694133;
	transform:translateY(-50%) rotate(135deg);
	transform-origin: center;
	position:absolute;
	top:50%;
	right: 15px;
	margin:-2px 0 0 0;
}
.anker__list li a:hover{
	color: #fff;
	background-color: #694133;
}
.anker__list li a:hover::after{
	border-top:1px solid #fff;
	border-right:1px solid #fff;
}
@media screen and (max-width:767px){
	.anker__list li{
		width: calc((100% - 10px)/2);
	}
	.anker__list li a{
		width: 100%;
		padding: 15px 15px 15px 10px;
	}
	.anker__list li a::after{
		width:6px;
		height:6px;
		right: 12px;
	}
}

/* オリジナルメニュー
--------------------------- */
.originalMenu__kvArea.ctsArea{
	padding: 160px 0 100px;
}
#originalMenu .pageTit{
	width: 532px;
}
@media screen and (max-width:767px){
	.originalMenu__kvArea.ctsArea{
		padding: 100px 20px 50px;
	}
	#originalMenu .pageTit{
		width: 85%;
	}
}

/* swiper */
.swiper{
	margin: 50px 0 100px;
	-webkit-mask: url(../images/mask_kv_pc.svg) center / 100% auto no-repeat;
	mask: url(../images/mask_kv_pc.svg) center / 100% auto no-repeat;
	position: relative;
}
.swiper__frame{
	position: absolute;
	top: 0;
	z-index: 10;
}
.swiper__area{
	position: relative;
}
.swiper__area::before{
	content: "";
	display: block;
	width: 340px;
	height: 53px;
	background: url("../images/tit_kv.png") center center no-repeat;
	background-size: cover;
	filter: drop-shadow(0 0 5px rgba(66,33,11,.5));
	position: absolute;
	right: -12px;
	bottom: 30px;
	transform: rotate(-15deg);
	z-index: 10;
}
.swiper__area .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: -35px;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	width: 60px;
	height: 5px;
	border-radius: 0;
	background-color: #694133;
}
@media screen and (max-width:767px){
	.swiper{
		margin: 30px 0;
		-webkit-mask: url(../images/mask_kv_sp.svg) center / 100% auto no-repeat;
		mask: url(../images/mask_kv_sp.svg) center / 100% auto no-repeat;
	}
	.swiper__area::before{
		width: 250px;
		height: 39px;
		bottom: 20px;
	}
	.swiper-pagination{
		display: none;
	}
}

/* レシピ */
#recipe{
	display: flex;
	flex-direction: column;
	gap: 150px;
}
.recipe__categoryTit{
	margin-bottom: 40px;
	padding-bottom: 25px;
	text-align: center;
	color: #694133;
	line-height: 1.0;
	border-bottom: 3px solid #694133;
	position: relative;
}
.recipe__categoryTit::before{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #694133;
	position: absolute;
	left: 0;
	bottom: -7px;
}
.recipe__titSub{
	display: inline-block;
	margin-bottom: 15px;
	padding: 8px 20px;
	font-size: 1.8rem;
	border-top: 2px solid #694133;
	border-bottom: 2px solid #694133;
	position: relative;
}
.recipe__titSub::before,
.recipe__titSub::after{
	content: "";
	display: block;
	width: 40px;
	height: 38px;
	background: url("../images/frame_subTit.png") center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -2px;
}
.recipe__titSub::before{
	left: -40px;
}
.recipe__titSub::after{
	right: -40px;
	transform: rotate(180deg);
}
.recipe__titEm{
	font-size: 4.2rem;
	font-style: italic;
}
.recipe__list{
	display: flex;
	flex-wrap: wrap;
	gap: 50px 80px;
	width: 880px;
	margin: 0 auto;
}
.recipe__list > li{
	width: 400px;
	background-color: #EDE7DF;
}
.recipe__tit{
	display: flex;
	align-items: center;
	height: 60px;
	padding-left: 20px;
	font-size: 1.8rem;
	color: #694133;
	background-color: #fff;
	border-left: 2px solid #694133;
}
.recipe__img{
	padding-top: 10px;
	background-color: #fff;
}
.recipe__box{
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 30px;
	font-weight: bold;
}
.recipe__boxTit{
	padding-bottom: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #694133;
	line-height: 1.0;
	border-bottom: 2px solid #694133;
}
.recipe__boxTit span{
	font-size: 1.2rem;
}
@media screen and (max-width:767px){
	#recipe{
		gap: 80px;
	}
	.recipe__categoryTit{
		margin-bottom: 30px;
		padding-bottom: 15px;
	}
	.recipe__titSub{
		padding: 8px 10px;
		font-size: 1.4rem;
	}
	.recipe__titSub::before,
	.recipe__titSub::after{
		width: 36px;
		height: 34px;
	}
	.recipe__titSub::before{
		left: -36px;
	}
	.recipe__titSub::after{
		right: -36px;
	}
	.recipe__titEm{
		font-size: 2.6rem;
	}
	.recipe__list{
		gap: 30px;
		width: 100%;
	}
	.recipe__list > li{
		width: 100%;
	}
	.recipe__tit{
		height: 50px;
		padding-left: 15px;
		font-size: 1.6rem;
	}
	.recipe__box{
		gap: 20px;
		padding: 20px;
	}
	.recipe__boxTit{
		font-size: 1.5rem;
	}
	.recipe__boxTit span{
		font-size: 1.0rem;
	}
	
}

.ingredients__list{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	margin-top: 10px;
}
.ingredients__list span:first-of-type::before{
	content: "●";
	padding-right: 3px;
}
.ingredients__list span:first-of-type::after{
	content: "‥‥";
}
.ingredients__list .tit{
	display: block;
	width: 100%;
	margin-top: 10px;
}
@media screen and (max-width:767px){
	.ingredients__list{
		gap: 5px 15px;
	}
	.ingredients__list span:first-of-type::before{
		padding-right: 2px;
	}
	.ingredients__list .tit{
		margin-top: 5px;
	}
}

.process__olist{
	counter-reset: number 0;
}
.process__olist li{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 12px 0 12px 35px;
	border-bottom: 2px dotted #694133;
	position: relative;
}
.process__olist li:last-of-type{
	border-bottom: 2px solid #694133;
}
.process__olist li:before {
	content: "";
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 25px;
	height: 25px;
	padding-top: 1px;
	color: #fff;
	background-color: #694133;
	border-radius: 50%;
	counter-increment: number 1;
	content: counter(number) " ";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
@media screen and (max-width:767px){
	.process__olist li:before {
		padding-top: 2px;
	}
}