html, body {
    overflow-x: hidden;
    height: 100%;
}
body {
    background: rgba(255, 255, 255, 0.699);
    padding: 0;
    margin: 0;
    font-family: 'Sawarabi Mincho', sans-serif;
}
.header {
    text-align: center;
    font-size: 4em;
    color: rgb(187, 49, 25);
    font-family: 'Nanum Pen Script', cursive;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.637);
    position: fixed;
    height: 60px!important;
    overflow: hidden;
    z-index: 10;
}
.mainInner div{
    display:table-cell;
    vertical-align: middle;
}
.mainInner{
    display: table;
    width:100%;
    margin-top: 60px;
    text-align: center;
   
}
#main1{
    margin: 0 auto;
    display: block;
    background-color: white;
    font-family: 'Noto Serif JP', serif;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-orientation: upright;
    position: absolute;
    right: 5%;
    top: 200px;
    overflow-x:scroll;
    width:90%;
    height: 400px;
    float: left;
    text-align: start;

}
#main2{
    margin: 0 auto;
    display: block;
    font-family: 'Noto Serif JP', serif;
    position: absolute;
    top: 590px;
    text-align: center;
    float: left;
    width: 100%;
}
.title{
    font-size: 2em;
    background-color: white;
    color: rgb(136, 86, 105);
    font-family: 'Noto Serif JP', serif;
    float: inline-start ;
    text-align: center;
    width:100%;
}

.mainInner h3{
    font-size: 1.5em;
    color: rgb(0, 83, 151);
    text-align: center;
}

#logo{
    width:220px!important;
        height: 60px!important;
}
#sidebarMenu {
    height: 100%;
    position: fixed;
    font-family: 'Sawarabi Mincho', sans-serif;
    left: 0;
    width: 250px;
    margin-top: 60px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: rgba(228, 228, 228, 0.89);
    z-index: 10;
}
.sidebarMenuInner{
    margin:0;
    padding:0;
}
.sidebarMenuInner li{
    list-style: none;
    color:black;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-user-select: none;
    cursor: default;
}
.sidebarMenuInner li:hover {
    cursor: pointer;
}
.sidebarMenuInner li:hover {
    color: #ffffff;
    background-color: #dd7878c0;
}
.sidebarMenuInner .o{
    background-color: rgba(22, 22, 22, 0.096);
}
.sidebarMenuInner .i{
    background-color: rgba(199, 199, 199, 0.096);
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgb(100, 100, 100);
}
.sidebarMenuInner li a{
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: rgb(53, 53, 53);
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

