/* =============================================
   EVENT CALENDAR PAGE
   ============================================= */

.evcal-main { background: #f8f7f2; }

.evcal-hero {
  position: relative;
  height: 40vh;
  min-height: 240px;
  background-color: #3a5a2a;
  background-image: linear-gradient(135deg, #2a4a1e 0%, #4a7a38 55%, #3a6030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.evcal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 100%);
}
.evcal-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.evcal-hero__label {
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: 700;
  opacity: .75;
  margin: 0 0 10px;
}
.evcal-hero__h1 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.evcal-hero__sub {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: .8;
  letter-spacing: 1px;
}

.evcal-body { padding: 56px 0 80px; }
.evcal-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ボタン行 */
.evcal-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.evcal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: transform .18s, box-shadow .18s;
}
.evcal-btn--dl {
  background: #2f5d34;
  color: #fff;
  box-shadow: 0 4px 14px rgba(47,93,52,.25);
}
.evcal-btn--dl:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,93,52,.35); }
.evcal-btn--list {
  background: #fff;
  color: #2f5d34;
  border: 1.5px solid #c6d8c0;
}
.evcal-btn--list:hover { background: #eef4ec; border-color: #2f5d34; transform: translateY(-2px); }

/* PDFページ画像 */
.evcal-pages {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.evcal-page {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  background: #fff;
}
.evcal-page__img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .evcal-inner { padding: 0 16px; }
  .evcal-body { padding: 36px 0 56px; }
  .evcal-actions { flex-direction: column; }
  .evcal-btn { justify-content: center; }
}
