/* ==========================================================================
   晩ごはん食堂 TOPページ レシピ発見セクション
   レシピページ（recipe-style.css）と統一感のある、白ベース×余白多めのデザイン。
   SWELL側のテンプレート・CSSには一切手を加えない独立した構造。
   ========================================================================== */

.bgh-home {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 24px 8px;
	background: #ffffff;
	font-family: "Noto Sans JP", sans-serif;
	color: #2b2926;
}


/* ==========================================================================
   ヒーロー（雑誌風メインビジュアル）
   ========================================================================== */
.bgh-hero2 {
	/* 親（.bgh-home や SWELL のコンテンツ枠 1200px）を突き破って画面幅いっぱいに広げる。
	   サイト幅の設定は変更せず、このヒーローだけをフル幅にする手法。 */
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
	margin-top: 0;
	margin-bottom: 48px;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
}

/* 上部の縦長ゴシック英字ラベル */
.bgh-hero2__eyebrow {
	display: block;
	text-align: center;
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #6b665f;
	margin-bottom: 14px;
	text-indent: 0.12em;
}

.bgh-hero2__frame {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 0;
}

/* 写真：高さは従来と同程度、全幅なので角丸なし */
.bgh-hero2__photo {
	width: 100%;
	height: 60vh;
	max-height: 680px;
	min-height: 340px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
	position: relative;
}

.bgh-hero2__photo--noimage {
	background: #f0ece3;
}

/* 写真の中に重ねるオーバーレイ（中央配置） */
.bgh-hero2__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 24px;
	text-align: center;
}

/* タイトル：レシピタイトルと同じ明朝体、白文字＋強めのぼかしドロップシャドウ */
.bgh-hero2__title {
	margin: 0;
	padding: 0 !important;
	background: none !important;
	border: none !important;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-weight: 600;
	font-size: clamp(28px, 4.5vw, 48px);
	line-height: 1.4;
	color: #ffffff;
	text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
	letter-spacing: 0.06em;
}

/* 検索窓：写真中央・タイトル下。アクセントカラーは使わずシンプルに、ドロップシャドウ付き */
.bgh-hero2__search {
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 999px;
	box-shadow: 0 8px 28px rgba(0,0,0,0.28);
	overflow: hidden;
	width: 340px;
	max-width: 80%;
}

.bgh-hero2__search-input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	padding: 14px 22px;
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
	color: #2b2926;
	min-width: 0;
}

.bgh-hero2__search-input::placeholder {
	color: #9a958c;
}

.bgh-hero2__search-btn {
	border: none;
	background: transparent;
	color: #6b665f;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: 0 0 auto;
	transition: color 0.2s ease;
}

.bgh-hero2__search-btn:hover {
	color: #201d19;
}

.bgh-hero2__subtitle {
	max-width: 1000px;
	margin: 16px auto 0;
	padding: 0 24px;
	text-align: center;
	font-size: 12.5px;
	color: #857f74;
	letter-spacing: 0.03em;
}

/* ==========================================================================
   3カラム構成（左：ジャンル/食材、中央：献立、右：季節/人気）
   ========================================================================== */
.bgh-home-columns {
	display: grid;
	grid-template-columns: 1fr 1.15fr 1.05fr;
	gap: 40px;
	align-items: start;
}

.bgh-home-col--right {
	/* 追従（sticky）は解除。各欄内でスクロールする方式に変更 */
}

/* 各欄内スクロールリスト（季節・人気） */
.bgh-scroll-wrap {
	position: relative;
}

.bgh-scroll-list {
	/* デフォルトはカード2枚分の高さで表示し、3枚目以降は欄内スクロール。
	   実際の高さは JS（recipe-home.js）が2枚目カードの下端に合わせて調整する。
	   下の値は JS 読み込み前の初期値・フォールバック。 */
	max-height: 560px;
	overflow-y: auto;
	padding-right: 6px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	scroll-behavior: smooth;
}

.bgh-scroll-list::-webkit-scrollbar {
	width: 5px;
}
.bgh-scroll-list::-webkit-scrollbar-thumb {
	background: #d9d3c6;
	border-radius: 3px;
}

