/* ========================================
   プロデューサー紹介・誕生秘話セクション（統合版）
   ======================================== */

.section-story {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-xl) 0;
}

/* 統合プロデューサーカード */
.producer-unified {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

/* プロデューサーヒーローセクション */
.producer-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 3px solid var(--primary-color);
}

.producer-image-dynamic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.producer-photo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.character-overlay {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.character-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* プロデューサー情報 */
.producer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.producer-header {
    text-align: left;
    margin-bottom: var(--spacing-xs);
}

.role-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.producer-name {
    font-size: 2.2rem;
    color: var(--dark-bg);
    font-family: var(--font-display);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.character-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 700;
}

/* プロフィールコンテンツ */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.profile-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.profile-intro {
    color: var(--text-muted);
}

.profile-story strong,
.profile-vision strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* 書籍ハイライト（コンパクト版） */
.book-highlight {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #fff9e6, #fff4d6);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.book-cover {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.book-cover:hover {
    transform: scale(1.05) rotate(-2deg);
}

.book-text h4 {
    font-size: 0.9rem;
    color: var(--dark-bg);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.book-role {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.book-badge {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.book-badge i {
    color: #ff6b6b;
    animation: fire 1.5s ease-in-out infinite;
}

@keyframes fire {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* 哲学ボックス */
.philosophy-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.philosophy-quote {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.philosophy-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* 朝活統合セクション */
.morning-activity-unified {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
}

.activity-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
}

.members-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.member-block {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.member-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.member-nickname {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
}

.member-story {
    color: var(--text-dark);
}

/* 業界変革者 */
.industry-changers {
    background: rgba(212, 175, 55, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
}

.industry-changers h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.changers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.changer-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.changer-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.changer-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* コミュニティ文化 */
.community-culture {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    color: white;
}

.community-culture h4 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.culture-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.culture-item {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.culture-item i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.culture-item h5 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.culture-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.culture-message {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: var(--spacing-lg);
}

.culture-message strong {
    font-size: 1.3rem;
    color: #ffd43b;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .producer-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .producer-image-dynamic {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .character-overlay {
        top: -10px;
        right: -10px;
        width: 70px;
        height: 70px;
    }
    
    .producer-name {
        font-size: 1.6rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .book-highlight {
        margin: 0 auto;
        max-width: 250px;
    }
    
    .book-cover {
        max-width: 150px;
    }
    
    .book-text h4 {
        font-size: 0.85rem;
    }
    
    .members-row {
        grid-template-columns: 1fr;
    }
    
    .activity-title {
        font-size: 1.3rem;
    }
    
    .member-block {
        font-size: 0.95rem;
    }
    
    .changers-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-highlights {
        grid-template-columns: 1fr;
    }
}
.industry-changers {
    background: rgba(212, 175, 55, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
}

.industry-changers h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.changers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.changer-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.changer-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.changer-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* コミュニティ文化 */
.community-culture {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    color: white;
}

.community-culture h4 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.culture-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.culture-item {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.culture-item i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.culture-item h5 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.culture-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.culture-message {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: var(--spacing-lg);
}

.culture-message strong {
    font-size: 1.3rem;
    color: #ffd43b;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .producer-intro {
        grid-template-columns: 1fr;
    }
    
    .producer-badge {
        bottom: -10px;
        right: 10px;
        width: 80px;
        height: 80px;
    }
    
    .producer-title h2 {
        font-size: 1.8rem;
    }
    
    .book-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .book-showcase img {
        margin: 0 auto;
    }
    
    .member-item {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .changers-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-highlights {
        grid-template-columns: 1fr;
    }
}
