.ui-board-map{
	position: fixed;
    top: 72px;
    right: 15px;
	max-width:240px;
    z-index: -1;
    background: rgba(200, 200, 200, 0.7);
    padding: 15px;
    visibility: hidden;
    opacity: 0;
}
.ui-board-map.active{
	z-index: 100;
	visibility: visible;
    opacity: 1;
}

.ui-board-map ul{
	margin: 0;
	padding:0;
	margin-bottom: 1rem;
}
.ui-board-map .board-index{
	margin-top: 0;
	font-size.95rem;
}

.ui-board-map li{
	    list-style: none;
    margin-bottom: 1rem;
    border: 1px solid #fff;
    padding: 3px 5px;
    text-align: center;
    background: #efefef;
    border-radius: 16px;
    cursor: pointer;
}
.ui-board-map li.active{
	background: #EA3323;
	color: #fff;
}
.ui-board-map ul > li:last-child{
	margin-bottom: 0;
}
.board-map__contents{
	    padding: 10px 0 0;
}
.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
	text-decoration: none;
    color: #333;
}
.arrow_u:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.arrow_u.open:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.menu-box{
	height: 0;
    visibility: hidden;
    opacity: 0;
}
.menu-box.open{
	height: auto;
    visibility: visible;
    opacity: 1;
}