/* 大きめサムネイルのカード */
.bgh-big-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bgh-big-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 3px;
	background: #f4f1ea;
}

.bgh-big-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bgh-big-card:hover .bgh-big-card__thumb img {
	transform: scale(1.03);
}

.bgh-big-card__noimg {
	display: block;
	width: 100%;
	height: 100%;
	background: #f4f1ea;
}

.bgh-big-card__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.bgh-big-card__name {
	font-size: 15px;
	line-height: 1.6;
	color: #2b2926;
}

/* 順位バッジ（人気レシピ） */
.bgh-rank {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Serif JP", serif;
	font-size: 13px;
	color: #ffffff;
	background: #c9c2b4;
	border-radius: 50%;
}

/* 上位3位は色を変えて少し目立たせる（金・銀・銅を上品なトーンで） */
.bgh-rank--1 { background: #c8a24a; }
.bgh-rank--2 { background: #a9a9a9; }
.bgh-rank--3 { background: #b08355; }

/* もっと見る（下向き矢印）ボタン */
.bgh-scroll-more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 14px;
	padding: 8px 0;
	border: none;
	background: transparent;
	color: #6b665f;
	cursor: pointer;
	border-top: 1px solid #ece7dc;
	transition: color 0.2s ease;
}

.bgh-scroll-more:hover {
	color: #E15B45;
}

.bgh-scroll-more svg {
	transition: transform 0.2s ease;
}

.bgh-scroll-more.is-scrolled svg {
	transform: rotate(180deg);
}


.bgh-home-section {
	margin-bottom: 64px;
}

.bgh-home-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e7e2d8;
	position: relative;
}

.bgh-home-section__head::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 48px;
	height: 2px;
	background: #E15B45;
}

.bgh-home-section__head h2 {
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: 20px;
	font-weight: 600;
	color: #201d19;
	margin: 0;
	/* テーマ（SWELL等）側のh2装飾を打ち消す */
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
	line-height: 1.4;
}

.bgh-home-section__head h2::before,
.bgh-home-section__head h2::after {
	display: none !important;
	content: none !important;
}

/* 季節バッジ：アイコンの下に英字ラベル（縦積み・囲みなし・季節別カラー） */
.bgh-season-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	line-height: 1;
}

.bgh-season-badge__icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bgh-season-badge__icon .bgh-genre-icon-svg {
	width: 26px;
	height: 26px;
}

.bgh-season-badge__label {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-indent: 0.14em;
}

