.tab-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    z-index: 9999;
    border: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.tab-button {
    padding: 10px 20px;
    color: #428bca;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.6em;
    font-weight: bold;
    width: 100%;
    height: 60px;
}

/* メニューのスタイル */
.menu {
    display: none!important; /* 初期は非表示 */
    position: absolute;
    bottom: 4.0em; /* タブの上に配置 */
    width: 100%;
    background: #f0f0f0;
    display: grid; /* グリッドレイアウト */
    grid-template-columns: repeat(3, 1fr); /* 例：列数 */
    grid-template-rows: repeat(2, 1fr);   /* 例：行数 */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
}

.menu.show {
    display: grid!important; /* 表示 */
}

.menu-item {
    padding: 5px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.menu-item a {
    text-align: center;
    text-decoration: none;
}

/* アイコン部分 */
.icon {
    font-size: 30px;
    margin-bottom: 4px;
}
.icon img {
    width: 60px;
}

/* ラベル部分 */
.label {
    font-size: 15px;
}