<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* ---------------------------------------------------------------------- */
/*  Custom Scroll Bar - csrlb style
/* ---------------------------------------------------------------------- */
/* JSを無効にしている場合、デフォルトのスクロールバーを表示 */
.cscrlb-scrollable {
    position: relative;
    width: 100%;  
    height: calc( 100% + 34px ); /*IEでスクロールバーが消えるように*/
    padding-left: 34px; /*IEでスクロールバーが消えるように*/
    overflow-y: scroll;
    overflow: hidden;
    box-sizing: content-box;
}
/*コンテンツを中央寄せにするため*/
.modal.long .modal-content {
    margin-left: -34px;
}
/**/
.cscrlb-scrollable.horizontal {
    overflow-x: scroll;
    overflow-y: hidden;
}
.cscrlb-scrollable .cscrlb-scroll-content {
    position: relative;
    overflow: hidden;
    overflow-y: scroll;
}
.cscrlb-scrollable .cscrlb-scroll-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.cscrlb-scrollbar {
    z-index: 99;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    background: #e3e0e0;

    display:none; /*カスタムスクロールバーを非表示に*/
    opacity: 0;   /*カスタムスクロールバーを非表示に*/
}
.cscrlb-scrollbar .drag-handle {
    position: absolute;
    right: 0;
    min-height: 10px;
    width: 10px;
    background: darkslateblue;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
}

/* スクロールバーのwidthをテストする時に使用 */
.scrollbar-width-tester::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* 水平スクロールバー */
.cscrlb-scrollable.horizontal .cscrlb-scroll-content {
    overflow-x: scroll;
    overflow-y: hidden;
}
.cscrlb-scrollable.horizontal .cscrlb-scroll-content::-webkit-scrollbar,
.cscrlb-scrollable.horizontal .cscrlb-scroll-content::scrollbar {
    width: auto;
    height: 0;
}
.cscrlb-scrollable.horizontal .cscrlb-scrollbar {
    top: auto;
    left: 0;
    width: auto;
    height: 11px;
}
.cscrlb-scrollable.horizontal .cscrlb-scrollbar .drag-handle {
    right: auto;
    top: 2px;
    height: 10px;
    min-height: 0;
    min-width: 10px;
    width: auto;
}</pre></body></html>