@charset "utf-8";
/*----------------------------------------------
フォントアイコン用
----------------------------------------------*/
@import url(font-awesome.css);

/*----------------------------------------------
スマホ用固定メニュー
----------------------------------------------*/
.fix_menu {
	display: none;
}
.fix_menu p a img{
		width: 35px;
	}
@media screen and (max-width: 999px){
	.wrapper{
		padding-bottom: 50px;
	}

	.fix_menu,
	.fix_menu p a  {
		background-color: #b55e4e;
	}

	.fix_menu {
		display: flex;
		clear: both;
		overflow: visible; /* ← プルダウンのため hidden を解除 */
		position: fixed;
		z-index: 100;
		bottom: 0;
		width: 100%;
	}

	.fix_menu p {
		flex: 1;
		font-size: 12px;
		line-height: 50px;
		text-align: center;
		color: #fff;
	}

	.fix_menu p a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		column-gap: 8px;
		width: 100%;
		height: 60px;
		letter-spacing: 0;
		box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9),
		            inset 1px 1px 0 rgba(255, 255, 255, 0.4);
		color: #fff;
		text-decoration: none;
		line-height: 2;
	}

	.fix_menu p a img{
		width: 35px;
	}

	.fix_menu .insta {
		position: relative; /* ← instaメニュー配置用 */
	}

	.fix_menu .insta a img{
		background-color: #fff;
		border-radius: 9px;
	}

	.fix_menu .line a {
		flex-direction: row;
	}

	/* =========================
	   Instagram 上向きプルダウン
	========================= */

	.fix_menu .insta-menu {
		display: none;
		position: absolute;
		bottom: 65px; /* アイコンの真上 */
		left: 50%;
		transform: translateX(-50%);
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 6px 15px rgba(0,0,0,.2);
		min-width: 170px;
		overflow: hidden;
		z-index: 9999;
	}

	.fix_menu .insta-menu a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 12px 10px;
		font-size: 14px;
		line-height: 1.4;
		color: #fff;
		text-decoration: none;

		background: #b55e4e;
	}

	.fix_menu .insta-menu a:last-child {
		border-bottom: none;
	}


	/* ▼ 吹き出しの三角（任意） */
	.fix_menu .insta-menu::after {
		content: "";
		position: absolute;
		bottom: -8px;
		left: 50%;
		transform: translateX(-50%);
		border-width: 8px 8px 0 8px;
		border-style: solid;
		border-color: #b55e4e transparent transparent transparent;
	}

	.fixed_bottom {
		position: fixed;
		bottom: 0;
		z-index: 100;
	}
}
