/* A-Frameコンテナ */
#scene-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* background: #000; */
    display: block;
}

/* A-Frame sceneタグ */
a-scene {
    width: 100vw !important;
    height: 100vh !important;
    display: block;
    position: relative; 
}

/* ミニマップコンテナのデザイン */
#streetview-marker-mini-map-container {
    position: absolute; /* A-Frameシーン上に重ねる */
    bottom: 20px; /* 下部に配置 */
    left: 20px; /* 右端に配置 */
    width: 218px; /* コンテナの幅 */
    height: 100px; /* 高さの設定 */
    background: white; /* ミニマップの背景色 */
    border: 2px solid #000000; /* 薄いグレーの枠線 */
    border-radius: 10px; /* 角を丸くする */
    z-index: 1000; /* A-Skyや他の要素より前面に表示 */
    display: block;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2); /* マップを浮かせた見た目にする */
    transition: width 0.7s ease, height 0.7s ease;;
}

/* ホバー時のデザイン */
#streetview-marker-mini-map-container:hover {
    width: 600px; /* コンテナの幅 */
    height: 360px; /* 拡大サイズ */
    box-shadow: 0px 6px 8px rgba(0,0,0,0.4); /* 強調された影 */
}

/* コンパス */
#streetview-compass {
    position: absolute;
    bottom: 130px; /* 下部に配置 */
    right: 10px; /* 右端に配置 */
    width: 50px; /* コンテナの幅 */
    height: auto; /* 高さを自動調整 */
    object-fit: contain; /* プレビューで画像を収める */
}

/* ズームボタンコンテナ */
#streetview-marker-zoom-container {
    position: absolute; /* 必要に応じて位置を調整 */
    bottom: 50px;
    right: 17.5px;
    display: flex;
    flex-direction: column; /* ボタンを縦に並べる */
    background-color: rgb(0, 0, 0);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

/* ズームイン・ズームアウトボタン */
#streetview-marker-zoom-in,
#streetview-marker-zoom-out {
    padding: 7px 10px;
    font-weight: bold;
    font-size: 14px;
    color: #c4c4c4;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    background-color: rgb(0, 0, 0);
    outline: none;
}

/* ズームイン・ズームアウトボタンの境界線 */
#streetview-marker-zoom-in:first-child {
    border-bottom: 1.5px solid #a5a5a5;
}