/* === 背景画像 === */
#box1 {
	width: 90%;
	background-image: url("../images/kumiko_1.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 50px auto 0 auto;
}

/* === 飾り画像 === */
#maguro {
	float: left;
	zoom: 60%;
	margin-top: 50px;
	margin-left: 10px;
	margin-bottom: 40px;
}

#hamo {
	float: right;
	zoom: 60%;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 20px;
}

/* === テキスト表示（見出し）=== */
#m1, #m2 {
	font-size: 18px;
	display: block;
	clear: both;
	text-align: center;
	white-space: normal;
	color: transparent;
	position: relative;
}

#m1::before {
	content: "粋を味わう、大人の隠れ家";
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

#m2::before {
	content: "選び抜かれた旬の恵みを、最高のかたちで。究極の鮨";
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

#m1 br, #m2 br {
	display: none;
}

/* === コース画像（A/B/海老） === */
#box2, #box3, #box4 {
	margin: 30px auto;
}

#box2 img, #box3 img, #box4 img {
	width: 90%;
	display: block;
	margin: auto;
}

/* === mid_box2（テキスト＋画像2枚） === */
#mid_box2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

#msg {
	order: 1;
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: 20px;
	box-sizing: border-box;
}

/* メッセージ内ロゴ画像 */
#c_kumiko {
	display: block;
	margin: 0 auto 30px auto;
}

/* === PCデフォルト設定 === */

#f1, #f2 {
	width: 35%;
	margin: 0;
	display: block;
}

/* モバイル対応（max-width: 767px） */

  #mid_box2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 10px; /* 画像間の余白 */
  }

  /* テキスト部分は一番上で横幅100% */
  #msg {
	order: 1;
	flex: 0 0 90%;
  }

  /* 画像は2枚並べてそれぞれ48%幅 */
  #f1, #f2 {
	order: 2;
	flex: 0 0 40%;
	margin: 10px 0px; /* 必要に応じて左右マージンを微調整してください */
  }
