.work p {
    font-size: 16px;
    font-weight: bold;
    margin-left: 40px;
}

.works-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* アイテム間のスペース */
    margin-left: 40px;
}

.work-item {
    flex: 1 1 300px; /* 最小300pxで、空きがあれば広がる */
    max-width: 400px; /* 横幅が広がりすぎないように制限 */
    aspect-ratio: 16 / 9; /* iframeの比率維持 */
    position: relative;
}

.work-item iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media screen and (max-width: 768px) {
    .works-category {
        margin-left: -5px;
    }
    .work-item iframe {
        position: absolute;
        width: 90%;
        height: 90%;
        border: none;
        border-radius: 12px;
    }
}