/* 慌てない暮らし — ブランドカラー（ちょいラク暮らし世界観） */
:root {
  --kinari: #F2EBDD;      /* ①生成り：背景 */
  --leaf: #8FB573;        /* ②リーフ緑 */
  --fukamidori: #5C8A3A;  /* ③深緑：見出し・リンク */
  --brown: #8A6E4B;       /* ④犬ブラウン：本文サブ */
  --pink: #D6006E;        /* ⑤楽天ピンク：アクセント */
  --white: #FFFFFF;
  --text: #3D3A33;
}

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

body {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: var(--kinari);
  color: var(--text);
  line-height: 1.9;
  font-size: 16px;
}

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

/* ヘッダー */
header {
  background: var(--white);
  border-bottom: 4px solid var(--leaf);
  padding: 28px 0 22px;
  text-align: center;
}
.site-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--fukamidori);
  letter-spacing: 0.05em;
}
.site-title a { color: inherit; text-decoration: none; }
.tagline {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--brown);
}

/* ナビ */
nav {
  background: var(--leaf);
  padding: 10px 0;
}
nav .wrap { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
nav a:hover { text-decoration: underline; }

/* メイン */
main { padding: 36px 0 48px; }

.lead {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 32px;
}
.lead p { margin-bottom: 0.6em; }
.lead p:last-child { margin-bottom: 0; }

h2.section {
  font-size: 1.2rem;
  color: var(--fukamidori);
  border-left: 6px solid var(--leaf);
  padding-left: 12px;
  margin: 36px 0 18px;
}

/* 記事カード */
.card {
  display: block;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--leaf); }
.card .date { font-size: 0.8rem; color: var(--brown); }
.card h3 { font-size: 1.05rem; color: var(--fukamidori); margin: 4px 0 6px; }
.card p { font-size: 0.9rem; color: var(--text); }
.card.coming {
  border: 2px dashed var(--leaf);
  background: transparent;
  text-align: center;
  color: var(--brown);
  font-size: 0.9rem;
}

/* 記事ページ */
article h1 {
  font-size: 1.5rem;
  color: var(--fukamidori);
  line-height: 1.6;
  margin-bottom: 8px;
}
article .meta { font-size: 0.85rem; color: var(--brown); margin-bottom: 24px; }
article h2 {
  font-size: 1.15rem;
  color: var(--fukamidori);
  border-left: 6px solid var(--leaf);
  padding-left: 12px;
  margin: 34px 0 14px;
}
article p { margin-bottom: 1.1em; }
article .box {
  background: var(--white);
  border: 2px solid var(--leaf);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}
article .point {
  background: var(--white);
  border-left: 6px solid var(--pink);
  border-radius: 0 14px 14px 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-weight: 600;
}

/* プロフィール */
.profile {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.profile .icon {
  font-size: 2rem;
  background: var(--kinari);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile h3 { color: var(--fukamidori); font-size: 1rem; margin-bottom: 4px; }
.profile p { font-size: 0.9rem; }

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

@media (max-width: 480px) {
  body { font-size: 15px; }
  .site-title { font-size: 1.4rem; }
}
