body {
    margin: 0;
}

#main {
    position: relative;
    width: 100%;
    height: calc(100dvh - 60px - 16px);
}

/** マップ */

#map-area {
    height: 100%;
}

#map {
    width: 100vw;
    height: 100%;
}

/** マップ詳細 */

#map-detail-area {
    padding: 40px 10px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

#map-detail {
    white-space: nowrap;
}

#map-detail > * {
    flex: 1;
}

#map-image {
    width: 100%;
    min-width: 150px;
    min-height: 80px;
    border: 1px solid black;
    object-fit: cover;
}

#map-detail-text {
    display: flex;
    flex-direction: column;
}

#map-detail-text {
    margin: 0 5px;
}

#select-option-list {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-weight: bold;
}

/** メニュー */
.menu-btn {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
}
.menu-btn span:before{
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #080808;
    position: absolute;
}
.menu-btn span{
    content: '';
    display: block;
    height: 3px;
    width: 18px;
    border-radius: 3px;
    background-color: #080808;
    position: absolute;
}
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 11px;
    border-radius: 3px;
    background-color: #080808;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

/** 検索 */
#search-area {
    width: 30%;
    height: 100%;
    position: absolute;
    z-index: 90;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#search-area > div {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.search-item {
    margin-bottom: 10px;
    border-bottom: 1px solid gray;
}

.input-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.input-box {
    margin-bottom: 5px;
}

.input-box > div {
    margin-bottom: 5px;
}

/** ボタン */
#search-button {
    width: 70%;
    border: 0;
    border-radius: 5px;
    background-color: cornflowerblue;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 5px;
    cursor: pointer;
}

#map-open-button {
    margin: 5px auto;
    padding: 5px;
    border: 0;
    border-radius: 5px;
    background-color: lightseagreen;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
}

#search-button {
    width: 80%;
    margin: 10px auto 0;
}