        /* このページ専用のスタイル */
        .about-container {
            max-width: 800px;
            text-align: left;
            line-height: 1.8;
        }
        
        /* ▼▼▼ ここから追加 ▼▼▼ */
        .logo-container {
            text-align: center; /* 画像を中央に配置 */
            margin-bottom: 20px; /* h1との間に余白を設ける */
        }
        .logo-container img {
            max-width: 250px; /* 画像の最大幅を指定 */
            height: auto;     /* 高さは自動で調整 */
        }
        /* ▲▲▲ ここまで追加 ▲▲▲ */

        .about-container h1 {
            margin-bottom: 50px;
        }
        .about-container h2 {
            color: #00BFFF;
            border-bottom: 2px solid #00BFFF;
            padding-bottom: 10px;
            margin-top: 40px;
            margin-bottom: 20px;
        }
        .about-container p {
            margin-bottom: 1.5em;
            color: #333;
        }
        .catch-copy {
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
            color: #009ACD;
        }
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        .feature-list li {
            background-color: #f8f9fa;
            border-left: 5px solid #00BFFF;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
        }
        .feature-list strong {
            display: block;
            margin-bottom: 5px;
            color: #007bff;
        }