/* 記事アイテム */
        li .cms-loop {
            margin-bottom: 40px;
            border: none;
            border-radius: 8px;
            padding: 20px;
            position: relative;
        }

        /* 記事タイトル */
        .article-title {
            font-size: 24px;
            margin-bottom: 15px;
        }

        /* 記事本文 */
        .article-content {
            position: relative;
            overflow: hidden;
        }

        /* 折りたたまれた状態の記事 */
        .article-content.collapsed {
            max-height: 200px;
        }

        /* フェードアウト効果 */
        .article-content.collapsed::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(rgba(245, 245, 245, 0), rgba(245, 245, 245, 1.0));
            pointer-events: none;
        }

        /* 続きを読むボタン */
        .read-more-btn {
            background-color: #3e3d4e;
			width: 200px;
            color: white;
            border: none;
            border-radius: 5px;
			padding: 10px 0;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            display: block;
            margin: 10px auto;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            background-color: #3570b4;
        }