/* 季節別カラー：春＝黄緑、夏＝水色、秋＝アクセント（コーラル）、冬＝ネイビー */
.bgh-season-badge--spring { color: #8cb369; }
.bgh-season-badge--summer { color: #5ba9c9; }
.bgh-season-badge--autumn { color: #a5603a; }
.bgh-season-badge--winter { color: #3a4a6b; }

.bgh-season-badge--spring .bgh-genre-icon-svg { color: #8cb369; }
.bgh-season-badge--summer .bgh-genre-icon-svg { color: #5ba9c9; }
.bgh-season-badge--autumn .bgh-genre-icon-svg { color: #a5603a; }
.bgh-season-badge--winter .bgh-genre-icon-svg { color: #3a4a6b; }

/* セクション見出しバッジ（アイコン＋英字・縦積み・グレー） */
.bgh-section-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	line-height: 1;
	color: #E15B45;
	flex: 0 0 auto;
}

/* MENU PLAN など2語ラベルは改行させない */
.bgh-section-badge__label {
	white-space: nowrap;
}

.bgh-section-badge__icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bgh-section-badge__icon .bgh-genre-icon-svg {
	width: 26px;
	height: 26px;
	color: #E15B45;
}

.bgh-section-badge__label {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-indent: 0.14em;
	color: #E15B45;
}

.bgh-home-empty {
	font-size: 13.5px;
	color: #857f74;
	background: #f7f5f0;
	padding: 20px;
	border-radius: 4px;
}

/* ---------- 写真＋レシピ名カード（季節のおすすめ・人気レシピ共通） ---------- */
.bgh-home-card-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.bgh-home-recipe-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bgh-home-recipe-card__thumb {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 3px;
	background: #f4f1ea;
}

.bgh-home-recipe-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bgh-home-recipe-card:hover .bgh-home-recipe-card__thumb img {
	transform: scale(1.04);
}

.bgh-home-recipe-card__noimg {
	display: block;
	width: 100%;
	height: 100%;
	background: #f4f1ea;
}

.bgh-home-recipe-card__title {
	display: block;
	margin-top: 10px;
	font-size: 13.5px;
	line-height: 1.6;
	color: #2b2926;
}

/* ---------- ジャンルから探す ---------- */
.bgh-genre-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 12px;
}

.bgh-genre-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.bgh-genre-item__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #201d19;
	transition: color 0.2s ease, transform 0.2s ease;
}

.bgh-genre-item:hover .bgh-genre-item__icon {
	color: #E15B45;
	transform: translateY(-2px);
}

.bgh-genre-icon-svg {
	width: 44px;
	height: 44px;
}

/* アップロードされたSVGアイコン：サイズを揃え、色はCSS側でも補助的に制御。
   色の主な制御はPHP側（get_inline_svg）で、線画型はstroke、塗り型はfillを
   currentColorに正規化済み。ここではサイズと、念のための色追従を指定する。 */
.bgh-genre-icon-svg--uploaded {
	width: 44px;
	height: 44px;
	color: inherit;
}

/* 線画型（ルートに fill="none"）：中の要素は塗らず、線だけ色を追従させる */
.bgh-genre-icon-svg--uploaded[fill="none"] [stroke]:not([stroke="none"]),
.bgh-genre-icon-svg--uploaded[fill="none"] {
	stroke: currentColor;
}
/* 線の太さは PHP側（get_inline_svg）で、viewBoxに応じて同梱アイコンと同じ
   見た目の細さになるよう自動計算・設定している（ここでは固定指定しない）。 */

/* 塗り型（ルートに fill="none" が無い）：塗り色を追従させる。fill="none"の要素は除く */
.bgh-genre-icon-svg--uploaded:not([fill="none"]) [fill]:not([fill="none"]) {
	fill: currentColor;
}
.bgh-genre-icon-svg--uploaded:not([fill="none"]) path:not([fill]):not([stroke]) {
	fill: currentColor;
}

.bgh-genre-icon-img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.bgh-genre-item__name {
	font-size: 12.5px;
	line-height: 1.4;
	color: #2b2926;
}

.bgh-home-more {
	text-align: center;
	margin-top: 28px;
}

/* ボタン案1：テキストリンク風（すべてのジャンルを見る） */
.bgh-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: #201d19;
	text-decoration: none;
	padding-bottom: 4px;
	border-bottom: 1px solid #201d19;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.bgh-link-arrow__icon {
	display: inline-block;
	transition: transform 0.2s ease;
}

.bgh-link-arrow:hover {
	color: #E15B45;
	border-color: #E15B45;
}

.bgh-link-arrow:hover .bgh-link-arrow__icon {
	transform: translateX(4px);
}

/* ボタン案3：細線アウトラインボタン（5日間の献立を見る） */
.bgh-btn-outline {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: #201d19;
	text-decoration: none;
	border: 1px solid #201d19;
	border-radius: 2px;
	padding: 13px 40px;
	transition: background 0.25s ease, color 0.25s ease;
}

.bgh-btn-outline:hover {
	background: #201d19;
	color: #ffffff;
}

/* ---------- 食材から探す（ジャンルより小さく） ---------- */
.bgh-ingredient-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px 8px;
}

.bgh-ingredient-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.bgh-ingredient-item__icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #201d19;
	transition: color 0.2s ease, transform 0.2s ease;
}

.bgh-ingredient-item:hover .bgh-ingredient-item__icon {
	color: #E15B45;
	transform: translateY(-2px);
}

.bgh-ingredient-item__icon .bgh-genre-icon-svg,
.bgh-ingredient-item__icon .bgh-genre-icon-img {
	width: 30px;
	height: 30px;
}

.bgh-ingredient-item__name {
	font-size: 11px;
	line-height: 1.4;
	color: #2b2926;
}

/* ---------- 今月のおすすめ献立 ---------- */
.bgh-home-menu__days {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bgh-home-menu-day {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bgh-home-menu-day__thumb {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 3px;
	background: #f4f1ea;
}

.bgh-home-menu-day__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bgh-home-menu-day__label {
	display: block;
	margin-top: 10px;
	font-family: "Noto Serif JP", serif;
	font-size: 13.5px;
	color: #201d19;
}

.bgh-home-menu__cta {
	text-align: center;
	margin-top: 28px;
}

/* ==========================================================================
   お知らせセクション（書籍・YouTube）
   ========================================================================== */

/* 中央寄せの見出し（お知らせ用） */
.bgh-home-section__head--center {
	justify-content: center;
	text-align: center;
}

.bgh-home-section__head--center::after {
	left: 50%;
	transform: translateX(-50%);
}

.bgh-notice__lead {
	text-align: center;
	font-size: 14px;
	line-height: 1.9;
	color: #4a463f;
	max-width: 680px;
	margin: 0 auto 32px;
}

/* 書籍紹介ページへのリンクボタン（リード文の下・グリッドの上） */
.bgh-book-page-link {
	margin-top: -8px;
	margin-bottom: 40px;
}

/* 書籍見出し＋バッジ */
.bgh-book-heading-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.bgh-book-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #E15B45;
}

.bgh-book-badge .bgh-genre-icon-svg {
	width: 17px;
	height: 17px;
	color: #E15B45;
}

/* 書籍グリッド（4冊＝4列、増えても自動で折り返し） */
.bgh-book-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px 24px;
	max-width: 760px;
	margin: 0 auto;
}

.bgh-book-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.bgh-book-card__cover {
	width: 100%;
	max-width: 150px;
	border-radius: 2px;
	filter: drop-shadow(0 5px 14px rgba(0,0,0,0.14));
}

.bgh-book-card__cover img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
}

.bgh-book-card__title {
	font-size: 12.5px;
	line-height: 1.6;
	color: #2b2926;
	margin: 14px 0 10px;
}

.bgh-book-card__links {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: stretch;
	width: 100%;
	max-width: 150px;
	margin: 0 auto;
	margin-top: auto;
}

.bgh-book-card__link {
	font-size: 11.5px;
	letter-spacing: 0.04em;
	color: #201d19;
	text-decoration: none;
	border: 1px solid #d9d3c6;
	border-radius: 2px;
	padding: 7px 10px;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bgh-book-card__link:hover {
	background: #201d19;
	border-color: #201d19;
	color: #ffffff;
}

/* YouTubeグリッド（最大3列） */
.bgh-yt-heading-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
}

.bgh-yt-heading-icon {
	display: inline-flex;
}

.bgh-yt-heading-icon .bgh-genre-icon-svg {
	width: 30px;
	height: 30px;
	color: #E15B45;
}

.bgh-yt-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 28px;
}

