        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h2 {
            text-align: center;
            font-size: 28px;
            margin-bottom: 10px;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #0066cc; /* コーポレートカラー */
        }

        .section-desc {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
        }

        /* 2. 動画のレスポンシブ対応 (16:9を維持する設定) */
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 の比率 */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            background-color: #000;
        }

        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 3. メインの会社紹介動画セクション */
        .main-video-section {
            margin-bottom: 60px;
        }

        /* 4. インタビュー動画セクション（グリッド配置） */
        .interview-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 横に2つ並べる */
            gap: 30px; /* 動画同士の間隔 */
            margin-top: 20px;
        }

        .interview-card {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .interview-info {
            margin-top: 15px;
        }

        .interview-name {
            font-weight: bold;
            font-size: 18px;
            margin: 0 0 5px 0;
        }

        .interview-dept {
            font-size: 14px;
            color: #777;
            margin: 0 0 10px 0;
        }

        .interview-text {
            font-size: 14px;
            margin: 0;
            color: #444;
        }

        /* 5. スマートフォン用の表示調整 */
        @media (max-width: 768px) {
            .interview-grid {
                grid-template-columns: 1fr; /* スマホでは縦に1つずつ並べる */
                gap: 20px;
            }
            h2 {
                font-size: 22px;
            }
        }
