/* ============================================================
   mobile-bar.css — フローティング連絡バー（全画面幅共通）
   Mobile Contact Bar プラグイン(Font Awesome全体290KB超)の代替。
   使用アイコン(Home/電話/予約)のみインラインSVGで自作。
   ============================================================ */

.smy-mobilebar {
	display: flex;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	height: 55px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, .12);
}
.smy-mobilebar__item {
	flex: 1 1 0;
	min-width: 0; /* ラベル文字数で幅がはみ出さないように */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	color: #1e73be;
	text-decoration: none;
	font-size: .62rem;
	line-height: 1;
	white-space: nowrap;
}
.smy-mobilebar__item svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}
/* 固定バー分、本文最下部が隠れないよう余白を確保（全画面幅） */
body {
	padding-bottom: 55px;
}
