/* ============================================
   news.css — お知らせ・ブログページ専用スタイル
   ============================================ */

/* ページヒーロー */
.news-hero {
  background: linear-gradient(135deg, #fff5f5 0%, #fff9e6 60%, #f0fbf4 100%);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.news-hero-inner { position: relative; z-index: 1; }

.news-hero-sub {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 20px;
  padding: 4px 18px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.news-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.news-hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2;
}

/* メイン */
.news-main {
  padding: 80px 0 120px;
}

/* アーカイブ記事リスト */
.news-archive-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-archive-item {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.news-archive-item:first-child {
  padding-top: 0;
}

/* 日付 */
.news-archive-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.news-archive-month {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.news-archive-day {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
}

/* 記事コンテンツ */
.news-archive-content {
  flex: 1;
}

.news-archive-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-archive-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 16px;
}

.news-archive-photo {
  margin-top: 20px;
}

.news-archive-photo img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* レスポンシブ */
@media (max-width: 640px) {
  .news-hero { padding: 120px 24px 80px; }

  .news-archive-item {
    flex-direction: column;
    gap: 12px;
  }

  .news-archive-date {
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }

  .news-archive-day {
    font-size: 1.4rem;
  }
}
