/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 14 2026 | 10:49:34 */
/* ========================================
   会派活動レポート
======================================== */

.activity-report-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}

.report-heading {
  text-align: center;
  margin-bottom: 42px;
}

.report-heading h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.report-heading p {
  color: #666;
  line-height: 1.8;
}

/* ========================================
   最新号
======================================== */

.latest-report {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 56px;
}

.latest-label {
  display: inline-block;
  background: #0b57d0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 0 0 12px 0;
}

.latest-image-wrap {
  display: block;
  background: #f5f5f5;
}

.latest-image-wrap img {
  width: 100%;
  display: block;
  transition: transform .3s ease;
}

.latest-image-wrap:hover img {
  transform: scale(1.01);
}

.report-info {
  padding: 24px;
}

.report-info h3 {
  margin-bottom: 8px;
}

/* ========================================
   バックナンバー
======================================== */

.archive-title {
  margin-bottom: 24px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  gap: 20px;
}

.report-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.report-card:hover {
  transform: translateY(-4px);
}

.report-thumb {
  display: block;
  height: 140px;
  overflow: hidden;
  background: #eee;
}

.report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease;
}

.report-thumb:hover img {
  transform: scale(1.05);
}

.report-card-body {
  padding: 14px;
}

.report-card-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.report-card-body p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ========================================
   Fancybox微調整
======================================== */

.fancybox__caption {
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   スマホ
======================================== */

@media (max-width: 768px) {

  .activity-report-section {
    padding: 32px 16px;
  }

  .report-heading h2 {
    font-size: 1.6rem;
  }

  .report-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .report-thumb {
    height: 110px;
  }

}