@charset "utf-8";
.navigation-circle{
  width: 24px;
  height: 24px;
  background-color: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation-triangle{
  margin-left: 3px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 9px solid white;
  border-bottom: 6px solid transparent;
}

.boxLink-navigation{
  align-items: center;
  border: 1px solid #ccc;
  color: #000000;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 1.2;
  margin-top: 16px;
  padding: 8px 16px 6px 16px;
}

.boxLink-navigation:hover{
  text-decoration: underline;
  color: #f90f0c;
  opacity: 1;
}


