/* ぱんをたずねて2000里ちょい風 - 漫画ブログスタイル */

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

:root {
  --color-bg: #f2f4f6;
  --color-surface: #ffffff;
  --color-text: #333333;
  --color-text-light: #888888;
  --color-accent: #6AAED6;
  --color-accent-light: #e8f2fa;
  --color-border: #dde3e8;
  --font-main: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --max-width: 700px;
}

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

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

.site-header {
  background: #fafbfc;
  border-bottom: 2px solid var(--color-accent);
  padding: 20px;
  text-align: center;
}

.site-title {
  font-size: 20px;
  font-weight: 700;
}

.site-title a {
  color: var(--color-text);
  text-decoration: none;
}

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

.article {
  background: var(--color-surface);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 36px;
}

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

.article-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--color-border);
}

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

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

.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 1.8em 0 0.7em;
  padding: 8px 14px;
  background: var(--color-accent-light);
  border-radius: 6px;
  color: var(--color-accent);
}

.article-body a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(106,174,214,0.3);
}

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