@charset "utf-8";
/* CSS Document */

/**/
#fixedMenu {
  position: fixed;
  top: calc(50% + 150px);
  right: 0;
  background-color: #CC0000;
  z-index: 20;
  transform: translate(0, -50%);
  padding: unset;
  min-width: 62px;
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fixedMenuBtn {
  position: fixed;
  right: 62px;
  top: calc(50% + 150px);
  z-index: 21;
  background: #CC0000;
  width: 16px;
  height: 64px;
  cursor: pointer;
}
#fixedMenuBtn::before, #fixedMenuBtn::after {
  content: "";
  position: absolute;
  left: 70%;
  width: 2px;
  height: 9px;
  background: #fff;
}
#fixedMenuBtn::before {
  bottom: 50%;
  transform-origin: right top;
  transform: skewX(-30deg);
}
#fixedMenuBtn::after {
  top: 50%;
  transform-origin: right bottom;
  transform: skewX(30deg);
}
[class*="show"] + #fixedMenuBtn::before {
  bottom: unset;
  top: 50%;
}
[class*="show"] + #fixedMenuBtn::after {
  top: unset;
  bottom: 50%;
}
#fixedMenu, #fixedMenuBtn {
  transform: translate(62px, -50%);
  transition: transform 180ms ease-out;
}
#fixedMenu[class*="show"], [class*="show"] + #fixedMenuBtn {
  transform: translate(0, -50%);
}
#fixedMenu a {
  display: inline-block;
  position: relative;
  margin: unset;
  font-weight: bold;
  font-size: 18px;
  padding: 24px 16px;
  background-color: #CC0000;
  writing-mode: vertical-rl;
  text-decoration: none;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
#fixedMenu a:hover span {
  color: #fff;
}
/**/