/* ============================================================
   nozomi-blog.css
   お知らせ・コラム（ブログ）用スタイル
   対象: archive-news.php / archive-column.php / single-news.php / single-column.php
   更新日: 2026-06-17
   ============================================================ */

/* ===== お知らせ一覧 ===== */
.nozomi-archive {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  color: #3b2f26;
  background: #fffaf0;
}

.nozomi-archive-hero {
  background: linear-gradient(135deg, #eef8e8 0%, #fffdf8 45%, #fff4df 100%);
  padding: 120px 24px 72px;
  text-align: center;
}

.nozomi-archive-hero-label {
  display: inline-block;
  background: #ffffff;
  color: #6aa05f;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(88,64,38,0.08);
}

.nozomi-archive-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.45;
  color: #4a2d16;
  margin: 0 0 16px;
  font-weight: 900;
}

.nozomi-archive-hero p {
  color: #5f5141;
  font-size: 17px;
  line-height: 2;
  margin: 0;
}

.nozomi-archive-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 24px;
}

.nozomi-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.nozomi-post-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(80,61,34,0.08);
  text-decoration: none !important;
  color: #3b2f26 !important;
  transition: 0.25s;
  display: block;
}

.nozomi-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(80,61,34,0.14);
}

.nozomi-post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #eef8e8 0%, #fff4df 100%);
  overflow: hidden;
  position: relative;
}

.nozomi-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nozomi-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 48px;
}

.nozomi-post-body {
  padding: 22px;
}

.nozomi-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.nozomi-post-date {
  font-size: 13px;
  color: #8a7060;
  font-weight: 700;
}

.nozomi-post-cat {
  background: #eef8e8;
  color: #6aa05f;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 900;
}

.nozomi-post-title {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
  color: #4a2d16;
  margin: 0 0 10px;
}

.nozomi-post-excerpt {
  font-size: 14px;
  color: #5f5141;
  line-height: 1.8;
  margin: 0;
}

/* ページネーション */
.nozomi-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.nozomi-pagination a,
.nozomi-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none !important;
  transition: 0.2s;
}

.nozomi-pagination a {
  background: #ffffff;
  color: #4a2d16 !important;
  box-shadow: 0 6px 18px rgba(80,61,34,0.10);
}

.nozomi-pagination a:hover {
  background: #6aa05f;
  color: #ffffff !important;
}

.nozomi-pagination span.current {
  background: #6aa05f;
  color: #ffffff;
}

/* 投稿なし */
.nozomi-no-posts {
  text-align: center;
  padding: 80px 24px;
  color: #5f5141;
  font-size: 17px;
  line-height: 2;
}

@media (max-width: 900px) {
  .nozomi-post-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 600px) {
  .nozomi-archive-body { padding: 48px 18px; }
  .nozomi-post-grid { grid-template-columns: 1fr; gap: 16px; }
  .nozomi-post-title { font-size: 15px; }
}

/* ============ 詳細ページ用 ============ */

.nozomi-single {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  color: #3b2f26;
  background: #fffaf0;
}

.nozomi-single-hero {
  background: linear-gradient(135deg, #eef8e8 0%, #fffdf8 45%, #fff4df 100%);
  padding: 120px 24px 56px;
}

.nozomi-single-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.nozomi-single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.nozomi-single-date {
  font-size: 14px;
  color: #8a7060;
  font-weight: 700;
}

.nozomi-single-cat {
  background: #eef8e8;
  color: #6aa05f;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 900;
}

.nozomi-single-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.55;
  color: #4a2d16;
  margin: 0;
  font-weight: 900;
}

.nozomi-single-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}

.nozomi-single-thumb {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 18px 46px rgba(80,61,34,0.10);
}

.nozomi-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.nozomi-single-content {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 14px 36px rgba(80,61,34,0.07);
  line-height: 2;
  font-size: 17px;
  color: #4a3a2b;
}

.nozomi-single-content h2 { font-size: 26px; color: #4a2d16; margin: 2em 0 1em; border-left: 6px solid #6aa05f; padding-left: 16px; }
.nozomi-single-content h3 { font-size: 22px; color: #4a2d16; margin: 1.8em 0 0.8em; }
.nozomi-single-content p  { margin: 0 0 1.6em; }
.nozomi-single-content ul,
.nozomi-single-content ol { padding-left: 24px; margin: 0 0 1.6em; }
.nozomi-single-content li { margin-bottom: 0.5em; }
.nozomi-single-content img { max-width: 100%; border-radius: 16px; margin: 1em 0; }
.nozomi-single-content a  { color: #6aa05f; text-decoration: underline; }

.nozomi-single-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.nozomi-single-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #4a2d16 !important;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(80,61,34,0.10);
  transition: 0.2s;
  font-size: 15px;
}

.nozomi-single-nav a:hover {
  transform: translateY(-3px);
  background: #6aa05f;
  color: #ffffff !important;
}

.nozomi-single-back {
  text-align: center;
  margin-top: 24px;
}

.nozomi-single-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6aa05f !important;
  font-weight: 900;
  text-decoration: none !important;
  font-size: 15px;
}

@media (max-width: 768px) {
  .nozomi-single-hero  { padding: 100px 18px 40px; }
  .nozomi-single-body  { padding: 36px 18px 64px; }
  .nozomi-single-content { padding: 28px 22px; font-size: 15px; }
  .nozomi-single-content h2 { font-size: 21px; }
  .nozomi-single-content h3 { font-size: 18px; }
  .nozomi-single-nav { flex-direction: column; }
}
