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

/*----------------------------------------------
スマホ用固定メニュー
----------------------------------------------*/
.fix_menu {
	display: none;
}
@media screen and (max-width: 767px){
	.wrapper{
		padding-bottom: 50px;
	}
	.fix_menu {
		display: block;
		z-index: 100;
		clear: both;
		overflow: hidden;
		position: fixed;
		z-index: 1;
		bottom: 0;
		width: 100%;
		background-color: #2f9649;
	}
	.fix_menu p {
		float: left;
		width: 50%;
		height: 50px;
		font-size: 12px;
		line-height: 50px;
		text-align: center;
		color: #fff;
	}
	.fix_menu p a {
		display: block;
		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);
		border: none;
		background: #2f9649;
		color: #fff;
		text-decoration: none;
	}
	.fix_menu p a:before {
		display: inline-block;
		margin-right: 10px;
		font-family: FontAwesome;
		font-weight: normal;
		font-style: normal;
		vertical-align: middle;
	}
	.fix_menu p.tel a:before {
		content: "\f10b";
		font-size: 40px;
	}
	.fix_menu p.mail a:before {
		content: "\f003";
		font-size: 30px;
	}
	.fixed_bottom {
		position: fixed;
		bottom: 0;
		z-index: 100;
	}
}