
/*====================================================
//// id video
====================================================*/
.page_title-head {
    padding: .8em 0;
}
.video-inner {
    padding-top: min(5vw, 30px);
}
.video-head-wrapper {
    margin: 0 auto min(7vw, 37px);
    width: min(85%, 780px);
}
.video-normal-head-wrapper {
    margin-top: min(12vw, 80px);
}
.video-head {
    background-color: var(--color_1);
    border-radius: 2em;
    color: #fff;
    font-weight: 900;
    letter-spacing: .1em;
    padding: .2em .5em;
    text-align: center;
}

/* ショート動画 */
.video-short-wrapper {
    display: grid;
        column-gap: min(3vw, 20px);
        row-gap: min(8vw, 50px);
}
.video-short-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
}

/* 通常動画 */
.video-normal-wrapper {
    display: grid;
        gap: min(6vw, 40px);
}
.video-normal-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}
.video-normal-frame iframe {
    position: absolute;
        top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* 共通テキスト */
.video-item-text {
    margin-top: .8em;
}
.video-item-title {
    font-weight: 700;
    line-height: 1.4;
}
.video-item-date {
    color: var(--color_1);
    font-size: .7em;
    margin-top: .3em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
    .video-head {
        font-size: min(5.5vw, 3rem);
    }
    .video-short-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .video-normal-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    .video-head {
        font-size: min(4vw, 4rem);
    }
    .video-short-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
    .video-normal-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width:1040px) {
}

@media (hover: hover) {}
