.local_nav {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 110px;
}
.local_nav a {
  color: #777777;
  margin: 0 30px;
  font-weight: bold;
  position: relative;
  transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}
.local_nav a:hover {
  color: #DF2718;
}
.local_nav a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #DF2718;
  position: absolute;
  bottom: -22px;
  left: 0;
}
.border_box {
  border-right: solid 2px #ddd;
  display: flex;
  align-items: center;
}
.border_box:nth-child(2n) {
  border: none;
}
@media screen and (max-width:499px) {
  .border_box {
    border: none;
  }
}

/* sp */
.local_nav_sp {
  margin-bottom: 60px;
  font-weight: bold;
}
.local_nav_sp a {
  font-size: 13px;
  color: #777777;
}
.local_nav_sp a:hover {
  color: #DF2718;
}
.link_box_top_group {
  display: flex;
  flex-direction: row;
}
.link_box_top  {
  display: grid;
  border-bottom: solid 1px #ddd;
  padding: 22px 0;
  width: 100%;
}
.link_box_top:nth-child(1) a {
  margin-right: 10px;
  margin-left: 10px;
  padding-right: 20px;
   border-right: 1px solid #ddd; 
}
.link_box_top:nth-child(2) a {
  margin-right: 6px;
  padding-right: 20px;
  padding-left: 10px;
  border-right: none;
}
.link_box_top:hover {
  border-bottom: solid 1px #DF2718;
}
.link_box_under {
  display: flex;
  justify-content: center;
  border-bottom: solid 1px #ddd;
  padding: 22px 0;
}
.link_box_under:hover {
  border-bottom: solid 1px #DF2718;
}