@charset "utf-8";
/* スマホ版スタイル */
/* @media screen and (max-width: 959px) {
    header.pg_header {
        height: 21px;
    }

    .pg_header-scroll {
        border-bottom-width: 1px;
        padding: 4px;
        font-size: 12px;
    }

    .pg_mapWrapper::after {
        content: "";
        display: block;
        position: absolute;
        height: 52px;
        width: 100%;
        left: 0;
        bottom: 0;
        background-color: var(--map-DrawerBackColor, rgba(235, 255, 183, 0.93));
        z-index: 2;
    }

    .pg_sideNavArea {
        height: 52px;
        width: 100%;
        padding: 0;
        bottom: auto;
    }

    .pg_sideNavBody {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 100%;
        padding: 5px;
    }

    .pg_sideNavUpSide {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
    }

    .pg_title {
        position: static;
        width: 33vw;
        max-width: 180px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-right: 2vw;
    }

    .pg_currentTheme {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        height: 30px;
        max-width: 300px;
        margin-bottom: 0;
        margin-right: 2vw;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .pg_currentTheme__header {
        line-height: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .pg_currentTheme__theme {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 0.5em;
    }

    .pg_menuBtn {
        position: relative;
        display: block;
        width: 44px;
        height: 100%;
        border: 2px solid black;
        background-color: var(--common-buttonBackFirstColor, #fcff3c);
    }

    .pg_menuBtn>span {
        display: block;
        position: absolute;
        width: 75%;
        height: 2px;
        background-color: black;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transition: margin-top .2s ease 0s, -webkit-transform .2s ease 0s;
        transition: margin-top .2s ease 0s, -webkit-transform .2s ease 0s;
        transition: transform .2s ease 0s, margin-top .2s ease 0s;
        transition: transform .2s ease 0s, margin-top .2s ease 0s, -webkit-transform .2s ease 0s;
    }

    .pg_menuBtn>span:nth-child(1) {
        margin-top: -10px;
    }

    .pg_menuBtn>span:nth-child(3) {
        margin-top: 10px;
    }

    .pg_menuBtn--onOpen>span {
        -webkit-transition-delay: .2s, 0s;
        transition-delay: .2s, 0s;
    }

    .pg_menuBtn--onOpen>span:nth-child(1) {
        margin-top: 0;
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .pg_menuBtn--onOpen>span:nth-child(2) {
        -webkit-transform: translate(-50%, -50%) scaleX(0);
        transform: translate(-50%, -50%) scaleX(0);
    }

    .pg_menuBtn--onOpen>span:nth-child(3) {
        margin-top: 0;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .pg_layerArea {
        display: none;
    }

    .pg_Tools {
        position: absolute;
        top: 100%;
        left: 100%;
        width: 120px;
        margin-left: auto;
        margin-right: auto;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.8);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-transition: -webkit-transform .2s ease 0s;
        transition: -webkit-transform .2s ease 0s;
        transition: transform .2s ease 0s;
        transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
    }

    .pg_Tools--onOpen {
        -webkit-transition-duration: .4s;
        transition-duration: .4s;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .pg_toolBtn {
        width: 100%;
        margin: 0;
    }

    .pg_toolBtn:nth-child(2n) {
        margin-left: 0;
    }

    .pg_toolBtn:nth-child(n + 3) {
        margin-top: 0;
    }

    .pg_toolBtn:nth-child(n + 2) {
        margin-top: 8px;
    }

    .pg_control_now {
        position: absolute;
        width: 37px;
        left: auto;
        right: 10px;
        bottom: 8px;
    }

    .pg_control_now__btn {
        margin-right: 0;
    }

    .pg_control_now__text {
        position: absolute;
        bottom: calc(100% + 15px);
        width: 60vw;
        right: 0;
        height: 35px;
    }

    .pg_control_themeBtn {
        display: none;
    }

    .pg_control_panelBtn {
        display: none;
    }

    .pg_control_measureBtn {
        display: none;
    }

    .pg_control_styleSelect {
        right: 0;
        bottom: 50px;
        display: flex;
        position: absolute;
        top: auto;
        height: 80px;
    }

    .pg_control_styleSelect.pg_control--minimized {
        bottom: 12px;
        right: 180px;
    }

    .pg_control_layer {
        top: auto;
        right: 66px;
        bottom: 12px;
    }

    .pg_control_mapMoveBtns {
        display: none;
    }

    .pg_control_mapZoomBtns {
        width: 30px;
        top: 67px;
        left: 10px;
        right: auto;
        bottom: auto;
    }

    .pg_control_entireArea {
        bottom: 12px;
        right: 103px;
    }

    .pg_control_currentPos {
        bottom: 12px;
        right: 141px;
    }

    .pg_dialog__header {
        height: 24px;
    }

    .pg_dialog__title {
        font-size: 14px;
        line-height: 24px;
    }

    .pg_dialog__content {
        font-size: 12px;
    }

    .pg_dialog__actionBtn {
        font-size: 14px;
    }

    .pg_dialog_terms {
        width: 90%;
        top: 2%;
        left: 2%;
    }

    .pg_dialog_terms_termTxt {
        margin-top: 12px;
        height: 60vh;
    }

    .pg_dialog_themeChange {
        width: 90%;
        max-width: 440px;
        top: 10%;
        left: 2%;
    }

    .pg_dialog_themeChange .pg_dialog__content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }

    .pg_themeChange {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

    .pg_themeChange__themes {
        width: 100%;
        margin-right: 0;
        z-index: 1;
        background-color: var(--ukDialogBackColor, #89FFCD);
        -webkit-transition: -webkit-transform .2s ease 0s;
        transition: -webkit-transform .2s ease 0s;
        transition: transform .2s ease 0s;
        transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
    }

    .pg_themeChange__themes::after {
        display: none;
    }

    .pg_themeChange__themeList {
        padding-top: .5em;
        padding-bottom: 0.5em;
        height: auto;
        max-height: 120px;
        overflow-y: auto;
    }

    .pg_themeChange__themeItem {
        line-height: 1.8;
    }

    .pg_themeChange__themeItem+.pg_themeChange__themeItem {
        margin-top: 0.5em;
    }

    .pg_themeChange__types {
        width: 100%;
        margin-top: 12px;
    }

    .pg_themeChange__typeList {
        height: 120px;
    }

    .pg_dialog_typeChange {
        width: 70%;
        top: 4%;
        left: 4%;
    }

    .pg_dialog_typeChange_types {
        height: 40vh;
    }

    .pg_dialog_property .pg_dialog__content {
        max-height: 300px;
    }

    .pg_actionBtn {
        font-size: 14px;
    }

    .pg_drawer__title {
        font-size: 14px;
        line-height: 24px;
    }

    .pg_offCanvasSwitch::after {
        content: "かくす▼";
        writing-mode: lr;
        padding: 8px 12px;
    }

    .pg_currentTheme_explain {
        display: none;
    }

    .pg_control_minimapToggle {
        bottom: 175px;
        right: 15px;
    }

    .pg_control_minimapToggle.pg_contorol_minimize {
        bottom: 12px;
        right: 182px;
    }

    .pg_basemapOverLapArea {
        display: none;
    }

    #mapboxgl-minimap {
        display: none;
    }

    .pg_control_minimapToggle {
        display: none;
    }
} */

