
.container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 アスペクト比 */
            height: 0;
            overflow: hidden;
            background-color: #000;
            border-radius: 4px;
        }

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

        /* タブレット: 2列 */
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* スマホ: 1列 */
        @media (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
}


/* ----- ▼ 追加：ポートフォリオタブ内3カラム用 ▼ ----- */
/* ボックススタイル */
.work-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-category {
    padding: 0px;
    border-radius: 2.5rem;
    text-align: left;
}

.work-category h4 {
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--theme-color1-default);
    font-size: 2rem;
}

.work-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.work-category ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.work-category ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--theme-color1-default);
}

/* スマホ対応 */
@media only screen and (max-width: 768px) {
    .work-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ----- ▲ ポートフォリオタブ内3カラム用 ここまで ▲ ----- */