/* =============================================
   GyalComic レビュー表示用CSS
   ============================================= */

/* --- レビューカード全体 --- */
.gc-review {
    margin: 2rem 0;
    font-size: 15px;
    line-height: 1.7;
}

/* --- 作品ヘッダー --- */
.gc-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.gc-header__thumb {
    width: 100px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.gc-header__title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 4px;
}

.gc-header__meta {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px;
}

.gc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.gc-tag {
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    color: #555;
    background: #f8f8f8;
}

/* --- セクション共通 --- */
.gc-section {
    margin-bottom: 1.8rem;
}

.gc-section__title {
    font-size: 13px;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid #eee;
}

/* --- 数直線チャート --- */
.gc-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gc-chart__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.gc-chart__labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.gc-chart__track {
    position: relative;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.gc-chart__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #e8c4d8, #c9698f);
    pointer-events: none;
}

.gc-chart__dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c9698f;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* スクリーンリーダー用テキスト */
.gc-chart__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* --- テキストブロック --- */
.gc-text {
    background: #fafafa;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.75;
    color: #333;
}

/* --- 良い点・惜しい点 --- */
.gc-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .gc-proscons {
        grid-template-columns: 1fr;
    }
}

.gc-pros {
    border-left: 3px solid #4caf82;
    padding-left: 12px;
}

.gc-cons {
    border-left: 3px solid #e07060;
    padding-left: 12px;
}

.gc-pros__head {
    font-size: 13px;
    font-weight: bold;
    color: #2e7d5a;
    margin-bottom: 6px;
}

.gc-cons__head {
    font-size: 13px;
    font-weight: bold;
    color: #b04030;
    margin-bottom: 6px;
}

.gc-proscons__text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

/* --- おすすめタグ --- */
.gc-recommend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gc-recommend__chip {
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #fdf0f5;
    border: 1px solid #e8b4c8;
    color: #a04060;
}

/* --- 購入ボタン --- */
.gc-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.gc-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}

.gc-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.gc-btn--fanza {
    background: #e8365d;
    color: #fff;
    border: none;
}

.gc-btn--dlsite {
    background: #3a7bd5;
    color: #fff;
    border: none;
}

/* --- アフィリエイト表示 --- */
.gc-affi-note {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
}

/* --- 区切り線 --- */
.gc-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}
