/* ===== スマホ下部固定メニュー ===== */
.bottom-menu {
    display: none;
}

@media screen and (max-width: 768px) {

.bottom-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #0099ff;
    z-index: 9999;
    height: 60px;
}

.bottom-menu a {
    flex: 1;
    text-align: center;
    font-size: 11px;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

.bottom-menu a:last-child {
    border-right: none;
}

.bottom-menu a:hover {
    background: #e6f4ff;
}

.bottom-menu span {
    font-size: 20px;
    margin-bottom: 2px;
}

}