/* こむぎベーカリー — ナチュラルかわいい（小麦色×こげ茶） */

:root {
  --bg: #fdf8ef;
  --bg-alt: #f6ecd9;
  --brown: #6b4a2b;
  --wheat: #d9a75f;
  --wheat-deep: #b9853d;
  --ink: #4a3c2c;
  --line: #e5d8bf;
}

* { 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: 18px 5vw;
}

.logo { font-size: 22px; font-weight: 900; color: var(--brown); }

.nav a { color: var(--ink); text-decoration: none; margin-left: 20px; font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--wheat-deep); }

/* hero */
.hero {
  text-align: center;
  padding: 70px 6vw 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,167,95,0.16), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(217,167,95,0.16), transparent 35%);
}

/* 食パンのCSSイラスト */
.bread { position: relative; width: 200px; height: 150px; margin: 0 auto 40px; }

.bread-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #e8bd7c, #cf9a52);
  border-radius: 55px 55px 18px 18px;
  box-shadow: inset 0 -14px 0 rgba(107,74,43,0.18);
}

.cut { position: absolute; height: 8px; border-radius: 6px; background: rgba(107,74,43,0.28); }
.c1 { width: 70px; left: 65px; top: 52px; }
.c2 { width: 100px; left: 50px; top: 76px; }
.c3 { width: 70px; left: 65px; top: 100px; }

.hero h2 { font-size: clamp(30px, 5vw, 46px); font-weight: 900; color: var(--brown); line-height: 1.55; margin-bottom: 16px; }
.hero-lead { margin-bottom: 24px; }

.hero-time {
  display: inline-block;
  background: var(--brown);
  color: #fdf8ef;
  font-weight: 700;
  padding: 10px 34px;
  border-radius: 999px;
  font-size: 15px;
}

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

.section-title { text-align: center; font-size: 26px; font-weight: 900; color: var(--brown); margin-bottom: 44px; }
.section-title::after { content: "· · ·"; display: block; color: var(--wheat-deep); letter-spacing: 0.5em; margin-top: 6px; font-size: 18px; }

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

/* pan grid */
.pan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.pan {
  background: #fff;
  border-radius: 22px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(107,74,43,0.09);
}

.pan-icon { font-size: 38px; margin-bottom: 6px; }
.pan h3 { font-size: 17px; font-weight: 900; color: var(--brown); }
.pan-price { color: var(--wheat-deep); font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.pan p:last-child { font-size: 13px; }
.pan-note { text-align: center; margin-top: 26px; font-size: 13px; }

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

.news-list li { display: flex; gap: 20px; padding: 15px 4px; border-bottom: 1px dashed var(--line); align-items: baseline; }
.news-list time { font-weight: 900; color: var(--wheat-deep); white-space: nowrap; }
.news-list p { font-size: 14px; }

/* access */
.info-table { width: 100%; max-width: 640px; margin: 0 auto; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }

.info-table th, .info-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.info-table th { width: 110px; background: #f3e7cd; color: var(--brown); font-weight: 900; white-space: nowrap; }

/* cta */
.cta { text-align: center; padding: 76px 5vw; }
.cta p { font-size: 17px; font-weight: 700; margin-bottom: 22px; }

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c 40%, #dc2743 60%, #bc1888);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  padding: 15px 48px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(220,39,67,0.25);
  transition: 0.25s;
}

.cta-button:hover { transform: translateY(-3px); }

/* footer */
.footer { text-align: center; padding: 28px; background: var(--brown); color: #fdf8ef; font-weight: 700; }
.footer-copy { font-size: 12px; opacity: 0.75; margin-top: 4px; }

/* mobile */
@media (max-width: 760px) {
  .header { flex-direction: column; gap: 10px; }
  .nav a { margin: 0 8px; }
  .pan-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 54px 6vw; }
}
