body {
            margin: 0;
            padding: 0;
            font-family: 'メイリオ', Meiryo, sans-serif; /* フォントをメイリオに変更 */
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        .container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1000px;
            padding: 20px; */
        }
        .section {
            box-sizing: border-box;
            padding: 10px;
        }
        .section.left {
            flex: 1 1 50%; /* 遺言信託セクションの幅を少し狭くする */
        }
        .section.right {
            flex: 1 1 50%; /* 特徴セクションの幅を少し広くする */
        }
        .section h1 {
            background-color: #e60012;
            color: #fff;
            font-weight: bold;
            padding: 10px;
            position: relative;
            text-align: center;
            margin: 0;
            font-size: 18px; /* 文字サイズを小さくする */
        }
        .section h1::before, .section h1::after {
            content: '';
            display: block;
            width: 20px;
            height: 100%;
            background-color: #ffcc00;
            position: absolute;
            top: 0;
        }
        .section h1::before {
            left: 0;
        }
        .section h1::after {
            right: 0;
        }
        .section p {
            background-color: #fff;
            color: #000;
            padding: 10px;
            margin: 0;
            text-align: left; /* テキストを左揃えにする */
        }
        .banner-content {
            display: flex;
            align-items: flex-start; /* contentを左揃えにする */
            background-color: #fff;
            color: #000;
            padding: 10px;
            position: relative;
            justify-content: flex-start; /* contentを左揃えにする */
        }
        .banner-content .title {
            background-color: #ffcc00;
            color: #000;
            padding: 5px 10px;
            font-weight: bold;
            position: relative;
            white-space: nowrap; /* タイトルが縦書きにならないようにする */
        }
        .banner-content .title::after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #ffcc00;
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
        }
        .banner-content .content {
            margin-left: 10px;
            text-align: left; /* contentのテキストを左揃えにする */
        }
        .banner-content .content ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .banner-content .content ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }
        .banner-content .content ul li::before {
            content: '●';
            color: red;
            position: absolute;
            left: 0;
            top: 0;
        }
        @media (max-width: 600px) {
            .section {
                flex: 1 1 100%;
                border: none;
            }
            .banner-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .banner-content .content {
                margin-left: 0;
                margin-top: 10px;
                text-align: left;
            }
        }