/* 井上かなえ風 - 料理ブログスタイル */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');

:root {
  --color-bg: #f8f5ef;
  --color-surface: #ffffff;
  --color-text: #3a2e24;
  --color-text-light: #8a7e74;
  --color-accent: #7d6b5d;
  --color-accent-light: #f0e8df;
  --color-border: #ddd0c0;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  --max-width: 780px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.85;
  font-size: 15px;
}

.site-header {
  background: #2a1e14;
  padding: 28px 20px;
  text-align: center;
}

.site-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}

.site-title a {
  color: #f0e8df;
  text-decoration: none;
}

.content-wrap {
  max-width: var(--max-width);
  margin: 32px auto;
  padding: 0 20px;
}

.article {
  background: var(--color-surface);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 36px 40px;
}

@media (max-width: 600px) {
  .article { padding: 24px 18px; }
}

.article-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.article-body {
  font-size: 15px;
  line-height: 2;
}

.article-body p {
  margin-bottom: 1.5em;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 20px 0;
  display: block;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin: 2em 0 0.8em;
  padding-left: 14px;
  border-left: 4px solid var(--color-accent);
  line-height: 1.5;
}

.article-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA バナー（サイト設定で自動付与） */
.cta-banner {
  display: block;
  margin: 2.5em 0 1em;
  padding: 20px 24px;
  background: linear-gradient(135deg, #06c755 0%, #04b34a 100%);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(6,199,85,0.25);
}

.cta-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.35);
  color: #fff;
}

.cta-banner .cta-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.cta-banner .cta-text-main { font-family: var(--font-serif); font-size: 17px; font-weight: 700; display: block; margin-bottom: 4px; }
.cta-banner .cta-text-sub { font-size: 12px; opacity: 0.9; display: block; }

.site-footer {
  text-align: center;
  padding: 32px 20px;
  font-size: 12px;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
}