.bgh-yt-embed {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: #111;
	border-radius: 3px;
	overflow: hidden;
}

.bgh-yt-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ==========================================================================
   献立 単一ページ（bgh-menu）
   ========================================================================== */

.bgh-menu__header {
	text-align: center;
	margin-bottom: 48px;
}

.bgh-menu__title {
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 600;
	color: #201d19;
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.bgh-menu__title::before,
.bgh-menu__title::after {
	display: none !important;
	content: none !important;
}

.bgh-menu-day {
	margin-bottom: 64px;
	padding-bottom: 48px;
	border-bottom: 1px solid #e7e2d8;
}

.bgh-menu-day:last-child {
	border-bottom: none;
}

.bgh-menu-day__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 20px;
}

.bgh-menu-day__num {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 600;
	color: #E15B45;
}

.bgh-menu-day__label {
	font-size: 13px;
	color: #857f74;
}

.bgh-menu-day__photo {
	margin-bottom: 24px;
}

.bgh-menu-day__photo img {
	width: 100%;
	height: auto;
	border-radius: 3px;
	display: block;
}

.bgh-menu-day__recipes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.bgh-menu-recipe-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bgh-menu-recipe-card__thumb {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 3px;
	background: #f4f1ea;
}

.bgh-menu-recipe-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bgh-menu-recipe-card__noimg {
	display: block;
	width: 100%;
	height: 100%;
	background: #f4f1ea;
}

