* {
  box-sizing: border-box;
}

body { 
  font-family: sans-serif; 
  margin: 0; 
  padding: 0; 
  background: url('店内画像.jpg') center/cover no-repeat fixed; 
  color: #333333; 
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(255,255,255,0.7);
  z-index: 0;
  pointer-events: none;
}

body > * { 
  position: relative; 
  z-index: 1; 
}

header { 
  background: #07913B; 
  color: white; 
  padding: 1.5em; 
  text-align: center; 
}

nav { 
  background: #004d00; 
  color: white; 
  padding: 1em; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  align-items: center;
  gap: 0.5em 1em;
}

nav a { 
  color: white; 
  text-decoration: none; 
  font-weight: bold; 
  padding: 0.5em 1em;
  white-space: nowrap;
}

nav a:hover { 
  background: #006400; 
  border-radius: 5px; 
}

@media (max-width: 768px) {
  nav { 
    flex-direction: column; 
    gap: 0; 
  }
  nav a { 
    width: 100%; 
    text-align: center; 
    padding: 0.8em; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  nav a:last-child {
    border-bottom: none;
  }
}

.hero { 
  background: url('your-hero-image.jpg') center/cover no-repeat; 
  height: 300px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: white; 
  font-size: 2em; 
  font-weight: bold; 
  text-shadow: 0 0 5px #000; 
}

.section { 
  padding: 2em 1em; 
  max-width: 1000px; 
  margin: auto; 
}

.section h2 { 
  color: #006400; 
  border-left: 5px solid #006400; 
  padding-left: 0.5em; 
}

.pricing, .opening-hours, .rules, .jongseki, .access, .contact, .campaign, .about { 
  background: #fff; 
  margin: 2em auto; 
  padding: 2em; 
  border-radius: 10px; 
  box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

.map-container { 
  position: relative; 
  width: 100%; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
}

.map-container iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

/* テーブルスタイル */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
  background: #fff;
}

table th {
  border: 1px solid #333;
  padding: 12px 8px;
  text-align: left;
  background: #006400;
  color: white;
  font-weight: bold;
}

table td {
  border: 1px solid #333;
  padding: 12px 8px;
  line-height: 1.6;
}

table td:first-child {
  white-space: nowrap;
}

table tr:nth-child(even) {
  background: #f9f9f9;
}

table tr:hover {
  background: #f0f0f0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  table {
    font-size: 0.9em;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  table th,
  table td {
    padding: 8px 6px;
  }
}

footer { 
  background: #333; 
  color: white; 
  text-align: center; 
  padding: 2em 1em; 
  font-size: 0.9em; 
}
