/* 仕出し料理ページ */

.page-template-page-shidashi #content.site-content {
	flex-direction: column;
}

/* ヒーロー背景 */
.shidashi-hero {
	background-image: url('../img/shidashi/hero.jpg');
	background-size: cover;
	background-position: center;
}

/* ============================================
   メニューセクション
   ============================================ */
.shidashi-menu-section {
	background: #fff;
}

.shidashi-menu-section .section-inner {
	padding-top: 56px;
	padding-bottom: 56px;
}

/* 2カラムグリッド */
.shidashi-menu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px 32px;
	margin-bottom: 56px;
}
/* 3カラムグリッド */
.shidashi-menu-grid3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 32px;
	margin-bottom: 56px;
}

/* 各アイテム共通 */
.shidashi-menu-item {
	display: flex;
	flex-direction: column;
}

.shidashi-item-img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.shidashi-item-caption {
	padding: 12px 0 0;
}

.shidashi-item-name {
	font-size: 17px;
	font-weight: bold;
	color: #333;
	margin: 0 0 4px;
}

.shidashi-item-price {
	font-size: 14px;
	color: #555;
	margin: 0;
}

/* ============================================
   各種単品料理セクション（2カラム）
   ============================================ */
.shidashi-two-section {
	margin-bottom: 40px;
}

.shidashi-two-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0 0 4px;
}

.shidashi-two-price {
	font-size: 14px;
	color: #555;
	margin: 0 0 20px;
}

.shidashi-two-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* ============================================
   各種単品料理セクション（3カラム）
   ============================================ */
.shidashi-tanshin-section {
	margin-bottom: 40px;
}

.shidashi-tanshin-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0 0 4px;
}

.shidashi-tanshin-price {
	font-size: 14px;
	color: #555;
	margin: 0 0 20px;
}

.shidashi-tanshin-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* ============================================
   注記
   ============================================ */
.shidashi-menu-note {
	font-size: 12px;
	color: #999;
	line-height: 1.8;
	margin: 0;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 768px) {

	.shidashi-menu-grid,
	.shidashi-menu-grid3,
	.shidashi-two-grid,
	.shidashi-tanshin-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
