:root {
  --text: #252525;
  --muted: #77736c;
  --line: #d9d4cc;
  --paper: #fbfaf7;
  --photo: #f0ede7;
  --serif: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Zen Kaku Gothic New", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding: 72px 0 110px;
}

.blog-post { width: 100%; }

.post-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.post-area,
.post-date {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}

.post-area { margin-bottom: 20px; }

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -.045em;
  line-height: 1.45;
}

.post-date { margin-top: 24px; }

.photo-slot {
  display: grid;
  min-height: 210px;
  margin: 52px 0 58px;
  place-items: center;
  color: var(--muted);
  background: var(--photo);
  border: 1px solid var(--line);
  font-size: 12px;
}

.photo-slot-hero { min-height: 300px; margin-top: 42px; }

.post-content > p {
  margin: 0 0 24px;
  color: var(--text);
}

.post-content > p:first-child {
  margin-bottom: 58px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.95;
}

h2 {
  margin: 64px 0 22px;
  padding-top: 0;
  font-size: 28px;
  letter-spacing: -.025em;
  line-height: 1.55;
}

.shop-info {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.shop-info > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.shop-info dt,
.shop-info dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.shop-info dt { color: var(--muted); }

@media (max-width: 560px) {
  body { font-size: 15px; }
  .page { width: calc(100% - 36px); padding-top: 42px; }
  .post-header { padding-bottom: 26px; }
  h1 { font-size: 34px; line-height: 1.5; }
  .photo-slot-hero { min-height: 220px; margin-top: 30px; }
  .photo-slot { min-height: 170px; margin: 38px 0 45px; }
  .post-content > p:first-child { font-size: 18px; }
  h2 { margin-top: 48px; font-size: 25px; }
  .shop-info > div { grid-template-columns: 76px 1fr; gap: 14px; }
  .shop-info dt, .shop-info dd { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
