:root {
      --bg: #f5f7fb;
      --card-bg: #ffffff;
      --accent: #2f6feb;
      --accent-soft: #e3ecff;
      --text-main: #1f2933;
      --text-sub: #6b7280;
      --border-soft: #e5e7eb;
      --radius-lg: 16px;
      --radius-md: 10px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Helvetica Neue", Arial, "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN",
        "Meiryo", sans-serif;
      background: radial-gradient(circle at top left, #eef3ff 0, #f5f7fb 40%, #f9fafb 100%);
      color: var(--text-main);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .header {
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1040px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: linear-gradient(135deg, #2f6feb, #4f46e5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    }

    .logo-text-main {
      font-weight: 700;
      letter-spacing: 0.03em;
      font-size: 18px;
    }

    .logo-text-sub {
      font-size: 11px;
      color: var(--text-sub);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: var(--text-sub);
    }

    .header-pill {
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.35);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .header-pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    .main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 16px 40px;
    }

    .shell {
      width: 100%;
      max-width: 1040px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 28px;
      box-shadow: var(--shadow-soft);
      padding: 32px 28px 30px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      backdrop-filter: blur(12px);
    }

    @media (min-width: 900px) {
      .shell {
        padding: 40px 40px 36px;
      }
    }

    .shell-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 32px;
    }

    @media (max-width: 800px) {
      .shell-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(226, 232, 240, 0.8);
      color: var(--text-sub);
      font-size: 11px;
      margin-bottom: 14px;
    }

    .hero-label-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #2f6feb;
    }

    .hero-title {
      font-size: 26px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.02em;
      margin-bottom: 12px;
    }

    @media (min-width: 900px) {
      .hero-title {
        font-size: 30px;
      }
    }

    .hero-sub {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-sub);
      margin-bottom: 20px;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 18px;
    }

    .hero-cta-main {
      padding: 10px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, #2f6feb, #4f46e5);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    }

    .hero-cta-main span.icon {
      font-size: 15px;
    }

    .hero-cta-sub {
      font-size: 12px;
      color: var(--text-sub);
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 6px;
    }

    .hero-badge {
      font-size: 11px;
      padding: 4px 9px;
      border-radius: 999px;
      background: #f3f4ff;
      color: #4b5563;
      border: 1px solid #e5e7eb;
    }

    .hero-note {
      margin-top: 14px;
      font-size: 11px;
      color: var(--text-sub);
    }

    .hero-note strong {
      font-weight: 600;
      color: #374151;
    }

    .right-panel-title {
      font-size: 13px;
      font-weight: 600;
      color: #4b5563;
      margin-bottom: 10px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    @media (max-width: 600px) {
      .entry-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .entry-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 12px 12px 11px;
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      transition: box-shadow 0.18s ease, transform 0.18s ease,
        border-color 0.18s ease, background 0.18s ease;
    }

    .entry-card:hover {
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
      transform: translateY(-1px);
      border-color: rgba(59, 130, 246, 0.55);
      background: #f9fbff;
    }

    .entry-top {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .entry-icon {
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .entry-icon.community {
      background: #e0f2fe;
      color: #0369a1;
    }

    .entry-icon.temple {
      background: #fee2e2;
      color: #b91c1c;
    }

    .entry-icon.hall {
      background: #e0f7f1;
      color: #047857;
    }

    .entry-icon.event {
      background: #fef3c7;
      color: #92400e;
    }

    .entry-title {
      font-size: 13px;
      font-weight: 600;
      color: #111827;
    }

    .entry-tagline {
      font-size: 11px;
      color: var(--text-sub);
    }

    .entry-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 4px;
    }

    .entry-link {
      font-size: 11px;
      color: #2563eb;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .entry-link-arrow {
      font-size: 12px;
    }

    .entry-meta {
      font-size: 10px;
      color: #9ca3af;
    }

    .feature-box {
      margin-top: 4px;
      padding: 10px 11px;
      border-radius: 12px;
      background: #f9fafb;
      border: 1px dashed #d1d5db;
    }

    .feature-title {
      font-size: 11px;
      font-weight: 600;
      color: #4b5563;
      margin-bottom: 6px;
    }

    .feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .feature-pill {
      font-size: 10px;
      padding: 3px 7px;
      border-radius: 999px;
      background: #eef2ff;
      color: #4b5563;
    }

    .footer {
      max-width: 1040px;
      margin: 0 auto;
      padding: 10px 24px 22px;
      font-size: 11px;
      color: #9ca3af;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer a {
      color: #9ca3af;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }


    .notice-box {
  border: 1px solid #e5e7eb;
  padding: 16px 20px;
  border-radius: 6px;
  margin: 28px 0 36px;
  background: #ffffff;
}

.notice-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.notice-list {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.notice-list li {
  margin: 4px 0;
}

