/* 左メニュー */

.side-menu {
  width: 160px;
  background: #4c84bd;
}

.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu li {
  height: 25px;
}

.side-menu a {
  display: flex;
  align-items: center;
  height: 25px;
  padding-left: 10px;
  gap: 8px;

  color: #ffffff;
  text-decoration: none;

  font-family: Meiryo, "Yu Gothic UI", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: bold;

  background: #4c84bd;
}

/* 三角アイコン */
.side-menu a::before {
  content: "";
  width: 0;
  height: 0;

  border-left: 7px solid #ffffff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* hover */
.side-menu a:hover {
  background: #5d95cf;
}

/* 長いメニューだけ少し小さくする */
.side-menu a.long {
  font-size: 11px;
}

.side-menu a {
  white-space: nowrap;
}