body {
  border-top: 40px solid #005952;
  background: #ffffff;
  color: #333333;
}

#shops {
  padding: 80px 0 0 0;
}
#shops .list__title {
  margin-bottom: 70px;
}
#shops .shops__areanavi {
  margin-bottom: 60px;
}
#shops .shops__areanavi a {
  display: block;
  width: 23%;
  text-align: center;
  font-size: 23px;
  border: 1px solid #31ae36;
  border-radius: 8px;
  line-height: 60px;
}
#shops .shops__areanavi a:hover {
  font-weight: bold;
  color: #ffffff;
  background: #31AE36;
}
#shops .shops__area {
  width: 100%;
  color: #3aae36;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 40px;
}
#shops .shops__area::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #3aae36;
  position: absolute;
  top: 20px;
  left: 0;
}
#shops .shops__area .area__name {
  font-size: 40px;
  padding-right: 15px;
  font-weight: bold;
  background: #ffffff;
  position: relative;
}
#shops .shops__area .area__en {
  font-size: 24px;
  background: #ffffff;
  position: relative;
  padding-right: 10px;
  top: -4px;
}
#shops .shops__list {
  margin-bottom: 90px;
}
#shops .shops__list .list__item {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-bottom: 40px;
}
#shops .shops__list .list__item .item__name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}
#shops .shops__list .list__item .item__name::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 27px;
  background: #3aae36;
  position: relative;
  top: 5px;
  left: 0;
  margin-right: 10px;
}
#shops .shops__list .list__item .item__pic {
  margin-bottom: 10px;
}
#shops .shops__list .list__item .item__addr {
  margin-bottom: 15px;
}
#shops .shops__list .list__item .item__btn {
  text-align: center;
  margin-top: auto;
}
#shops .shops__list .list__item .item__btn img {
  width: 232px;
}

@media screen and (max-width: 768px) {
  #shops {
    padding: 30px 0 0 0;
  }
  #shops .list__title {
    margin-bottom: 30px;
  }
  #shops .shops__areanavi {
    margin-bottom: 20px;
  }
  #shops .shops__areanavi a {
    width: 48%;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 50px;
  }
  #shops .shops__area {
    margin-bottom: 20px;
  }
  #shops .shops__area::before {
    top: 12px;
  }
  #shops .shops__area .area__name {
    font-size: 25px;
  }
  #shops .shops__area .area__en {
    font-size: 17px;
    top: -2px;
  }
  #shops .shops__list {
    margin-bottom: 30px;
  }
  #shops .shops__list .list__item {
    width: 100%;
    margin-bottom: 30px;
  }
  #shops .shops__list .list__item .item__name {
    font-size: 18px;
  }
  #shops .shops__list .list__item .item__name::before {
    height: 24px;
  }
  #shops .shops__list .list__item .item__btn img {
    width: 50%;
  }
  #shops .shops__list .list__item.item_empty {
    display: none;
  }
}