@charset "UTF-8";

/* =========================================
   SNS & MOVIE Section (Timer Sync & Perfect Typography Ver)
   ========================================= */

.t-home-sns-media__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.t-home-sns-media__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(50px, 8vw, 80px);
}

/* --- ヘッダーエリア（タイトルとSNSアイコンの並び） --- */
.t-home-sns-media__top {
    width: 90vw !important; 
    max-width: 720px !important; 
    margin: 0 auto clamp(24px, 4vw, 40px) !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
}

.t-home-sns-media__top .c-section-header { margin-bottom: 0; }

.t-home-sns-media__icons {
    display: flex;
    gap: 16px;
    padding-bottom: 8px; 
}

.t-home-sns-media__icons li { list-style: none; }
.t-home-sns-media__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    background-color: #f2f2f2;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.t-home-sns-media__icons svg { width: 22px; height: 22px; fill: #333; transition: fill 0.3s ease; }
.t-home-sns-media__icons a:hover { transform: translateY(-4px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.t-home-sns-media__icons a.-insta:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.t-home-sns-media__icons a.-x:hover { background-color: #000; }
.t-home-sns-media__icons a.-youtube:hover { background-color: #FF0000; }
.t-home-sns-media__icons a:hover svg { fill: #fff; }

/* --- 左側（上部）：動画カード --- */
.t-home-video-card {
    cursor: pointer;
    width: 90vw !important; 
    max-width: 720px !important; 
    margin: 0 auto !important;
}

.t-home-video-card__thumb {
    position: relative;
    /* border-radius: 16px; */
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
}

.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: clamp(50px, 10vw, 80px);
    height: clamp(50px, 10vw, 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__play svg,
.t-home-video-card__play img {
    width: 35%;
    height: auto;
}

.t-home-video-card:hover .t-home-video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.t-home-video-card__info {
    margin-top: clamp(16px, 3vw, 24px);
}

/* --- 動画情報エリア（行間・余白の調整） --- */
.t-home-video-card__badge {
    color: #ff59ee;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: 0.1em;
    display: inline-block;
}


.t-home-video-card__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem); /* ← ここを少し小さく上品なサイズに変更しました */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: clamp(12px, 3vw, 20px); 
    line-height: 1.4;
    color: #333;
}

.t-home-video-card__desc {
    color: #666;
    margin-top: 0;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 2.2; 
    letter-spacing: 0.04em;
}

/* --- 右側（下部）：Instagram --- */
.t-home-sns-media__insta {
    min-width: 0; 
    width: 90vw !important; 
    max-width: 720px !important; 
    margin: 0 auto !important;
}

.t-home-sns-media__insta-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.t-home-insta__account {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    color: #00376b;
    text-decoration: none;
    font-weight: 700;
}

.t-home-insta__account img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* 横スクロール用のリスト設定 */
.t-home-insta__list.-horizontal {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
}

.t-home-insta__list.-horizontal::-webkit-scrollbar { height: 6px; }
.t-home-insta__list.-horizontal::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.t-home-insta__list.-horizontal::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
.t-home-insta__list.-horizontal::-webkit-scrollbar-thumb:hover { background: #ff59ee; }

/* インスタカードの幅固定 */
.t-home-insta-card {
    flex: 0 0 280px; 
    width: 280px;
    scroll-snap-align: start; 
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
}

.t-home-insta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.t-home-insta-card__header { display: flex; align-items: center; padding: 14px 16px; gap: 12px; }
.t-home-insta-card__icon { width: 32px; height: 32px; border-radius: 50%; padding: 2px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.t-home-insta-card__icon img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid #fff; object-fit: cover; }
.t-home-insta-card__name { font-size: 14px; font-weight: 600; color: #262626; flex-grow: 1; }
.t-home-insta-card__media { position: relative; width: 100%; aspect-ratio: 1 / 1; background: #fafafa; }
.t-home-insta-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t-home-insta-card__actions { padding: 12px 16px 0; display: flex; justify-content: space-between; align-items: center; }
.t-home-insta-card__actions-left { display: flex; gap: 16px; }
.t-home-insta-card__btn { background: none; border: none; cursor: pointer; padding: 0; }
.t-home-insta-card__btn svg { width: 24px; height: 24px; fill: #262626; transition: fill 0.2s, transform 0.2s; }
.t-home-insta-card__btn:hover svg { fill: #8e8e8e; transform: scale(1.1); }
.t-home-insta-card__btn.-like:hover svg { fill: #ed4956; }
.t-home-insta-card__body { padding: 0 16px 16px; }
.t-home-insta-card__likes { font-size: 14px; font-weight: 600; color: #262626; margin: 10px 0 8px; display: block; }
.t-home-insta-card__caption { font-size: 14px; line-height: 1.5; color: #262626; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.t-home-insta-card__caption-name { font-weight: 600; margin-right: 5px; }
.t-home-insta-card__date { display: block; margin-top: 10px; font-size: 11px; color: #8e8e8e; text-transform: uppercase; letter-spacing: 0.05em; }



/* =========================================
   PC/スマホ テキスト切り替え専用クラス
   ========================================= */

/* ★修正：CMSの強制ブロック化を解除して、デスクトップの不要な改行を防ぐ */
.t-home-countdown__target span.pc-space {
    display: inline !important;
    width: auto !important;
    margin: 0 !important;
}

/* PC・タブレット共通：スマホ専用改行を隠す */
.sp-br {
    display: none !important;
}

/* スマホビュー（799px以下）の設定 */
@media screen and (max-width: 799px) {
    .sp-br {
        display: inline !important;
    }
    .t-home-countdown__target span.pc-space {
        display: none !important;
    }
    .t-home-sns-media__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .t-home-sns-media__icons {
        padding-bottom: 0;
    }
    .t-home-insta-card {
        flex: 0 0 85%;
        width: 85%;
    }
}