/* cafe konoha — ナチュラル（クリーム×モスグリーン） */

:root {
  --bg: #fbf8f1;
  --bg-alt: #f2edda;
  --ink: #4d493b;
  --green: #7d8c5c;
  --green-deep: #5d6b41;
  --brown: #a68a64;
}

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

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 2;
}

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5vw;
}

.logo { font-size: 24px; font-weight: 700; color: var(--green-deep); }

.nav a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  border-bottom: 2px solid transparent;
}

.nav a:hover { border-bottom-color: var(--green); }

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6vh 8vw 10vh;
  gap: 4vw;
}

.hero-en {
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: var(--brown);
  margin-bottom: 10px;
}

.hero h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--green-deep);
}

/* コーヒーカップ（CSSイラスト） */
.hero-visual { display: grid; place-items: center; }

.cup { position: relative; width: 240px; height: 220px; }

.cup-body {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 160px;
  height: 110px;
  background: #fff;
  border: 6px solid var(--green-deep);
  border-radius: 0 0 70px 70px;
}

.cup-body::after {
  content: "";
  position: absolute;
  right: -44px;
  top: 12px;
  width: 44px;
  height: 56px;
  border: 6px solid var(--green-deep);
  border-left: none;
  border-radius: 0 40px 40px 0;
}

.cup-saucer {
  position: absolute;
  bottom: 18px;
  left: 20px;
  width: 200px;
  height: 18px;
  background: var(--green-deep);
  border-radius: 50%;
}

.steam {
  position: absolute;
  top: 10px;
  width: 8px;
  height: 46px;
  border-radius: 8px;
  background: var(--brown);
  opacity: 0.45;
  animation: steam 2.6s ease-in-out infinite;
}

.s1 { left: 82px; }
.s2 { left: 114px; animation-delay: 0.5s; }
.s3 { left: 146px; animation-delay: 1s; }

@keyframes steam {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.45; }
  50% { transform: translateY(-12px) scaleY(1.15); opacity: 0.2; }
}

/* sections */
.section { padding: 80px 5vw; max-width: 900px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: 900px; margin-left: auto; margin-right: auto; }

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 44px;
}

.section-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--brown);
  border-radius: 3px;
  margin: 14px auto 0;
}

.about-text { text-align: center; }

/* menu */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.menu-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 4px 16px rgba(93,107,65,0.08);
}

.menu-box h3 { font-size: 18px; color: var(--green-deep); margin-bottom: 16px; }

.menu-box ul { list-style: none; }

.menu-box li {
  display: flex;
  justify-content: space-between;
  padding: 9px 2px;
  border-bottom: 1px dashed #d8d2bc;
  font-size: 15px;
}

.menu-note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--brown); }

/* news */
.news-list { list-style: none; max-width: 640px; margin: 0 auto; }

.news-list li {
  display: flex;
  gap: 24px;
  padding: 14px 4px;
  border-bottom: 1px solid #e5dfc9;
  font-size: 15px;
}

.news-list time { color: var(--brown); white-space: nowrap; }

/* access */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }

.map-placeholder {
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(140deg, #dfe6cf, #b9c69e);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Caveat", cursive;
  font-size: 22px;
}

.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }

.info-table th, .info-table td {
  text-align: left;
  padding: 10px 6px;
  border-bottom: 1px solid #e0dac4;
  font-weight: 400;
}

.info-table th { width: 90px; color: var(--green-deep); white-space: nowrap; }

/* footer */
.footer { text-align: center; padding: 36px 0 28px; background: var(--green-deep); color: #fdfbf3; font-size: 13px; }
.footer-logo { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

/* mobile */
@media (max-width: 760px) {
  .header { flex-direction: column; gap: 10px; }
  .nav a { margin: 0 8px; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 3vh; }
  .hero-visual { order: -1; }
  .cup { transform: scale(0.8); }
  .menu-grid, .access-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 6vw; }
}
