/* インテリアコーディネーター案内のシンプルスタイル */

.coordinator-guide-simple {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-text-simple {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.guide-text-simple:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: white;
}

.guide-text-simple i {
    color: #fb923c;
    font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .guide-text-simple {
        font-size: clamp(1.2rem, 3vw, 2.2rem);
        padding: 6px 16px;
    }
    
    .guide-text-simple i {
        font-size: clamp(1.2rem, 3vw, 2.2rem);
    }
}