/* ==========================================
 * talent-kokono.css (栗栖ここの専用：背景色確定版)
 * ========================================== */

.theme-kokono {
    /* 1. 共通ベースCSSが読み込んでいる背景色の「変数」に、画像の色を代入します */
    --current-background-color: #fdfaf2; 
    
    /* 2. テーマカラー（黄色）の設定 */
    --current-theme-color: #ffd700;
}

/* プロフィール項目 */
.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 700;
}

/* ハッシュタグ */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag-item {
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    background: #fff;
}
.tag-item.primary-tag {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--current-theme-color);
    color: #8b7500;
}

/* 三面図の設定（継続：はみ出さず画面に収める） */
.talent-additional-image-wrapper {
    width: 100% !important;
    text-align: center;
    margin: 20px 0 !important;
}

.talent-additional-image-wrapper img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 70vh !important; /* 縦の長さを画面の7割に制限 */
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .talent-additional-image-wrapper img {
        max-height: 50vh !important;
    }
}