     <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 20px;
            color: #333;
            background-color: #f4f4f4;
        }
        .container {
            max-width: 640px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            text-align: center;
            color: #0056b3;
            margin-bottom: 30px;
        }
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); /* 140px以上の幅で自動調整 */
            gap: 10px; /* ロゴ間のスペース */
            justify-items: center; /* グリッドアイテムを中央に配置 */
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 5px;
        }
        .logo-item {
            text-align: center;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f9f9f9;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: transform 0.2s ease-in-out;
        }
        .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo-item img {
            max-width: 120px; /* ロゴ画像の最大幅 */
            height: 65px;
            display: block; /* 中央寄せのためにブロック要素に */
            margin: 0 auto 10px auto; /* 画像の下にスペース */
            border-radius: 3px;
        }
        .logo-item p {
            font-size: 0.5em;
            color: #555;
            margin: 0;
            font-weight: bold;
        }
        .footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.8em;
            color: #777;
        }
    </style>
