*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B35;
  --yellow: #FFD166;
  --cream: #FFF8F0;
  --brown: #5C3D2E;
  --text: #333;
}

html { scroll-behavior: smooth; }
body { font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif; color: var(--text); background: var(--cream); }

/* Nav */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255,248,240,0.92); backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--yellow);
}
.nav-logo { font-size: 1.3rem; font-weight: 900; color: var(--orange); }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav a { text-decoration: none; color: var(--brown); font-weight: 700; transition: color .2s; }
nav a:hover, nav a.active { color: var(--orange); }

/* Hero */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 50%, #FFCCBC 100%);
  text-align: center; padding: 6rem 2rem 2rem; position: relative; overflow: hidden;
}
.hero-fish {
  position: absolute; font-size: 18rem; opacity: .07;
  right: -2rem; bottom: -2rem; transform: rotate(-20deg);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-sub { font-size: 1rem; color: var(--brown); letter-spacing: .2em; margin-bottom: .5rem; }
#hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); color: var(--orange); font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem; }
.hero-catch { font-size: 1.1rem; color: var(--brown); line-height: 1.9; margin-bottom: 2rem; }
.btn {
  display: inline-block; padding: .85rem 2.2rem;
  background: var(--orange); color: #fff; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255,107,53,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255,107,53,.5); }

/* Sections */
section { padding: 5rem 2rem; }
.container { max-width: 900px; margin: 0 auto; }
.section-title {
  text-align: center; font-size: 2rem; font-weight: 900;
  color: var(--brown); margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--orange); border-radius: 2px; margin: .6rem auto 0;
}

/* Story */
#story { background: #fff; }
.story-content { display: flex; gap: 2rem; align-items: flex-start; }
.story-icon { font-size: 4rem; flex-shrink: 0; }
.story-text p { line-height: 1.9; margin-bottom: 1rem; color: #555; }
.story-text p:last-child { margin-bottom: 0; }

/* Cards */
#kodawari { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff; border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-top: 4px solid var(--yellow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.card-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: .8rem; font-weight: 900; }
.card p { font-size: .9rem; color: #666; line-height: 1.8; }

/* Access */
#access { background: #fff; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.access-info p { margin-bottom: .8rem; font-size: 1rem; color: #555; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table th, .hours-table td { padding: .6rem .8rem; text-align: left; border-bottom: 1px solid #eee; }
.hours-table th { color: var(--brown); font-weight: 700; width: 40%; }
.map-placeholder {
  background: #f5f0eb; border-radius: 12px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #aaa; text-align: center; line-height: 1.6;
}

/* Footer */
footer {
  background: var(--brown); color: #fff;
  text-align: center; padding: 1.5rem;
  font-size: .9rem;
}

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .story-content { flex-direction: column; }
  nav ul { gap: 1rem; }
}
