/* 回答一覧専用スタイル */
.answers-header {
    background: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.answers-header .title-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.header-bottom {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.theme-subtitle {
    flex: 1;
}

.answers-header .theme-banner {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: bold;
}

.back-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.answers-full-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.answers-full-section .section-description {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .header-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .back-link {
        width: 100%;
        text-align: center;
    }
    
    .answers-header .title-banner {
        width: 100%;
        height: auto;
    }
    
    .answers-header .theme-banner {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}