/* ===== ラッパー ===== */
.fanza-article-wrapper {
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* ===== サムネイルセクション ===== */
.fanza-thumbnail-section {
    text-align: center;
    margin-bottom: 40px;
    /* タイトルセクションと同じスタイルを適用 */
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0a0e27 100%);
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 50px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 10px, #eee, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4), inset 0 0 20px rgba(14, 165, 233, 0.2);
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.fanza-thumbnail-wrapper {
    display: inline-block;
    max-width: 100%;
}

.fanza-thumbnail-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.fanza-actress-profile-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.fanza-actress-summary {
    width: 100%;
}

/* ===== 略歴セクション ===== */
.fanza-actress-bio {
    margin-top: 30px;
    margin-bottom: 30px;
}

.fanza-actress-bio h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    /* 色と下線はfrontend-display.phpで動的に設定 */
}

.bio-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff !important; /* テキスト色を白に固定 */
}

/* ===== テーブルスタイル ===== */
.fanza-actress-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.fanza-actress-table th, .fanza-actress-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.fanza-actress-table th {
    background: #f9fafb;
    width: 30%;
    font-weight: bold;
    color: #4b5563;
}

/* ===== 作品カード ===== */
.fanza-actress-works-section {
    margin-top: 40px;
}

.fanza-actress-works-section h3 {
    font-size: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.fanza-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.fanza-work-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

.fanza-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fanza-work-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-image img {
    width: 100%;
    height: auto;
    display: block;
}

.work-title {
    padding: 10px;
    font-size: 12px;
    line-height: 1.4;
    height: 3.6em; /* 3行分 */
    overflow: hidden;
}

/* v1.0.74: Add white background to bio content */
.bio-content {
    background-color: #ffffff !important;
    padding: 20px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    color: #333 !important;
    border: 1px solid #eee !important;
}
