@charset "utf-8";
#contactBar {
	position: sticky;
	bottom: 0;
	width: 100%;
	background-color: rgba(217,74,82,0.80);
	padding: 15px;
	text-align: center;
	z-index: 1950;
}
#contactBar p {
	font-size: 1em;
	color: #fff;
	font-weight: bold;
	margin-bottom: 15px;
	transition-duration:.1s;
	line-height: 1.25em;
}
#contactBar ul {
	display: flex;
	justify-content:center;
}
#contactBar ul li {
	border: 1px solid #fff;
	padding: 0;
	margin: 0 10px;
	border-radius: 10px;
	min-width: 240px;
	overflow: hidden;
	transition-duration:.1s;
}
#contactBar li p {
	font-size: 1em;
	color: #fff;
	font-weight: bold;
	margin: 0;
	transition-duration:.1s;
}
#contactBar li p span {
	font-weight: inherit;
}
#contactBar li p span.spOnly {
	display: none;
}
#contactBar p br.spOnly {
	display: none;
}
#contactBar ul li a {
	color: #fff;
	display: block;
	font-size: 1.em;
	font-weight: 800;
	margin: 0;
	padding: 0 15px;
	position: relative;
	line-height: 48px;
	background-color: rgba(194,23,33,.90);
	transition-duration:.1s;
}
#contactBar ul li a:hover {
	background-color: rgba(150,10,10,1);
}
#contactBar ul li a img {
	height: 20px;
	width: auto;
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom: 3px;
}
#gotoTopBtn {
	z-index: 1955;
}
@media screen and (max-width : 800px){
	#contactBar p {
		font-size: 0.85em;
	}
	#contactBar ul li {
		margin: 0 5px;
		min-width: 145px;
	}
	#contactBar li p span.pcOnly {
		display: none;
	}
	#contactBar li p span.spOnly {
		display: inline-block;
	}
}
@media screen and (max-width : 480px){
	#contactBar p {
		font-size: 0.85em;
	}
	#contactBar p br.spOnly {
		display: block;
	}
	#contactBar ul li {
		margin: 0 5px;
		min-width: 90px;
	}
	#contactBar ul li p {
		font-size: 0.85em;
	}
	#contactBar ul li a {
		font-size: 0.85em;
		padding: 0 5px;
		line-height: 42px;
	}
	#contactBar ul li a img {
		height: 16px;
		margin-right: 8px;
		margin-bottom: 3px;
	}
}


