.section_content {
  max-width: 1400px !important;
}

.food_toc {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.food_toc a {
  text-decoration: none;
}

.food_list_num {
  width: 20vw;
  max-width: 250px;
  margin: 0 20px 5px;
  text-align: center;
  position: relative;
  font-size: 1.5em;
  color: #222;
}

.food_list_num::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -5px;
  display: inline-block;
  width: 10vw;
  max-width: 200px;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #111;
  transition: .3s ease-in-out;
}

.food_list_num:hover:before {
  width: 20vw;
  max-width: 250px;
}

.map_image_outer {
  width: 100%;
  display: flex;
  overflow-x: unset;
}

.map_image {
  width: 100%;
}

.food_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}

.food {
  margin: 40px 0;
  width: 35vw;
  max-width: 580px;
}

.food_h {
  display: flex;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid #444;
}

.food_number {
  position: relative;
  width: 2.5em;
  font-weight: bold;
  text-align: center;
  font-size: 1.5em;
}

.food_name {
  font-size: 1.3em;
}

.food_owner {
  margin: 1em 2em;
}

@media screen and (max-width: 900px) {
  .food {
    width: 40vw;
  }
}

@media screen and (max-width: 660px) {
  .food {
    width: 80vw;
    margin: 25px auto;
  }

  .food_list_num {
    width: 20vw;
    max-width: 250px;
    margin: 0 10px 5px;
  }

  .food_list_num::before {
    width: 15vw;
  }

  .map_image_outer {
    overflow-x: scroll;
  }

  .map_image {
    width: 150%;
  }
}