html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper,
#map,
.form {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.wrapper {
    position: relative;
}

#map,
.form1 {
    position: absolute;
    top: 0;
    left: 0;
}

.form1 {
    z-index: 100000;
    border-radius: 2px;
    font-family: Roboto;
    font-size: 14px;
    padding: 10px 6px;
    pointer-events: none;
}

.form2 {
    position: absolute;
    bottom: 28px;
    right: 54px;
    z-index: 100000;
    font-family: Roboto;
    font-size: 12px;
    padding: 6px 6px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    color: black;
    pointer-events: none;
}

.form1,
.form2 > * {
    pointer-events: auto;
}

.custom-iconC {
    margin-left: -5px; /* -x */
    margin-top: -5px; /* -y */
}

.custom-iconS {
    margin-left: -6px; /* -x */
    margin-top: -6px; /* -y */
}

/* デフォルトでは凡例を表示 */
.legend {
    padding: 6px;
    font:
        12px Arial,
        Helvetica,
        sans-serif;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    line-height: 18px;
    color: black;
}

/* 画面サイズが小さい場合は非表示 */
@media (max-width: 768px) {
    .legend {
        display: none;
    }
}

/* #overlay {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.4);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 8px #ddd solid;
    border-top: 8px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
} */