.bgh-menu-recipe-card__title {
	display: block;
	margin-top: 8px;
	font-size: 12.5px;
	line-height: 1.5;
	color: #2b2926;
}

/* ==========================================================================
   タブレット（3カラム→2カラム／1カラムへ）
   ========================================================================== */
@media (max-width: 1000px) {
	.bgh-home-columns {
		grid-template-columns: 1fr 1fr;
	}
	/* 右カラム（季節・人気）は横幅いっぱいに回り込ませる */
	.bgh-home-col--center {
		grid-column: 1 / -1;
		order: 3;
	}
	.bgh-home-col--left {
		order: 1;
	}
	.bgh-home-col--right {
		order: 2;
		position: static;
	}
}

/* ==========================================================================
   スマホ表示
   ========================================================================== */
@media (max-width: 680px) {

	.bgh-home {
		padding: 16px 18px 4px;
	}

	/* 書籍：2列、YouTube：1列 */
	.bgh-book-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px 14px;
	}

	.bgh-yt-grid {
		grid-template-columns: 1fr;
	}

	.bgh-notice__lead {
		font-size: 13px;
		text-align: left;
	}

	.bgh-hero2 {
		/* PC同様フル幅。左右marginは共通指定（-50vw）が効くのでここでは上下のみ調整 */
		margin-top: 0;
		margin-bottom: 40px;
		padding: 6px 0 0;
	}

	.bgh-hero2__eyebrow {
		font-size: 10px;
		letter-spacing: 0.1em;
		margin-bottom: 14px;
	}

	.bgh-hero2__photo {
		height: 62vh;
		min-height: 300px;
	}

	.bgh-hero2__overlay {
		gap: 18px;
		padding: 18px;
	}

	.bgh-hero2__title {
		font-size: clamp(24px, 7vw, 36px);
	}

	.bgh-hero2__search {
		width: 100%;
		max-width: 88%;
	}

	.bgh-hero2__frame {
		padding-bottom: 0;
	}

	.bgh-hero2__subtitle {
		text-align: center;
		margin-top: 14px;
	}

	.bgh-home-columns {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bgh-home-col--left { order: 1; }
	.bgh-home-col--center { order: 2; }
	.bgh-home-col--right { order: 3; }

	.bgh-home-card-list {
		max-height: none;
		overflow: visible;
	}

	.bgh-hero {
		margin: -16px -18px 40px;
		min-height: 48vh;
	}

	.bgh-hero__subtitle {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.bgh-hero__search-input {
		padding: 12px 18px;
	}

	.bgh-hero__search-btn {
		padding: 0 20px;
	}

	.bgh-home-section {
		margin-bottom: 48px;
	}

	.bgh-home-section__head h2 {
		font-size: 18px;
	}

	/* 季節のおすすめ・人気レシピ：横スクロール */
	.bgh-home-card-row {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
	}

	.bgh-home-card-row::-webkit-scrollbar {
		height: 4px;
	}

	.bgh-home-recipe-card {
		flex: 0 0 42%;
		scroll-snap-align: start;
	}

	.bgh-home-recipe-card__title {
		font-size: 12.5px;
	}

	/* ジャンル：3列×2段 */
	.bgh-genre-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px 8px;
	}

	.bgh-genre-item__icon {
		width: 50px;
		height: 50px;
	}

	.bgh-genre-icon-svg,
	.bgh-genre-icon-img {
		width: 40px;
		height: 40px;
	}

	/* 食材：4列 */
	.bgh-ingredient-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px 6px;
	}

	.bgh-home-menu__days {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.bgh-home-menu-day__label {
		font-size: 11px;
		margin-top: 6px;
	}

	.bgh-menu-day__recipes {
		grid-template-columns: repeat(2, 1fr);
	}
}
