<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

#map {
height: 600px;
width: 100%;
}

/* 検索欄の調整 */
.leaflet-control-geocoder {
    border-radius: 0;
}
.leaflet-control-geocoder-form input {
    box-sizing: border-box;
    height: 25px;
    padding: 0 10px;
}
/* Leaflet ポップアップの成形 */
/* ポップアップ外側 */
.leaflet-popup-content-wrapper {
    border-radius: 0;
}
/* ポップアップ内容 */
.leaflet-popup-content {
    margin: 10px 20px;
    text-align: center;
    font-size: 17px;
    color: mediumblue;
    font-weight: bold
}
/* ポップアップ三角外側 */
.leaflet-popup-tip-container {
    margin-left: -10px;
    width: 20px;
    height: 10px;
}
/* ポップアップ三角 */
.leaflet-popup-tip {
    margin: -5px auto 0;
    width: 8.5px;
    height: 8.5px;
}
/* ポップアップ閉じるボタン */
.leaflet-container a.leaflet-popup-close-button {
    padding: 2px 2px 0 0;
}
/* 座標表示枠 */
#debug {
    font-size: 11px;
    background: #f0f0f0;
}</pre></body></html>