body {
  background-color: #fffdf7;
  margin: 0;
  font-family: "Hiragino Sans","Noto Sans JP", sans-serif;
  line-height: 24px;
  color: #6b6060;
  font-size: 16px;
}

header {
  background: #f5d547;
  padding: 16px;
  text-align: center;
}

header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0;
  color: #fff9ee;
}
/*背景画像*/
.hero {
  background: url("images/hero.jpeg")no-repeat center /cover;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero h2 {
  font-size:  26px;
}

/*３つ紹介ここから*/
.gallery {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.image-wrapper {
  flex: 1 ;
  text-align : center;
}

.image-wrapper img {
  width: 100%;
  aspect-ratio: 3 / 2 ;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.gallery p {
  line-height: 24px;
  font-size: 14px;
  color: #5c4d4d;
}

.about {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0px 16px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about img {
  width: 40%;
  min-width: 280px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.about .text {
  flex: 1 1 0%;
  text-align: left;
}

.about h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #f5d547; 
}

.about p {
  font-size: 15px;
  line-height: 26px;
}

.menu-gallery {
  max-width: 1000px;
  margin: 60px auto;
  padding: 32px 16px;
}

.menu-gallery h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #f5d547; 
  text-align: left;
}

.scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.menu-item {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.menu-item p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
}
/*予約ぼたん、レモン色*/
.reservation {
  text-align: center;
  padding: 60px 16px;
  background-color: #60a995;
  color: #fff;
}

.reservation h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff9ee; 
}

.reservation p {
  margin-bottom: 20px;
  font-size: 15px;
}

.btn-reserve {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f5d547;
  color: #333;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-reserve:hover {
  background-color: #e4c63f;
}

/* アクセス */
.access {
  text-align: center;
  padding: 40px 16px;
}

.access h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #f5d547;
}

.access p {
  margin: 4px 0;
  font-size: 15px;
}

/* フッター */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 1024px)
{
  .gallery {
    gap: 16px;
  }
  .image-wrapper {
    flex: 1 1 calc(50% -16px);
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about img {
    width: 80%;
  }

  .hero {
    height: 200px;
  }
}

@media screen and (max-width: 640px) {
  header h1 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 20px;
    padding: 0 10px;
    text-align: center;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .image-wrapper {
    flex: 1;
    text-align: center;
    background-color: #fffdf7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about img {
    width: 100%;
  }

  .menu-item {
    width: 200px;
  }

  .reservation {
    padding: 40px 16px;
  }
}

header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

header li a {
  text-decoration: none;
  color: fff9ee;
  font-weight: bold;
}







