@charset "UTF-8";
.button-flexible {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.button-flexible.disable {
    pointer-events: none;
    opacity: 0.3;
}
.button-flexible.gray.disable {
    opacity: 0.5;
}
.button-flexible.disappear {
    pointer-events: none;
    opacity: 0;
}
.button-flexible .label {
    position: relative;
    white-space: nowrap;
}
.button-width {
    height: 3em;
    line-height: 3em;
    cursor: pointer;
}
.button-width.disable {
    pointer-events: none;
    opacity: 0.5;
}
.button-width.disappear {
    pointer-events: none;
    opacity: 0;
}
.button-base {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.button-base.frame-gray {
    border: 1px solid #444;
}
.button-base.cap-left {
    right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.button-base.cap-right {
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.glass > .button-base {
    background-color: rgba(0, 0, 0, 0);
}
.desktop .glass:hover > .button-base {
    background-color: rgba(255, 255, 255, .2);
}
@media (any-hover: hover) {
    .desktop .glass:hover > .button-base {
        background-color: rgba(255, 255, 255, .2);
    }
}
.glass.ondown > .button-base {
    background-color: rgba(255, 255, 255, .2);
}
.desktop .glass.ondown > .button-base {
    background-color: rgba(200, 200, 200, .2);
}
.white > .button-base {
    background-color: lightgray;
}
.white > .button-text {
    color: black;
}
.desktop .white:hover > .button-base {
    background-color: white;
}
@media (any-hover: hover) {
    .desktop .white:hover > .button-base {
        background-color: white;
    }
}
.white.ondown > .button-base {
    background-color: #aaaaaa;
}
.desktop .white.ondown > .button-base {
    background-color: #aaaaaa;
}
.gray > .button-base {
    background-color: #555;
}
.gray.ondown > .button-base {
    background-color: #999;
}
.gray-glass > .button-base {
    background-color: #555;
}
.gray-glass.ondown > .button-base {
    background-color: #999;
}
.gray-glass.disable > .button-base {
    background-color: transparent;
}
.primary > .button-base {
    background-color: #a72126;
}
.desktop .primary:hover > .button-base {
    background-color: #ff6666;
}
@media (any-hover: hover) {
    .desktop .primary:hover > .button-base {
        background-color: #ff6666;
    }
}
.primary.ondown > .button-base {
    background-color: #ff3333;
}
.desktop .primary.ondown > .button-base {
    background-color: #ff3333;
}
.button-base.board {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
}
.button-base.tiny {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.button-text {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    white-space: nowrap;
}
.ui-slider-horizontal {
    position: absolute;
    width: 100%;
    height: 100%;
}
.ui-slider {
    position: absolute;
    height: 2rem;
    top: 50%;
    left: 2rem;
    right: 2rem;
    margin-top: -1rem;
    cursor: pointer;
}
.ui-slider.disable {
    pointer-events: none;
}
.ui-slider-handle {
    position: absolute;
    width: 2rem;
    height: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 2rem;
    top: 50%;
    margin-left: -1rem;
    margin-top: -1rem;
    background-color: white;
}
.ui-slider-handle.disable {
    pointer-events: none;
}
.ui-slider-bar {
    position: absolute;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.3rem;
    top: 50%;
    margin-top: -0.15rem;
    background-color: gray;
}
.ui-step-slider-point {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: -0.25rem;
    margin-left: -0.25rem;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    background-color: gray;
}
.ui-step-slider-point.current {
    position: absolute;
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
    margin-left: -0.5rem;
    background-color: #a72126;
}
.ui-slideswitch {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2em;
    margin-top: -1em;
    background-color: gray;
}
.ui-slideswitch-range {
    position: absolute;
    height: 100%;
    left: 1em;
    right: 1em;
}
.ui-slideswitch-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 2em;
    margin-left: -1em;
    background-color: white;
    border: 2px solid gray;
}
.ui-slideswitch-label {
    position: absolute;
    width: 100%;
    height: 2em;
    line-height: 2em;
    padding: 0 0.5em;
}
.ui-slideswitch-label.check-on {
    display: none;
    text-align: left;
    background-color: #a72126;
}
.ui-slideswitch-label.check-off {
    display: block;
    text-align: right;
    background-color: #808080;
}
.checked .ui-slideswitch-handle {
    border: 2px solid #a72126;
}
.checked .ui-slideswitch-label.check-on {
    display: block;
}
.checked .ui-slideswitch-label.check-off {
    display: none;
}
.ui-slideswitch.rounded {
    border-radius: 1em;
}
.rounded .ui-slideswitch-handle {
    border-radius: 1em;
}
.rounded .ui-slideswitch-label {
    border-radius: 1em;
}
.spinner-layer {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;

    -webkit-transition-property: opacity;

    transition-property: opacity;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    opacity: 0;
}
.spinner-layer.onstage {
    visibility: visible;
    opacity: 1;
}
.spinner-base {
    position: absolute;
    width: 4em;
    height: 4em;
    top: 50%;
    left: 50%;
    margin-top: -2em;
    margin-left: -2em;
}
.spinner-boxs {
    position: absolute;
    top: 50%;
    left: 50%;
}
.spinner-boxs.pause > .spinner-box {
    -webkit-animation: none;
            animation: none;
}
.spinner-box {
    position: absolute;
    width: 1em;
    height: 1em;
    background-color: white;
    border: 0.1em solid gray;
    border-radius: 1em;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .3);
            box-shadow: 0 2px 3px rgba(0, 0, 0, .3);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}
.spinner-box.spin-1 {
    -webkit-animation-name: spinner-1;
            animation-name: spinner-1;
}
.spinner-box.spin-2 {
    -webkit-animation-name: spinner-2;
            animation-name: spinner-2;
}
.spinner-box.spin-3 {
    -webkit-animation-name: spinner-3;
            animation-name: spinner-3;
}
.spinner-box.spin-4 {
    -webkit-animation-name: spinner-4;
            animation-name: spinner-4;
}
.spinner-box.l-t {
    top: -1.5em;
    left: -1.5em;
}
.spinner-box.r-t {
    top: -1.5em;
    left: 0.5em;
}
.spinner-box.r-b {
    top: 0.5em;
    left: 0.5em;
}
.spinner-box.l-b {
    top: 0.5em;
    left: -1.5em;
}
@-webkit-keyframes spinner-1 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(2em, 0em);
                transform: translate(2em, 0em);
    }
}
@keyframes spinner-1 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(2em, 0em);
                transform: translate(2em, 0em);
    }
}
@-webkit-keyframes spinner-2 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(0em, 2em);
                transform: translate(0em, 2em);
    }
}
@keyframes spinner-2 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(0em, 2em);
                transform: translate(0em, 2em);
    }
}
@-webkit-keyframes spinner-3 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(-2em, 0em);
                transform: translate(-2em, 0em);
    }
}
@keyframes spinner-3 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(-2em, 0em);
                transform: translate(-2em, 0em);
    }
}
@-webkit-keyframes spinner-4 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(0em, -2em);
                transform: translate(0em, -2em);
    }
}
@keyframes spinner-4 {
    0% {
        -webkit-transform: translate(0em, 0em);
                transform: translate(0em, 0em);
    }
    100% {
        -webkit-transform: translate(0em, -2em);
                transform: translate(0em, -2em);
    }
}
.snackbar-frame {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    background-color: #000000;
}
.snackbar-frame.onstage {
    display: block;
}
.snackbar-frame.position-bottom {
    bottom: 0;
}
.snackbar-frame.position-top {
    top: 0;
}
.snackbar-text {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 1.5rem;
    padding: 0.5rem 1rem;
}
.snackbar-text > span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.ui_scrollbox {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ui_scrollcontent {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}
@charset "utf-8";
.ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -19px;
    margin-left: -19px;
    width: 38px;
    height: 38px;
    background-image: url("./icons/icons_ui.png?v=005");
    background-repeat: no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
    .ui-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -19px;
        margin-left: -19px;
        width: 38px;
        height: 38px;
        background-image: url("./icons/icons_ui@2x.png?v=005");
        background-repeat: no-repeat;
        background-size: 418px 76px;
    }
}
.ui-icon.mini {
    margin-top: -9.5px;
    margin-left: -9.5px;
    width: 19px;
    height: 19px;
}
.ui-icon.bottom-line {
    margin-top: auto;
    bottom: 0;
}
.ui-icon.close {
    background-position: -380px 0;
}
.ui-icon.reduction {
    background-position: -38px 0;
}
.ui-icon.expansion {
    background-position: -76px 0;
}
.ui-icon.mode-change-vertical {
    background-position: -114px 0;
}
.ui-icon.page-double {
    background-position: -152px 0;
}
.ui-icon.home {
    background-position: -190px 0;
}
.ui-icon.fullscreen-on {
    background-position: -228px 0;
}
.ui-icon.next-search {
    background-position: -266px 0;
}
.ui-icon.help {
    background-position: -304px 0;
}
.ui-icon.text-size {
    background-position: -342px 0;
}
.ui-icon.turn-left {
    background-position: 0 -38px;
}
.ui-icon.trash {
    background-position: -38px -38px;
}
.ui-icon.toc {
    background-position: -76px -38px;
}
.ui-icon.bookmark {
    background-position: -114px -38px;
}
.ui-icon.setting {
    background-position: -152px -38px;
}
.ui-icon.minus {
    background-position: -190px -38px;
}
.ui-icon.plus {
    background-position: -228px -38px;
}
.ui-icon.bookmark-add {
    background-position: -266px -38px;
}
.ui-icon.char-big {
    background-position: -304px -38px;
}
.ui-icon.close-mini {
    background-position: -342px -38px;
}
.ui-icon.char-small {
    background-position: -361px -38px;
}
.ui-icon.loupe-small {
    background-position: -342px -57px;
}
.ui-icon.reload {
    background-position: -380px -38px;
}
.ui-icon.exit {
    background-position: -190px 0;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    tap-highlight-color: transparent;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
}
*,
:before,
:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-rendering: optimizeLegibility;
}
html {
    touch-callout: none;
    -ms-touch-action: none;
        touch-action: none;
    -webkit-text-size-adjust: none;
       -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
            text-size-adjust: none;
    font-family: meiryo, sans-serif;
}
html,
body {
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #efefef;
}
body.mobile:after {
    content: "";
    background: gray;
    display: block;
    height: calc(100% + 80px);
    pointer-events: none;
    visibility: hidden;
}
@media print {
    body {
        display: none !important;
    }
}
span {
    pointer-events: none;
}
canvas {
    vertical-align: bottom;
}
.template-tag {
    display: none;
}
.stage {
    position: absolute;
    width: 100%;
    height: 100%;
}
.desktop-only {
    display: none;
}
.desktop .desktop-only {
    display: block;
}
.mobile-only {
    display: none;
}
.mobile .mobile-only {
    display: block;
}
.screen-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.screen-layer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.screen-control-pad {
    position: absolute;
    width: 100%;
    height: 100%;
}
.container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}
.container.events.onstage {
    pointer-events: auto;
}
.menu-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .92);
    -webkit-transition: all 0.2s 0s ease;
    transition: all 0.2s 0s ease;
}
.menu.header {
    top: 0;
    background-color: rgba(0, 0, 0, .92);
    border-bottom: 1px solid #333;
}
.menu.footer {
    bottom: 0;
    height: 7em;
    background-color: rgba(0, 0, 0, .92);
    border-top: 1px solid #333;
}
.anim-slide-down {
    margin-top: -3.5rem;
    opacity: 0;
}
.anim-slide-down.onstage {
    margin-top: 0;
    opacity: 1;
}
.anim-slide-up {
    margin-bottom: -3.5rem;
    opacity: 0;
}
.anim-slide-up.onstage {
    margin-bottom: 0;
    opacity: 1;
}
.menu-shelf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    width: 100%;
    height: 3.5rem;
}
.menu-shelf.menu-shelf-slim {
    height: 3em;
}
.menu-layout-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 3.5rem;
}
.menu-layout-block.justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.menu-layout-block.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.menu-layout-block.justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.menu-item-block {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
}
@media screen and (max-width: 380px) {
    .menu-item-block {
        position: relative;
        width: 3rem;
        height: 3.5rem;
    }
}
.menu-shelf.gap {
    height: 1rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.menu-shelf.gap > span {
    color: #666;
    font-size: 0.8rem;
    line-height: 0.8rem;
    padding-right: 0.8rem;
}
.panel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px;
}
.panel-background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .6);
}
.panel-background.onstage {
    display: block;
}
.panel-base {
    display: none;
    position: relative;
    background-color: #000000;
    border: 1px solid #999;
    border-radius: 0.5rem;
    width: 18em;
    height: auto;
}
.panel-base.rectangle {
    background-color: transparent;
    border: none;
    border-radius: unset;
    width: auto;
    height: auto;
}
.panel-base.rectangle.full-size {
    width: 100%;
    height: 100%;
}
.panel-base.rectangle.poster {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.panel-base.rectangle.bg-black {
    background-color: #000000;
}
.panel-base.onstage {
    display: block;
}
.panel-frame {
    position: relative;
    padding: 0.5rem;
}
.panel-header {
    position: relative;
    width: 100%;
    height: 2rem;
}
.panel-header-title {
    position: absolute;
    height: 2rem;
    line-height: 2rem;
    padding-left: 0.5em;
    white-space: nowrap;
}
.panel-item-block {
    position: relative;
    width: 3rem;
    height: 3rem;
}
.panel-item-block.disappear {
    display: none;
}
.panel-actions {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 3rem;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
.panel-actions.disappear {
    display: none;
}
.panel-actions.row-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.panel-actions.row-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.panel-actions.row-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.panel-content-shelf {
    position: relative;
    width: 100%;
}
.panel-message {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
}
.panel-message.text-center {
    text-align: center;
}
.panel-close-button-frame {
    position: absolute;
    width: 3em;
    height: 3em;
    top: 0;
    right: 0;
}
.panel-message.version {
    text-align: right;
    padding-top: 0.5rem;
    padding-bottom: 0;
    border-top: 1px solid #333;
}
.panel-bookmark .block-bt-add {
    width: 4rem;
}
.panel-bookmark-number {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    left: 0;
    right: 0;
}
.panel-bookmark-number.unset {
    display: none;
}
.empty > .panel-bookmark-number.unset {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.panel-bookmark-number.use {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.empty > .panel-bookmark-number.use {
    display: none;
}
.size-triangle-less-than {
    position: relative;
    bottom: 5px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-style: solid;
    border-width: 0 0 1.6rem 11rem;
    border-color: transparent;
    border-bottom-color: #333333;
}
.panel-frame-colophon {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}
.panel-frame-colophon > iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    line-height: 0;
    overflow: hidden;
}
.panel-tutorial {
    position: absolute;
}
.panel-tutorial-header {
    position: relative;
    width: 100%;
    height: 3.5rem;
    background-color: rgba(0, 0, 0, .92);
}
.panel-tutorial-close-button-frame {
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    top: 0;
    right: 0;
}
.panel-frame-tutorial {
    position: absolute;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 3.5rem;
    bottom: 0;
    left: 0;
    right: 0;
}
.panel-frame-tutorial > iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    line-height: 0;
    overflow: hidden;
}
.panel-base-toc {
    width: 100%;
    height: 100%;
    max-width: 40rem;
    max-height: 38rem;
}
.panel-frame-toc {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
}
.panel-footer-toc {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
.panel-content-toc {
    position: absolute;
    top: 2rem;
    bottom: 3rem;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}
.panel-content-toc:after {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 8px;
    border: 8px solid transparent;
    border-bottom: 8px solid #fff;
    left: 50%;
    margin-left: -4px;
    margin-top: -16px;
}
.panel-content-toc.still-on-up:after {
    display: inline;
}
.panel-content-toc:before {
    display: none;
    content: "";
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 8px;
    border: 8px solid transparent;
    border-top: 8px solid #fff;
    left: 50%;
    margin-left: -4px;
    margin-bottom: -16px;
}
.panel-content-toc.still-on-down:before {
    display: inline;
}
#panel_toc {
    position: absolute;
    max-width: 20rem;
    max-height: none;
    height: auto;
    top: 3.5rem;
    bottom: 0;
    right: 0;
    border: none;
    border-radius: 0;
}
.panel-toc-pagination-nombre {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.5rem;
}
.panel-toc-nombre-page-current {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: right;
}
.panel-toc-nombre-page-total {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: left;
}
.panel-toc-pagination-button-block {
    width: 6rem;
}
.panel-toc-list-item {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #333;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-rendering: auto;
    background-color: transparent;
}
.panel-toc-list-item.disable {
    cursor: default;
    pointer-events: none;
    color: #808080;
}
.desktop .panel-toc-list-item:hover {
    background-color: #381010;
}
@media (any-hover: hover) {
    .desktop .panel-toc-list-item:hover {
        background-color: #381010;
    }
}
.panel-toc-list-item.ontouch {
    background-color: #381010;
}
.panel-toc-list-item.disable.ontouch {
    background-color: transparent;
}
.dialog-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}
.dialog-background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .6);
}
.dialog-background.onstage {
    display: block;
}
.dialog-base {
    display: none;
    position: relative;
    background-color: #000000;
    border: 1px solid #999;
    border-radius: 0.5rem;
    width: 18em;
    height: auto;
}
.dialog-base.onstage {
    display: block;
}
.dialog-frame {
    position: relative;
    padding: 0.5rem;
}
.dialog-header {
    position: relative;
    width: 100%;
    height: 2rem;
}
.dialog-header-title {
    position: relative;
    height: 2rem;
    line-height: 2rem;
    padding-left: 0.5em;
}
.dialog-header-code {
    color: #adadad;
}
.dialog-item-block {
    position: relative;
    width: 3rem;
    height: 3rem;
}
.dialog-item-block.disappear {
    display: none;
}
.dialog-actions {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 3rem;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
.dialog-actions.disappear {
    display: none;
}
.dialog-actions.row-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.dialog-actions.row-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.dialog-actions.row-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.dialog-content-shelf {
    position: relative;
    width: 100%;
}
.dialog-message {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2rem;
}
.dialog-retry {
    height: 90%;
    max-height: 16rem;
}
.dialog-frame-retry {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
}
.dialog-content-retry {
    position: absolute;
    top: 2rem;
    bottom: 3rem;
    left: 0.5rem;
    right: 0.5rem;
    overflow: hidden;
}
.dialog-footer-retry {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
}
.dialog-message-retry {
    padding: 1rem 0;
}

#menu_nombre {
    width:100%;
    display: inline;
    text-align: center;
    margin-top:10px;
}
.nombre-base {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 5rem;
    height: 5rem;
    background-color: #000000;
    color: #efefef;
    border-radius: 0.5rem;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: opacity 0.4s 0s ease-out;
    transition: opacity 0.4s 0s ease-out;
}
.nombre-base.onstage {
    opacity: 1;
}
.nombre-current {
    /* position: absolute;
    width: 100%; */
    height: 2rem;
    line-height: 2rem;
    /* bottom: 45%; */
    text-align: center;
    display: inline-flex;
}
.page_number_divider {
    display: inline-flex;
}
.nombre-current span {
    font-weight: bold;
    font-size: 1.2rem;
}
.nombre-total {
    /* position: absolute;
    width: 100%; */
    display: inline-flex;
    height: 1.2rem;
    line-height: 1.2rem;
    /* top: 55%; */
    text-align: center;
}
.nombre-total span {
    color: #adadad;
    font-weight: bold;
    font-size: 0.9em;
}
.nombre-ruled-line {
    position: absolute;
    width: 1.2rem;
    top: 55%;
    left: 50%;
    margin-left: -0.6rem;
    border-top: 1px solid #333;
}
.splash-screen-layer {
    display: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.splash-screen-layer.onstage {
    display: block;
    pointer-events: auto;
}
.splash-screen-background {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.splash-screen-background.onstage {
    display: block;
}
.splash-screen-image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.guidance-layer {
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.guidance-layer.onstage {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    pointer-events: auto;
}
.guidance-base {
    position: relative;
    background-color: #000000;
    border: 1px solid #999;
    border-radius: 0.5rem;
    width: 18em;
    height: auto;
}
.guidance-shelf {
    text-align: center;
    margin: 1.2rem 0;
}
.guidance-cell {
    font-size: 95%;
}
.colophon-toast-layer {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.colophon-toast-label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    color: #efefef;
}
.colophon-toast-base {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    width: 13rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    border-radius: 1.5rem;
    background-color: black;
    border: 2px solid #efefef;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    -webkit-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}
.colophon-toast-base.pos-top {
    top: 15%;
}
.colophon-toast-base.pos-left {
    left: 0;
    margin-left: -14rem;
    opacity: 0;
}
.colophon-toast-base.pos-left.onstage {
    margin-left: -3rem;
    opacity: 1;
}
.colophon-toast-base.pos-right {
    right: 0;
    margin-right: -14rem;
    opacity: 0;
}
.colophon-toast-base.pos-right.onstage {
    margin-right: -3rem;
    opacity: 1;
}
.colophon-toast-icon-container {
    position: relative;
    width: 3rem;
    height: 3rem;
    padding: 3px;
}
.colophon-toast-icon {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid #efefef;
}
.colophon-toast-icon-arrow {
    position: absolute;
    width: 70%;
    height: 3px;
    background-color: #efefef;
    border-radius: 3px;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    top: 50%;
    margin-top: -1.5px;
    left: 5px;
}
.colophon-toast-icon-arrow:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 3px;
    background-color: #efefef;
    border-radius: 3px;
}
.colophon-toast-icon-arrow.left-arrow:before {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    left: 1px;
    -webkit-transform: rotate(-37deg);
            transform: rotate(-37deg);
}
.colophon-toast-icon-arrow.right-arrow:before {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    right: 1px;
    -webkit-transform: rotate(37deg);
            transform: rotate(37deg);
}
.colophon-toast-icon-arrow:after {
    content: "";
    position: absolute;
    width: 80%;
    height: 3px;
    background-color: #efefef;
    border-radius: 3px;
}
.colophon-toast-icon-arrow.left-arrow:after {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    left: 1px;
    -webkit-transform: rotate(37deg);
            transform: rotate(37deg);
}
.colophon-toast-icon-arrow.right-arrow:after {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    right: 1px;
    -webkit-transform: rotate(-37deg);
            transform: rotate(-37deg);
}
.ad-page-root {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-color: black;
    color: black;
}
.ad-page-root.onstage {
    display: block;
}
