@charset "UTF-8";

/* =========================================
   Video Card Component (Featured Layout)
   ========================================= */

.t-home-video-card {
    cursor: pointer;
    display: flex;
    flex-direction: column; /* 基本は縦積み */
}

/* ★PC画面では参考画像のように「左に画像、右にテキスト」のレイアウトにする */
@media screen and (min-width: 800px) {
    .t-home-video-card {
        flex-direction: row;
        align-items: center;
        gap: 60px; /* ★画像とテキストの隙間を広げて余裕を持たせる */
        padding: 0 40px; /* 両サイドに余白をつけて全体を少し内側に寄せる */
        max-width: 1000px; /* ★コンテナの最大幅を制限して、動画が巨大化するのを防ぐ */
        margin: 0 auto; /* 中央に配置 */
    }
    .t-home-video-card__thumb {
        width: 50%; /* ★60%から50%に縮小し、スマートなサイズ感に */
        flex-shrink: 0;
    }
    .t-home-video-card__info {
        width: 50%; /* 残りの50%をテキストエリアに */
        margin-top: 0;
        text-align: left; 
    }
}

.t-home-video-card__thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.t-home-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.t-home-video-card:hover .t-home-video-card__thumb img {
    transform: scale(1.05);
}

/* グラデーション再生ボタン */
.t-home-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff59ee 0%, #eeff2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 89, 238, 0.3);
    transition: transform 0.3s ease;
}

.t-home-video-card:hover .t-home-video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* 動画テキスト情報 */
.t-home-video-card__info {
    margin-top: 24px;
}

.t-home-video-card__badge {
    display: inline-block;
    color: #ff59ee;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.t-home-video-card__title {
    font-family: var(--font-family_monbran, sans-serif);
    font-size: 2.8rem; /* PCでは少し大きめに見せる */
    font-weight: 700;
    margin-top: 0;
    line-height: 1.4;
    color: #111111;
}

.t-home-video-card__desc {
    color: #555555;
    margin-top: 16px;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* スマホ用レスポンシブ */
@media screen and (max-width: 799px) {
    .t-home-video-card__info {
        text-align: center; /* スマホでは中央揃え */
    }
    .t-home-video-card__title {
        font-size: 2rem;
    }
}