/* 特集記事用の追加スタイル */
.article-content h2 {
    border-left: 5px solid #a3e635;
    padding-left: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #14532d;
}
.event-card {
    transition: all 0.3s ease;
}
.event-card:hover {
    box-shadow: 0 15px 30px -10px rgba(20, 83, 45, 0.1);
}
.sticky-sidebar {
    position: sticky;
    top: 5rem;
}

/* リッチエディタ（.rich-text）内のリスト表示を強制的に装飾 */
.rich-text ul {
    list-style-type: disc !important;     /* list-disc 相当 */
    list-style-position: inside !important; /* list-inside 相当 */
    padding-left: 0.5rem !important;      /* pl-2 相当 */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;                       /* text-gray-700 相当 */
}

.rich-text li {
    margin-top: 0.25rem;                  /* space-y-1 相当 */
    font-size: 0.875rem;                  /* text-sm 相当 */
    line-height: 1.5;
}