/* 慌てない暮らし — ちょいラク暮らし世界観・改訂版 */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  --kinari: #F2EBDD;      /* 生成り：背景 */
  --leaf: #34506B;        /* 案1：信頼のネイビー（アクセントのみ） */
  --leaf-light: #E9EEF4;
  --fukamidori: #33302A;  /* 見出しは色を付けず、濃いニュートラルに */
  --brown: #8A6E4B;
  --pink: #2C4258;        /* ポイント枠はネイビーの濃淡 */
  --pink-light: #E9EEF4;
  --link: #2F5D8A;
  --white: #FFFFFF;
  --text: #3D3A33;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 26px;
  --shadow-soft: 0 4px 16px rgba(52, 80, 107, 0.08), 0 1px 3px rgba(52, 80, 107, 0.06);
  --shadow-lift: 0 12px 28px rgba(52, 80, 107, 0.14), 0 2px 6px rgba(52, 80, 107, 0.08);
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--kinari);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(143, 181, 115, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(214, 0, 110, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.95;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--link); }

/* ヘッダー */
header {
  background: var(--white);
  padding: 40px 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--leaf);
}
.badge-paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--leaf-light);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.site-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--fukamidori);
  letter-spacing: 0.03em;
}
.site-title a { color: inherit; text-decoration: none; }
.tagline {
  margin-top: 10px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  background: var(--kinari);
  padding: 6px 18px;
  border-radius: 999px;
}

/* ナビ */
nav {
  background: transparent;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
nav .wrap {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  width: fit-content;
  margin: 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
nav a {
  color: var(--fukamidori);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav a:hover { background: var(--leaf); color: var(--white); }

/* メイン */
main { padding: 44px 0 56px; }

/* 2カラム（記事＋サイドバー） */
.wrap-wide { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}
.side-box {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.side-box h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.9rem;
  color: var(--fukamidori);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--leaf-light);
}
.side-box p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 0.5em; }
.side-box p:last-child { margin-bottom: 0; }
.side-box.pr {
  border: 1.5px dashed #B8AE9C;
  background: transparent;
  box-shadow: none;
}
.side-box.pr .pr-tag {
  font-size: 0.7rem;
  color: var(--brown);
  letter-spacing: 0.1em;
}
@media (max-width: 920px) {
  .layout { grid-template-columns: 1fr; }
}

.lead {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.lead p { margin-bottom: 0.8em; }
.lead p:last-child { margin-bottom: 0; }
.lead strong { color: var(--fukamidori); }

h2.section {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fukamidori);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 44px 0 20px;
}
h2.section::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--leaf);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 記事カード */
.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card .date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--leaf);
  background: var(--leaf-light);
  padding: 3px 12px;
  border-radius: 999px;
}
.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--leaf);
  border: 1px solid var(--leaf);
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 6px;
}
.card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  color: var(--fukamidori);
  margin: 10px 0 8px;
  line-height: 1.5;
}
.card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.card.coming {
  box-shadow: none;
  border: 2px dashed var(--leaf);
  background: transparent;
  text-align: center;
  color: var(--brown);
  font-size: 0.9rem;
}

/* 記事ページ */
article h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--fukamidori);
  line-height: 1.6;
  margin-bottom: 10px;
}
article .meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 32px;
}
article h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fukamidori);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0 16px;
}
article h2::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--leaf);
  border-radius: 50%;
  flex-shrink: 0;
}
article p { margin-bottom: 1.15em; }
article .box {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-soft);
}
article .point {
  background: var(--pink-light);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  margin: 24px 0;
  font-weight: 700;
  color: var(--pink);
}

/* 保存版パーツ */
article .box h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  color: var(--fukamidori);
  margin: 14px 0 8px;
}
article .box h4:first-child { margin-top: 0; }
article .check {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}
article .check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.7;
}
article .check li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border: 2px solid var(--leaf);
  border-radius: 5px;
}
article .figure {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 20px;
  margin: 24px 0;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
article .figure svg { max-width: 100%; height: auto; }
article .figcap {
  font-size: 0.82rem;
  color: var(--brown);
  margin-top: 10px;
}
article .photo-ph {
  border: 2px dashed #C9BCA6;
  border-radius: var(--radius-m);
  padding: 28px 20px;
  margin: 24px 0;
  text-align: center;
  color: var(--brown);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.5);
}
article .print-note {
  background: var(--leaf-light);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  margin: 24px 0;
  font-size: 0.9rem;
}

/* プロフィール */
.profile {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}
.profile .icon {
  font-size: 1.8rem;
  background: var(--leaf-light);
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--fukamidori);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.profile p { font-size: 0.9rem; line-height: 1.8; }

/* フッター */
footer {
  background: transparent;
  color: var(--brown);
  text-align: center;
  padding: 30px 0 40px;
  font-size: 0.8rem;
}
footer a { color: var(--brown); }

@media (max-width: 480px) {
  body { font-size: 15px; }
  .site-title { font-size: 1.7rem; }
  .lead { padding: 24px 20px; }
}
