/* ========================================
   インタビューページ専用スタイル
======================================== */

/* ========================================
   監督写真の4つのスタイルパターン
======================================== */

/* パターン1: スタイリッシュ・モダン */
.photo-style-1 {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19a2d  100%);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.2);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.photo-style-1:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 25px 25px 0 rgba(212, 175, 55, 0.3);
}

.photo-style-1 i {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.photo-style-1 .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--spacing-md);
    text-align: left;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-style-1:hover .photo-overlay {
    transform: translateY(0);
}

/* パターン2: アーティスティック・サークル */
.photo-style-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-color) 0%, #8b7355 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(212, 175, 55, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.photo-style-2:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 0 15px rgba(255, 255, 255, 0.15),
        0 0 0 30px rgba(212, 175, 55, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.3);
}

.photo-style-2 i {
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.photo-style-2 .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-style-2:hover .photo-overlay {
    opacity: 1;
}

/* パターン3: エレガント・フレーム */
.photo-style-3 {
    width: 280px;
    height: 380px;
    background: linear-gradient(45deg, #f8f8f8 0%, var(--accent-color) 100%);
    border: 8px solid var(--white);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 2px var(--accent-color);
    transition: all 0.3s ease;
}

.photo-style-3:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px var(--accent-hover);
}

.photo-style-3::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed var(--accent-color);
    border-radius: 8px;
    opacity: 0.5;
}

.photo-style-3 i {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    z-index: 2;
}

.photo-style-3 .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.photo-style-3:hover .photo-overlay {
    opacity: 1;
}

/* パターン4: ミニマル・シンプル */
.photo-style-4 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border: 2px solid var(--primary-color);
    transition: all 0.2s ease;
}

.photo-style-4:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.photo-style-4 i {
    font-size: 3.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.photo-style-4 .photo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.photo-style-4:hover .photo-overlay {
    transform: translateX(0);
}

/* ナビゲーションロゴのリンク */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    opacity: 0.8;
}

/* インタビューヒーロー */
.interview-hero {
    padding: 120px 0 var(--spacing-xxl);
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.interview-hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.director-photo {
    position: relative;
}

.director-photo-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    display: block;
}

.photo-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), #e6c754);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: var(--spacing-sm);
    text-align: center;
    font-size: 0.8rem;
}

.director-info .director-name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.director-info .director-role {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.director-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.director-tags .tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.director-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: var(--spacing-lg);
}

/* インタビューコンテンツ */
.interview-content-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.interview-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

.interview-intro {
    margin-bottom: var(--spacing-xxl);
    padding-bottom: var(--spacing-lg);
    position: relative;
}

.interview-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.interview-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.interview-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

.interview-intro .interview-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
    text-align: center;
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
    font-style: italic;
}

/* Q&Aセクション */
.qa-section {
    margin-bottom: var(--spacing-xxl);
}

.question {
    margin-bottom: var(--spacing-lg);
}

.question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.6;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-light);
}

.question i {
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
}

.answer {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
}

.answer::before {
    content: '';
    position: absolute;
    top: -8px;
    left: var(--spacing-lg);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-color);
}

