.tab__menu {
  max-width: 1000px;
  margin: 0 auto 50px;
  font-weight: bold;
  justify-content:space-around;
  display: flex;
}
.tab__menu-item {
  font-size: 2rem;
  padding-bottom: 4px;
  position: relative;
  margin: 0 2rem;
}

.tab__menu-item::before {
  width: 100%;
  height: 2px;
  background-color: var(--decoBlue);
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.tab__menu-item.is-active::before {
  opacity: 1;
}

.tab__content {
  display: none;
}

.tab__content.is-active {
  display: block;
}

.main-h20{
	text-align: center;
}
.map-list{
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
	margin-top: 4.8rem;
}

.map-list li {
	background: var(--decoBlue);

	color: #fff;
	text-align:left;
	margin-bottom: 2.6rem;
	padding: 2rem 3rem 2rem 3rem;
	transition: all 1s;
}

.map-list li:hover{
	background-color: var(--titleBlue);

}


a.map {
	color: #fff;
	font-size: 2rem;
	display: block;
}

a.map:hover{
	opacity: 1;
}

section{
	max-width: 1000px;
	margin:0 auto;
	clear: both;
}
#area_list{
	max-width: 1000px;
	margin:0 auto;
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
}
.map_img{
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
	margin-bottom: 2rem;
}
.map_img img{
	width: 100%;
	max-width: 800px;
}

.map_wrap{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}
.map_wrap ul{
	/*display: grid;
	grid-auto-flow: column;
 	grid-template-rows: repeat(14, auto);
 	column-gap: 3rem;*/
 	line-height: 2.5rem;
 	width: 90%;
 	column-count: 4;
}

.map_wrap ul li{
/*	margin:0 2rem 2rem 2rem;*/



}
.map_wrap ul li.todouhuken:first-child{
	margin-top: 0;
}
.map_wrap ul li.todouhuken{
	font-weight: bold;
	text-decoration: underline;
}

.todouhuken_last{
	margin-bottom: 2.5rem;
}

.mb_16{
	margin-bottom: 1.6rem;
}