.fixed-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: #023047; /* 背景色（後で変更OK） */
  border-top: 1px solid #ccc; /* 区切り線 */
  z-index: 1000;
  padding-bottom: 0.6rem;
}

.bottom-btn {
  flex: 1;
  text-align: center;
  padding: 0.6em 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-btn .icon {
  font-size: 1.6em;
  line-height: 1;
}

.bottom-btn .label {
  font-size: 0.8em;
  margin-top: 0.2em;
  color: #ccc;
}

/* スマホでのタップ操作向け */
.bottom-btn:active {
  opacity: 0.7;
}

.fixed-bottom-buttons i {
  color: #ccc;
}
