/* 情報詳細画面 */
#vr-streetview-marker-info {
    position: fixed;
    top: 0;
    left: -400px; /* 画面外に表示 */
    width: 400px;
    height: 990px;
    background: white;
    z-index: 1001; /* サイドメニューを最前面に表示 */
    transition: left 0.3s; /* スライド表示アニメーション */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* ホバー時に柔らかい影を追加 */
    overflow: hidden;
}

/* サイドメニューのヘッダー */
#vr-streetview-marker-info-header-container {
    background: none;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

/* ヘッダー画像のスタイル */
#vr-streetview-marker-info-header-image {
    width: 400px;
    height: 230px;
    object-fit: cover; /* 縦横比を無視せず、ヘッダー全体をぴったり埋める */
    object-position: center; /* 中央に配置 */
    display: block;
}

/* ヘッダーにタイトルを表示 */
#vr-streetview-marker-info-title {
    margin-top: 20px;
    position: absolute;
    left: 15px;
    color: black;
    font-size: 24px;
}

/* サイドメニューのコンテンツ */
#vr-streetview-marker-info-content {
    position: absolute;
    margin-top: 20px;
    padding: 20px;
    border-top: 1.5px solid lightgray; /* 画像下部に境界線 */
}

/* 情報セクションのタイトルスタイル */
#vr-streetview-marker-info-section-container h3 {
    font-size: 18px;
    color: #007BFF;
    margin-bottom: 5px;
    border-bottom: 1px solid #DDD;
    padding-bottom: 0;
}

/* リスト全体のスタイル */
#vr-streetview-marker-info-section-container ul {
    margin-bottom: 30px;
    padding: 0;
    /* margin: 0; */
    list-style: none;
}

.vr-streetview-marker-info-item {
    display: flex; /* ラベルと値を横並びにする */
    align-items: center; /* 垂直方向で中央揃え */
    margin-bottom: 15px; /* 各項目の間隔を確保 */
}

/* ラベル部分のスタイル */
.vr-streetview-marker-info-item .label {
    font-weight: bold;
    color: #333;
    flex-basis: 120px; /* ラベル部分の固定幅を設定（頭揃えのため調整可能） */
    text-align: left; /* ラベルを左揃え */
    margin-right: 10px; /* ラベルと値の間に余白を追加 */
}

/* 値部分のスタイル */
.vr-streetview-marker-info-item .value {
    flex: 1; /* 残りのスペースを割り当てて配置 */
    color: #333;
    text-align: left; /* 値部分も左揃え */
}