@charset "utf-8";

.spHomeBar {
	border-top: 1px solid #fff;
	display: none;
	position: fixed;
	height: 64px;
	bottom: 0px;
	left: 0;
	z-index: 5;
	width: 100%
}
.spHomeBar__navList {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	height: 64px;
}

.spHomeBar__navItem {
	width: 100%;
	text-align: center
}

.spHomeBar__navLink {
	text-decoration: none;
	background-color: #E18173;
	border: 1px solid #E18173;
	color: #fff;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px
}

.spHomeBar__navLink p {
	line-height: normal;
	font-feature-settings: "palt"
}

.spHomeBar__navLink img {
	height: 25px;
	width: auto;
	margin-right: .5em
}

.spHomeBar__navLink:hover {
	text-decoration: none
}

/* =========================
	@media 768px
========================= */
@media screen and (max-width:768px) {
	.spHomeBar {
		display: none
	}
}

