body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  background: url('bg.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

header {
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: 1rem;
}

header h1 {
  font-size: 1.5rem;
  margin: 0;
}

header p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.title-image {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.menu-card {
  background: rgba(0,0,0,0.55);
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.menu-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.menu-card h2 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1rem;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffeb3b;
  margin: 0;
}

footer {
  text-align: center;
  padding: 0.5rem;
  background: rgba(0,0,0,0.5);
  font-size: 0.8rem;
}

.schedule-section {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.schedule-table {
  width: 100%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.55);
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.schedule-table th,
.schedule-table td {
  padding: 0.7rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5em; 
}

.schedule-table th {
  background: rgba(0, 0, 0, 0.7);
  font-weight: bold;
  color: #ffeb3b;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}