/* タッチモード */

body.pg_device_touch header.pg_header {
    height: 31px;
}

body.pg_device_touch .pg_header-scroll {
    border-bottom-width: 1px;
    padding: 7px;
    font-size: 15px;
}

body.pg_device_touch .pg_mapWrapper::after {
    content: "";
    display: block;
    position: absolute;
    height: 52px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--map-DrawerBackColor, rgba(235, 255, 183, 0.93));
    z-index: 2;
}

body.pg_device_touch .pg_sideNavArea {
    height: 52px;
    width: 100%;
    padding: 0;
    bottom: auto;
}

body.pg_device_touch .pg_sideNavBody {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding: 5px;
}

body.pg_device_touch .pg_sideNavUpSide {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

body.pg_device_touch .pg_title {
    position: static;
    width: 33vw;
    max-width: 180px;
    /* height: auto; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 2vw;
}

body.pg_device_touch .pg_currentTheme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 30px;
    max-width: 400px;
    margin-bottom: 0;
    margin-right: 5vw;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

body.pg_device_touch .pg_currentTheme__header {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

body.pg_device_touch .pg_currentTheme__theme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

body.pg_device_touch .pg_menuBtn {
    position: relative;
    display: block;
    width: 44px;
    height: 100%;
    border: 2px solid black;
    background-color: var(--common-buttonBackFirstColor, #fcff3c);
}

body.pg_device_touch .pg_menuBtn>span {
    display: block;
    position: absolute;
    width: 75%;
    height: 2px;
    background-color: black;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: margin-top .2s ease 0s, -webkit-transform .2s ease 0s;
    transition: margin-top .2s ease 0s, -webkit-transform .2s ease 0s;
    transition: transform .2s ease 0s, margin-top .2s ease 0s;
    transition: transform .2s ease 0s, margin-top .2s ease 0s, -webkit-transform .2s ease 0s;
}

body.pg_device_touch .pg_menuBtn>span:nth-child(1) {
    margin-top: -10px;
}

body.pg_device_touch .pg_menuBtn>span:nth-child(3) {
    margin-top: 10px;
}

body.pg_device_touch .pg_menuBtn--onOpen>span {
    -webkit-transition-delay: .2s, 0s;
    transition-delay: .2s, 0s;
}

body.pg_device_touch .pg_menuBtn--onOpen>span:nth-child(1) {
    margin-top: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

body.pg_device_touch .pg_menuBtn--onOpen>span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) scaleX(0);
    transform: translate(-50%, -50%) scaleX(0);
}

body.pg_device_touch .pg_menuBtn--onOpen>span:nth-child(3) {
    margin-top: 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

body.pg_device_touch .pg_Tools {
    position: absolute;
    top: 100%;
    left: 100%;
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: -webkit-transform .2s ease 0s;
    transition: -webkit-transform .2s ease 0s;
    transition: transform .2s ease 0s;
    transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
}

body.pg_device_touch .pg_Tools--onOpen {
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

body.pg_device_touch .pg_toolBtn {
    width: 100%;
    margin: 0;
}

body.pg_device_touch .pg_toolBtn:nth-child(2n) {
    margin-left: 0;
}

body.pg_device_touch .pg_toolBtn:nth-child(n + 3) {
    margin-top: 0;
}

body.pg_device_touch .pg_toolBtn:nth-child(n + 2) {
    margin-top: 8px;
}

body.pg_device_touch .pg_control_now {
    position: absolute;
    width: 37px;
    left: auto;
    right: 10px;
    bottom: 8px;
}

body.pg_device_touch .pg_control_now__btn {
    margin-right: 0;
}

body.pg_device_touch .pg_control_now__text {
    position: absolute;
    bottom: calc(100% + 15px);
    width: 30vw;
    right: 0;
    height: 35px;
}

body.pg_device_touch .pg_control_themeBtn {
    display: none;
}

body.pg_device_touch .pg_control_panelBtn {
    display: none;
}

body.pg_device_touch .pg_control_measureBtn {
    display: none;
}

body.pg_device_touch .pg_control_styleSelect {
    right: 10px;
    bottom: 100px;
    display: flex;
    position: absolute;
    top: auto;
    /* height: 80px; */
}

body.pg_device_touch .pg_control_styleSelect.pg_control--minimized {
    bottom: 12px;
    right: 180px;
}

body.pg_device_touch .pg_control_layer {
    top: auto;
    right: 66px;
    bottom: 12px;
}

body.pg_device_touch .pg_control_mapMoveBtns {
    display: none;
}

body.pg_device_touch .pg_control_mapZoomBtns {
    width: 30px;
    top: 67px;
    left: 10px;
    right: auto;
    bottom: auto;
}

body.pg_device_touch .pg_control_entireArea {
    bottom: 12px;
    right: 103px;
}

body.pg_device_touch .pg_control_currentPos {
    bottom: 12px;
    right: 141px;
}

body.pg_device_touch .pg_dialog__header {
    height: 24px;
}

body.pg_device_touch .pg_dialog__title {
    font-size: 14px;
    line-height: 24px;
}

body.pg_device_touch .pg_dialog__content {
    font-size: 12px;
}

body.pg_device_touch .pg_dialog__actionBtn {
    font-size: 14px;
}

body.pg_device_touch .pg_dialog_terms {
    width: 90%;
    top: 2%;
    left: 2%;
}

body.pg_device_touch .pg_dialog_terms_termTxt {
    margin-top: 12px;
    height: 60vh;
}

body.pg_device_touch .pg_dialog_themeChange {
    width: 90%;
    max-width: 440px;
    top: 10%;
    left: 2%;
}

body.pg_device_touch .pg_dialog_themeChange .pg_dialog__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

body.pg_device_touch .pg_themeChange {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

body.pg_device_touch .pg_themeChange__themes {
    width: 100%;
    margin-right: 0;
    z-index: 1;
    background-color: var(--ukDialogBackColor, #89FFCD);
    -webkit-transition: -webkit-transform .2s ease 0s;
    transition: -webkit-transform .2s ease 0s;
    transition: transform .2s ease 0s;
    transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
}

body.pg_device_touch .pg_themeChange__themes::after {
    display: none;
}

body.pg_device_touch .pg_themeChange__themeList {
    padding-top: .5em;
    padding-bottom: 0.5em;
    height: auto;
    max-height: 120px;
    overflow-y: auto;
}

body.pg_device_touch .pg_themeChange__themeItem {
    line-height: 1.8;
}

body.pg_device_touch .pg_themeChange__themeItem+.pg_themeChange__themeItem {
    margin-top: 0.5em;
}

body.pg_device_touch .pg_themeChange__types {
    width: 100%;
    margin-top: 12px;
}

body.pg_device_touch .pg_themeChange__typeList {
    height: 120px;
}

body.pg_device_touch .pg_dialog_typeChange {
    width: 70%;
    top: 4%;
    left: 4%;
}

body.pg_device_touch .pg_dialog_typeChange_types {
    height: 40vh;
}

body.pg_device_touch .pg_dialog_property .pg_dialog__content {
    max-height: 300px;
}

body.pg_device_touch .pg_actionBtn {
    font-size: 14px;
}

body.pg_device_touch .pg_drawer__title {
    font-size: 14px;
    line-height: 24px;
}

body.pg_device_touch #canvas_attributes .pg_offCanvasSwitch::after,
body.pg_device_touch #canvas_multi .pg_offCanvasSwitch::after {
    content: "かくす▶";
    writing-mode: lr;
    padding: 8px 12px;
}

body.pg_device_touch .pg_currentTheme_explain {
    display: none;
}

body.pg_device_touch .pg_control_minimapToggle {
    bottom: 175px;
    right: 15px;
}

body.pg_device_touch .pg_control_minimapToggle.pg_contorol_minimize {
    bottom: 12px;
    right: 182px;
}

body.pg_device_touch .pg_basemapOverLapArea {
    display: none;
}

body.pg_device_touch #mapboxgl-minimap {
    display: none;
}

body.pg_device_touch .pg_control_minimapToggle {
    display: none;
}

body.pg_device_touch .pg_quick-search {
    position: absolute;
    left: 15px;
}

body.pg_device_touch .pg_quick-search {
    bottom: 0;
    left: 18px;
}

/* タッチ/フル切替は、画面サイズの判定(uk-visible@m)だけでは対応しきれない為別途設定する */
body.pg_device_touch .pg_switchMobile {
    display: none;
}

/* タッチ/フル切替は、画面サイズの判定(uk-hidden@m)だけでは対応しきれない為別途設定する */
body.pg_device_touch .pg_offcanvas__expand.pg_mobilemodeAttrBtn,
body.pg_device_touch .pg_offcanvas__shrink.pg_mobilemodeAttrBtn {
    display: inline-flex !important;
}

/* @media screen and (max-width: 959px) */
body.pg_device_touch #canvas_multi,
body.pg_device_touch #canvas_attributes {
    width: 100%;
}

