
/* ▼輸出・国際局関連動画 */
.yukoku_video {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.yukoku_video .buzz_video {
    width: 32.5%;
    margin: 0 0 2em;
}

.v_comment {
    text-align: right;
    position: relative;
    top: -40px;
    margin: 0 0 -20px;
}

.youtube-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    /* お好みの幅に調整してください */
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    margin: 0 0 0.5em;
}

.youtube-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 再生ボタンを中央に配置する装飾 */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    /* background-color: rgba(0, 0, 0, 0.7); */
    background-color: #ff0000;
    border-radius: 14px;
    transition: all 0.3s;
}

.youtube-container:hover .play-button {
    opacity: 0.5;
    /* ホバー時にYouTube赤にする */
}

/* 再生ボタンの中の三角矢印 */
.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.buzz_video a.v_title {
    text-align: left;
}

a.past_video {
    background-color: #007ab8 !important;
    color: #fff;
    text-align: center;
    padding: 0.5em 2em !important;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    margin: -0.5em 0 0 auto !important;
    width: 15em;
}

a.past_video:hover {
    opacity: 0.8;
}

a.past_video:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.5em 0 0.5em 0.8em;
    border-color: transparent transparent transparent #ffffff;
    top: 0.2em;
    position: relative;
    left: -0.5em;
}

/* ▲輸出・国際局関連動画 */

/* -- ▼▼▼スマートフォン▼▼▼ -- */
@media screen and (max-width: 767px) {
    /* -- ▼輸出・国際局関連動画 -- */
    .yukoku_video {
        flex-direction: column;
    }

    .v_comment {
        top: -10px;
        margin: 0;
    }

    .yukoku_video .buzz_video {
        width: 100%;
    }
}
/* -- ▲▲▲スマートフォン▲▲▲ -- */
