.detail-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.section-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 0.25rem 1rem rgba(15, 23, 42, 0.05);
}

.info-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.35rem;
}

.info-value {
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 0;
    word-break: break-word;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.subtle-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
}

.photo-frame {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.5rem;
    height: 100%;
}

.photo-frame img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
}

.link-button {
    text-decoration: none;
}

.favorite-form {
    display: inline-block;
}

.empty-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 0.9rem;
    color: #64748b;
}

/* 表示用 星評価 */
.star-display {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.star-display .bi-star {
    color: #cbd5e1;
}

/* 入力用 星評価 */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 1.8rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.15s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f59e0b;
}
.star-rating.star-rating-post {
    justify-content: flex-end;
}
.star-rating.star-rating-post label {
    font-size: 1.4rem;
}
