@charset "UTF-8";
/* ===== カラー・トークン ===== */
:root {
  --ink: #20242b;
  --muted: #6b7280;
  --line: #ece8e2;
  --bg: #f6f4f0;
  --card: #ffffff;
  --accent: #c8553d; /* テラコッタ */
  --accent-deep: #a8402c;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(32, 36, 43, .08);
  --shadow-hover: 0 14px 40px rgba(32, 36, 43, .16);
  --font: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-deep);
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ヘッダー ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 240, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.brand:hover {
  color: var(--accent);
}

.site-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  margin-left: 20px;
}

.site-nav a:hover {
  color: var(--accent);
}

/* ===== ヒーロー ===== */
.hero {
  background: radial-gradient(1200px 400px at 80% -10%, rgba(200, 85, 61, 0.55), transparent 60%), linear-gradient(125deg, #1d2128 0%, #2c313b 55%, #3a3f4a 100%);
  color: #fff;
  padding: 72px 0 80px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  background: var(--bg);
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  margin: 0 0 0.35em;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.hero-tagline {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
}

/* ===== 導入文 ===== */
.intro {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  margin: 26px 0 8px;
  color: #3a3f47;
}

.intro p {
  margin: 0;
}

/* ===== セクション見出し ===== */
.section-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 40px 0 18px;
  padding-left: 14px;
  border-left: 5px solid var(--accent);
}

/* ===== カード一覧 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #e9e4dd;
}

.card-thumb--ph {
  background: repeating-linear-gradient(45deg, #efeae3, #efeae3 12px, #e7e1d8 12px, #e7e1d8 24px);
}

.card-body {
  padding: 16px 18px 20px;
}

.card-title {
  margin: 8px 0 6px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

.card-date {
  color: var(--muted);
  font-size: 0.82rem;
}

.card-excerpt {
  margin: 10px 0 0;
  color: #565d66;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== カテゴリバッジ ===== */
.cat-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(200, 85, 61, 0.12);
  color: var(--accent-deep);
  letter-spacing: 0.03em;
}

/* ===== 記事ページ ===== */
.post, .page {
  padding-top: 36px;
  padding-bottom: 56px;
}

.post-head {
  margin-bottom: 22px;
}

.post-title, .page-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.4;
  margin: 12px 0 8px;
}

.post-date {
  color: var(--muted);
  font-size: 0.9rem;
}

.post-content {
  font-size: 1.02rem;
}

.post-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 1.8em 0 0.6em;
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--line);
}

.post-content p {
  margin: 1em 0;
}

.back-link {
  display: inline-block;
  margin-top: 36px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* 記事冒頭のメイン写真 */
.post-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1em;
  box-shadow: var(--shadow);
}

/* 写真ギャラリー */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 1.6em 0;
}

.photo-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Googleマップ埋め込み（写真なし記事用） */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.6em 0;
  background: #e9e4dd;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* お店情報ボックス */
.shop-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 1.8em 0;
  background: #fbf9f6;
}

.shop-info h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.shop-info dl {
  margin: 0;
}

.shop-info dt {
  font-weight: 700;
  color: var(--ink);
}

.shop-info dd {
  margin: 0 0 0.6em 0;
  color: #4b525a;
}

/* about ページの一覧 */
.page ul {
  padding-left: 1.2em;
}

.page li {
  margin: 0.4em 0;
}

/* ===== お問い合わせフォーム ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 1.5em 0;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent-deep);
}

/* ===== フッター ===== */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-note {
  margin: 0 0 8px;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .hero {
    padding: 54px 0 60px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */