@charset "utf-8";

/* pageWrap */
.pageWrap{
	padding: 50px 0 0 0;
	position: relative;
}
.pageWrap:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,transparent,#d8e4ea);
}
.pageWrap_inner{
	position: relative;
}
@media (max-width:768px){
	.pageWrap{
		padding: 30px 0;
	}
}

/* title */
.title{
	margin-bottom: 50px;
}
.ttlWrap h2{
	font-family: "Marcellus", serif;
	font-size: 2.5em;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #65b0d4;
	text-align: center;
	margin-bottom: 10px;
}
.ttlWrap h2 span.logo{
	display: inline-block;
	width: 100px;
	margin-left: 5em;
}
.ttlWrap p{
	font-size: 1.25em;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-align: center;
}
.under500{
	display: none;
}
@media (max-width:1200px){
	.ttlWrap h2{
		font-size: 2.25em;
	}
	.ttlWrap h2 span.logo{
		width: 90px;
	}
}
@media (max-width:1024px){
	.ttlWrap h2{
		font-size: 2em;
	}
	.ttlWrap h2 span.logo{
		width: 80px;
	}
}
@media (max-width:500px){
	.under500{
		display: block;
	}
	.ttlWrap h2 span.logo{
		margin-top:0.5em;
		margin-left: 0em;
	}
} 

/* mainImg */
.mainImg p{
	width:650px;
	margin: 0 auto;
	margin-bottom: 50px;
}
@media (max-width:768px){
	.mainImg p{
		width:84.63%;
	}
}
@media (max-width:500px){
	.mainImg p{
		width:90%;
	}
}

/* kitchenContent_wrap */
.relative{
	position: relative;
}
.absolute{
	position: absolute;
	top: 0;
	left: 0;
}
.kitchenContent_wrap{
	width:1100px;
	margin: 0 auto;
	padding: 50px;
	box-sizing: border-box;
	background-color: #fff;
	border:2px solid #93c6e4;
}
.kitchenContent_row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.kitchenContent_row:last-of-type{
	margin-bottom: 0px;
}
.kitchenContent_box,
.storageContent_box{
	width: 31%;
}
.kitchenContent_boxInner:first-of-type{
	margin-bottom: 20px;
}
.imgBox{
	margin-bottom: 10px;
}
.txtBox h3{
	font-family: "Noto Sans JP", serif;
	color: #65b0d4;
	font-size: 1em;
	font-weight: 500;
	margin-bottom: 5px;
}
.txtBox p{
	font-size: 0.9em;
}
.txtBox p.notice{
	font-size: 0.75em;
	padding-top: 5px;
}
.imgNotice{
	font-size: 0.6em;
	position: absolute;
	right: 3px;
	bottom: 3px;
}
.imgNotice.white{
	color: #fff;
}
.pointRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pointRow li{
	width: 48%;
	padding: 5px 0;
	font-family: "Noto Sans JP", serif;
	color: #65b0d4;
	font-size: 0.9em;
	font-weight: 400;
	text-align: center;
	border: 1px solid #65b0d4;
	margin-bottom: 5px;
}
.pointRow li:nth-of-type(5),
.pointRow li:last-of-type{
	margin-bottom: 0;
}
.pointRow02{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pointRow02 li{
	width: 48%;
	padding: 5px 0;
	font-family: "Noto Sans JP", serif;
	color: #fff;
	background-color: #76b5d5;
	font-size: 0.9em;
	font-weight: 400;
	text-align: center;
	margin-bottom: 5px;
}
.imgBox h4{
	padding: 5px 0;
	font-family: "Noto Sans JP", serif;
	background-color: #76b5d5;
	font-size: 0.9em;
	font-weight: 400;
	color: #fff;
	text-align: center;
}
.storageWrap{
	padding: 50px;
	box-sizing: border-box;
	border: 2px solid #93c6e4;
}
.storageWrap>.txtBox{
	text-align: center;
	margin-bottom: 30px;
}
.storageWrap>.txtBox>h3{
	width: 160px;
	display: inline-block;
}
.storageContent_row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.storageContent_row02{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.storageContent_box02{
	width:48%;
}
@media (max-width:1200px){
	.kitchenContent_wrap{
		width:80%;
	}
	.kitchenContent_box,
	.storageContent_box{
		width: 48%;
		margin-bottom: 20px;
	}
}
@media (max-width:768px){
	.kitchenContent_wrap{
		width:90%;
		padding: 30px;
	}
	.kitchenContent_row{
		margin-bottom: 30px;
	}
	.storageWrap{
		padding: 30px;
	}
}
@media (max-width:500px){
	.kitchenContent_wrap{
		padding: 20px;
	}
	.kitchenContent_box,
	.storageContent_box{
		width: 100%;
		margin-bottom: 20px;
	}
	.kitchenContent_row{
		margin-bottom: 20px;
	}
	.storageWrap{
		padding: 20px;
	}
}

.pageNotice{
	background-color: #d8e4ea;
}