ul.init-menu {
    width: 95%;
    margin: 0 0 0 3px;
    padding: 10px 10px 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;

    & li {
        list-style: none;

        & a {
            display: block;
            text-decoration: none;
        }
    }
}

select.init-menu {
    scrollbar-width: none; /* firefox */

    /* chrome, safari, edge */
    &::-webkit-scrollbar {
        display: none;
    }

    &::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    &::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;

        &:hover {
            background: #555;
        }
    }
}

/* 地点選択 */
.dialog_selpoint {
    border: 1px solid gray;
    background-color: white;
    padding: 0;
    font-weight: normal;
    text-align: center;
    width: auto;
    height: auto;
}

.dialog_selpoint_bttn {
    border: none;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    width: 14px;
    height: 14px;
    padding: 1px;
    text-align: center;

    & a {
        text-decoration: none !important;
        color: gray;

        &:link,
        &:visited {
            color: gray;
        }

        &:active,
        &:hover {
            color: black;
        }
    }
}

.selpoint_cmd {
    text-align: center;

    & a {
        color: gray;

        &:link,
        &:visited {
            color: gray;
        }

        &:active,
        &:hover {
            color: black;
        }
    }
}

a.link_popup {
    text-decoration: none !important;
    border-bottom: 1px dashed;
}

/* 地点選択ウィンドウ */
.tbl_selpoint {
    margin: 0;
    border-collapse: collapse;

    & th {
        background-color: #556CA5;
        font-weight: normal;
        color: #fff;
        border: 1px solid #9BA8CA;
        width: 5em;
        text-align: left;
    }

    & td {
        border: 1px solid #9BA8CA;
        padding: 2px;

        &.tbl_selpoint_yoh {
            background-color: #def;
            font-weight: normal;
        }
    }
}

/* 文字色の設定 */
#main hr {
    border: 0.1em solid #DADFEC;
}

.reg {
    color: #00f;
}

#use_caution1 {
    display: none;
    clear: both;
}

h1.title {
    padding: 0 2px;
}

/**************************************
   レスポンシブルメニュー
***************************************/
.toggle {
    display: none;
    position: relative;

    &:hover {
        cursor: pointer;
    }
}

#toggle1 {
    padding: 0 15px 0 0;

    & img {
        padding: 3px 0 0 0;
        height: 26px;
    }
}

.menu-box {
    padding: 0;
    margin: 0;
    background: #eee;
    border: 1px solid #c0c0c0;
}

/* アコーディオンメニュー関連 */
.menu {
    width: 95%;
    margin: 0 0 0 3px;
    padding: 0;

    & li {
        & a {
            display: block;
            text-decoration: none;
        }

        /* メニューの形を整えるため必要 */
        & select {
            padding: 0;
        }
    }
}

ul.menu li {
    display: inline;
    float: left;
    margin: 0;
    padding: 10px 10px 5px 0;
}

.clear {
    clear: both;
}

