* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #f0f0f0; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.header-top img { height: 48px; }
.header-nav { display: none; gap: 24px; align-items: center; font-size: 14px; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-nav button { background: none; border: none; cursor: pointer; padding: 0; }
.header-nav button:hover { color: #000; }
.nav-links { display: flex; gap: 32px; align-items: center; justify-content: center; padding: 12px 0; }
.nav-links button { background: none; border: none; cursor: pointer; font-size: 14px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; font-size: 20px; }
@media (max-width: 1023px) { .mobile-menu-btn { display: block; } .header-nav { display: none; } .nav-links { display: none; } }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 128px; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.44) 20%, rgba(0,0,0,0.33) 40%, rgba(0,0,0,0.11) 60%, rgba(0,0,0,0.11) 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; color: white; }
.hero-content h1 { font-size: clamp(28px, 8vw, 56px); font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; }
.hero-content img { width: 100%; max-width: 600px; margin-bottom: 16px; }
.hero-content p { font-size: clamp(14px, 2vw, 18px); max-width: 800px; margin: 0 auto; font-weight: 500; line-height: 1.8; }

/* Sections */
section { padding: 96px 0; position: relative; }
section h2 { font-size: clamp(32px, 6vw, 48px); font-weight: 700; text-align: center; margin-bottom: 48px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-align: center; margin-bottom: 16px; }
.section-subtitle { font-size: 14px; color: #666; text-align: center; margin-bottom: 24px; }
.section-text { font-size: 18px; line-height: 1.8; color: #333; max-width: 900px; margin: 0 auto; }

/* About */
.about-section { background: #fff; position: relative; }
.about-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; }
.about-bg { position: absolute; inset: 0; opacity: 0.1; background-size: cover; background-position: center; }
.about-content { position: relative; }

/* Food/Market */
.food-section { background: #fff; }
.food-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; }
.market-section { background: #f5f5f5; }
.market-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 120px; }
.section-image { aspect-ratio: 21/9; overflow: hidden; border-radius: 8px; margin-bottom: 48px; }
.section-image img { width: 100%; height: 100%; object-fit: cover; }

/* Grid sections */
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .section-grid { grid-template-columns: 1fr; gap: 32px; } .section-grid-reverse { grid-auto-flow: dense; } }
.section-image-container { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; }
.section-image-container img { width: 100%; height: 100%; object-fit: cover; }
.section-text-block { font-size: 18px; line-height: 1.8; color: #333; }
.section-text-block p { margin-bottom: 24px; }

/* Gallery */
.gallery-section { background: #fff; padding-bottom: 196px; }
.gallery-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; }

/* Vision */
.vision-section { position: relative; padding: 96px 24px; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6), transparent); background-size: cover; background-position: center; color: white; }
.vision-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -1; }
.vision-content { position: relative; z-index: 10; max-width: 700px; }
.vision-content h2 { color: white; text-align: left; }
.vision-content p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.vision-btn { display: inline-block; padding: 12px 24px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); color: white; border-radius: 4px; margin-top: 24px; cursor: pointer; transition: background 0.3s; }
.vision-btn:hover { background: rgba(255,255,255,0.3); }

/* Access */
.access-section { background: #f9f9f9; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .access-grid { grid-template-columns: 1fr; } }
.access-info { padding: 24px; }
.access-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.access-info p { font-size: 14px; color: #666; line-height: 1.8; }
.map-container { aspect-ratio: 16/9; overflow: hidden; border-radius: 8px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 96px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 48px; margin-bottom: 48px; }
.footer-section h3 { font-size: 14px; font-weight: 700; letter-spacing: 1px; margin-bottom: 24px; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; font-size: 13px; }
.footer-section a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-section a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); }

/* News */
.news-section { background: #f5f5f5; position: relative; padding-bottom: 100px; }
.news-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; }
.news-card { background: white; border: 1px solid #e0e0e0; border-radius: 8px; padding: 48px; margin: 0 auto; max-width: 800px; }
.news-card p { font-size: 18px; line-height: 1.8; margin-bottom: 20px; }