@charset "UTF-8";
/*
Theme Name: ゆきプロエンターテイメント - TOPリニューアル完全版
Description: 松竹レッドとゆきプロブルーを基調とした、2026年最新モダンUI
Version: 9.0
*/

/* --- 1. 変数・基本設定 --- */
:root {
    --primary-red: #d9333f;
    --accent-blue: #0056b3;
    --text-main: #333333;
    --text-sub: #666666;
    --bg-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-strong: 0 20px 40px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { box-sizing: border-box; }

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--white);
}

.container { 
    max-width: 1140px; 
    margin: 0 auto !important; 
    padding: 0 24px; 
}

img { max-width: 100%; height: auto; display: block; }
.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- アニメーション --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.active { opacity: 1; transform: translateY(0); }

/* =========================================
   2. ヒーローセクション & ボタン横並び
   ========================================= */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 0.2em;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* ボタンを横に並べるコンテナ */
.btns-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* スマホで入り切らない時は自動で折り返す */
}

.my-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(217, 51, 63, 0.4);
    text-align: center;
}

.my-btn.btn-blue { background: var(--accent-blue); box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4); }

.my-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    background: #222;
}

/* =========================================
   3. 投稿一覧 (News Feed)
   ========================================= */
.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto 0;
}

.yukipro-feed-list {
    border-top: 2px solid var(--accent-blue);
    box-shadow: var(--shadow);
    border-radius: 0 0 12px 12px;
    background: #fff;
}

.yukipro-feed-item a {
    display: flex;
    align-items: center;
    padding: 22px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.yukipro-feed-item a:hover {
    background: #f8fbff;
    padding-left: 35px;
}

.feed-meta {
    min-width: 190px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feed-label {
    background: var(--accent-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
}

.feed-title {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yuki-new {
    background: var(--primary-red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 15px;
}

/* =========================================
   4. タレント一覧 (横並びグリッド)
   ========================================= */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px 30px;
    padding: 40px 0;
}

.talent-card { text-align: center; }
.talent-img-wrapper {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: #eee;
}
.talent-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.talent-card:hover img { transform: scale(1.08); }
.talent-name { font-size: 18px; font-weight: bold; margin-top: 15px; }

/* =========================================
   5. グループ会社 (横並び)
   ========================================= */
.group-section { background: var(--bg-gray); padding: 100px 0; }
.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card {
    flex: 1; min-width: 320px; max-width: 500px;
    background: var(--white); border-radius: 20px; box-shadow: var(--shadow);
    padding: 50px 40px; text-align: center;
}

/* =========================================
   6. タレント詳細 (single-talent.php用)
   ========================================= */
.talent-detail-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}
.talent-detail-visual { flex: 0 0 380px; max-width: 380px; }
.talent-main-img { position: sticky; top: 40px; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-strong); }
.talent-detail-info { flex: 1; max-width: 580px; }
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table th { width: 100px; text-align: left; padding: 15px 0; border-bottom: 1px solid #eee; font-size: 13px; }
.profile-table td { padding: 15px 0 15px 20px; border-bottom: 1px solid #eee; font-weight: 600; }

/* =========================================
   7. スマホ対応 (Mobile Optimization)
   ========================================= */
@media screen and (max-width: 900px) {
    .btns-flex { flex-direction: column; width: 100%; padding: 0 20px; }
    .my-btn { width: 100%; min-width: auto; }
    
    .talent-detail-flex { flex-direction: column; align-items: center; }
    .talent-detail-visual { width: 100%; max-width: 380px; margin-bottom: 40px; }
    .talent-main-img { position: static; }
    
    .yukipro-feed-item a { flex-direction: column; align-items: flex-start; }
    .feed-meta { margin-bottom: 8px; }
    .feed-title { width: 100%; white-space: normal; }
    
    .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 15px; }
    .service-card { min-width: 100%; }
}
/* info-blocks（親要素）を横並びにする設定 */
.info-blocks {
    display: flex;
    justify-content: space-between; /* 均等に間隔を空ける */
    gap: 20px;                      /* カード同士の隙間 */
    flex-wrap: wrap;                /* 画面が狭いときは折り返す（スマホ対応） */
    margin-bottom: 50px;            /* 下のセクションとの余白 */
}

/* 各カードの幅を指定 */
.info-card {
    flex: 1;                        /* 均等な幅にする */
    min-width: 300px;               /* スマホで横幅が狭くなりすぎないように */
    background: #fff;               /* 背景色（必要に応じて変更してください） */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 軽い影をつけるとカードらしくなります */
    text-align: center;             /* 中身を中央寄せ */
}

/* スマホ用の調整（画面幅が768px以下の場合） */
@media (max-width: 768px) {
    .info-blocks {
        flex-direction: column;     /* スマホでは縦に戻す */
    }
    .info-card {
        min-width: 100%;            /* 1カラムにする */
    }
}