*{
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }
body{
    background: #F2F2F2;
    font-family: 'Noto Sans JP';
}
.tableWrapper{
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    padding: 94px 0 50px;
    box-sizing: border-box;    
    background:#fff;
    z-index: 10;
    transition: 0.3s left;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 35%);
}

#table,
#thumbnail{
    overscroll-behavior: contain;
    height: 100%;
    overflow-y: scroll;
    padding: 10px 10px 5px;
    box-sizing: border-box;
    z-index: 2000;
    /* background: #ff2; */
}
.viewContent .tableWrapper{
    left:0;

}
#btnLeft{
    position: absolute;
    top: 50%;right:-50px;
    cursor:
    pointer;
    transform: translate(0,-64px);
    opacity: 0.7;
    box-shadow:
    none;
    z-index: 10000;
}
#btnRight{
    position: fixed;
    top: 50%;right:10px;
    cursor:
    pointer;
    transform: translate(0,-64px);
    opacity: 0.7;
    box-shadow:
    none;
    z-index: 10000;
}
#tableNav{
    position: absolute;
    top: 40px;
    height: 54px;
    left: 0;
    width:100%;
    background: #fff;
    z-index: 2000;
    text-align: center;
    overflow: hidden;
}

#table ul{padding-top:5px;/*  */}
#table li{
    color:#000;
    padding: 5px 0px 5px 20px;
    font-size:11px;
    line-height: 1.5em;
    cursor: pointer;
    position: relative;
}
#table .hasChild li,
#table .hasChild.open li.hasChild li{
    display: none;
}
#table .toggleOpen{
    padding-left: 20px;
    margin-left:-20px;
}
#table .hasChild:before{
    pointer-events: none;
    content:
    "+";
    position: absolute;
    left: 2px;
    top: 9px;
    height: 9px;
    width: 9px;
    line-height: 9px;
    border: 1px solid #000;
    text-align: center;
}
#table .hasChild.open li,
#table .hasChild.open li.hasChild.open li{
    display: block;
}
#table .hasChild.open:before{
    content:
    "-";
    line-height: 7px;
}
#table .name{
    display: inline-block;
    width: 200px;
}
#table .num{
    float: right;
}
#thumbnail{
    background: #999;
}
#thumbnail,
.viewThumbnail #table{
    display:none;
}
.viewThumbnail #thumbnail{
    display:block;
}
#thumbnail ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* padding-top: 20px; */
    padding: 20px 20px 0;
}
.dummy{
    width: 100px;
    pointer-events: none;
}
#thumbnail li{
    cursor: pointer;
    margin-bottom: 10px;
}
#thumbnail span{
    display: inline-block;
    width:100%;
}
#thumbnail li:nth-child(even) span{
    text-align: right;
}
#btnClose{
    cursor: pointer;
    height: 20px;
    width: 20px;;
    display: inline-block;
    line-height: 20px;
    position: absolute;
    top: 3px;
    right: 3px;
}
#pdfSelector{
    position: fixed;
    background:rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    width:100%;
    height: 100%;
    z-index: 100000;
    opacity:0;
    pointer-events: none;
    transition: 0.5s opacity;
    
}
#pdfSelector p{
    color:#fff;
    font-size: 30px;
    line-height: 30px;
    margin-top: -15px;
    text-align: center;
}
#pdfSelector p span{
    position: absolute;
    font-size: 20px;
    line-height: 20px;
    left: 0;
    bottom:-40px;
    width: 100%;
}
.pdfDownload #pdfSelector{
    opacity:1;
    pointer-events:auto;
}
.pdfSelectorWrapper{
    position: fixed;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 1140px;

}
.pdfButton{
    position: absolute;
    display: inline-block;
    background:#fff;
    text-decoration: none;
    font-size: 100px;
    width: 200px;
    height: 280px;
    border-radius: 20px;
    text-align: center;
    color:#000;
    line-height: 280px;
    font-weight: 500;
    top: 0;transform: translate(0,-50%);

}
.disabled .pdfButton{
    opacity:0.1;
    pointer-events:none;
}
#pdfLeft:before{
    position: absolute;
    content: url("../img/img-arrow-left.png");
    left: 275px;
    top: -16px;
}
#pdfRight:before{
    position: absolute;
    content: url("../img/img-arrow-right.png");
    right: 275px;
    top: -16px;
}
#pdfLeft .pdfButton{
    left: 0;
}
#pdfRight .pdfButton{
    right: 0;
}
#pages{
    perspective: 1000px;
    position: fixed;
    left: 50%;
    top: 50%;
    height: 679px;
    margin-top: -7px;
    width: 960px;
    transform-origin: center center;
    transition: 0.3s transform;
}