.answer::after {
    content: '';
    position: absolute;
    top: -7px;
    left: var(--spacing-lg);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.answer p:last-child {
    margin-bottom: 0;
}

.answer strong {
    color: var(--accent-color);
    font-weight: 600;
}

.quote-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* インタビューフッター */
.interview-footer {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background: var(--secondary-color);
    border-radius: 15px;
}

.footer-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.filmography {
    list-style: none;
}

.filmography li {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.filmography li::before {
    content: '🎬';
    position: absolute;
    left: 0;
    top: 0;
}

/* ナビゲーションボタン */
.navigation-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: var(--spacing-xxl);
    gap: var(--spacing-md);
}

.btn-back,
.btn-next {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-back {
    background: var(--secondary-color);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-back:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-next {
    background: var(--accent-color);
    color: var(--white);
}

.btn-next:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .interview-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .director-photo-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .photo-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* 4つのスタイルパターンのレスポンシブ対応 */
    .photo-style-1 {
        width: 250px;
        height: 320px;
        box-shadow: 15px 15px 0 rgba(212, 175, 55, 0.2);
    }
    
    .photo-style-2 {
        width: 260px;
        height: 260px;
    }
    
    .photo-style-3 {
        width: 240px;
        height: 320px;
    }
    
    .photo-style-4 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .interview-hero {
        padding: 100px 0 var(--spacing-lg);
    }
    
    .director-photo-image {
        width: 200px;
        height: 200px;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    /* モバイル用4パターン調整 */
    .photo-style-1 {
        width: 200px;
        height: 260px;
        box-shadow: 10px 10px 0 rgba(212, 175, 55, 0.2);
        transform: rotate(-1deg);
    }
    
    .photo-style-2 {
        width: 220px;
        height: 220px;
    }
    
    .photo-style-2 i {
        font-size: 4rem;
    }
    
    .photo-style-3 {
        width: 200px;
        height: 260px;
        border: 6px solid var(--white);
    }
    
    .photo-style-4 {
        width: 200px;
        height: 200px;
    }
    
    .interview-content-section {
        padding: var(--spacing-lg) 0;
    }
    
    .question h3 {
        font-size: 1.1rem;
        padding: var(--spacing-md);
    }
    
    .answer {
        padding: var(--spacing-md);
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .btn-back,
    .btn-next {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .interview-hero {
        padding: 100px 0 var(--spacing-md);
    }
    
    .director-info .director-name {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .director-info .director-role {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .director-tags {
        justify-content: center;
        gap: var(--spacing-xs);
    }
    
    .director-tags .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .director-bio {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .interview-intro h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        text-align: center;
    }
    
    .interview-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .question h3 {
        font-size: 1rem;
        line-height: 1.4;
        padding: var(--spacing-sm);
    }
    
    .answer {
        padding: var(--spacing-sm);
    }
    
    .answer p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .navigation-buttons {
        gap: var(--spacing-sm);
    }
    
    .btn-back,
    .btn-next {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* 監督写真をスマホで大きく、カッコよく */
    .interview-hero-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .director-photo {
        order: 1;
        margin: 0 auto;
    }
    
    .director-photo-image {
        width: 280px;
        height: 280px;
        border-radius: 25px;
        box-shadow: 
            0 20px 40px rgba(212, 175, 55, 0.3),
            0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .photo-placeholder {
        width: 280px;
        height: 280px;
        border-radius: 25px;
        font-size: 5rem;
        background: linear-gradient(135deg, var(--accent-color) 0%, #f4d03f  50%, var(--accent-color) 100%);
        box-shadow: 
            0 20px 40px rgba(212, 175, 55, 0.3),
            0 10px 20px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .photo-placeholder::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        pointer-events: none;
    }
    
    .director-info {
        order: 2;
    }
    
    /* フッター修正 */
    .footer-content {
        gap: var(--spacing-sm);
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-xxs);
    }
    
    .ofs-website a {
        font-size: 0.8rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xxs);
    }
    
    .sns-links li a {
        font-size: 0.8rem;
    }
    
    .sns-links i {
        font-size: 1rem;
        width: 16px;
    }
}

/* アニメーション */
.interview-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.qa-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.qa-section:nth-child(2) { animation-delay: 0.1s; }
.qa-section:nth-child(3) { animation-delay: 0.2s; }
.qa-section:nth-child(4) { animation-delay: 0.3s; }
.qa-section:nth-child(5) { animation-delay: 0.4s; }

.navigation-buttons {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* ホバーエフェクト */
.question h3 {
    transition: all 0.3s ease;
}

.qa-section:hover .question h3 {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.answer {
    transition: all 0.3s ease;
}

.qa-section:hover .answer {
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}