
        .other-content {
            max-width: 1500px; /* 修正した */
            margin: 0 auto; /* 上下0 | 左右auto */
        }

        p img {
          max-width:100%;
        }

        .content-wrapper {
            background: white;
            /* border: 6px solid #dc3545; */ /* 枠の太さと色 */
            border: 6px solid #ffb6c1; /* 枠の太さと色 */ /* 修正した */
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-height: 2100px; /* 修正した */
        }

        .layout {
            display: grid;
            grid-template-columns: 260px 1fr; /* 修正した */
            gap: 9px;
            align-items: start;
        }

        /* サイドバー（アーカイブ）スタイル */
        .sidebar {
            border-right: 1px solid #ddd;
            padding-right: 12px;
        }

        .archive-list {
            list-style: none;
        }

        .archive-item {
            margin-bottom: 8px;
            padding: 8px 0;
            border-bottom: 1px dotted #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .archive-item:hover {
            background: #f8f9fa; /* 修正しなくてよい */
            padding-left: 10px;
            border-left: 3px solid #ffb6c1; /* 修正した */
        }

        .archive-item:last-child {
            border-bottom: none;
        }

        .archive-date {
            font-size: 18px;
            color: #666;
            font-weight: normal;
        }

        .archive-count {
            font-size: 12px;
            color: #666;
            margin-left: 5px;
        }

        /* メインコンテンツスタイル */
        .main-content {
            padding-left: 11px;
        }

        .news-article {
            line-height: 1.8;
            font-size: 18px;
         /*   text-align: left; */
        }

        .news-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .news-title {
            color: #333;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .news-content {
            color: #333;
            font-size: 14px;
            line-height: 1.7;
        }

        /* アクティブ状態 */
        .archive-item.active {
            background: #fff6f3; /* 薄くした色で修正する */
            border-left: 3px solid #ffb6c1; /* 修正した */
            padding-left: 10px;
            font-weight: bold;
        }

        .archive-item.active .archive-date {
            color: #ffb6c1; /* 修正した */
        }

        /* レスポンシブデザイン */
/*
        @media (max-width: 768px) {
            .layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sidebar {
                border-right: none;
                border-bottom: 1px solid #ddd;
                padding-right: 0;
                padding-bottom: 20px;
            }

            .main-content {
                padding-left: 0;
            }

            .content-wrapper {
                padding: 20px;
            }

            .archive-list {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }

            .archive-item {
                background: #f8f9fa; /* ここは修正しなくてよい */
                padding: 8px 12px;
                border-radius: 15px;
                border-bottom: none;
                margin-bottom: 0;
                font-size: 12px;
            }

            .archive-item:hover {
                padding-left: 12px;
                border-left: none;
            }
        }
*/
        /* アニメーション */
/*
        .content-wrapper {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
*/
        /* ホバー効果の追加 */
        .news-article {
            min-height: 540px; /* 追加した 縦サイズ調整用*/
            transition: all 0.3s ease;
        }

        .news-article:hover {
            transform: translateX(0px);
        }