body.pg_device_touch .pg_offcanvas--mobile {
    z-index: 10000;
}

body.pg_device_touch .pg_offcanvas--mobileanimation {
    transition: top .3s ease-out;
}

body.pg_device_touch .pg_offcanvas--mobilebottom.uk-offcanvas {
    top: 70%;
}

body.pg_device_touch .pg_offcanvas--mobilefull.uk-offcanvas {
    top: 20px;
}

body.pg_device_touch .pg_offcanvas--mobilefull .pg_offcanvas__expand {
    display: none;
}

body.pg_device_touch .pg_offcanvas--mobilebottom,
body.pg_device_touch .pg_offcanvas__shrink {
    display: none;
}

body.pg_device_touch .pg_offcanvas--mobile .uk-offcanvas-bar {
    width: 100%;
    border-left: none;
    border-top: black solid 3px;
    overflow-y: scroll;
    /* 拡大ボタン */
    padding-bottom: 10px;
    padding-top: 40px;
}

body.pg_device_touch .pg_offCanvasSwitch {
    /* background-color: white;
    border: 1px solid black;
    position: fixed;
    right: 270px; */
    /* top: 100px; */
    /* font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    cursor: pointer;
    -webkit-transition: background-color .2s ease 0s;
    transition: background-color .2s ease 0s;
    -webkit-transform-origin: left center;
    transform-origin: left center; */
    display: none;
    ;
}

