.location-overlay {
    z-index: 10;
    pointer-events: none;
}

.location-overlay * {
    pointer-events: none;
}

/* コンパスの表示 */
.abdo-orientation { 
    position: relative;
    overflow: hidden;
    top: -50%;
    left: -50%;  
    opacity: 1.0; 
    width: 100%;
    height: 100%;
    display: none;
} 

/* コンパスの表示 */
.abdo-orientation::before {  
    background-image: url('../img/orientation.svg');
    background-repeat: no-repeat;
    opacity: 1.0;
    content: "";
    display: block;
    width:100%;
    height:100%;
} 
 

/* 現在地の表示 */
.icon-location {
    /*画像のスタイル*/ 
    background-image: url('../img/location.svg');
    background-repeat: no-repeat;
    position: absolute;
    width: inherit;
    height: inherit;
    top: -50%;
    left: -50%; 

    /*境界のスタイル*/ 
    color: #000000;
    border-radius: 50%;
    border-style: solid;
    border-width: 5%;
    border-color: rgba(0, 200, 0, 0.5); 
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.8);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1) , 0px 0px 4px rgba(0, 0, 0, 1) , 0px 0px 4px rgba(0, 0, 0, 1);
    background-attachment: scroll;
    /*サファリのバッグがあるから下記のスタイルは無効にしました*/
    /*background-color: rgba(255, 255, 255, 0.0);*/
}

.location-accuracy { 
    position: absolute;
    display: inline-block; 
    border-radius: 50%;
    border-style: solid; 
    border-color: rgba(2, 64, 233, 0.7);
    background-color: rgba(2, 64, 233, 0.15); 
}
 

/* 警報の表示 */
.toast-top-middle {
    position:fixed; 
    top:0;
    left: 50%;
    transform: translate(-50%, 0px);
    display: none;
}

/* 避難所の表示とそのアニメーション*/
.dot::before {
    position: inherit;
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: blue;  
    border-radius: 50%; 
    animation-name: burst-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards; 
    animation-timing-function: linear;
}

@keyframes burst-animation { 
    from {
        opacity: 0.7;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.5);
    } 
}

.distance::after {
    display: inline-block;
    width: 100%; 
    content: attr(data-distance); 
    color: blue;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    font-size: calc(2 * (1vw + 1vh - 1vmin));
    text-align: center;
    text-shadow: 1px 0 0 #fff, 0 -1px 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 2px 2px 3px #000;
opacity: 1.0;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
    
}







/* ■■■ボタンデザイン：丸の押し込みボタン■■■ */
/*　現在地の追跡ボタン */
.btn_style_on {
	background-color: #fbeee0;
	border: 2px solid #422800;
	border-radius: 30px;
	box-shadow: #422800 4px 4px 0 0, 5px 10px 10px -3px hsl(200 50% 20% / 70%);
	color: #422800;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	font-size: 18px;
	padding: 5px 5px;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	margin: 0.2em;
	transform: translate(-3px, 0px);
} 
.btn_style_on:hover {
	background-color: #ccff66;
	box-shadow: #422800 4px 4px 0 0, 5px 10px 10px -3px hsl(200 50% 20% / 70%), #b7e55b 0px 0px 0px 7px inset;
}

.btn_style_on:active {
	box-shadow: #422800 1px 1px 0 0;
	transform: translate(0px, 3px);
}
@media (min-width: 768px) {
	.btn_style_on {
	min-width: 120px;
	padding: 5px 25px;
	}
}










.fade-in {
    display: block;  
    animation: fadeIn forwards 0.2s;
}
@keyframes fadeIn {
    0% {opacity:0; transform: translateY(-20px); }
    100% {opacity:1; transform: translateY(0px); }
}

.fade-out {
    animation: fadeOut forwards 0.2s;
}
@keyframes fadeOut {
    0% { 
        opacity:1; 
    }
    100% { 
        opacity:0; 
    }
}


.abdo-modal {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    
    background: rgba(255, 255, 255, 0.5);

    overflow: hidden;
    z-index: 100;
}

.abdo-modal-content {
    width: 100%;
    height: 100%;
}

.abdo-modal-footer {
    min-height: calc(5 * (1vh + 1vw - 1vmin));
}

.abdo-modal-display {
    visibility: visible !important;
}

.abdo-waiting {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;   
    display: none;
    backdrop-filter: blur(10px);
}

.abdo-waiting .lds-ring { 
    position:fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* waiting ring begin */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* waiting ring ends */


/* change progressbar animaton time */
.progress .progress-bar {
    -webkit-transition: width .2s ease;
    -moz-transition: width .2s ease;
    -ms-transition: width .2s ease;
    -o-transition: width .2s ease;
    transition: width .2s ease;
}

.pin .pin-icon { 
    background-image: url('../img/pin.svg'); 
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -100%);
}


.pin .pin-title {
    transform: translate(-50%,-100%);
    white-space: nowrap;
    position: absolute;
    color:white;
    text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.5em black;
}

#overlayList * {
    color:white;
    text-shadow: 1px 1px 0px black, 0 0 2px lightgray;
}


#overlayList h1,h2,h3,h4,h5 {
    text-align: center;
    font-weight: bold;
}

/* center distance column */
#overlayList table td:nth-child(2), th:nth-child(2) {
    text-align: center;
}

a.link-disabled { 
    color: gray;
    pointer-events: none;
}