
#map {
    margin-top: 3em;
    margin-left: 5%;
    height: 400px;
    width: 90%;
}
/* ローディング画面 */
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    opacity: 0.8;
    background-color: #fff;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    }
    .loaded {
    opacity: 0;
    visibility: hidden;
    }
    .spinner {
    width: 100px;
    height: 100px;
    margin: 200px auto;
    background-color: #ddd;
    border-radius: 100%;
    animation: sk-scaleout 1.0s infinite ease-in-out;
    }
    /* ローディングアニメーション */
    @keyframes sk-scaleout {
    0% {
        transform: scale(0);
    } 100% {
        transform: scale(1.0);
        opacity: 0;
    }
}	

/* table */
table {
	width:90%;
    margin-left: 5%;
	border-collapse:  collapse;
	font-size: 0.9em;
}
td, th {
	border: solid 1px #ccc;
	padding: 3px 5px;
}
th {
	background-color: #d3dff7;
	font-weight: normal;
    text-align: center;
}

/* 20210831 */
.bishop-link {
	background-color: #0068b6;
	max-width: 35%;
	margin: 0 30%;
	display: block;
	text-align:center;
}

.txt-center {
	display: block;
	text-align:center;
}

.bishop-link img {
	padding: 5px;
	width: 50%;
	height: auto;
}

@media only screen and (max-width: 767px) {
	.bishop-link {
		background-color: #0068b6;
		max-width: 95%;
		margin: 2em 2.5% 0 2.5%;
		display: block;
		text-align:center;
	}
	
	.bishop-link img {
		padding: 5px;
		width: 50%;
		height: auto;
	}
}