/* オンボーディングツアー（スポットライト式） */
.tour-mask {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: auto;
}
.tour-spot {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 0 0 9999px rgba(20, 18, 14, 0.72);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 2px solid rgba(212, 168, 83, 0.7);
}
.tour-spot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 14px;
    border: 1px solid rgba(212, 168, 83, 0.35);
    animation: tour-pulse 2s ease-in-out infinite;
}
@keyframes tour-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.04); }
}
.tour-tip {
    position: absolute;
    background: var(--bg-main, #f7f5f0);
    color: var(--text-primary, #1a1a1a);
    border-radius: 16px;
    padding: 18px 20px 16px;
    width: calc(100% - 48px);
    max-width: 360px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', 'Noto Serif JP', sans-serif;
}
.tour-step-label {
    font-size: 11px;
    color: var(--gold, #b8860b);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 500;
}
.tour-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}
.tour-desc {
    font-size: 13px;
    color: var(--text-secondary, #6b6560);
    line-height: 1.6;
    margin-bottom: 14px;
}
.tour-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.tour-dots { display: flex; gap: 5px; }
.tour-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(180, 170, 155, 0.5);
    transition: 0.2s;
}
.tour-dot.active {
    background: var(--gold, #b8860b);
    width: 16px;
    border-radius: 3px;
}
.tour-btns { display: flex; gap: 6px; }
.tour-btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
}
.tour-btn.ghost {
    background: transparent;
    color: var(--text-secondary, #6b6560);
}
.tour-btn.primary {
    background: linear-gradient(135deg, #d4a853 0%, #b8860b 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.18);
}
.tour-skip {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    z-index: 10000;
    backdrop-filter: blur(8px);
    font-family: inherit;
}
