@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in--6 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes fade-out--6 {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}
@keyframes toTop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.restaurants {
  margin-bottom: 8rem;
}

.area-list {
  display: flex;
  justify-content: space-between;
}
.area-list a {
  color: #fff;
}
.area-title {
  margin-top: 6rem;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.shop {
  display: flex;
  justify-content: space-between;
  border: 1px solid #888888;
  padding: 0.5em;
  margin: 1em auto;
  align-items: center;
}
.shop > *:first-child {
  display: flex;
  justify-content: start;
  width: 83%;
}
.shop > *:first-child > *:first-child {
  min-width: 50%;
  font-size: 1.187rem;
  font-weight: bold;
}
.shop > *:last-child {
  display: flex;
  justify-content: end;
  align-items: center;
  line-height: 1.6em;
}
.shop > *:last-child > *:first-child {
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .shop > *:first-child {
    flex-direction: column;
    width: 70%;
  }
  .shop > *:first-child > *:last-child {
    margin-top: 1em;
  }
  .shop > *:last-child {
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  .shop > *:last-child > *:first-child {
    margin-bottom: 1em;
  }
}

.icon {
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 80%;
}
.icon-map, .icon-web, .icon-arrow {
  padding-left: 1.8em;
}
.icon-map::before, .icon-web::before, .icon-arrow::before {
  content: "";
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  left: 0;
  top: 0.1em;
}
.icon-map::before {
  background-image: url("../images/restaurant/map.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.icon-web::before {
  background-image: url("../images/restaurant/www.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.icon-arrow::before {
  background-image: url("../images/restaurant/arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
}

.map {
  width: 100%;
  height: 500px;
  margin-bottom: 8rem;
  opacity: 0;
  animation: fade-in 2s ease-in forwards;
}
@media screen and (max-width: 767px) {
  .map {
    height: 300px;
  }
}

/*# sourceMappingURL=restaurant.css.map */
