:root {
    --main-color: #99293d;
    --text-color: rgb(44, 44, 44);
}

body {
    margin: 0 auto;
    font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    color: var(--text-color);
}

html {
    height: 100%;
    margin: 0;
}

body {
    height: 100%;
    margin: 0;
}

#map {
    width: 100%;
    height: 100%;
    margin: auto;
    position: fixed;
    top: 0;
}

h1 {
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    color: #ffffff;
    background-color: var(--main-color);
    font-size: 1.2rem;
    z-index: 10;
    position: relative;
}

.maplibregl-marker {
    width: 49px;
    height: 49px;
    top: -40px;
    cursor: pointer;
}

#spot-area {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(0, 0, 0, 0.6);
    opacity: 0;
    z-index: 0;
    display: none;
}

#spot-area.is-active {
    opacity: 1;
    z-index: 7;
    display: block;
}

#spot-area img {
    display: block;
    width: 60%;
    margin: 80px auto 0;
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 1.5rem;
    }

    #spot-area img {
        width: 80%;
        margin: 30vh auto;
    }
}