@charset "utf-8";

/* ===================================================
	Meal CSS
====================================================== */
/* ---------------------------------------------------
コンテンツ幅
------------------------------------------------------ */
#contents_wrap .inner_md {
	max-width: 1200px;
}

/* ---------------------------------------------------
cnav
------------------------------------------------------ */
.cnav {
	display: flex;
	gap: 0 30px;
	justify-content: space-between;
	padding: 65px 0 0;
}
.cnav li {
	width: 100%;
}
.cnav a {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 0 30px;
	line-height: 1.6;
	text-align: center;
}
.cnav a::before {
	background: #888;
}
.cnav a .sub {
	font-size: 14px;
}
.cnav a .main {
	font-size: 24px;
}

@media screen and (max-width: 600px) {
	.cnav {
		flex-direction: column;
		gap: 15px 0;
		padding-top: 50px;
	}
	.cnav a {
		padding-bottom: 10px;
	}
	.cnav a .sub {
		font-size: 12px;
	}
	.cnav a .main {
		font-size: 18px;
	}
}

/* ---------------------------------------------------
section
------------------------------------------------------ */
section {
	padding: 160px 0 0;
}
section .cmn_tit {
	margin: 0 0 65px;
}
section .items {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 20px;
	justify-content: space-between;
}
section .items > li {
	width: calc((100% - 20px) / 2);
}
section .items img {
	width: 100%;
}
section .items + .note {
	margin: 30px 0 0;
}

/* sec03 */
#sec03 {
	padding-bottom: 100px;
}
#sec03 .items {
	gap: 30px;
}
#sec03 .items .item {
	width: calc((100% - 30px) / 2);
}
#sec03 .items .img {
	margin: 0 0 40px;
}
#sec03 .items h3 {
	margin: 0 0 15px;
	font-size: 24px;
	line-height: 1.4;
}
#sec03 .items .cmn_list_bg {
	margin: 15px 0 0;
}

@media screen and (max-width: 600px) {
	section {
		padding-top: 100px;
	}
	section .cmn_tit {
		margin-bottom: 30px;
	}
	section .items {
		flex-flow: column nowrap;
		gap: 15px 0;
	}
	section .items > li {
		width: auto;
	}
	section .items + .note {
		margin-top: 20px;
	}

	/* sec03 */
	#sec03 {
		padding-bottom: 60px;
	}
	#sec03 .items {
		gap: 40px 0;
	}
	#sec03 .items .item {
		width: auto;
	}
	#sec03 .items .img {
		margin-bottom: 20px;
	}
	#sec03 .items h3 {
		margin-bottom: 10px;
		font-size: 18px;
	}
	#sec03 .items .cmn_list_bg {
		margin-top: 10px;
	}
}