body.pg_device_touch .pg_offcanvas--mobilebottom .pg_offCanvasSwitch {
    top: calc(70% - 25px);
    right: calc(25% - 25px);
}

body.pg_device_touch .pg_offcanvas--mobilefull .pg_offCanvasSwitch {
    top: 0;
}

body.pg_device_touch .pg_simpleToggle {
    display: none;
}

body.pg_device_touch .pg_contrastSwitch {
    top: 75px;
    right: 130px;
}

body.pg_device_touch .pg_toolBtn__inner.pg_currentTheme__theme {
    height: 30px;
}

body.pg_device_touch .pg_control_layerSwitch {
    bottom: 12px;
    right: 65px;
    display: block;
}

body.pg_device_touch .pg_layerArea {
    right: 10px;
    height: 340px;
    width: 200px;
    top: 125px;
    position: absolute;
}

body.pg_device_touch .pg_themeDescription.pg_toolBtn {
    width: 70px;
    right: 60px;
    margin-top: 0;
}

body.pg_device_touch #canvas_attributes .pg_offcanvas__content,
.pg_offcanvas__content {
    overflow-y: unset;
}

/* 操作説明モバイル版 */
body.pg_device_touch .pg_guideMobileVer {
    display: block;
}

/* 属性かくすボタン */
body.pg_device_touch .pg_control_mobile_close {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-bottom: 20px;
    top: 35px;
    position: absolute;
}

