@charset "UTF-8";

        /* --- ここからアコーディオン用CSS --- */

        /* アコーディオンのトリガー (年度) */
        .p-support_info__past .green-txt.accordion-trigger {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            /* font-size: 1.25rem; */ /* 少し大きく */
            /* padding: 0.5rem 0; */
        }

        /* 開閉インジケーター (＋記号) */
        .accordion-trigger::after {
            content: '＋';
            font-weight: bold;
            color: #333;
            transition: transform 0.3s ease;
        }

        /* active状態のインジケーター (－記号) */
        .accordion-trigger.active::after {
            content: '−';
            transform: rotate(180deg); /* アニメーション用 */
        }

        /* アコーディオンのコンテンツ (講演内容) */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-left: 1rem; /* 少しインデント */
        }
        
        /* active状態のコンテンツ (開く) */
        .accordion-trigger.active + .accordion-content {
            /* JavaScript側でセットすることも可能だが、CSSで大きな値を指定する方が簡単 */
            max-height: 4000px; /* 内容に応じて十分な高さを確保 */
            transition: max-height 0.5s ease-in;
        }

        /* 講演内容の段落のスタイル */
        .accordion-content p {
            margin: 0.75rem 0;
        }