@charset "utf-8";

.pagemain{
	min-height: 470px;
	padding: 80px 30px 180px;
}
.pagemain-inner{
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.pagemain{
		padding: 76px 30px 80px;
	}
}

#breadcrumb{
	position: relative;
	width: 100%;
	padding-block: 8px;
	padding-inline: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	z-index: 6;
}
#breadcrumb::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	background: rgba(245,240,233,.52);
	z-index: -1;
}

#breadcrumb ul#path-list{
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

#breadcrumb ul#path-list li{
	position: relative;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--black);
	margin: 0 10px 0 0;
	padding: 0 13px 0 0;
	z-index: 6;
}
#breadcrumb ul#path-list li:last-child{
	margin: 0;
	padding: 0;
}

#breadcrumb ul#path-list li::after{
	content: '';
	position: absolute;
	top: 55%;
	right: 0;
	width: 5px;
	height: 5px;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	transform: translateY(-50%) rotate(45deg);
}

#breadcrumb ul#path-list li:last-child::after{
	display: none;
}

#breadcrumb ul#path-list li a{
	position: relative;
	display: inline-block;
	color: var(--orenge);
	font-weight: 600;
	margin: 0;
	padding: 0;
	transition: all  0.32s ease;
}

#breadcrumb ul#path-list li a:hover {
	color: var(--orenge);
}

@media screen and (max-width: 767px) {
	#breadcrumb ul#path-list li{
		position: relative;
		font-size: 1.1rem;
		font-weight: 400;
		color: var(--black);
		margin: 0 10px 0 0;
		padding: 0 13px 0 0;
		z-index: 6;
	}
	#breadcrumb ul#path-list li::after{
		content: '';
		position: absolute;
		top: 55%;
		right: 0;
		width: 4px;
		height: 4px;
		border-right: 1px solid #ccc;
		border-top: 1px solid #ccc;
		transform: translateY(-50%) rotate(45deg);
	}
}

.title-block{
	position: relative;
	width: 100%;
	padding-block: 64px 30px;
	margin-block: 0 56px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.h1-txt{
	text-align: center;
	font-size: 3.2rem;
	line-height: 1.6;
	font-weight: 600;
	letter-spacing: .052em;
}
.title-block::before {
	border-bottom: 1px solid #f4a000;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 98px;
}

@media screen and (max-width: 767px) {
	.title-block{
		position: relative;
		width: 100%;
		padding-block: 56px 30px;
		margin-block: 0 56px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.h1-txt{
		text-align: center;
		font-size: 2.4rem;
		line-height: 1.6;
		font-weight: 600;
		letter-spacing: .052em;
	}
}

/******************************
 お弁当注文
******************************/

.order-intro{
	text-align: center;
}
.order-intro p{
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2.0;
	letter-spacing: .032em;
}
.order-intro p + p{
	margin-top: .5em;
}
.order-intro a{
	color: var(--black);
}

@media screen and (max-width: 767px) {
	.order-intro p{
		font-weight: 400;
		font-size: 1.5rem;
		line-height: 1.6;
		letter-spacing: .032em;
	}
}

.order-block{
	margin-block: 40px 0;
}
.order-block-inner{
	max-width: 640px;
	width: 100%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 32px;
}

@media screen and (max-width: 767px) {
	.order-block{
		margin-block: 40px 0;
	}
	.order-block-inner{
		max-width: 100%;
		width: 100%;
		margin-inline: auto;
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 32px;
	}
}

.order-item-title{
	font-weight: 600;
	font-size: 1.4rem;
	margin-block: 0 4px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.order-item-title .haveto{
	position: relative;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1;
	color: #fff;
	padding: 2px 4px 4px;
	margin-left: 4px;
	z-index: 6;
}
.order-item-title .haveto::after{
	content: '';
	position: absolute;
	inset: 0;
	background: #a50d05;
	border-radius: 3px;
	z-index: -1;
}
.order-check .order-item-title{
	background: rgba(245,240,233,1);
	padding: 4px 1em;
}

.order-item-field{
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: .032em;
	margin: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
	width: 100%;
	box-sizing: border-box;
	border: 1px #ccc solid;
}
select{
	appearance: none;
	box-sizing: border-box;
	border: 1px #ccc solid;
	color: var(--black);
}
textarea{
	height: 140px;
}
.order-item-field .wpcf7-form-control{
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: .032em;
	border-radius: 6px;
	padding: .52em .75em;
	background-color: #fff;
	background-image: none;
}
.order-item-field select.wpcf7-form-control{
	padding-block: .52em;
	padding-inline: .75em 40px;
	letter-spacing: 0;
}
.select-inst .wpcf7-form-control-wrap{
	position: relative;
	z-index: 6;
}
.select-inst .wpcf7-form-control-wrap::after {
    content: '';
    position: absolute;
    top: 45%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #2f2725;
    border-bottom: 2px solid #2f2725;
    transform: translateY(-50%) rotate(45deg);
	z-index: 1;
}
.wpcf7-not-valid-tip{
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.3;
	color: #a50d05;
}
.ui-datepicker{
	z-index: 8 !important;
}
@media screen and (max-width: 767px) {
	.wpcf7-not-valid-tip{
		display: block;
		margin-block: 8px 0;
	}
}

.order-select-item{
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-gap: 24px;
	padding-block: 24px;
}
.order-select-item + .order-select-item{
	border-top: 1px #ccc solid;
}

@media screen and (max-width: 767px) {
	.order-select-item{
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 24px;
		padding-block: 40px;
	}
	.order-select-image{
		display: flex;
		justify-content: center;
	}
	.order-select-image img{
		max-width: 80%;
		width: 100%;
	}
}

.order-select-block{
	display: flex;
	align-items: center;
}
.order-item-title-02{
	font-weight: 600;
	font-size: 1.6rem;
	margin-block: 0 16px;
}
.order-select-option{
	margin-block: 16px 0;
}
.order-select-note{
	font-size: 1.4rem;
	line-height: 1.5;
	margin-block: 16px 0;
}

@media screen and (max-width: 767px) {
	.order-select-block{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.order-select-block-inner{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.order-select-note{
		width: 100%;
		font-size: 1.4rem;
		line-height: 1.5;
		margin-block: 16px 0;
	}
}

.submit-btn{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: 32px 0;
}
#formbtn{
	cursor: pointer;
	width: 100%;
	height: 64px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: .032em;
	color: #fff;
	background: var(--orenge);
	border: 1px solid transparent;
	border-radius: 6px;
	touch-action: manipulation;
	transition: all 0.3s ease;
}
#formbtn:hover{
	opacity: .7;
}
#prev-b{
	cursor: pointer;
	width: 60%;
	height: 64px;
	margin: 32px auto 0;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: .032em;
	color: #fff;
	background: #888;
	border: 1px solid transparent;
	border-radius: 6px;
	touch-action: manipulation;
	transition: all 0.3s ease;
}
#prev-b:hover{
	opacity: .7;
}


@media screen and (max-width: 767px) {
	#formbtn{
		font-size: 1.6rem;
	}
	#formbtn:hover{
		opacity: 1;
	}
	#prev-b{
		font-size: 1.6rem;
	}
	#prev-b:hover{
		opacity: 1;
	}
}