body.pg_device_touch .pg_control_mobile_close::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 2px;
    top: 2px;
    background-color: white;
    border: 1px solid black;
    border-radius: 8px;
    z-index: 1;
}

body.pg_device_touch .pg_control_mobile_close>div {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid black;
    border-radius: 8px;
    z-index: 2;
    -webkit-transition: background-color .2s ease 0s, -webkit-transform .2s ease 0s;
    transition: background-color .2s ease 0s, -webkit-transform .2s ease 0s;
    transition: background-color .2s ease 0s, transform .2s ease 0s;
    transition: background-color .2s ease 0s, transform .2s ease 0s, -webkit-transform .2s ease 0s;
}

body.pg_device_touch .pg_control_mobile_close:hover>div {
    background-color: var(--common-buttonBackSecondColor, #00FFEB);
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
}

body.pg_device_touch .pg_control_mobile_close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* uk-closeによって文字色が白になってしまう為 */
body.pg_device_touch .pg_control_mobile_close__inner {
    color: #000;
}

/* 複数検索結果は位置を調整 */
body.pg_device_touch #canvas_multi .pg_control_mobile_close {
    top: 2px;
}

/* 属性検索結果は位置を調整 */
body.pg_device_touch #canvas_attributes .pg_control_mobile_close {
    top: 19px;
}

/* 北トップボタン */
body.pg_device_touch .mapboxgl-ctrl.mapboxgl-ctrl-group {
    margin-top: 69px !important;
}

/* 周辺検索 */
body.pg_device_touch .pg_control_neighborSearch {
    bottom: 12px;
    right: 180px;
    /* z-index: 1; */
}

/* ルート検索用（ドロワーのサイズを調整-スマホのみ) */
body.pg_device_touch #canvas3.pg_miniRouteSearch {
    height: 175px;
    top: auto;
}

body.pg_device_touch #canvas3.pg_miniRouteSearch .pg_control_mobile_close {
    display: none;
}

body.pg_device_touch #canvas3.pg_miniRouteSearch .pg_op_common_text,
body.pg_device_touch #canvas3 .pg_op_route_btns,
body.pg_device_touch #canvas3.pg_miniRouteSearch .pg_op_route_result,
body.pg_device_touch #canvas3.pg_miniRouteSearch .pg_op_route_actions {
    display: none;
}

