/* ==========================================
 * talent-rirumu.css (天瀬リルム専用：背景色指定版)
 * ========================================== */

 .theme-rirumu {
    /* 背景色：お送りいただいた画像の淡いミント系ホワイト */
    --current-background-color: #f2f8f5; 
    
    /* テーマカラー：エメラルドグリーン */
    --current-theme-color: #50c878;
}

/* プロフィール項目 */
.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;
    color: #3d3d3d;
}

/* 三面図の設定 */
.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;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* 背景に合わせて影を少しだけ薄く */
    border: 1px solid rgba(0,0,0,0.05);
}

/* 立ち絵の基本設定 */
.talent-image-wrapper img {
    max-height: 90vh;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .talent-image-wrapper img {
        max-height: 50vh;
    }
}