.aesthetic-analysis-container {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.aesthetic-analysis-container .analysis-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

/* 非会員向けティーザー表示 */
.analysis-teaser {
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 20px;
}

.aesthetic-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.aesthetic-teaser-item {
    text-align: center;
}

.aesthetic-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

.aesthetic-value {
    font-size: 1.8em;
    font-weight: 700;
    color: #0066cc;
}

.aesthetic-note {
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
}

/* 会員向け詳細表示 */
.aesthetic-categories-chart {
    margin-bottom: 30px;
}

.aesthetic-category-item {
    margin-bottom: 15px;
}

.aesthetic-category-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.aesthetic-category-name {
    font-weight: 600;
    color: #333;
}

.aesthetic-category-score {
    font-weight: 700;
    color: #0066cc;
}

.aesthetic-category-bar {
    height: 12px;
    background-color: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.aesthetic-category-value {
    height: 100%;
    background-color: #0066cc;
    border-radius: 6px;
    transition: width 0.8s ease-in-out;
}

/* カテゴリごとの色分け */
.aesthetic-category-item:nth-child(1) .aesthetic-category-value {
    background-color: #3366cc;
}

.aesthetic-category-item:nth-child(2) .aesthetic-category-value {
    background-color: #dc3912;
}

.aesthetic-category-item:nth-child(3) .aesthetic-category-value {
    background-color: #ff9900;
}

.aesthetic-category-item:nth-child(4) .aesthetic-category-value {
    background-color: #109618;
}

.aesthetic-category-item:nth-child(5) .aesthetic-category-value {
    background-color: #990099;
}

/* 美学的根拠 */
.aesthetic-evidence {
    margin-top: 30px;
    margin-bottom: 25px;
}

.evidence-item {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
}

.evidence-category {
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.evidence-text {
    color: #444;
    line-height: 1.5;
}

/* 特徴キーワード */
.aesthetic-keywords {
    margin-top: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
}

.keywords-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-tag {
    background-color: #e6f2ff;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    display: inline-block;
}

/* カラー調整を適用 */
.evidence-item:nth-child(1) {
    border-left-color: #3366cc;
}

.evidence-item:nth-child(1) .evidence-category {
    color: #3366cc;
}

.evidence-item:nth-child(2) {
    border-left-color: #dc3912;
}

.evidence-item:nth-child(2) .evidence-category {
    color: #dc3912;
}

.evidence-item:nth-child(3) {
    border-left-color: #ff9900;
}

.evidence-item:nth-child(3) .evidence-category {
    color: #ff9900;
}

@media (max-width: 767px) {
    .aesthetic-preview {
        flex-direction: column;
        gap: 15px;
    }
    
    .aesthetic-category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .aesthetic-category-name {
        margin-bottom: 5px;
    }
    
    .keywords-list {
        flex-wrap: wrap;
    }
}