body {
  margin: 0;
  font-family: sans-serif;
  background: #fafafa;
  color: #333;
}

.main {
  margin: 0 auto;
}

.hero {
  background: url("https://picsum.photos/800/500?restaurant") center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.section {
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;

}

.menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
}

.item {
  width: calc(33% - 10px);
}

.item img {
  width: 100%;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}


.footer {
  text-align: center;
  padding: 20px;
  background: #eee;
}

.yohaku {
  padding: 70px 0;
}

/* スマホ */
@media (max-width: 600px) {
  .item {
    width: 100%;
  }

  .hero {
    padding: 50px 10px;
  }
}