/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://example.com/
 Description:  GeneratePress �λҥơ���
 Author:       Kitanowaki 
 Template:     generatepress
 Version:      1.0.0
*/

/* 現在地の青丸マーカー */
.leaflet-location-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4285F4;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(66,133,244,0.8);
}

/* 波紋アニメーション */
.leaflet-location-dot .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    margin-top: -7px;
    border-radius: 50%;
    border: 2px solid rgba(66,133,244,0.5);
    animation: ripple 1.5s ease-out infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}