#pages.fullview{
    transition: 0.3s transform, 0.2s top, 0.2s left;
}
#pages.scaling,
#pages.dragging{
    transition: none;
}
.wrapper{

}
#header{
    height: 40px;
    width: 100%;
    position: fixed;
    top: 0; 
    left: 0;
    background:#fff;
    z-index: 2000;
}
#header img{ 
    position: absolute;
    top:4px;
    left: 20px;
}
#nav{
    height: 54px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background:#fff;
    z-index: 2000;
    text-align: center;
    overflow: hidden;
}

.button{
    cursor:
    pointer;
    height: 54px;
    background: #e6ecf5;
    display: inline-block;
    line-height: 54px;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 35%);
    color: #283d79;
    font-size: 12px;
    font-family: Noto Sans JP;
    font-weight: 400;
    margin: 0 3px;
    transition: 0.3s all;
}
.st0{fill:#fff;}
.st1{fill:#283d79;}
.st2{fill:none;stroke:#283d79;stroke-width:2;stroke-miterlimit:10;}
.st3{fill:none;stroke:#283d79;stroke-miterlimit:10;}
.st4{fill:#283d79;stroke:#283d79;stroke-miterlimit:10;}
.button:hover{
    box-shadow: 0px 0px 6px rgb(0 0 0 / 50%);    
}
.button:hover .st0{
    fill:#E5ECF5;
}
.button:active{
    box-shadow: 0px 0px 6px rgb(0 0 0 / 80%);    

}
.pageJumpWrapper{
    margin: 0 3px;
    height: 30px;
    display:
    inline-block;
    padding: 12px 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 50%);
    vertical-align: top;
}
#pageJump{
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    width: 94px;
    box-sizing: border-box;
    border-radius: 30px;
    background:#f2f2f2; 
    color:#283d79;
    display: inline-block;
    padding-right: 6px;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.2), 
             0 0 4px rgba(0,0,0,0.1);
}
#pageJump input{
    width: 24px;
    color:#283d79;
    display: inline-block;
    text-align: right;
    background:none;
    border: none;
    
}
#pageJump input:focus{
    outline:none
}
.page{
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s transform;
    backface-visibility: hidden;
    background: #fff;
}

.flipping{
    z-index: 10000 !important;
}
.left{
    transform-origin:
    right top;
}
.left.rightStack{
    transform: rotateY(180deg);
}
.right{
    left: 50%;
    transform-origin:
    left top;
}
.right.leftStack{
    transform: rotateY(-180deg);
    
}
.page img{
    display: none;
}
.page.active img,
.page.flipping img,
.page.history img{
    display: block;
}
.zoom0{
    width:480px;
}
.zoom1 img{

}
.zoom2 img{

}
.zoom1 img,
.zoom2 img{
    position: absolute;
    pointer-events: none;
}
.zoom1{
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    transform: scale(0.5);
    transform-origin: top left;
    opacity: 0;
    z-index: 10;
}
.zoom2{
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    transform: scale(0.25);
    transform-origin: top left;
    opacity: 0;
    z-index: 20;
}
.viewLevel1 .zoom1,
.viewLevel2 .zoom1,
.viewLevel2 .zoom2{
    opacity: 1;
}
.mobile .hideOnMobile{
    display:none;
}
.mobile .button:hover .st0{
    fill:#fff;
}
@media screen and (max-width: 430px) {
    .mobile #btnPrev,
    .mobile #btnNext{
        width:60px;
        overflow: hidden;
    }
    .mobile #btnPrev svg,
    .mobile #btnNext svg{
        margin-left:-10px;
    }
}
@media screen and (max-width: 390px) {
    .mobile #btnPrev,
    .mobile #btnNext{
        display: none;
    }
}