.main-visual {
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #f6b93b;
  margin-bottom: 3.5rem;
}
.main-visual h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 1rem;
  max-width: 90%;
}

.menu-section {
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.menu-list {
  display: flex;
  gap: 32px;
  transition: transform 0.6s ease;
}

.menu-item {
  flex: 0 0 260px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.menu-item img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  height: auto; /* 自動高さで画像全体を表示 */
  object-fit: contain; /* クロップせず全体を収める */
  background: #fdeecd;
}
.menu-content {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--primary-dark);
}
.menu-content p {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.6;
  flex: 1;
}
.menu-content .more {
  margin-top: 0.8rem;
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: none;
}
