#sideBar {
    position: fixed;
    background-color: #fff;
    bottom: 0px;
    top: 0px;
    /*left: 200px;*/
    right: -300px;
    /*right : 0px;*/
    width: 260px;
    height: 100dvh;
    /* border: 1px solid gray; */
    z-index: 902;
    padding-top: 25px;
    box-sizing: border-box;
    overflow-y: scroll;
}

summary {
    display: block;
    list-style: none;
  }
  /* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
display:none;
}

.sideBarText {
    font-size:  12px;
    color: #333333;
    padding-top: 10px;
    margin-left: 25px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    width:210px;
    border-bottom: 1px solid #EFEFF4;
    background-image: url("../images/ico_arrow_navi.png");
    background-repeat: no-repeat;
    background-size: 8px 10px;
    background-position: right;
    cursor: pointer;
}

.sideBarText img {
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

.accordion{
    background-image: url("../images/ico_arrow_dn.png");
    background-repeat: no-repeat;
    background-size: 10px 8px;
    background-position: right;
}

details[open] > summary.accordion {
    background-image: url("../images/ico_arrow_up.png");
}

.sideBarOn {
/* アニメーション名 アニメーションにかかる時間 アニメーションの繰り返し回数 */
    animation: sideBarOn 0.3s 0s;
}

.sideBarOff {
/* アニメーション名 アニメーションにかかる時間 アニメーションの繰り返し回数 */
    animation: sideBarOff 0.3s 0s;
}

@keyframes sideBarOn {
    0% {
        transform: translateX(300px);
    }
    100% {
        transform: translateX(0px);
    }
}


@keyframes sideBarOff {
    0% {
        transform: translateX(-300px);
    }
    100% {
        transform: translateX(0px);
    }
}

@media (min-width: 768px){
    /* 画面サイズが768px以上の場合の設定 */
    #sideBar {
        width: 294px;
        padding-top: 37px;
    }

    .sideBarText {
        font-size:  14px;
        padding-top: 13px;
        margin-left: 30px;
        padding-bottom: 13px;
        width:238px;
        background-size: 9.6px 12x;
    }

    .sideBarText img {
        width: 26px;
        height: 26px;
        margin-right: 15px;
    }
}

