/* ストリートビュー画面 */
#streetview-container {
    height: 100%;
    width: 100%;
    display: none; /* 初期非表示 */
    position: absolute;
    top: 0;
    left: 0;
}

/* 閉じるボタン */
#close-button {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 26px;
    /* font-weight: 150; */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 閉じるボタン(カーソルON時) */
#close-button:hover {
    background: rgba(40, 40, 40, 0.5);
}