/******************************
 お弁当注文　サンクス
******************************/

.thanks-intro{
	max-width: 640px;
	width: 100%;
	margin-inline: auto;
}
.thanks-intro p{
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2.0;
	letter-spacing: .032em;
}
.thanks-intro p + p{
	margin-block: 24px 0;
}

@media screen and (max-width: 767px) {
	.thanks-intro p{
		font-weight: 400;
		font-size: 1.4rem;
		line-height: 1.6;
		letter-spacing: .032em;
	}
}

.thanks-block{
	margin-block: 40px 0;
}
.thanks-backhome{
	max-width: 380px;
	width: 100%;
	margin: 52px auto 0;
}
.thanks-backhome a{
	position: relative;
	width: 100%;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	padding-inline: 38px;
	z-index: 6;
}
.thanks-backhome a::after{
	content: '';
	position: absolute;
	inset: 0;
	background: var(--orenge);
	border-radius: 6px;
	transition: all 0.3s;
	z-index: -1;
}
.thanks-backhome a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 21px;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	z-index: 1;
}
.thanks-backhome a:hover::after{
	opacity: .7;
}

@media screen and (max-width: 767px) {
	.thanks-block{
		margin-block: 40px 0;
	}
	.thanks-backhome{
		max-width: 300px;
		width: 100%;
		margin: 52px auto 0;
	}
	.thanks-backhome a{
		height: 64px;
		font-size: 1.6rem;
		padding-inline: 38px;
	}
	.thanks-backhome a::before{
		width: 6px;
		height: 6px;
	}
	.thanks-backhome a:hover::after{
		opacity: 1;
	}
}

/******************************
 サイトマップ
******************************/

.sitemap-content{
	max-width: 640px;
	width: 100%;
	margin-inline: auto;
}
.sitemap-list > li{
	border-top: 1px #ccc dashed;
	border-bottom: 1px #ccc dashed;
}
.sitemap-list > li + li{
	border-top: none;
	border-bottom: 1px #ccc dashed;
}
.sitemap-list a{
	position: relative;
	display: inline-block;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--black);
	padding-block: 24px;
	padding-inline: 32px 24px;
	transition: all 0.3s;
	z-index: 6;
}
.sitemap-list a::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 8px;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-right: 1px solid var(--orenge);
	border-top: 1px solid var(--orenge);
	z-index: 1;
}
.sitemap-list a:hover{
	color: var(--orenge);
}


@media screen and (max-width: 767px) {
	.sitemap-list a{
		font-size: 1.5rem;
	}
	.sitemap-list a::before{
		width: 6px;
		height: 6px;
	}
}


/******************************
 プライバシーポリシー
******************************/

.privacy-content{
	max-width: 780px;
	width: 100%;
	margin-inline: auto;
}
.privacy-h2{
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.8;
	letter-spacing: .032em;
	overflow-wrap: break-word;
	word-wrap: break-word;
	margin: 0 0 .5em;
	padding: 0;
}

.privacy-content p{
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: .032em;
	overflow-wrap: break-word;
	word-wrap: break-word;
	margin: 0 0 2.4em;
	padding: 0;
}
.privacy-content a{
	font-weight: 600;
	color: var(--black);
}
.privacy-purpose{
	margin: 0 0 2.4em;
	padding: 0;
}
.privacy-purpose li{
	list-style-type: decimal;
	text-align: justify;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: .032em;
	overflow-wrap: break-word;
	word-wrap: break-word;
	margin: 0 0 0 2.4em;
	padding: 0;
}

@media screen and (max-width: 767px) {
	.privacy-h2{
		font-size: 1.7rem;
	}
	.privacy-content p{
		font-size: 1.5rem;
	}
	.privacy-purpose li{
		font-size: 1.5rem;
	}
}