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

body{
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
font-family: "Rounded Mplus 1c";
}

.slideout-menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 256px;
    overflow-y: auto;
    -webkit-overfslow-scrolling: touch;
    display: none;
    background-color: #eee;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}
.slideout-panel {
    position: relative;
    z-index: 1;
    will-change: transform;
      background-color: #fff; /* A background-color is required */
  min-height: 100vh;
      min-width: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.panel:before {
  content: '';
  display: block;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.5s ease-in-out;
}

.panel-open:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 99;
}



/*縺薙％縺九ｉ陬�｣ｾ*/

#menu ul {
    width: 100%;
    padding: 0;

}

#menu li {
    width: 100%;
    list-style-type: none;

}

#menu a {
    display: block;
    padding: 1em 1.5em;
    text-decoration: none;
    color: #999;
font-weight: bold;
}

#menu a:hover {
    background-color: #fff;
    transition: .8s;
        color: #000;
}

h2 {
    color: #888;
    font-size: 1.2em;
    padding-left: 1em;
}

#panel p {
    width: 50%;
    padding-left: 2em;
}



/*繧｢繧､繧ｳ繝ｳ*/

.menuWrapper {
    position: relative;
    z-index: 0;
    border: 0;
    width: 50px;
    height: 50px;
}

#menuButton {
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#menuButton span,
#menuButton::before,
#menuButton::after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 36px;
    height: 4px;
    margin: auto;
    background: #000;
}

#menuButton span {
    overflow: hidden;
    z-index: 1;
    color: #000;
}

#menuButton::before {
    z-index: 2;
    transform: translate(0, -12px);
    content: "";
}

#menuButton::after {
    z-index: 2;
    transform: translate(0, 12px);
    content: "";
}

/*繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ*/

#menuButton span {
    transition: transform 150ms 50ms;
}

#menuButton::before,
#menuButton::after {
    transition: transform 200ms;
}

#menuButton.active span {
    transform: translate(-50px, 0);
    transition: transform 150ms;
}

#menuButton.active::before {
    transform: rotate(45deg);
}

#menuButton.active::after {
    transform: rotate(-45deg);
}</pre></body></html>