/* -------------------- */
/* 背景 */
/* -------------------- */
html, body {
    width: 100%;
    height: 100%;
}

#page-container {
    width: 100%;
    height: 100%;
    position: relative; /* ※←すべての基準 */
}

/* -------------------- */
/* 地図 */
/* -------------------- */
#map-container {
    width: 100%;
    height: 100%;
}

/* 情報ウィンドウ（編集） */
.infoWindow-container {
    padding: 5px;
}
.infoWindow-container p {
    margin: 0;
}
.infoWindow-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px !important;
}
.infoWindow-editButton-container {
    text-align: right;
}

.infoWindow-editButton {
    background-color: #2A6C92;
    color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
}
.infoWindow-editButton:hover {
    text-decoration: none;
    background-color: #3180AC;
    color: #FFFFFF;
}


/* -------------------- */
/* 検索 */
/* -------------------- */
#search-container {
    /* z-index: 999; */ /* ※←最前面に表示させるため */
    position: absolute;
    left: 20px;
    top: 20px;

    width: 400px;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 3px 10px;
}
#search-container input {
    border: none;
    height: 40px;
    width: calc(100% - 40px); /* ※←親の幅－検索ボタンの幅（検索ボタンの幅は10px分余裕を持たせている） */
    padding: 1px 10px;
    border-bottom: 1px solid #9e9e9e;
    margin-bottom: 4px;
}
#search-container input::placeholder {
    color: #999999;
}
#search-container input:focus {
    /* border: none; */
    outline: none;
    border-bottom: 1px solid #26a69a; /* ※←Materialize.cssのフォーカス取得時を再現 */
    box-shadow: 0 1px 0 0 #26a69a; /* ※←Materialize.cssのフォーカス取得時を再現 */
}
.z-depth-2{
    -webkit-box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.3);
    box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.3)
}


/* -------------------- */
/* 計測円 */
/* -------------------- */
#circles-container {
    /* z-index: 999; */ /* ※←最前面に表示させるため */
    display: flex;
    position: absolute;
    left: 450px;
    top: 20px;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 3px 10px;
}
/* 表示チェックボックス */
#circles-checkbox-container
{
    margin: auto 0;
    margin-left: 25px;
}
#circles-checkbox-label
{
    color: black;
    padding-left: 30px;
}
/* 地図移動に追随 */
#circles-following-container
{
    margin: auto 0;
    margin-left: 25px;
}
#circles-following-label
{
    color: black;
    padding-left: 30px;
}
/* 半径 */
#circles-input
{
    width: 80px;
    height: 40px;
    text-align: right;
    margin-bottom: 4px;
}
#circles-input-label1
{
    margin: auto 0;
    margin-left: 30px;
}
#circles-input-label2
{
    margin: auto 0;
}
/* 設定ボタン */
#circles-button
{
    margin: auto 0;
    margin-left: 30px;
}
#circles-button:hover {
    text-decoration: none;
    color: #FFFFFF;
}


/* -------------------- */
/* 読み込み中 */
/* -------------------- */
#data-reading {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 3px 10px;
    width: 150px;
    height: 50px;
}

#data-reading span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}