@charset "UTF-8";

/* =========================================
   SNS & MOVIE Section Layout
   ========================================= */

.t-home-sns-media {
    position: relative;
    padding: 10rem 0;
    background-color: #fcfcfc;
}

.t-home-sns-media__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- コンテンツレイアウト（上下分割に一新！） --- */
.t-home-sns-media__grid {
    display: flex;
    flex-direction: column; /* 横並びをやめて縦積みに変更 */
    gap: 80px; /* 動画セクションとInstagramセクションの間の贅沢な余白 */
    width: 100%;
}

.t-home-sns-media__video {
    width: 100%; /* 動画エリアは1200pxの枠内で最大まで広げる */
}

/* ★Instagramエリアを1200pxの枠から突破させて「画面幅いっぱい」にする魔法 */
.t-home-sns-media__insta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}

/* --- ヘッダーエリア（全体配置：PCもスマホも中央揃え！） --- */
.t-home-sns-media__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 40px;*/ /* ★タイトルとSNSアイコンの間の隙間を広げる (30px -> 40px) */
    margin-bottom: 80px; /* ★アイコンと下の動画セクションの間の隙間を大きく取る (80px) */
}

/* =========================================
   エディトリアル（雑誌風）タイトル（中央揃え版）
   ========================================= */
.c-magazine-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

/* 特集番号（ナンバリング） */
.c-magazine-title__num {
    font-family: var(--font-family_outfit, 'Outfit', sans-serif);
    font-size: 3.2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #ff59ee, #fda37f, #eeff2e);
    -webkit-background-clip: text;
    color: transparent;
}

.c-magazine-title__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* メインの英語タイトル */
.c-magazine-title__en {
    font-family: var(--font-family_outfit, 'Outfit', sans-serif);
    font-size: 6.4rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

/* 下部のラインと日本語サブタイトルの並び（縦積みにして線をアクセントに） */
.c-magazine-title__bottom {
    display: flex;
    flex-direction: column-reverse; /* 線が日本語の下にくるように配置 */
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

/* 中央に配置するワンポイントの極細グラデーションライン */
.c-magazine-title__line {
    width: 60px; /* PCでは少し長めに */
    height: 2px;
    background: linear-gradient(90deg, #ff59ee, #eeff2e);
    opacity: 0.8;
}

/* 日本語サブタイトル */
.c-magazine-title__ja {
    font-family: var(--font-family_monbran, sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.15em;
    margin: 0;
    text-align: center;
}

/* --- SNSアイコン（中央に寄せる） --- */
.t-home-sns-media__icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-bottom: 0;
    list-style: none;
    width: 100%;
}

.t-home-sns-media__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 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; }

/* --- スマホ用レスポンシブ --- */
@media screen and (max-width: 799px) {
    .t-home-sns-media { padding: 6rem 0; }
    .t-home-sns-media__grid { grid-template-columns: 1fr; gap: 50px; }
    
    .c-magazine-title__num { font-size: 2.4rem; }
    .c-magazine-title__en { font-size: 4.2rem; }
    
    .c-magazine-title__bottom {
        gap: 1.2rem;
        margin-top: 1rem;
    }
    
    .c-magazine-title__line { width: 40px; } /* スマホでは線を少し短く */
    .c-magazine-title__ja { font-size: 1.2rem; }
}