.FixedMenuSection {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #fff;
border-top: #C7C7C7 solid 1px;
	z-index: 10;
}
.FixedMenu-Inner-List {
display: flex;
}
.FixedMenu-Inner-List-Item {
padding-top: 8px;
padding-bottom: 8px;
padding-left: 38px;
padding-right: 38px;
width: calc((100% - 4px) / 3);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: #fff;
font-size: 20px;
}
@media screen and (max-width: 540px) {
.FixedMenu-Inner-List-Item {
padding-left: 0px;
padding-right: 0px;
font-size: 16px;
}
}
.FixedMenu-Inner-List-Item:not(:first-child) {
margin-left: 2px;
}
.FixedMenu-Inner-List-Item.isRed {
background: red;
}
.FixedMenu-Inner-List-Item.isBlue {
background: blue;
}
.FixedMenu-Inner-List-Item.isOrange {
background: orange;
}
.FixedMenu-Inner-List-Item.isWhite {
background: white;
}