@charset "UTF-8";

/* スマホ用 常時表示 問い合わせバー（PC非表示） */
.sticky_bar { display: none; }

@media (max-width: 767px) {
	/* 横スクロール抑制（はみ出した要素を切り取る） */
	html, body { overflow-x: hidden; }
	/* ページトップへ戻るボタンをスティッキーバーの上に */
	.pagetop { bottom: 90px !important; }
	.sticky_bar {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		padding: 8px;
		gap: 8px;
		box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
		z-index: 9999;
	}
	.sticky_bar .sticky_btn {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 12px 8px;
		border-radius: 6px;
		text-decoration: none;
		font-weight: bold;
		color: #fff;
		font-size: 15px;
		line-height: 1.2;
	}
	.sticky_bar .sticky_btn_tel { background: #e67e22; }
	.sticky_bar .sticky_btn_form { background: #27ae60; }
	.sticky_bar .sticky_btn:hover,
	.sticky_bar .sticky_btn:visited { color: #fff; }
	.sticky_bar .icn {
		margin-right: 5px;
		font-size: 19px;
	}
	/* ページ最下部にスペース確保（フッターCTAが隠れないように） */
	body { padding-bottom: 70px; }
}
