/* ============================================================
   blog.css — ブログ一覧 / ブログ記事用スタイル
   style.css の変数（--c-pink-deep など）を前提に追記する
   ============================================================ */

/* ---------- ブログ一覧（blog.html） ---------- */

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(232, 139, 160, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(232, 139, 160, 0.18);
  border-color: var(--c-pink-pale, #FCEEF2);
}

.blog-card-link {
  display: block;
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--c-text-soft, #7A6A72);
}

.blog-card-meta time {
  font-family: 'Klee One', serif;
  font-weight: 600;
}

.blog-card-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.blog-card-tag.tag-ryoiku {
  background: #FCEEF2;
  color: var(--c-pink-deep, #E88BA0);
}
.blog-card-tag.tag-yoyaku {
  background: #FFF1DC;
  color: #C9762A;
}
.blog-card-tag.tag-info {
  background: #E8F3DC;
  color: #5C8A38;
}
.blog-card-tag.tag-kosodate {
  background: #E6F1F9;
  color: #3B7BAB;
}

.blog-card-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #2B2B2B;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.blog-card-excerpt {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-soft, #7A6A72);
  margin: 0 0 16px;
}

.blog-card-more {
  display: inline-block;
  color: var(--c-pink-deep, #E88BA0);
  font-weight: 700;
  font-size: 14px;
}

/* ---------- ブログ記事（blog/*.html） ---------- */

.blog-article-hero {
  text-align: center;
}

.blog-article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--c-text-soft, #7A6A72);
}

.blog-article-meta time {
  font-family: 'Klee One', serif;
  font-weight: 600;
}

.blog-article {
  max-width: 720px;
}

.blog-article .content-section ol.blog-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  counter-reset: blog-step;
}

.blog-article .content-section ol.blog-steps li {
  position: relative;
  padding: 14px 16px 14px 56px;
  margin-bottom: 12px;
  background: #FFF5F8;
  border-radius: 14px;
  counter-increment: blog-step;
  font-size: 15px;
  line-height: 1.85;
  border: none;
}

.blog-article .content-section ol.blog-steps li::before {
  content: counter(blog-step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--c-pink-deep, #E88BA0);
  color: #fff;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-cta {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFAEF 100%);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  margin-top: 48px;
}

.blog-cta h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: var(--c-pink-deep, #E88BA0);
  margin-bottom: 12px;
  font-size: 19px;
}

.blog-cta p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--c-text-soft, #7A6A72);
  margin-bottom: 20px;
}

.blog-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.blog-cta-buttons .btn {
  min-width: 220px;
}

.blog-back {
  text-align: center;
  margin-top: 32px;
}

.blog-back a {
  color: var(--c-pink-deep, #E88BA0);
  font-weight: 700;
  text-decoration: none;
  font-size: 14.5px;
}

.blog-back a:hover {
  text-decoration: underline;
}

/* ---------- トップページの「最新のブログ記事」 セクション ---------- */

.section-blog-latest {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFAEF 0%, #FFF5F8 100%);
  position: relative;
}

.section-blog-latest .blog-list {
  max-width: 720px;
  margin: 36px auto 0;
}

.section-blog-latest .section-head {
  text-align: center;
  margin-bottom: 12px;
}

.section-blog-latest .blog-latest-more {
  text-align: center;
  margin-top: 28px;
}

.section-blog-latest .blog-latest-more a {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  border: 2px solid var(--c-pink, #F4A6B8);
  color: var(--c-pink-deep, #E88BA0);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.2s ease;
}

.section-blog-latest .blog-latest-more a:hover {
  background: var(--c-pink-pale, #FCEEF2);
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 600px) {
  .blog-card-link { padding: 22px 20px 20px; }
  .blog-card-title { font-size: 17px; }
  .blog-card-excerpt { font-size: 14px; }
  .blog-cta { padding: 28px 18px; }
  .blog-cta-buttons .btn { width: 100%; min-width: 0; }
  .blog-article .content-section ol.blog-steps li {
    padding: 12px 14px 12px 50px;
    font-size: 14px;
  }
  .section-blog-latest { padding: 60px 0; }
}