body.pg_device_touch #canvas3.pg_miniRouteSearch .uk-offcanvas-bar {
    padding-top: 10px;
    padding-bottom: 5px;
}

body.pg_device_touch #canvas3 .pg_offcanvas__route__up {
    display: none;
}

body.pg_device_touch #canvas3.pg_miniRouteSearch .pg_offcanvas__route__up {
    right: 150px;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
    z-index: 100;
    display: flex;
}

/* .uk-offcanvas {
    width: 100%;
  } */
body.pg_device_touch #canvas_multi,
body.pg_device_touch #canvas_attributes {
    width: 100%;
}

body.pg_device_touch .pg_offcanvas--mobile {
    z-index: 10000;
}

body.pg_device_touch .pg_offcanvas--mobilebottom.uk-offcanvas {
    top: 70%;
}

body.pg_device_touch .pg_offcanvas--mobilefull.uk-offcanvas {
    top: 30px;
}

body.pg_device_touch .pg_offcanvas--mobilefull .pg_offcanvas__expand {
    display: none;
}

body.pg_device_touch .pg_offcanvas--mobilebottom .pg_offcanvas__shrink {
    display: none;
}

/* タッチ/フル切替は、画面サイズの判定(uk-hidden@m)だけでは対応しきれない為別途設定する */
body.pg_device_touch .pg_offcanvas__expand.pg_mobilemodeAttrBtn,
body.pg_device_touch .pg_offcanvas__shrink.pg_mobilemodeAttrBtn {
    display: inline-flex !important;
}

body.pg_device_touch .pg_offcanvas--mobile .uk-offcanvas-bar {
    width: 100%;
    border-left: none;
    border-top: black solid 3px;
    overflow-y: auto;
    /* 拡大ボタン */
    padding-bottom: 10px;
    padding-top: 40px;
}

body.pg_device_touch #canvas_attributes .uk-offcanvas-bar {
    padding-top: 19px;
}

body.pg_device_touch #canvas_multi .uk-offcanvas-bar {
    overflow-y: scroll;
}

body.pg_device_touch #canvas_multi .pg_offcanvas__content {
    overflow-y: unset;
    border: none;
    background: none;
    border-radius: none;
    height: auto;
}

body.pg_device_touch #canvas_multi .pg_offcanvas__content,
body.pg_device_touch #canvas_multi .pg_dialog_multiSelectResultListOuter {
    height: 100%;
}

body.pg_device_touch #canvas_multi .pg_dialog_multiSelectResultListOuter__inner {
    height: 100%;
    overflow-y: unset;
}

body.pg_device_touch #canvas_multi .pg_multiSelectMsg {
    border: solid 1px;
    border-radius: 12px 12px 0 0;
    background-color: #fff;
}

body.pg_device_touch #canvas_multi .pg_dialog_multiSelectResultListOuter {
    background: none;
    padding: 0;
}

body.pg_device_touch #canvas_multi .pg_dialog_multiSelectResultList {
    background-color: #fff;
    border: 1px solid;
    border-radius: 0 0 12px 12px;
}

/* 属性最小化ボタン */
body.pg_device_touch .pg_control_smallAttrCanvas {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-bottom: 20px;
}

body.pg_device_touch .pg_control_smallAttrCanvas>div {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 3px solid black;
    border-radius: 8px;
    z-index: 2;
    -webkit-transition: background-color .2s ease 0s, -webkit-transform .2s ease 0s;
    transition: background-color .2s ease 0s, -webkit-transform .2s ease 0s;
    transition: background-color .2s ease 0s, transform .2s ease 0s;
    transition: background-color .2s ease 0s, transform .2s ease 0s, -webkit-transform .2s ease 0s;
}

body.pg_device_touch .pg_control_smallAttrCanvas:hover>div {
    background-color: var(--common-buttonBackSecondColor, #00FFEB);
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
}

body.pg_device_touch .pg_control_smallAttrCanvas {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


body.pg_device_touch #pg_js-mainmap .mapboxgl-ctrl-bottom-left {
    left: 5px;
    bottom: 60px;
}

body.pg_device_touch .mapboxgl-ctrl-bottom-right {
    bottom: 100px !important;
    /*ライブラリを強制的に上書き*/
}

/* @media screen and (max-width: 959px) */
