@import url('https://fonts.googleapis.com/css?family=Roboto:700');
.hidden {
  display: none !important;
}
.secret {
  display: none;
}
.lazy-image-appear {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  animation: fadeIn 1s ease 0s 1 normal;
}
.lazy-image-bg-transition {
  -webkit-transition: background 1s linear;
  transition: background 1s linear;
}
.viewer {
  position: relative;
  background: #333;
  text-align: center;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  box-sizing: border-box;
  height: calc(100% - 135px);
}
@media screen and (max-width: 600px) {
  .viewer {
    background: #fff;
    min-height: inherit;
    height: 500px;
    max-height: calc(100% - 150px);
  }
}
@media screen and (max-width: 320px) {
  .viewer {
    height: 450px;
  }
}
@media screen and (max-height: 450px) {
  .viewer {
    min-height: inherit;
    max-height: none;
    height: 100%;
  }
}
.viewer .viewer-controller,
.viewer .viewer-controller-container,
.viewer .viewer-close-fullscreen {
  display: none;
}
.viewer .table-of-contents-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.viewer .table-of-contents-container .table-of-contents {
  background: #fff;
  width: 74%;
  max-width: 300px;
  text-align: left;
  overflow-y: scroll;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav {
  position: absolute;
  bottom: 0;
  right: 20px;
  background: white;
  width: calc(74% - 40px);
  max-width: 260px;
  height: 44px;
  line-height: 44px;
  padding: 2px 0;
  border-top: 1px solid #666;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a {
  position: absolute;
  font-size: 13px;
  height: 100%;
  padding: 0 20px;
  cursor: pointer;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a::before,
.viewer .table-of-contents-container .table-of-contents-skip-nav a::after {
  position: absolute;
  content: "";
  top: calc(50% - 2px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 4px solid transparent;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-next-content {
  left: 0;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-next-content::before,
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-next-content::after {
  border-right-color: #999;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-next-content::before {
  left: -3px;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-next-content::after {
  left: 3px;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-prev-content {
  right: 0;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-prev-content::before,
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-prev-content::after {
  right: -3px;
  border-left-color: #999;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-prev-content::before {
  right: -3px;
}
.viewer .table-of-contents-container .table-of-contents-skip-nav a.goto-prev-content::after {
  right: 3px;
}
.viewer .table-of-contents-container .table-of-contents-slider {
  background: #f5f5f5;
  height: 48px;
  position: relative;
}
.viewer .table-of-contents-container .table-of-contents-slider a {
  display: inline-block;
  font-size: 13px;
  position: absolute;
}
.viewer .table-of-contents-container .table-of-contents-slider a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  border: 4px solid transparent;
}
.viewer .table-of-contents-container .table-of-contents-slider a:hover {
  cursor: pointer;
}
.viewer .table-of-contents-container .table-of-contents-slider a.next {
  padding-left: 13px;
  left: 20px;
  bottom: 13px;
}
.viewer .table-of-contents-container .table-of-contents-slider a.next::before {
  left: -3px;
  border-right-color: #999;
}
.viewer .table-of-contents-container .table-of-contents-slider a.prev {
  padding-right: 13px;
  right: 20px;
  bottom: 13px;
}
.viewer .table-of-contents-container .table-of-contents-slider a.prev::before {
  right: -3px;
  border-left-color: #999;
}
.viewer .table-of-contents-container .table-of-content-item-top {
  border-bottom: 1px solid #eaeaea;
  margin: 0 20px;
}
.viewer .table-of-contents-container .table-of-content-item-top a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0;
  font-size: 17px;
}
.viewer .table-of-contents-container .table-of-content-item-top a img {
  margin-right: 12px;
  width: 35%;
}
.viewer .table-of-contents-container .table-of-content-item-top a:hover {
  background-color: #fafafa;
}
.viewer .table-of-contents-container .table-of-content-item-top a:hover p {
  color: #000;
}
.viewer .table-of-contents-container ul {
  margin: 0 20px;
}
.viewer .table-of-contents-container li.table-of-content-item {
  border-bottom: 1px solid #eaeaea;
}
.viewer .table-of-contents-container li.table-of-content-item:last-child {
  margin-bottom: 56px;
}
.viewer .table-of-contents-container li.table-of-content-item.active a,
.viewer .table-of-contents-container li.table-of-content-item.active a:hover {
  background-color: #f1f6c7;
}
.viewer .table-of-contents-container li.table-of-content-item a {
  color: #333;
  display: block;
  text-decoration: none;
  padding: 18px 0;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .viewer .table-of-contents-container li.table-of-content-item a {
    font-size: 15px;
  }
}
.viewer .table-of-contents-container li.table-of-content-item a:hover {
  background-color: #fafafa;
}
#content {
  -webkit-overflow-scrolling: touch;
}
html,
body {
  height: 100%;
}
.expand .viewer {
  height: 100%;
  max-height: calc(100% - 40px);
}
@media screen and (max-width: 600px) {
  .expand .viewer {
    background: #333;
  }
}
.expand .app-read-content {
  display: none;
}
.fullscreen {
  overflow-y: hidden;
}
.fullscreen .header,
.fullscreen .viewer-offline {
  display: none;
  visibility: hidden;
}
.fullscreen .viewer {
  height: 100%;
  max-height: none;
}
@media screen and (max-width: 600px) {
  .fullscreen .viewer {
    background: #333;
  }
}
.fullscreen .viewer .viewer-close-fullscreen {
  display: block;
}
.fullscreen .viewer .viewer-close-fullscreen a {
  position: absolute;
  display: block;
  z-index: 1010;
  width: 44px;
  height: 44px;
  top: 10px;
  right: 18px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: .5;
}
.fullscreen .viewer .viewer-close-fullscreen a:hover {
  opacity: 1;
}
.fullscreen .viewer .viewer-close-fullscreen a::before,
.fullscreen .viewer .viewer-close-fullscreen a::after {
  position: absolute;
  display: block;
  content: "";
  width: 44px;
  height: 0;
  right: 0;
  bottom: calc(50% - 2px);
  border-bottom: 4px solid #999;
}
.fullscreen .viewer .viewer-close-fullscreen a::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fullscreen .viewer .viewer-close-fullscreen a span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.fullscreen .viewer .table-of-contents-container .table-of-contents-slider {
  height: 88px;
}
.fullscreen .viewer-controller.controller-horizontal {
  position: fixed;
  bottom: 0;
  width: 100vw;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.fullscreen .viewer-controller.controller-horizontal .viewer-btn-fullscreen {
  display: none;
}
.fullscreen .viewer-controller.controller-horizontal * {
  visibility: hidden;
}
.fullscreen .viewer-controller.controller-horizontal.show {
  opacity: 1;
}
.fullscreen .viewer-controller.controller-horizontal.show * {
  visibility: visible;
}
@media screen and (max-width: 600px) {
  .fullscreen .viewer-controller.controller-horizontal.show {
    background: #333;
  }
}
.fullscreen .app-read-content {
  display: none;
}
.viewer,
#content,
.content-inner.scroll-horizontal,
.image-container {
  -webkit-transition: height 200ms 0s ease-out, width 200ms 0s ease-out;
  transition: height 200ms 0s ease-out, width 200ms 0s ease-out;
}
#content,
.content-inner.scroll-horizontal,
.image-container {
  height: 100%;
}
.image-container .page-image,
.image-container canvas {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.image-container.selectable .page-image,
.image-container.selectable canvas {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  -webkit-touch-callout: default;
  pointer-events: auto;
}
.page-dummy {
  background-color: #fff;
  display: inline-block;
}
.direction-guide {
  position: absolute;
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  margin: -65px 0 0 -65px;
  padding-top: 104px;
  box-sizing: border-box;
  font-size: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  background-repeat: no-repeat;
  background-position: center 36px;
}
.direction-guide-horizontal {
  background-image: url("/images/viewer/notice_keytop.png");
  background-size: 114px 48px;
}
@media screen and (max-width: 600px) {
  .direction-guide-horizontal {
    background-size: 80.5px 65.5px;
    background-position: center 25px;
  }
  .direction-guide-horizontal.rtl {
    background-image: url("/images/viewer/notice_tap.png");
  }
  .direction-guide-horizontal.ltr {
    background-image: url("/images/viewer/notice_tap_ltr.png");
  }
}
.direction-guide-vertical {
  background-image: url("/images/viewer/notice_keytop_down.png");
  background-size: 54px 48px;
}
@media screen and (max-width: 600px) {
  .direction-guide-vertical {
    background-image: url("/images/viewer/notice_slidedown.png");
    background-size: 65px 48px;
  }
}
.viewer-controller {
  position: relative;
  line-height: 0;
  background: #333;
  text-align: center;
  zoom: 1;
}
.viewer-controller:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-height: 450px) {
  .viewer-controller {
    display: none;
  }
}
.viewer-controller ul {
  display: inline-block;
  zoom: 1;
}
.viewer-controller ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 600px) {
  .viewer-controller ul {
    display: block;
    padding: 0 8px;
    box-sizing: border-box;
  }
}
.viewer-controller li {
  position: relative;
  float: left;
}
.viewer-controller li.viewer-btn-slider-container,
.viewer-controller li.viewer-btn-table-of-contents-container {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .viewer-controller li.viewer-btn-slider-container,
  .viewer-controller li.viewer-btn-table-of-contents-container {
    position: static;
    float: right;
  }
}
.viewer-controller li.viewer-btn-table-of-contents-container + .viewer-btn-slider-container {
  right: 80px;
}
.controller-vertical .viewer-btn-slider-container {
  display: none;
}
.viewer-btn-normal,
.viewer-btn-expand,
.viewer-btn-fullscreen,
.viewer-btn-slider,
.viewer-btn-table-of-contents {
  display: block;
  min-width: 90px;
  padding: 8px 0;
  font-size: 12px;
  line-height: 24px;
  height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .viewer-btn-normal,
  .viewer-btn-expand,
  .viewer-btn-fullscreen,
  .viewer-btn-slider,
  .viewer-btn-table-of-contents {
    min-width: auto;
    font-size: 11px;
  }
}
.viewer-btn-normal::before,
.viewer-btn-expand::before,
.viewer-btn-fullscreen::before,
.viewer-btn-slider::before,
.viewer-btn-table-of-contents::before {
  position: relative;
  content: "";
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  margin-right: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.viewer-btn-normal,
.viewer-btn-expand,
.viewer-btn-fullscreen {
  position: relative;
  color: #999;
}
@media screen and (max-width: 600px) {
  .viewer-btn-normal,
  .viewer-btn-expand,
  .viewer-btn-fullscreen {
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.viewer-btn-normal:not(.current):hover,
.viewer-btn-expand:not(.current):hover,
.viewer-btn-fullscreen:not(.current):hover {
  color: #fff;
  background-color: transparent;
}
.viewer-btn-normal.current,
.viewer-btn-expand.current,
.viewer-btn-fullscreen.current {
  display: none;
}
.viewer-btn-normal::before {
  background-image: url("/images/viewer/ic_normal_white.png");
  width: 18px;
  height: 12px;
}
.viewer-btn-expand::before {
  background-image: url("/images/viewer/ic_expand_white.png");
  width: 24px;
  height: 16px;
}
.viewer-btn-fullscreen::before {
  background-image: url("/images/viewer/ic_fullscreen_white.png");
  width: 16px;
  height: 16px;
}
.viewer-btn-slider,
.viewer-btn-table-of-contents {
  color: #999;
}
@media screen and (max-width: 600px) {
  .viewer-btn-slider,
  .viewer-btn-table-of-contents {
    display: inline-block;
    padding: 8px;
  }
}
.viewer-btn-slider:hover,
.viewer-btn-table-of-contents:hover {
  color: #fff;
}
.viewer-btn-slider::before {
  background-image: url("/images/viewer/ic_move_white.png");
  width: 20px;
  height: 8px;
}
.viewer-btn-table-of-contents::before {
  background-image: url("/images/viewer/ic_list_white.png");
  width: 20px;
  height: 12.5px;
}
.viewer-table-of-contents-button-container {
  position: absolute;
  background: #333;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: right;
  z-index: 100;
}
.viewer-table-of-contents-button-close {
  display: inline-block;
  min-width: 90px;
  padding: 0 16px;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  color: #999;
}
.viewer-table-of-contents-button-close:hover {
  color: #fff;
}
.viewer-slider {
  position: absolute;
  background: #333;
  width: 100%;
  padding: 9px 0;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 100;
}
.viewer-slider-container {
  display: inline-block;
  width: calc(100% - 160px);
}
.viewer-slider-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .viewer-slider-inner {
    position: static;
    width: 100%;
  }
}
.viewer-slider-inner a {
  color: #fff;
}
.viewer-slider span {
  position: absolute;
  display: block;
}
.viewer-slider-next,
.viewer-slider-prev {
  color: #999;
  font-size: 12px;
  padding: 13px 16px;
  margin-top: -2px;
}
.viewer-slider-next:before,
.viewer-slider-prev:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  border: 4px solid transparent;
}
.viewer-slider-next.rtl {
  left: 0;
}
.viewer-slider-next.rtl:before {
  left: 4px;
  border-right-color: #999;
}
.viewer-slider-next.ltr {
  right: 0;
}
.viewer-slider-next.ltr:before {
  right: 4px;
  border-left-color: #999;
}
.viewer-slider-prev.rtl {
  right: 0;
}
.viewer-slider-prev.rtl:before {
  right: 4px;
  border-left-color: #999;
}
.viewer-slider-prev.ltr {
  left: 0;
}
.viewer-slider-prev.ltr:before {
  left: 4px;
  border-right-color: #999;
}
.viewer-slider-pagenum,
.viewer-slider-pagenum-last {
  font-size: 10px;
  color: #999;
  margin-top: 11px;
}
.viewer-slider-pagenum {
  right: 80px;
}
.viewer-slider-pagenum-last {
  display: block;
  width: 30px;
}
.viewer-slider-pagenum-last.rtl {
  left: 46px;
  text-align: right;
}
.viewer-slider-pagenum-last.ltr {
  right: 46px;
  text-align: left;
}
.viewer-slider-pagenum-now {
  top: -35px;
  left: 104px;
  padding: 12px 10px;
  color: #fff;
  background-color: #e53935;
  font-size: 12px;
  border-radius: 2px;
}
@media screen and (max-width: 600px) {
  .viewer-slider-pagenum-now {
    top: -20px;
  }
}
.viewer-slider-pagenum-now:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  border: 5px solid transparent;
  border-top-color: #e53935;
  margin-left: -5px;
}
input[type=range].slider {
  -webkit-appearance: none;
  width: calc(100% - 160px);
  margin: 7px 0;
  padding: 0;
}
@media screen and (max-width: 980px) {
  input[type=range].slider {
    width: 100%;
  }
}
input[type=range].slider:focus {
  outline: none;
}
input[type=range].slider:focus::-ms-tooltip {
  display: none;
}
input[type=range].slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  background: #eaeaea;
  border-radius: 0px;
  border: 0px solid rgba(1, 1, 1, 0);
}
input[type=range].slider:focus::-webkit-slider-runnable-track {
  background: #f7f7f7;
}
input[type=range].slider::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 22px;
  width: 22px;
  border-radius: 11px;
  background: #e53935;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range].slider::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  background: #eaeaea;
  border-radius: 0px;
  border: 0px solid rgba(1, 1, 1, 0);
}
input[type=range].slider::-moz-range-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 22px;
  width: 22px;
  border-radius: 11px;
  background: #e53935;
  cursor: pointer;
}
input[type=range].slider::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-width: 8px;
}
input[type=range].slider::-ms-fill-lower {
  background: #dddddd;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 0px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}
input[type=range].slider::-ms-fill-upper {
  background: #eaeaea;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 0px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}
input[type=range].slider::-ms-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 22px;
  width: 22px;
  border-radius: 11px;
  background: #e53935;
  cursor: pointer;
}
input[type=range].slider:focus::-ms-fill-lower {
  background: #eaeaea;
}
input[type=range].slider:focus::-ms-fill-upper {
  background: #f7f7f7;
}
.viewer-horizontal {
  overflow-x: hidden;
  overflow-y: hidden;
}
.content-inner.scroll-horizontal {
  position: relative;
  overflow: hidden;
  contain: paint;
}
.scroll-horizontal .image-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
}
.scroll-horizontal .page-area {
  display: inline-block;
  vertical-align: top;
}
.scroll-horizontal .page-area svg {
  position: absolute;
  z-index: 10;
}
.scroll-horizontal .page-area svg a {
  cursor: pointer;
}
.scroll-horizontal .align-left {
  text-align: left;
}
.scroll-horizontal .align-right {
  text-align: right;
}
.scroll-horizontal .align-center {
  text-align: center;
}
.scroll-horizontal .hide {
  display: none !important;
}
.scroll-horizontal .page-navigation-backward,
.scroll-horizontal .page-navigation-forward {
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  z-index: 10;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 27px 49.5px;
  opacity: .2;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.scroll-horizontal .page-navigation-backward:hover,
.scroll-horizontal .page-navigation-forward:hover {
  opacity: 1;
}
.scroll-horizontal .page-navigation-backward .icon-label,
.scroll-horizontal .page-navigation-forward .icon-label {
  display: none;
}
.scroll-horizontal .page-navigation-backward.rtl {
  right: 0;
  background-image: url("/images/viewer/ic_viewer_backward.png");
  background-position: right 20px center;
}
.scroll-horizontal .page-navigation-backward.ltr {
  left: 0;
  background-image: url("/images/viewer/ic_viewer_forward.png");
  background-position: 20px center;
}
@media screen and (max-width: 980px) {
  .scroll-horizontal .page-navigation-backward {
    background: none !important;
  }
}
.scroll-horizontal .page-navigation-forward.rtl {
  left: 0;
  background-image: url("/images/viewer/ic_viewer_forward.png");
  background-position: 20px center;
}
.scroll-horizontal .page-navigation-forward.ltr {
  right: 0;
  background-image: url("/images/viewer/ic_viewer_backward.png");
  background-position: right 20px center;
}
@media screen and (max-width: 980px) {
  .scroll-horizontal .page-navigation-forward {
    background: none !important;
  }
}
.scroll-horizontal .page-navigation-forward.slideonly {
  width: 100%;
}
.content-vertical {
  overflow-x: hidden;
  overflow-y: scroll;
}
.scroll-vertical .page-area {
  text-align: center;
  line-height: 0;
}
.scroll-vertical .page-area img {
  vertical-align: middle;
}
.scroll-vertical .page-navigation {
  position: absolute;
  height: 100%;
  z-index: 1;
}
.scroll-vertical .page-navigation .page-navigation-forward {
  display: block;
  bottom: 0;
  width: 100vw;
  height: 25%;
  position: absolute;
  cursor: pointer;
}
.link-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  margin: 0 auto;
}
.link-page-half {
  height: 700px;
}
@media screen and (max-width: 600px) {
  .link-page-half {
    height: 500px;
  }
}
.align-right .link-page {
  float: right;
}
.align-left .link-page {
  float: left;
}
.link-page-content {
  white-space: normal;
  text-align: center;
  width: 100%;
}
.link-page-full .link-page-content {
  height: 100%;
}
.link-page-half .link-page-content {
  height: 90%;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-slot {
  width: 100%;
}
.link-page-full .link-slot {
  height: 100%;
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-page-full .link-slot img {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: inline-block;
}
.link-page-full .link-slot a {
  position: absolute;
  width: 100%;
  height: 15%;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.link-page-full .link-slot a p {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.scroll-vertical .link-page-full .link-slot img {
  max-height: none;
}
.link-page-half .link-slot {
  height: 50%;
  padding: 2% 0;
  box-sizing: border-box;
}
.link-page-half .link-slot a {
  position: relative;
  z-index: 100;
  line-height: 0;
}
.link-page-half .link-slot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.link-page-half .link-slot p {
  font-weight: bold;
  font-size: 17px;
  padding: 8px 16px 0;
  line-height: 1.4;
  position: relative;
  z-index: 100;
}
@media screen and (max-height: 800px) {
  .link-page-half .link-slot p {
    font-size: 15px;
    padding: 4px 6px 0;
  }
}
@media screen and (max-width: 600px) {
  .link-page-half .link-slot p {
    font-size: 10px;
    padding: 4px 6px 0;
  }
}
@media screen and (max-height: 450px) {
  .link-page-half .link-slot p {
    font-size: 10px;
    padding: 4px 6px 0;
  }
}
.link-page-half .link-slot.with-text img {
  max-height: 85%;
  height: auto;
  max-width: 100%;
}
.page-ad {
  display: inline-block;
  background: #fff;
}
.scroll-vertical .page-ad {
  min-height: 350px;
  padding: 24px 0;
}
#ad-nav-area-wrap,
#ad-nav-area-content {
  width: 100%;
  height: 100%;
}
#content.content-vertical #ad-nav-area-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#content.content-vertical .ad-container {
  margin: 10px;
}
@media screen and (max-width: 350px) {
  #content.content-vertical .ad-container {
    width: 320px;
  }
}
@media screen and (max-width: 320px) {
  #content.content-vertical .ad-container {
    width: 300px;
  }
}
#content:not(.content-vertical) #ad-nav-area-wrap {
  display: table;
}
#content:not(.content-vertical) #ad-nav-area-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 350px) {
  #content:not(.content-vertical) #ad-nav-area-content {
    padding: 0 15px;
  }
}
@media screen and (max-height: 450px) {
  #content:not(.content-vertical) #ad-nav-area-content {
    padding: 0 15px;
  }
}
.ad-container {
  margin: 10px auto;
}
@media screen and (max-width: 350px) {
  .ad-container {
    margin: 10px auto;
    border: 1px solid #eaeaea;
    max-width: 320px;
  }
}
@media screen and (max-height: 450px) {
  .ad-container {
    margin: 10px auto;
    border: 1px solid #eaeaea;
    max-width: 320px;
  }
}
@media screen and (max-width: 600px) {
  .ad-container img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.ad-container iframe {
  position: relative;
  z-index: 100;
}
.back-matter {
  position: relative;
  text-align: left;
  display: inline-block;
  line-height: 1.5;
  height: 100%;
  background: #fff;
  max-width: 100vw;
}
.back-matter-content {
  height: 100%;
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.scroll-vertical #viewer-colophon {
  padding-bottom: 16px;
  border-top: 1px solid #333;
}
.viewer-colophon-info-wrapper {
  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;
  white-space: normal;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 80px;
}
.scroll-vertical .viewer-colophon-info-wrapper {
  display: block;
  height: auto;
}
.viewer-colophon-info {
  text-align: center;
  line-height: 1;
}
.scroll-vertical .viewer-colophon-info {
  display: block;
  padding: 40px;
}
.viewer-colophon-next-episode {
  width: 100%;
  z-index: 1000;
  left: 0;
}
.viewer-colophon-next-episode .next-link,
.viewer-colophon-next-episode .top-link {
  position: relative;
  z-index: 11;
}
.viewer-colophon-next-episode .next-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  background: #e53935;
  color: #fff;
  padding: 0 25px;
  line-height: 40px;
  border-radius: 20px;
}
.viewer-colophon-next-episode .next-link:hover {
  color: #fff;
  background: #d6201c;
}
.viewer-colophon-next-episode .top-link {
  font-size: 15px;
  color: #e53935;
}
@media screen and (max-width: 320px) {
  .viewer-colophon-next-episode .top-link {
    font-size: 13px;
  }
}
.viewer-colophon-next-episode .top-link:hover {
  text-decoration: underline;
}
.viewer-colophon-next-episode .next-bought-link {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  background: #e53935;
  color: #fff;
  padding: 0 24px;
  margin: 0 16px;
  line-height: 40px;
  min-width: 160px;
  border-radius: 8px;
}
@media screen and (max-height: 450px), screen and (max-width: 600px) {
  .viewer-colophon-next-episode .next-bought-link {
    font-size: 13px;
    line-height: 1.5em;
    min-width: 0;
    padding: 8px 16px;
  }
}
.viewer-colophon-next-episode .next-bought-link:hover {
  color: #fff;
  background: #d6201c;
}
.viewer-colophon-next-episode .next-bought-link span {
  padding-left: 8px;
}
.viewer-colophon-next-episode .next-bought-link img.point-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: -3px 0 0 3px;
}
@media screen and (max-height: 450px), screen and (max-width: 600px) {
  .viewer-colophon-next-episode .next-bought-link img.point-icon {
    width: 14px;
    height: 14px;
  }
}
.viewer-colophon-next-update {
  font-size: 12px;
  margin-top: 12px;
}
@media screen and (max-width: 600px) {
  .viewer-colophon-next-update {
    font-size: 11px;
  }
}
@media screen and (max-width: 320px) {
  .viewer-colophon-next-update {
    font-size: 10px;
    margin-top: 6px;
  }
}
.viewer-colophon-recommend {
  width: 100%;
  max-width: 100vw;
  z-index: 100;
}
.scroll-vertical .viewer-colophon-recommend {
  position: static;
}
.viewer-colophon-recommend a {
  display: block;
}
.viewer-colophon-recommend img {
  width: 100%;
  height: auto;
}
.viewer-colophon-recommend-title {
  font-size: 12px;
  color: #999;
  margin: 0 8px 8px;
  line-height: 1;
}
@media screen and (max-width: 600px), screen and (max-height: 450px) {
  .viewer-colophon-recommend-title {
    font-size: 11px;
    margin-bottom: 4px;
  }
}
.viewer-colophon-recommend-title strong {
  display: inline-block;
  font-weight: 300;
  color: #e53935;
  padding-right: 2px;
}
.viewer-colophon-recommend-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 0;
}
.viewer-colophon-recommend-list li {
  width: 33.33333333%;
  line-height: 0;
  box-sizing: border-box;
  position: relative;
}
.viewer-colophon-recommend-list .not-read-label {
  position: absolute;
  color: #fff;
  background: #F22A1F;
  top: 0;
  right: 0;
  padding: 10px 6px 10px 15px;
  font-size: 12px;
}
@media screen and (max-width: 600px), screen and (max-height: 450px) {
  .viewer-colophon-recommend-list .not-read-label {
    padding: 10px 4px 10px 13px;
    font-size: 10px;
  }
}
.viewer-colophon-recommend-list .not-read-label::before {
  content: '';
  display: block;
  border-radius: 50%;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 5px;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
}
@media screen and (max-width: 600px), screen and (max-height: 450px) {
  .viewer-colophon-recommend-list .not-read-label::before {
    width: 4px;
    height: 4px;
    margin-top: -2px;
  }
}
.viewer-colophon-news-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.viewer-colophon-news {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: normal;
  background-color: #fceaea;
  line-height: 1.4;
  margin: 0 16px;
  padding: 8px 16px;
  min-height: 60px;
  font-size: 13px;
}
@media screen and (max-width: 600px) {
  .viewer-colophon-news {
    margin: 0 8px;
    padding: 4px 8px;
    min-height: 40px;
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .viewer-colophon-news {
    min-height: 32px;
    font-size: 11px;
  }
}
@media screen and (max-height: 450px) {
  .viewer-colophon-news {
    min-height: 30px;
    font-size: 10px;
  }
}
.viewer-colophon-news a {
  color: #e53935;
  text-decoration: underline;
}
.viewer-colophon-news a:hover {
  color: #d6201c;
  text-decoration: underline;
}
.scroll-vertical .viewer-colophon-news {
  margin-bottom: 50px;
}
.viewer-colophon-news::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10px solid #e53935;
  border-right: 10px solid transparent;
}
.private-viewer {
  text-align: center;
  background: #333;
  color: #eaeaea;
}
.private-viewer .content {
  padding: 40px 0;
}
.private-viewer .episode-not-found-thumb {
  width: 67%;
  max-width: 204px;
  border: 1px solid #000;
  vertical-align: bottom;
}
@media screen and (max-width: 600px) {
  .private-viewer .episode-not-found-thumb {
    max-width: 187px;
  }
}
.private-viewer .episode-title {
  font-size: 17px;
  margin-top: 10px;
  padding: 0 24px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .private-viewer .episode-title {
    font-size: 15px;
  }
}
.private-viewer .episode-read-date {
  font-size: 12px;
  margin-top: 4px;
  padding: 0 24px;
}
.private-viewer .private-message {
  color: #999;
  font-size: 15px;
  margin-top: 6px;
  padding: 0 24px;
}
@media screen and (max-width: 600px) {
  .private-viewer .private-message {
    font-size: 13px;
  }
}
.private-viewer .read-button-container {
  height: 70px;
}
@media screen and (max-width: 600px) {
  .private-viewer .read-button-container {
    height: 60px;
  }
}
.private-viewer .read-button {
  background: #e53935;
  margin-top: 24px;
  width: 260px;
}
@media screen and (max-width: 600px) {
  .private-viewer .read-button {
    margin-top: 16px;
    width: 250px;
  }
}
.private-viewer .read-button:hover {
  background: #d6201c;
}
.private-viewer .read-button span {
  margin: 0 4px;
}
.private-viewer .read-button img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: -3px 0 0 3px;
}
.private-viewer .private-link {
  margin-top: 15px;
}
.private-viewer .next-open-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  background: #e53935;
  color: #fff;
  padding: 0 16px;
  line-height: 32px;
  border-radius: 16px;
}
.private-viewer .next-open-link:hover {
  color: #fff;
  background: #d6201c;
}
.private-viewer .next-episode-app-link,
.private-viewer .next-episode-free-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: #000;
  border: 1px solid #666;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  line-height: 1.5;
  width: 260px;
  box-sizing: border-box;
  font-family: inherit;
}
@media screen and (max-width: 600px) {
  .private-viewer .next-episode-app-link,
  .private-viewer .next-episode-free-link {
    font-size: 13px;
    width: 250px;
  }
}
.private-viewer .next-episode-app-link:hover,
.private-viewer .next-episode-free-link:hover {
  color: #fff;
  background: #666;
}
.private-viewer .next-episode-app-link .app-image,
.private-viewer .next-episode-free-link .app-image {
  width: 24px;
  vertical-align: middle;
  margin-right: 7px;
}
.private-viewer .episode-signup-container {
  width: 100%;
  background: #262626;
}
.private-viewer .episode-signup-container .episode-signup-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px 0;
  width: 296px;
}
.private-viewer .episode-signup-container .episode-signup-message {
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
}
.private-viewer .episode-signup-container .episode-signup-message span {
  display: block;
  font-weight: 700;
  color: #f19f00;
}
.private-viewer .episode-signup-container .episode-signup-link {
  display: inline-block;
  min-width: 136px;
  height: 32px;
  border-radius: 16px;
  line-height: 32px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #e53935;
  vertical-align: middle;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: none;
  box-sizing: border-box;
}
.private-viewer .episode-signup-container .episode-signup-link:hover,
.private-viewer .episode-signup-container .episode-signup-link:focus {
  color: #fff;
  background: #d6201c;
}
.private-viewer .app-download-container {
  width: 100%;
  background: #262626;
}
.private-viewer .app-download-content {
  box-sizing: border-box;
  display: table;
  width: 90%;
  max-width: 336px;
  margin: 0 auto;
  padding: 16px 5px 14px 54px;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .private-viewer .app-download-content {
    max-width: 280px;
    padding-left: 48px;
    padding: 14px 5px 12px 42px;
  }
}
.private-viewer .app-download-content img {
  width: 40px;
  position: absolute;
  top: 14px;
  left: 5px;
}
@media screen and (max-width: 600px) {
  .private-viewer .app-download-content img {
    width: 31px;
    top: 14px;
  }
}
.private-viewer .app-download-content .app-download-message {
  font-size: 13px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .private-viewer .app-download-content .app-download-message {
    font-size: 11px;
  }
}
.private-viewer .app-download-content .app-download-link {
  display: table-cell;
  width: 1%;
  vertical-align: middle;
  text-align: center;
}
.private-viewer .app-download-content .app-download-link a {
  font-size: 13px;
  padding: 7px 20px;
  background: #666;
  color: #fff;
  border-radius: 30px;
  margin-left: 3px;
  vertical-align: middle;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .private-viewer .app-download-content .app-download-link a {
    font-size: 11px;
    padding: 6px 18px;
  }
}
@media screen and (max-width: 320px) {
  .private-viewer .app-download-content .app-download-link a {
    font-size: 11px;
    padding: 6px 12px;
  }
}
.viewer-offline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .viewer-offline {
    position: absolute;
    margin-top: -40px;
  }
}
@media screen and (max-width: 600px) {
  .viewer-offline {
    background: #e6e6e6;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.viewer-offline .download-button {
  border: none;
  font-size: 12px;
  padding: 0 0 0 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  color: #999;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button {
    font-size: 11px;
    color: #000;
    padding: 0;
  }
}
.viewer-offline .download-button:hover {
  color: #fff;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button:hover {
    color: #e53935;
  }
}
.viewer-offline .download-button::before {
  position: relative;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/images/viewer/ic_cloud_white.png") center no-repeat;
  background-size: contain;
  width: 19px;
  height: 19.5px;
  top: -1px;
  margin-right: 6px;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button::before {
    background-image: url("/images/viewer/ic_cloud.png");
  }
}
.viewer-offline .download-button.download-finished {
  color: #fff;
  cursor: default;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button.download-finished {
    color: #000;
  }
}
.viewer-offline .download-button.download-finished:hover {
  color: #fff;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button.download-finished:hover {
    color: #000;
  }
}
.viewer-offline .download-button.download-finished a {
  color: #999;
  text-decoration: underline;
  margin-left: 3px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button.download-finished a {
    font-size: 11px;
    color: #000;
  }
}
.viewer-offline .download-button.download-finished a:hover {
  color: #fff;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button.download-finished a:hover {
    color: #e53935;
  }
}
.viewer-offline .download-button.download-finished::before {
  background-image: url("/images/viewer/ic_done_white.png");
  background-size: 11.5px 8.5px;
}
@media screen and (max-width: 600px) {
  .viewer-offline .download-button.download-finished::before {
    background-image: url("/images/viewer/ic_done.png");
  }
}
.viewer-offline progress {
  width: 140px;
}
@media screen and (min-width: 600px) {
  .viewer-offline progress {
    margin-left: 16px;
  }
}
#page-viewer .header {
  position: absolute;
  top: 0;
  z-index: 200;
  width: 100%;
}
@media screen and (max-height: 450px) {
  #page-viewer .header {
    display: none;
  }
}
#page-viewer.private .header {
  position: static;
}
.episode-header {
  border-bottom: 2px solid #000;
}
@media screen and (max-height: 450px) {
  .episode-header {
    margin-left: constant(safe-area-inset-left);
    margin-left: env(safe-area-inset-left);
    margin-right: constant(safe-area-inset-right);
    margin-right: env(safe-area-inset-right);
  }
}
.episode-header-notice span {
  display: block;
  background: #eeeeee;
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 3px 0;
  margin-bottom: -8px;
}
@media screen and (max-width: 600px) {
  .episode-header-notice span {
    font-size: 10px;
  }
}
.episode-header-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 980px;
  margin: 0 auto;
  padding: 24px 0;
}
@media screen and (max-width: 980px) {
  .episode-header-container {
    width: auto;
    margin: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .episode-header-container {
    position: relative;
    display: block;
    padding: 16px 0;
  }
}
.episode-header-title-wrapper {
  padding-right: 16px;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 600px) {
  .episode-header-title-wrapper {
    padding-right: 0;
  }
}
.episode-header-title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .episode-header-title {
    font-size: 17px;
  }
}
.episode-header-date {
  font-size: 12px;
  padding-top: 2px;
}
@media screen and (max-width: 600px) {
  .episode-header-date {
    display: inline;
    padding: 2px 4px 0 0;
    background: #fff;
  }
  .episode-header-date::before {
    content: "";
    display: block;
    border-top: 1px solid #eaeaea;
    width: 100%;
    position: absolute;
    margin-top: 10px;
    z-index: -1;
  }
}
.episode-header-share {
  text-align: right;
}
@media screen and (min-width: 600px) {
  .episode-header-share {
    white-space: nowrap;
  }
}
@media screen and (max-width: 600px) {
  .episode-header-share {
    text-align: left;
    font-size: 12px;
    margin-top: 16px;
  }
}
.episode-header-share dt {
  color: #999;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .episode-header-share dt {
    display: block;
    -webkit-box-pack: inherit;
    -webkit-justify-content: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
  }
}
.episode-header-share dd {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 0;
  margin-bottom: 4px;
  overflow: hidden;
}
.episode-header-share dd:not(:last-child) {
  margin-right: 4px;
}
.episode-header-share .embed-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1px 5px 0 22px;
  font-size: 11px;
  height: 20px;
  color: #666;
  background: #e6e6e6 url("/images/viewer/ic_embed.svg") 5px center no-repeat;
  background-size: 13px 7px;
  border: none;
  margin: 0;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box;
}
.episode-header-share .embed-button:hover {
  background-color: #ccc;
  background-image: url("/images/viewer/ic_embed_hover.svg");
  color: #333;
}
.episode-header-share .rss a {
  display: block;
  width: 20px;
  height: 20px;
  background: #f39801 url("/images/viewer/ic_rss.png") center no-repeat;
  background-size: 100% 100%;
  border-radius: 3px;
}
.episode-header-share .rss a:hover {
  background-color: #f27503;
}
.episode-header-share .rss span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.episode-header-share #fb-root iframe {
  width: 100%;
}
.episode-header .embed-code {
  position: relative;
  background: #f1f1f1;
  padding: 24px 16px 32px;
  box-sizing: border-box;
  text-align: right;
}
@media screen and (max-width: 600px) {
  .episode-header .embed-code {
    text-align: left;
    padding: 16px 16px 24px;
  }
}
.episode-header .embed-code-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .episode-header .embed-code-inner::before {
    position: absolute;
    top: -54px;
    display: block;
    content: "";
    border: 15px solid transparent;
    border-bottom-color: #f1f1f1;
    right: 18px;
  }
}
.episode-header .embed-code .copy-url {
  position: absolute;
  right: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  margin: 0 0 0 5px;
  color: #1495EB;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  padding: 0 5px;
  box-sizing: border-box;
  cursor: pointer;
}
.episode-header .embed-code .copy-url:hover + input {
  background: none;
  border-color: #1495EB;
}
.episode-header .embed-code .share-url {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #95989A;
  color: #888b8e;
  background: #f1f1f1;
  line-height: 30px;
  height: 30px;
  font-size: 13px;
  max-width: 100%;
  padding: 0 50px 0 6px;
  margin: 0;
  box-sizing: border-box;
  width: 50%;
}
@media screen and (max-width: 600px) {
  .episode-header .embed-code .share-url {
    width: 100%;
  }
}
.episode-header .embed-code .copy-message {
  position: absolute;
  color: #333;
  font-size: 10px;
  margin-top: 4px;
  right: 0;
}
.episode-header-comment-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 600px) {
  .episode-header-comment-link {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.episode-header-comment-link a {
  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: 10px 20px;
  margin-bottom: 12px;
  background-color: #fafafa;
  border: 1px solid #eaeaea;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1;
}
.episode-header-comment-link a svg {
  fill: #333;
}
.episode-header-comment-link a:hover svg {
  fill: #e53935;
}
@media screen and (max-width: 600px) {
  .episode-header-comment-link a {
    width: 100%;
    max-width: 380px;
    margin-bottom: 16px;
    padding: 10px 0;
  }
}
@media screen and (max-height: 450px) {
  .episode-header-comment-link a {
    width: auto;
    padding: 10px 20px;
  }
}
.episode-header-comment-link .baloon-icon {
  width: 16px;
  height: 16px;
  padding-right: 8px;
}
.episode-header-comment-link .down-icon {
  width: 8px;
  height: 12px;
  padding-left: 5px;
}
.episode-header-likes-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-left: 10px;
}
@media screen and (max-width: 600px) {
  .episode-header-likes-button {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 0;
  }
  .episode-header-likes-button form {
    width: 100%;
  }
}
.episode-header-likes-button button {
  color: #fff;
  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: 10px 20px;
  margin-bottom: 12px;
  background-color: #e53935;
  border: 1px solid #e53935;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1;
  min-width: 250px;
  cursor: pointer;
}
.episode-header-likes-button button:hover {
  background-color: #9f1815;
  border-color: #9f1815;
}
.episode-header-likes-button button svg {
  fill: #fff;
}
.episode-header-likes-button button .likes-done-icon {
  display: none;
}
@media screen and (max-width: 600px) {
  .episode-header-likes-button button {
    width: 100%;
    max-width: 380px;
    margin-bottom: 16px;
    padding: 10px 0;
  }
}
@media screen and (max-height: 450px) {
  .episode-header-likes-button button {
    width: auto;
    padding: 10px 20px;
  }
}
.episode-header-likes-button.done-series-likes-per-period button {
  color: #000;
  background-color: rgba(229, 57, 53, 0.2);
  border-color: rgba(229, 57, 53, 0.2);
  cursor: default;
}
.episode-header-likes-button.done-series-likes-per-period button svg {
  fill: #000;
}
.episode-header-likes-button.done-series-likes-per-period button .likes-icon {
  display: none;
}
.episode-header-likes-button.done-series-likes-per-period button .likes-done-icon {
  display: block;
}
.episode-header-likes-button .likes-icon,
.episode-header-likes-button .likes-done-icon {
  width: 16px;
  height: 16px;
  padding-right: 8px;
}
.app-read-content {
  position: fixed;
  width: 100%;
  bottom: 30px;
  z-index: 100;
  text-align: center;
}
.app-read-content div {
  background: #e53935;
  margin: 0 auto;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.9);
}
.app-read-content .app-read-link {
  padding: 8px 16px 8px 24px;
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  height: 22px;
}
.app-read-content .app-read-close {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  box-sizing: inherit;
  padding: 8px 24px 8px 16px;
  position: relative;
  height: 22px;
  vertical-align: middle;
}
.app-read-content .app-read-close img {
  width: 13px;
  padding: 5px 0 4px;
}
.app-read-content .app-read-close:before {
  content: '';
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  height: 24px;
  position: absolute;
  left: 0;
  top: 8px;
}
.series-information {
  zoom: 1;
  width: 980px;
  margin: 48px auto 0;
}
.series-information:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .series-information {
    width: auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .series-information {
    margin: 32px 0 0;
  }
}
@media screen and (max-height: 450px) {
  .series-information {
    margin-left: constant(safe-area-inset-left);
    margin-left: env(safe-area-inset-left);
    margin-right: constant(safe-area-inset-right);
    margin-right: env(safe-area-inset-right);
    padding: 0 16px;
  }
}
.series-header {
  float: left;
  width: 242px;
}
@media screen and (max-width: 600px) {
  .series-header {
    float: none;
    width: auto;
  }
}
.series-contents {
  float: left;
  width: 505px;
  margin-left: 20px;
}
@media screen and (max-width: 980px) {
  .series-contents {
    float: right;
    width: calc(100% - 262px);
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .series-contents {
    float: none;
    width: auto;
  }
}
.series-sidebar {
  float: right;
  width: 180px;
}
@media screen and (max-width: 980px) {
  .series-sidebar {
    clear: both;
    float: right;
    width: calc(100% - 262px);
  }
}
@media screen and (max-width: 600px) {
  .series-sidebar {
    float: none;
    width: auto;
  }
}
.series-sidebar > div {
  border-top: 2px solid #000;
  margin-top: 40px;
}
.series-sidebar > div:first-child {
  margin-top: 0;
}
.series-sidebar .series-book-details {
  border-top: none;
}
.series-header-image-wrapper {
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .series-header-image-wrapper {
    text-align: center;
    background: url("/images/viewer/bg_stripe.png") 0 0 repeat;
    background-size: 9px 9px;
  }
}
.series-header-image {
  width: 242px;
  height: 242px;
}
@media screen and (max-width: 600px) {
  .series-header-image {
    width: 181px;
    height: 181px;
  }
}
.series-header-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 8px 0;
}
@media screen and (max-width: 600px) {
  .series-header-title {
    margin: 12px 0 2px;
  }
}
.series-header-author {
  font-size: 15px;
}
.series-header-description {
  margin-top: 24px;
}
@media screen and (max-width: 600px) {
  .series-header-description {
    margin-top: 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .series-contents {
    margin-top: 32px;
  }
}
.series-contents .offline-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
  width: 100%;
  height: 42px;
  background: #e6e6e6;
}
.series-contents .offline-banner .offline-banner-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  width: 297px;
}
.series-contents .offline-banner .offline-banner-inner svg {
  margin: auto 0;
  height: 29px;
}
.series-contents .offline-banner .offline-banner-inner p {
  margin: 4px 0 0;
  line-height: 29px;
}
.series-contents .read-more-container {
  text-align: center;
  min-height: inherit;
}
.series-contents .read-more-container button,
.series-contents .read-more-container a {
  cursor: pointer;
  background: #fff;
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 16px 0;
  border: none;
  opacity: .4;
}
.series-contents .read-more-container button::after,
.series-contents .read-more-container a::after {
  display: inline-block;
  content: "";
  background: url("/images/viewer/ic_arrow_down_small.png") center center no-repeat;
  width: 8.5px;
  height: 5px;
  background-size: contain;
  vertical-align: middle;
  margin: -2px 0 0 8px;
}
.series-contents .read-more-container button:hover,
.series-contents .read-more-container a:hover {
  opacity: 1;
  background: #fafafa;
}
.readable-product-list-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.readable-product-list-tab li {
  position: relative;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  padding: 18px 0;
  border-top: solid 2px rgba(0, 0, 0, 0.15);
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.readable-product-list-tab li:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.readable-product-list-tab li.selected {
  background-color: #fff;
  border-top: solid 2px #000;
  cursor: default;
}
.readable-product-list-tab li span {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .readable-product-list-tab li span {
    font-size: 15px;
  }
}
@media screen and (max-width: 320px) {
  .readable-product-list-tab li span {
    font-size: 13px;
  }
}
.volume-tab span::before,
.episode-tab span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
  width: 25px;
  height: 25px;
  padding-right: 10px;
}
.volume-tab span::before {
  background: url("/images/viewer/ic_volume.svg") top center no-repeat;
}
.episode-tab span::before {
  background: url("/images/viewer/ic_episode.svg") top center no-repeat;
}
.episode-tab::after {
  display: block;
  position: absolute;
  width: 100%;
  content: "";
  border-bottom: solid 1px #fff;
  box-sizing: border-box;
  bottom: -1px;
}
.selected-tab-info {
  padding: 16px 0;
  text-align: center;
  line-height: 1;
}
.selected-tab-info p {
  font-size: 12px;
  font-weight: 300;
}
.series-episode-list.episode-list-fixed li:last-child,
.series-special-contents-list.episode-list-fixed li:last-child {
  margin-bottom: 40px;
}
.series-episode-list li,
.series-special-contents-list li {
  border-bottom: 1px solid #eaeaea;
}
.series-episode-list li:first-child,
.series-special-contents-list li:first-child {
  border-top: 1px solid #eaeaea;
}
.series-episode-list li.series-more-episodes,
.series-special-contents-list li.series-more-episodes {
  display: none;
}
.series-episode-list li.current-readable-product,
.series-special-contents-list li.current-readable-product {
  background: #f1f6c7;
  padding: 8px 0;
}
.series-episode-list li.current-readable-product a,
.series-special-contents-list li.current-readable-product a {
  cursor: default;
  background: transparent;
}
.series-episode-list li.no-thumb .series-episode-list-title-wrapper,
.series-special-contents-list li.no-thumb .series-episode-list-title-wrapper {
  padding: 0 8px;
  width: auto;
}
@media screen and (max-width: 600px) {
  .series-episode-list li.no-thumb .series-episode-list-title-wrapper,
  .series-special-contents-list li.no-thumb .series-episode-list-title-wrapper {
    padding: 0 6px;
  }
}
.series-episode-list li.no-thumb .series-episode-list-date,
.series-special-contents-list li.no-thumb .series-episode-list-date {
  float: left;
  padding-top: 2px;
}
.series-episode-list li.no-thumb .series-episode-list-title,
.series-special-contents-list li.no-thumb .series-episode-list-title,
.series-episode-list li.no-thumb .series-episode-list-period,
.series-special-contents-list li.no-thumb .series-episode-list-period,
.series-episode-list li.no-thumb .series-episode-list-private,
.series-special-contents-list li.no-thumb .series-episode-list-private {
  margin-left: 85px;
}
@media screen and (max-width: 600px) {
  .series-episode-list li.no-thumb .series-episode-list-title,
  .series-special-contents-list li.no-thumb .series-episode-list-title,
  .series-episode-list li.no-thumb .series-episode-list-period,
  .series-special-contents-list li.no-thumb .series-episode-list-period,
  .series-episode-list li.no-thumb .series-episode-list-private,
  .series-special-contents-list li.no-thumb .series-episode-list-private {
    margin-left: 72px;
  }
}
.series-episode-list li.no-thumb .series-episode-list-title,
.series-special-contents-list li.no-thumb .series-episode-list-title {
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .series-episode-list li.no-thumb .series-episode-list-title,
  .series-special-contents-list li.no-thumb .series-episode-list-title {
    font-size: 15px;
  }
}
.series-episode-list li.no-thumb .series-episode-list-period,
.series-special-contents-list li.no-thumb .series-episode-list-period {
  margin-bottom: -5px;
  margin-top: 3px;
  display: block;
}
.series-episode-list li.no-thumb a,
.series-special-contents-list li.no-thumb a {
  padding: 10px 0 20px;
}
.series-episode-list li.no-thumb.current-readable-product,
.series-special-contents-list li.no-thumb.current-readable-product {
  padding: 10px 0 20px;
}
.series-episode-list li.private,
.series-special-contents-list li.private {
  position: relative;
}
.series-episode-list li.private .series-episode-list-thumb-container::before,
.series-special-contents-list li.private .series-episode-list-thumb-container::before {
  content: '';
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.series-episode-list li.private .series-episode-list-date,
.series-special-contents-list li.private .series-episode-list-date,
.series-episode-list li.private .series-episode-list-title,
.series-special-contents-list li.private .series-episode-list-title {
  color: rgba(0, 0, 0, 0.5);
}
.series-episode-list li.private .series-episode-list-title-wrapper,
.series-special-contents-list li.private .series-episode-list-title-wrapper {
  opacity: .9;
}
.series-episode-list li.magazine .series-episode-list-title-wrapper,
.series-special-contents-list li.magazine .series-episode-list-title-wrapper {
  width: calc(100% - 115px);
}
@media screen and (max-width: 600px) {
  .series-episode-list li.magazine .series-episode-list-title-wrapper,
  .series-special-contents-list li.magazine .series-episode-list-title-wrapper {
    width: calc(100% - 96px);
  }
}
@media screen and (max-width: 320px) {
  .series-episode-list li.magazine .series-episode-list-title-wrapper,
  .series-special-contents-list li.magazine .series-episode-list-title-wrapper {
    width: calc(100% - 72px);
  }
}
.series-episode-list li.magazine .series-episode-list-thumb-container,
.series-special-contents-list li.magazine .series-episode-list-thumb-container {
  width: 115px;
}
@media screen and (max-width: 600px) {
  .series-episode-list li.magazine .series-episode-list-thumb-container,
  .series-special-contents-list li.magazine .series-episode-list-thumb-container {
    width: 96px;
  }
}
@media screen and (max-width: 320px) {
  .series-episode-list li.magazine .series-episode-list-thumb-container,
  .series-special-contents-list li.magazine .series-episode-list-thumb-container {
    width: 72px;
  }
}
.series-episode-list a,
.series-special-contents-list a {
  display: block;
  padding: 8px 0;
  cursor: pointer;
  color: #000;
}
.series-episode-list a:link,
.series-special-contents-list a:link {
  background: #fff;
}
.series-episode-list a:visited,
.series-special-contents-list a:visited {
  background: #eaeaea;
}
.series-episode-list a:visited .series-episode-list-thumb,
.series-special-contents-list a:visited .series-episode-list-thumb {
  border: 1px solid #999;
}
.series-episode-list a:hover,
.series-special-contents-list a:hover {
  color: #000;
  background: #fafafa;
}
.series-episode-list-title-wrapper,
.series-special-contents-list-title-wrapper {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 176px);
  padding-left: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .series-episode-list-title-wrapper,
  .series-special-contents-list-title-wrapper {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 320px) {
  .series-episode-list-title-wrapper,
  .series-special-contents-list-title-wrapper {
    width: calc(100% - 112px);
  }
}
.series-episode-list-thumb-container,
.series-special-contents-list-thumb-container {
  width: 160px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 600px) {
  .series-episode-list-thumb-container,
  .series-special-contents-list-thumb-container {
    width: 144px;
  }
}
@media screen and (max-width: 320px) {
  .series-episode-list-thumb-container,
  .series-special-contents-list-thumb-container {
    width: 96px;
  }
}
.series-episode-list-thumb,
.series-special-contents-list-thumb {
  width: 100%;
  height: auto;
  background: #eaeaea;
  border: 1px solid #000;
  box-sizing: border-box;
  vertical-align: middle;
}
.series-episode-list-date,
.series-special-contents-list-date {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .series-episode-list-date,
  .series-special-contents-list-date {
    font-size: 10px;
  }
}
.series-episode-list-period,
.series-special-contents-list-period {
  font-size: 13px;
  color: #e50012;
  display: inline-block;
  margin: 4px 0 0;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .series-episode-list-period,
  .series-special-contents-list-period {
    font-size: 12px;
    margin: 2px 0 0;
  }
}
.series-episode-list-private,
.series-special-contents-list-private {
  font-size: 12px;
  display: block;
  margin: 4px 0 0;
}
@media screen and (max-width: 600px) {
  .series-episode-list-private,
  .series-special-contents-list-private {
    margin: 2px 0 0;
  }
}
.series-episode-list-description,
.series-special-contents-list-description {
  font-size: 12px;
  margin: 4px 4px 4px 0;
}
@media screen and (max-width: 600px) {
  .series-episode-list-description,
  .series-special-contents-list-description {
    font-size: 11px;
    margin: 3px 3px 3px 0;
  }
}
.series-episode-list-price p,
.series-special-contents-list-price p {
  display: inline-block;
  font-size: 12px;
  margin: 4px 4px 4px 0;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .series-episode-list-price p,
  .series-special-contents-list-price p {
    font-size: 11px;
    margin: 3px 3px 3px 0;
  }
}
.series-episode-list-price p.point,
.series-special-contents-list-price p.point {
  padding: 0 6px;
  background: rgba(0, 0, 0, 0.08);
  color: #333;
}
.series-episode-list-is-free,
.series-special-contents-list-is-free {
  display: inline-block;
  font-size: 12px;
  margin: 4px 4px 4px 0;
  padding: 0 6px;
  background: #e50012;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .series-episode-list-is-free,
  .series-special-contents-list-is-free {
    margin: 3px 3px 3px 0;
  }
}
.series-episode-list-is-free + .series-episode-list-purchased,
.series-special-contents-list-is-free + .series-episode-list-purchased {
  display: inline-block;
  margin: 0 0 0 7px;
}
.series-episode-list-purchased,
.series-special-contents-list-purchased {
  font-size: 12px;
  margin: 6px 0 0;
  color: #2cbe4e;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .series-episode-list-purchased,
  .series-special-contents-list-purchased {
    font-size: 11px;
    margin: 4px 0 0 0;
  }
}
.series-episode-list-purchased::before,
.series-special-contents-list-purchased::before {
  display: block;
  content: "";
  width: 13px;
  height: 10px;
  background: url("/images/viewer/ic_checked.png") center center no-repeat;
  background-size: contain;
  float: left;
  margin: 5px 6px 0 0;
}
@media screen and (max-width: 600px) {
  .series-episode-list-purchased::before,
  .series-special-contents-list-purchased::before {
    margin: 3px 4px 0 0;
  }
}
.series-topics-contents-title {
  font-weight: 700;
  font-size: 17px;
  border-top: 2px solid #000;
  padding: 16px 0;
}
.series-topics-contents-list {
  margin-bottom: 40px;
}
.series-topics-contents-list li {
  border-bottom: 1px solid #eaeaea;
}
.series-topics-contents-list li:first-child {
  border-top: 1px solid #eaeaea;
}
.series-topics-contents-list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 16px 0;
}
.series-topics-contents-list a:hover {
  background-color: #fafafa;
}
.series-topics-contents-list .topics-detail {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  width: 100%;
}
.series-topics-contents-list .topics-date {
  font-size: 11px;
  color: #999;
  line-height: 1;
  margin-bottom: 6px;
}
.series-topics-contents-list .topics-title {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
}
.series-topics-contents-list .topics-thumb-container {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 120px;
  height: auto;
  margin-left: 16px;
}
.series-topics-contents-list .topics-thumb-container img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  background-color: #fafafa;
}
.series-special-contents-list li:last-child {
  margin-bottom: 40px;
}
.series-special-contents-title {
  font-weight: 700;
  font-size: 17px;
  border-top: 2px solid #000;
  padding: 16px 0;
}
.series-banner {
  margin-bottom: 20px;
  line-height: 0;
}
.series-banner img {
  max-width: 100%;
  background: #eaeaea;
  margin-bottom: 20px;
  vertical-align: middle;
}
.series-video {
  margin-bottom: 20px;
}
.series-video iframe {
  max-width: 100%;
  margin-bottom: 20px;
}
.series-related-articles {
  width: 980px;
  margin: 40px auto;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 0 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 980px) {
  .series-related-articles {
    width: auto;
    margin-left: 8px;
    margin-right: 8px;
  }
}
@media screen and (max-height: 450px) {
  .series-related-articles {
    margin-right: calc(constant(safe-area-inset-right) + 8px);
    margin-left: calc(constant(safe-area-inset-right) + 8px);
    margin-right: calc(env(safe-area-inset-right) + 8px);
    margin-left: calc(env(safe-area-inset-right) + 8px);
  }
}
.series-related-articles-title {
  font-weight: 700;
  font-size: 15px;
  padding: 16px 0;
}
.series-related-article-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.series-related-article-list li {
  width: calc(25% - 20px);
  line-height: 1.3;
  padding-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .series-related-article-list li {
    width: calc(50% - 8px);
  }
}
.series-related-article-list a {
  position: relative;
  display: block;
}
.series-related-article-list a:hover {
  color: #e53935;
}
.series-related-article-list-title {
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 0 8px;
}
.series-related-article-list-date,
.series-related-article-list-description {
  display: inline;
  font-size: 11px;
}
.series-related-article-list-date {
  color: #000;
}
.series-related-article-list-description {
  color: #999;
}
.series-related-article-list-thumb-wrapper {
  background: #fafafa;
  height: 90px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .series-related-article-list-thumb-wrapper {
    text-align: center;
  }
}
.series-related-article-list-thumb {
  width: auto;
  max-width: 100%;
  height: 90px;
}
.series-comment-contents {
  margin-bottom: 40px;
}
.series-comment-contents-title {
  padding: 16px 0;
  border-top: solid 2px #000;
  font-weight: 700;
}
.series-comment-contents-box {
  position: relative;
  background-color: #fafafa;
  border-radius: 10px;
  border: solid 1px #eaeaea;
  box-sizing: border-box;
  word-break: break-all;
}
.series-comment-contents-box::before,
.series-comment-contents-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.series-comment-contents-box::before {
  top: -11px;
  left: 18px;
  border-width: 0 10px 11px 10px;
  border-color: transparent transparent #eaeaea transparent;
}
.series-comment-contents-box::after {
  top: -10px;
  left: 20px;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fafafa transparent;
}
.series-comment-contents-form {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #eaeaea;
}
@media screen and (max-width: 600px) {
  .series-comment-contents-form {
    padding: 15px;
  }
}
.series-comment-contents-form .comment-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 8px;
  margin-bottom: 10px;
  border: solid 1px #999;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .series-comment-contents-form .comment-textarea {
    font-size: 16px;
  }
}
.series-comment-contents-form .comment-button {
  display: block;
  cursor: pointer;
  padding: 0 30px;
  background-color: #e53935;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 32px;
  border: 1px solid #fceaea;
  box-sizing: border-box;
  border-radius: 16px;
}
.series-comment-contents-form .comment-button:hover {
  color: #fff;
  background: #d6201c;
}
.series-comment-contents-form .comment-button:disabled {
  cursor: default;
  border: 1px solid #eaeaea;
  background-color: transparent;
  color: #999;
  font-weight: 300;
}
.series-comment-contents-done {
  text-align: center;
  padding: 30px 15px;
  border-bottom: 2px solid #eaeaea;
}
.series-comment-contents-done p {
  font-size: 15px;
}
@media screen and (max-width: 320px) {
  .series-comment-contents-done p {
    font-size: 14px;
  }
}
.series-comment-contents-done p.attention {
  font-size: 12px;
  margin-top: 8px;
  color: #666;
}
@media screen and (max-width: 320px) {
  .series-comment-contents-done p.attention {
    font-size: 11px;
  }
}
.series-comment-contents-done p.attention span {
  display: inline-block;
}
.series-comment-contents-none {
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .series-comment-contents-none {
    padding: 40px 0;
  }
}
.series-comment-contents-none p {
  font-size: 15px;
  color: #666;
}
@media screen and (max-width: 320px) {
  .series-comment-contents-none p {
    font-size: 12px;
  }
}
.series-comment-contents-list {
  padding: 0 20px;
}
.series-comment-contents-list li {
  padding: 10px 0;
  border-bottom: solid 1px #eaeaea;
}
.series-comment-contents-list li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .series-comment-contents-list {
    padding: 0 15px;
  }
}
.series-comment-contents .comment-container-text {
  font-size: 12px;
  line-height: 1.5;
}
.series-comment-contents .comment-container-text span {
  padding-right: 5px;
  font-size: 12px;
  font-weight: 700;
}
.series-comment-contents .comment-container-date {
  color: #999;
  font-size: 11px;
}
.series-comment-contents .series-comment-contents-form-notes {
  color: #888;
  font-size: 10px;
  margin-top: 12px;
}
.series-comment-contents form[name="report-comment"] {
  display: inline;
}
.series-comment-contents .report-button {
  color: #999;
  font-size: 11px;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0 0 0 1em;
  padding: 0;
  cursor: pointer;
}
.series-comment-contents .report-button:hover {
  color: #000;
}
.series-comment-contents .report-status {
  display: block;
  color: #666;
  font-size: 11px;
  margin-top: 5px;
  padding: 6px 0;
  background: #e6e6e6;
  line-height: 1;
  text-align: center;
}
.series-comment-contents .comment-more-button {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 16px 0;
  border: none;
  color: #999;
  border-radius: 0 0 10px 10px;
  background-color: #fafafa;
  font-size: 12px;
  border-top: solid 1px #eaeaea;
}
.series-comment-contents .comment-more-button::after {
  display: inline-block;
  content: "";
  background: url("/images/viewer/ic_arrow_down_small.png") center center no-repeat;
  width: 8.5px;
  height: 5px;
  background-size: contain;
  vertical-align: middle;
  margin: -2px 0 0 8px;
  opacity: .4;
}
.series-comment-contents .comment-more-button:hover {
  color: #000;
  background-color: #eaeaea;
}
.series-comment-contents .comment-more-button:hover::after {
  opacity: 1;
}
.series-book-details {
  background: #fafafa;
  background: url("/images/viewer/bg_dots.png") center repeat;
  background-size: 10.5px 16.5px;
  margin-bottom: 20px;
  padding: 0 0 20px;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .series-book-details {
    border-bottom: none;
    margin: 0;
    padding: 0 0 16px;
  }
}
.series-book-details-title {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 5px;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .series-book-details-title {
    margin: 40px 0 10px;
    font-size: 13px;
  }
}
.series-book-detail {
  zoom: 1;
}
.series-book-detail:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.series-book-detail .book-cover-content {
  padding: 15px 0 8px;
}
@media screen and (max-width: 980px) {
  .series-book-detail .book-cover-content {
    float: left;
    padding: 0 10px 10px;
  }
}
.series-book-detail .book-cover-content img {
  width: 100px;
  vertical-align: bottom;
}
.series-book-detail p,
.series-book-detail a.book-service-link {
  margin: 0 10px;
}
@media screen and (max-width: 980px) {
  .series-book-detail p,
  .series-book-detail a.book-service-link {
    margin-left: 120px;
  }
}
.series-book-detail p {
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
}
.series-book-detail p.author-name {
  color: #999;
}
.series-book-detail a.book-service-link {
  background: #fff;
  border: 1px solid #e6e6e6;
  margin-top: 5px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .series-book-detail a.book-service-link {
    max-width: 300px;
  }
}
.series-book-detail a.book-service-link:hover {
  border: 1px solid #b3b3b3;
}
.series-book-detail a.book-service-link img {
  vertical-align: bottom;
  height: 15px;
  padding: 8px 5px;
}
.series-book-detail a.amazon-link img {
  height: 29px;
  padding: 2px 5px 0;
}
.series-book-detail a.rakutenbooks-link img {
  height: 21px;
  padding: 5px;
}
.series-book-detail a.ebookjapan-link img {
  height: 23px;
  padding: 5px;
}
.series-profile-details-card {
  padding: 16px 0;
}
.series-profile-details-role {
  font-size: 11px;
  color: #999;
  padding-bottom: 10px;
  display: inline-block;
}
.series-profile-details-author {
  margin-bottom: 8px;
}
.series-profile-details-name {
  line-height: 1.2;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.series-profile-details-name .series-profile-details-avatar img {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 24px;
  border: solid 1px #eaeaea;
  margin-right: 8px;
}
@media screen and (max-width: 600px) {
  .series-profile-details-name .series-profile-details-avatar img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}
.series-profile-details-name h4 {
  font-size: 13px;
  font-weight: 700;
}
.series-profile-details-bio {
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.series-profile-details-bio a {
  display: block;
  text-decoration: underline;
}
.hatena-bookmark-comment-header {
  font-size: 14px;
  font-weight: 700;
  padding: 16px 0;
  zoom: 1;
}
.hatena-bookmark-comment-header:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.hatena-bookmark-comment-header a {
  display: block;
  float: left;
}
.hatena-bookmark-comment-header a::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("/images/viewer/ic_bookmark.png") center center no-repeat;
  background-size: contain;
  float: left;
  margin: 1px 6px 0 0;
}
.hatena-bookmark-list-container {
  border-bottom: 1px solid #eaeaea;
}
.hatena-bookmark-item {
  border-top: 1px solid #eaeaea;
  padding: 8px 0;
  line-height: 1.4;
  font-size: 12px;
}
.hatena-bookmark-item.hatena-bookmark-addcomment-container {
  margin-left: 0;
}
.hatena-bookmark-addcomment a {
  font-size: 10px;
  display: block;
  padding: 4px 0;
  text-decoration: underline;
}
.hatena-bookmark-user-info {
  display: block;
}
.hatena-bookmark-profile-image {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.hatena-bookmark-username {
  font-size: 10px;
  font-weight: 700;
}
.hatena-bookmark-comment {
  font-size: 12px;
}
.hatena-bookmark-timestamp {
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}
.hatena-bookmark-showall-comment,
.hatena-bookmark-entrypage-link {
  font-size: 12px;
}
.hatena-bookmark-showall-comment {
  border-top: 1px solid #eaeaea;
  margin-top: 8px;
  padding: 12px 0 4px;
}
.hatena-bookmark-span-button {
  cursor: pointer;
}
.hatena-bookmark-users,
.hatena-bookmark-tags,
.hatena-bookmark-star {
  display: none;
}
@media screen and (max-width: 980px) {
  .series-tweets {
    margin-top: 40px;
    border-top: 2px solid #000;
    padding-top: 16px;
  }
}
#page-viewerEmbed {
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
}
#page-viewerEmbed .viewer {
  height: 100%;
}
#page-viewerEmbed .viewer-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: #333;
}
#page-viewerEmbed .viewer-embed-header {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
}
#page-viewerEmbed .viewer-embed-header > a {
  display: block;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 13px;
  line-height: 42px;
  height: 42px;
  padding: 0 42px 0 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#page-viewerEmbed .viewer-embed-header > a:hover {
  color: #e6e6e6;
}
#page-viewerEmbed .viewer-embed-header-title {
  font-weight: 700;
}
#page-viewerEmbed .viewer-embed-header-author:before {
  content: " - ";
}
#page-viewerEmbed .viewer-embed-header-pagenum {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
}
#page-viewerEmbed .viewer-embed-header-share {
  position: absolute;
  top: 8px;
  right: 8px;
}
#page-viewerEmbed .viewer-embed-header-share a {
  width: 26px;
  height: 26px;
  color: white;
  background: url(/images/embed/ic_tweet.svg) left center no-repeat;
  background-size: contain;
  box-sizing: border-box;
  display: block;
  opacity: .65;
}
#page-viewerEmbed .viewer-embed-header-share a:hover {
  opacity: 1;
}
#page-viewerEmbed .viewer-embed-header-share-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
#page-viewerEmbed .viewer-embed-page-navigation-forward {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#page-viewerEmbed .viewer-embed-page-navigation-forward-text {
  background: #fff;
  padding: 12px 20px 10px 12px;
  display: inline-block;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 14px;
  margin: auto;
  left: 0;
  border: 2px solid rgba(0, 0, 0, 0.85);
  border-left: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  color: #000;
}
#page-viewerEmbed .viewer-embed-page-navigation-forward-text::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/images/embed/ic_expand_viewer.svg) left center no-repeat;
  background-size: contain;
  margin: -2px 12px 0 0;
  vertical-align: middle;
}
#page-viewerEmbed .viewer-embed-btn-expand {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  cursor: pointer;
}
#page-viewerEmbed .viewer-embed-btn-expand:hover .viewer-embed-page-navigation-forward-text {
  color: #fff;
  background: #333;
}
#page-viewerEmbed .viewer-embed-btn-expand:hover .viewer-embed-page-navigation-forward-text::before {
  background-image: url(/images/embed/ic_expand_viewer_white.svg);
}
#page-viewerEmbed .viewer-embed-viewer-container {
  display: none;
}
#page-viewerEmbed .viewer-embed-thumbnail-container {
  height: 100%;
  background: black;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .thumbnail {
  height: 100%;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .thumbnail-image-container {
  height: 100%;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .page-area {
  display: inline-block;
  vertical-align: top;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .align-left {
  text-align: left;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .align-right {
  text-align: right;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .align-center {
  text-align: center;
}
#page-viewerEmbed .viewer-embed-thumbnail-container .hide {
  display: none !important;
}
#page-viewerEmbed .viewer-embed-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
#page-viewerEmbed .viewer-embed-footer-logo {
  position: absolute;
  bottom: 3px;
  right: 3px;
  line-height: 0;
  z-index: 1010;
}
#page-viewerEmbed .viewer-embed-footer-logo a {
  display: block;
}
#page-viewerEmbed .viewer,
#page-viewerEmbed #content,
#page-viewerEmbed .content-inner.scroll-horizontal,
#page-viewerEmbed .image-container {
  -webkit-transition: none;
  transition: none;
}
#page-viewerEmbed .private-viewer {
  height: 100%;
  width: 100%;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#page-viewerEmbed .private-viewer #content {
  height: auto;
}
@media screen and (max-height: 450px) {
  #page-viewerEmbed .private-viewer .content {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 320px) {
  #page-viewerEmbed .private-viewer .episode-not-found-thumb {
    width: 70%;
  }
}
@media screen and (max-height: 450px) {
  #page-viewerEmbed .private-viewer .episode-not-found-thumb {
    max-width: 140px;
  }
}
@media screen and (max-height: 250px) {
  #page-viewerEmbed .private-viewer .episode-not-found-thumb {
    display: none;
  }
}
@media screen and (max-height: 450px) {
  #page-viewerEmbed .private-viewer .episode-title {
    font-size: 14px;
    margin-top: 6px;
  }
}
@media screen and (max-height: 250px) {
  #page-viewerEmbed .private-viewer .episode-title {
    display: none;
  }
}
@media screen and (max-height: 450px) {
  #page-viewerEmbed .private-viewer .private-message {
    font-size: 13px;
    margin-top: 4px;
  }
}
#page-viewerEmbed .private-viewer .app-download-container {
  margin: 0 0 auto;
  background: transparent;
  padding-top: 30px;
}
@media screen and (max-height: 450px) {
  #page-viewerEmbed .private-viewer .app-download-container {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}
#page-viewerEmbed .private-viewer .app-download-content {
  border-top: 1px solid #555;
}
@media screen and (max-width: 320px) {
  #page-viewerEmbed .private-viewer .app-download-content {
    display: block;
    padding: 8px 0;
  }
}
@media screen and (max-height: 250px) {
  #page-viewerEmbed .private-viewer .app-download-content {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  #page-viewerEmbed .private-viewer .app-download-image {
    position: static;
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (max-width: 320px) {
  #page-viewerEmbed .private-viewer .app-download-message {
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (max-width: 320px) {
  #page-viewerEmbed .private-viewer .app-download-link {
    display: inline-block;
    margin: 8px auto;
    width: auto;
  }
}
@media screen and (max-width: 270px) {
  #page-viewerEmbed .private-viewer .app-download-link {
    display: block;
  }
  #page-viewerEmbed .private-viewer .app-download-link a {
    padding: 6px 24px;
  }
}
@media screen and (max-height: 450px) {
  #page-viewerEmbed .private-viewer .viewer-embed-footer {
    height: 40px;
  }
}
#page-viewerEmbed .viewer-controller {
  display: none;
}
#page-viewerEmbed.fullscreen .page-navigation {
  display: block;
}
#page-viewerEmbed.fullscreen .viewer-embed-header > a,
#page-viewerEmbed.fullscreen .viewer-embed-header-share {
  display: none;
}
#page-viewerEmbed.fullscreen .viewer-embed-footer,
#page-viewerEmbed.fullscreen .viewer-embed-page-navigation-forward,
#page-viewerEmbed.fullscreen .viewer-embed-btn-expand {
  display: none;
}
#page-viewerEmbed.fullscreen .viewer-embed-thumbnail-container {
  display: none;
}
#page-viewerEmbed.fullscreen .viewer-embed-viewer-container {
  display: block;
  width: 100%;
  height: 100%;
}
body,
ul,
ol,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}
img {
  border: none;
}
.twitter-widget-wrapper iframe {
  width: 1px !important;
  min-width: 100% !important;
  -webkit-text-size-adjust: 100%;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.history-page-contaier {
  width: 960px;
  margin: 16px auto 60px;
  zoom: 1;
}
.history-page-contaier:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .history-page-contaier {
    width: 100%;
  }
}
.history-page-main {
  width: 725px;
  margin: 20px auto 0;
}
@media screen and (max-width: 980px) {
  .history-page-main {
    max-width: 725px;
    margin: 16px auto 0;
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 760px) {
  .history-page-main {
    max-width: 400px;
    padding: 0 16px;
  }
}
.history-page-main .history-list-container.download {
  border-top: 1px solid #333;
  padding-top: 20px;
}
.history-page-main .last-reading-container {
  margin-top: 40px;
}
.history-list-container {
  padding-bottom: 48px;
}
.history-list-container h4 {
  padding: 24px 12px 24px 0;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}
.history-list-container h4 span {
  padding-right: 8px;
  vertical-align: middle;
}
.history-list-container p.history-list-description {
  margin: -8px 0 28px;
  font-size: 13px;
}
@media screen and (max-width: 760px) {
  .history-list-container p.history-list-description {
    font-size: 12px;
  }
}
.history-list-container p.history-list-description a {
  color: #95989A;
  text-decoration: underline;
}
.history-list-container p.history-list-description a:hover {
  color: #333;
}
.history-list-container p.history-list-description-mini {
  font-weight: normal;
  padding: 0;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #95989A;
}
@media screen and (max-width: 760px) {
  .history-list-container p.history-list-description-mini {
    font-size: 11px;
  }
}
.history-list-container p.history-list-notice {
  background: #ececec;
  font-size: 11px;
  padding: 10px;
  border-radius: 10px;
}
.history-list-container p.history-list-notice a {
  color: #888b8e;
  text-decoration: underline;
}
.history-list-container p.history-list-notice a:hover {
  color: #333;
}
.history-list-container.history h4::before {
  background: url("/images/history/ic_history.svg") center center no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  content: "";
  background-size: contain;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.history-list-container.update-notification {
  border-bottom: 1px solid #333;
}
.history-list-container.update-notification h4::before {
  background: url("/images/history/ic_bell.svg") center center no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  content: "";
  background-size: contain;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.history-list-container.update-notification + .history {
  padding-top: 20px;
}
@media screen and (max-width: 760px) {
  .history-list-container.update-notification + .history {
    padding-top: 0;
  }
}
.history-list-container .more-button-container {
  position: relative;
  width: 100%;
  margin-right: 0;
}
.history-list-container .more-button-container .more-button {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  opacity: .4;
  padding: 8px 16px;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .history-list-container .more-button-container .more-button {
    background: #333;
    color: #fff;
    border-radius: 30px;
    opacity: 1;
    padding: 6px 24px;
    font-size: 12px;
  }
}
.history-list-container .more-button-container .more-button::after {
  display: inline-block;
  content: "";
  background: url("/images/history/ic_arrow_down_small.png") center center no-repeat;
  width: 8.5px;
  height: 5px;
  background-size: contain;
  vertical-align: middle;
  margin: -2px 0 0 8px;
}
@media screen and (max-width: 980px) {
  .history-list-container .more-button-container .more-button::after {
    color: #fff;
    background: url("/images/history/ic_arrow_down_small_white.png") center center no-repeat;
    background-size: contain;
    width: 8px;
  }
}
.history-list-container .more-button-container .more-button:hover {
  color: #333;
  opacity: 1;
}
@media screen and (max-width: 980px) {
  .history-list-container .more-button-container .more-button:hover {
    color: #fff;
    background: #595959;
  }
}
.history-list-container .more-button-container .more-button-link::after {
  content: none;
}
.history-list-container .empty-list-message {
  text-align: center;
  font-size: 15px;
  margin: 20px 0;
}
.last-reading-container {
  border: 1px dashed #C4C4C4;
  border-radius: 8px;
  padding: 0 16px 16px;
}
.last-reading-container h5 {
  margin: -10px 0 10px -10px;
  font-size: 13px;
}
@media screen and (max-width: 760px) {
  .last-reading-container h5 {
    margin: -10px 0 10px 0;
    text-align: center;
    font-size: 12px;
  }
}
.last-reading-container h5 span {
  background: #fff;
  padding: 0 10px;
  display: inline-block;
}
.last-reading-container a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.last-reading-container img {
  width: 129px;
}
@media screen and (max-width: 760px) {
  .last-reading-container img {
    width: 105px;
  }
}
@media screen and (max-width: 320px) {
  .last-reading-container img {
    width: 80px;
  }
}
.last-reading-container .title-box {
  padding-left: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 760px) {
  .last-reading-container .title-box {
    padding-left: 10px;
  }
}
.last-reading-container .series-title {
  font-size: 15px;
}
@media screen and (max-width: 760px) {
  .last-reading-container .series-title {
    font-size: 13px;
  }
}
.last-reading-container .episode-title {
  font-size: 13px;
  color: #95989A;
}
@media screen and (max-width: 760px) {
  .last-reading-container .episode-title {
    font-size: 11px;
  }
}
.last-reading-container:not(.hidden) + .update-notification {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
@media screen and (max-width: 760px) {
  .last-reading-container:not(.hidden) + .update-notification {
    padding-top: 0;
  }
}
.update-notification-list,
.history-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.update-notification-list li,
.history-list li {
  margin-bottom: 20px;
  width: calc((100% - 80px) / 5.01);
}
@media screen and (min-width: 760px) {
  .update-notification-list li:not(:nth-child(5n)),
  .history-list li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
}
.update-notification-list .series-title,
.history-list .series-title,
.update-notification-list .episode-title,
.history-list .episode-title {
  display: block;
  word-break: break-all;
}
.update-notification-list img,
.history-list img {
  width: 100%;
  display: block;
  margin-bottom: 6px;
}
.update-notification-list .series-title,
.history-list .series-title {
  font-size: 13px;
}
.update-notification-list .new-episode-label,
.history-list .new-episode-label {
  background: #F22A1F;
  color: #fff;
  font-size: 10px;
  padding: 3px 4px;
}
.update-notification-list .episode-title,
.history-list .episode-title {
  font-size: 10px;
  color: #95989A;
}
@media screen and (max-width: 760px) {
  .update-notification-list,
  .history-list {
    border-top: 1px solid #eaeaea;
  }
}
@media screen and (max-width: 760px) {
  .update-notification-list li,
  .history-list li {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 980px) {
  .update-notification-list li .more-button,
  .history-list li .more-button {
    border: none;
    margin: 16px 0 0 ;
    padding: 8px 0;
  }
}
@media screen and (max-width: 760px) {
  .update-notification-list a,
  .history-list a {
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 760px) {
  .update-notification-list img,
  .history-list img {
    width: 105px;
  }
}
@media screen and (max-width: 320px) {
  .update-notification-list img,
  .history-list img {
    width: 80px;
  }
}
@media screen and (max-width: 760px) {
  .update-notification-list .title-box,
  .history-list .title-box {
    margin-left: 8px;
  }
}
.update-notification-list .thumb-container {
  position: relative;
}
.update-notification-list .update-notification-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: #F22A1F;
}
.download-list {
  border-top: 1px solid #eaeaea;
}
.download-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  font-size: 14px;
  min-height: 48px;
}
.download-list li a {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 8px 0;
}
.download-list li button {
  border: none;
  width: 32px;
  height: 32px;
  padding-top: 32px;
  background: url("/images/history/ic_close.png") center no-repeat;
  background-size: 12px 12px;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
}
.download-list li button:hover {
  background-color: #e6e6e6;
}
.clear-button.clear-history-wrapper {
  position: relative;
  margin-top: 20px;
  text-align: right;
}
.clear-button.clear-download-wrapper {
  text-align: right;
  margin-top: 36px;
}
.clear-button button {
  background: transparent;
  border: none;
  color: #95989A;
  font-size: 13px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .clear-button button {
    font-size: 11px;
  }
}
.clear-button button:hover {
  color: #333;
}
.common-button {
  border: none;
  background: #333;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-block;
  width: 250px;
  max-width: 100%;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .common-button {
    font-size: 15px;
    width: 200px;
  }
}
.common-button:hover {
  background: #666;
  color: #fff;
}
.common-button span {
  display: inline-block;
  vertical-align: middle;
}
.common-button span.sub-text {
  font-size: 15px;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .common-button span.sub-text {
    font-size: 12px;
  }
}
.common-button.wide-button {
  width: 300px;
}
@media screen and (max-width: 600px) {
  .common-button.wide-button {
    font-size: 15px;
    width: 250px;
  }
}
.common-button.lower-button {
  margin: 20px auto;
  display: block;
}
.app-button {
  background: #e53935;
}
.app-button:hover {
  background: #d6201c;
}
.color-link {
  text-align: center;
}
.color-link a {
  color: #e53935;
}
.color-link a:hover {
  text-decoration: underline;
}
.text-link {
  text-decoration: underline;
  font-size: 13px;
  color: #333;
  display: inline-block;
  margin: 24px 0 0;
  cursor: pointer;
}
.text-link:hover {
  color: #95989A;
}
.color-text-link {
  display: inline-block;
  color: #e53935;
}
.color-text-link:hover {
  text-decoration: underline;
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #469bf9;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #469bf9, 0 0 5px #469bf9;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #469bf9;
  border-left-color: #469bf9;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#premium-comfirm-container .setting-inner {
  padding: 14px 20px 120px;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner {
    padding: 0 20px 100px;
  }
}
#premium-comfirm-container .setting-inner .days-logo {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner .days-logo {
    width: 112px;
  }
}
#premium-comfirm-container .setting-inner h1 {
  line-height: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner h1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
#premium-comfirm-container .setting-inner h2 {
  line-height: 1;
  font-size: 24px;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
#premium-comfirm-container .setting-inner h4.bold-title {
  margin: 16px 0 12px;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner h4.bold-title {
    margin: 12px 0 6px;
  }
}
#premium-comfirm-container .setting-inner .common-button-container {
  margin-top: 24px;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner .common-button-container {
    margin-top: 20px;
  }
}
#premium-comfirm-container .setting-inner .common-button {
  background-color: #e53935;
  width: 280px;
}
@media screen and (max-width: 320px) {
  #premium-comfirm-container .setting-inner .common-button {
    width: 200px;
  }
}
#premium-comfirm-container .setting-inner .common-button:hover {
  background-color: #d6201c;
}
#premium-comfirm-container .setting-inner p.description {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner p.description {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
#premium-comfirm-container .setting-inner .setting-list-container .setting-list {
  padding: 16px 0;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner .setting-list-container .setting-list {
    padding: 20px 0;
  }
}
#premium-comfirm-container .setting-inner .setting-list-container .setting-list-title {
  width: 60px;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner .setting-list-container .setting-list-title {
    width: 60px;
  }
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner .setting-list-container .setting-list-content {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 760px) {
  #premium-comfirm-container .setting-inner .setting-list-container .setting-list p {
    font-size: 13px;
  }
}
.setting-container {
  max-width: 980px;
  margin: 16px auto 48px;
  min-height: 500px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .setting-container {
    min-height: 0;
  }
}
.setting-container .setting-inner {
  max-width: 520px;
  width: 100%;
}
.setting-inner {
  padding: 40px 20px 48px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 760px) {
  .setting-inner {
    padding: 45px 20px;
  }
}
.setting-inner h2 {
  font-size: 28px;
  margin-bottom: 24px;
}
@media screen and (max-width: 760px) {
  .setting-inner h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.setting-inner h3 {
  margin: 16px 0 4px;
  font-size: 15px;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .setting-inner h3 {
    font-size: 13px;
    margin: 16px 0 2px;
  }
}
.setting-inner h4.bold-title {
  font-size: 15px;
  text-align: left;
  margin: 40px 0 12px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .setting-inner h4.bold-title {
    font-size: 13px;
    margin: 24px 0 6px;
  }
}
.setting-inner p {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 760px) {
  .setting-inner p {
    font-size: 13px;
  }
}
.setting-inner p input {
  border: 1px solid #95989A;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: none;
  font-size: 17px;
  line-height: 2em;
  padding: 10px;
  margin: 20px 0 0;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .setting-inner p input {
    font-size: 15px;
    margin: 16px 0 0;
  }
}
.setting-inner p.description {
  margin: 0 0 8px;
  display: inline-block;
  text-align: center;
}
.setting-inner p.description a {
  color: #1495EB;
}
.setting-inner p.description a:hover {
  text-decoration: underline;
}
.setting-inner p.error-message {
  text-align: left;
  padding: 4px 0 0;
  font-size: 13px;
  color: #FF0000;
}
.setting-inner p.confirm-message {
  text-align: left;
  padding: 4px 0 0;
  font-size: 13px;
  color: #0FBF00;
}
.setting-inner p.with-label-input input {
  margin: 0;
}
.setting-inner p.input-content {
  margin: 20px 0 0 0;
  text-align: center;
  padding-right: 8px;
}
.setting-inner p.input-content input[type='checkbox'],
.setting-inner p.input-content label.checkbox-label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 6px;
  width: auto;
  line-height: 1;
}
.setting-inner p.input-content a {
  color: #1495EB;
  text-decoration: none;
}
.setting-inner p.input-content a:hover {
  text-decoration: underline;
}
.setting-inner p strong.color {
  color: #f19f00;
}
.setting-inner ul.attention-list {
  text-align: left;
  list-style: circle;
  padding-left: 1.3em;
  padding-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .setting-inner ul.attention-list {
    padding-bottom: 0;
  }
}
.setting-inner ul.attention-list li {
  font-size: 13px;
  padding-bottom: .5em;
}
@media screen and (max-width: 760px) {
  .setting-inner ul.attention-list li {
    font-size: 12px;
  }
}
.setting-inner .common-button-container {
  margin: 32px 0 0;
}
@media screen and (max-width: 760px) {
  .setting-inner .common-button-container {
    margin: 24px 0 0;
  }
}
.setting-inner .mail-send-image {
  width: 105px;
  height: 81px;
  display: block;
  margin: 0 auto 24px;
}
@media screen and (max-width: 760px) {
  .setting-inner .mail-send-image {
    width: 80px;
    height: auto;
    margin: 0 auto 16px;
  }
}
.setting-inner .premium-confirm-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}
@media screen and (max-width: 760px) {
  .setting-inner .premium-confirm-title {
    font-size: 16px;
  }
}
.setting-inner.premium p.description {
  text-align: center;
  margin-bottom: 6px;
}
.setting-inner .setting-premium-logo {
  line-height: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
}
.setting-inner .setting-premium-logo img {
  width: 120px;
  height: auto;
}
.setting-inner .setting-tweet {
  display: block;
  line-height: 0;
  padding-bottom: 16px;
}
.setting-inner p.inner-footer-normal-text {
  display: inline-block;
  margin: 24px 0 0;
  font-size: 13px;
  text-align: center;
}
.setting-inner p.inner-footer-normal-text a {
  color: #1495EB;
}
.setting-inner p.inner-footer-normal-text a:hover {
  text-decoration: underline;
}
.setting-inner p.inner-footer-notice-text {
  margin: 24px 0 0;
  padding-top: 10px;
  font-size: 12px;
  border-top: 1px solid #eaeaea;
}
.setting-inner p.inner-footer-notice-text strong {
  color: #F22A1F;
  font-weight: 300;
}
.setting-footer {
  background: #f1f1f1;
  color: #95989A;
  padding: 24px 8px;
  font-size: 15px;
}
@media screen and (max-width: 760px) {
  .setting-footer {
    margin-top: -8px;
    padding: 18px 8px;
    font-size: 13px;
  }
}
.setting-footer button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #1495EB;
  text-decoration: none;
  padding-left: 4px;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
}
.setting-footer button:hover {
  text-decoration: underline;
  color: #1495EB;
}
@media screen and (max-width: 760px) {
  .setting-footer button {
    font-size: 15px;
  }
}
.setting-footer .attention {
  font-size: 12px;
  margin-top: 6px;
  display: inline-block;
  color: #333;
}
@media screen and (max-width: 760px) {
  .setting-footer .attention {
    font-size: 11px;
    margin-top: 4px;
  }
}
.setting-list-container .setting-list {
  border-bottom: 1px solid #eaeaea;
  padding: 24px 0;
  zoom: 1;
}
.setting-list-container .setting-list:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.setting-list-container .setting-list:first-child {
  border-top: 1px solid #eaeaea;
}
.setting-list-container .setting-list-title {
  float: left;
  width: 100px;
  font-weight: 700;
  font-size: 14px;
  margin: 2px 20px 0 0;
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list-title {
    width: 80px;
    font-size: 13px;
  }
}
.setting-list-container .setting-list-longer .setting-list-title {
  width: 130px;
  font-size: 13px;
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list-longer .setting-list-title {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list-longer .setting-list-title br {
    display: none;
  }
}
.setting-list-container .setting-list-content {
  float: right;
  width: calc(100% - 80px);
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list-content {
    width: calc(100% - 100px);
  }
}
.setting-list-container .setting-list-longer .setting-list-content {
  width: calc(100% - 150px);
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list-longer .setting-list-content {
    float: none;
    width: 100%;
    margin-top: 8px;
  }
}
.setting-list-container .setting-list-link {
  margin-top: 16px;
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list-link {
    margin-top: 8px;
  }
}
.setting-list-container .setting-list .setting-list-content {
  text-align: left;
  font-size: 15px;
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list .setting-list-content {
    font-size: 14px;
    line-height: 1.4;
  }
}
.setting-list-container .setting-list .setting-list-content .supplement {
  color: #95989A;
  font-size: 13px;
}
.setting-list-container .setting-list .setting-list-content dt {
  margin-bottom: 8px;
}
.setting-list-container .setting-list .setting-list-content dd {
  color: #95989A;
  font-size: 13px;
}
.setting-list-container .setting-list .setting-list-content dd:not(:last-of-type) {
  padding-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .setting-list-container .setting-list .setting-list-content dd {
    font-size: 12px;
  }
}
.setting-list-container .setting-list a {
  color: #e53935;
  text-decoration: underline;
  font-size: 13px;
}
.setting-list-container .setting-list a:hover {
  color: #d6201c;
}
.setting-list-container .setting-list button.text-link {
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  box-sizing: border-box;
  color: #e53935;
  text-decoration: underline;
  font-size: 13px;
}
.setting-list-container .setting-list button.text-link:hover {
  color: #d6201c;
}
.search-container .setting-inner {
  max-width: 720px;
}
.search-container .search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: rgba(153, 153, 153, 0.3);
  padding: 24px 32px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .search-container .search-form {
    padding: 12px 16px;
    margin: 0 auto;
  }
}
.search-container input[type=search] {
  width: calc(100% - 166px);
  height: 60px;
  border-radius: 8px;
  border: 2px solid #999;
  margin-right: 16px;
  box-sizing: border-box;
  font-size: 20px;
  padding: 8px 16px;
  -webkit-appearance: button;
}
@media screen and (max-width: 760px) {
  .search-container input[type=search] {
    height: 50px;
    font-size: 16px;
    width: calc(100% - 116px);
  }
}
@media screen and (max-width: 320px) {
  .search-container input[type=search] {
    height: 36px;
    width: calc(100% - 88px);
    margin-right: 8px;
    padding: 8px;
  }
}
.search-container .common-button-container {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: 150px;
}
@media screen and (max-width: 760px) {
  .search-container .common-button-container {
    width: 100px;
  }
}
@media screen and (max-width: 320px) {
  .search-container .common-button-container {
    width: 80px;
  }
}
.search-container .common-button {
  background: #e53935;
  height: 60px;
  font-size: 20px;
}
@media screen and (max-width: 760px) {
  .search-container .common-button {
    height: 50px;
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .search-container .common-button {
    height: 36px;
    font-size: 14px;
    padding: 0;
  }
}
.search-container .common-button:hover {
  background: #d6201c;
}
.search-top {
  min-height: 640px;
  height: 640px;
  max-width: 1100px;
}
@media screen and (max-width: 980px) {
  .search-top {
    min-height: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 760px) {
  .search-top {
    min-height: 0;
    max-width: 500px;
    height: auto;
    overflow: hidden;
  }
}
.search-top .setting-inner {
  padding: 0 200px 40px;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 980px) {
  .search-top .setting-inner {
    padding: 0 16% 40px;
  }
}
@media screen and (max-width: 760px) {
  .search-top .setting-inner {
    padding: 0 16px;
  }
}
.search-top .search-form-container {
  position: relative;
}
@media screen and (max-width: 760px) {
  .search-top .search-form-container {
    margin: 0 auto;
  }
}
.breadcrumb {
  padding: 20px 16px 16px;
  max-width: 980px;
  margin: 0 auto;
  font-size: 13px;
}
@media screen and (max-width: 760px) {
  .breadcrumb {
    padding: 16px 16px 0;
    font-size: 10px;
  }
}
.breadcrumb-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb-link,
.breadcrumb-gt {
  margin: 0 8px 0 0;
  color: #333;
}
@media screen and (max-width: 760px) {
  .breadcrumb-link,
  .breadcrumb-gt {
    margin: 0 6px 0 0;
  }
}
.breadcrumb-link {
  cursor: pointer;
}
.breadcrumb-link:hover {
  color: #95989A;
}
.breadcrumb-child {
  color: #95989A;
}
.smartapp-android {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  background: #fff;
  border-bottom: 1px solid #d2d2d2;
}
.smartapp-android .smartapp-close-btn {
  cursor: pointer;
  border: none;
  background-color: transparent;
  height: 100%;
  width: 45px;
}
.smartapp-android .smartapp-close-btn .smartapp-close-btn-content {
  margin: auto;
  width: 20px;
  height: 2px;
  background: #999;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.smartapp-android .smartapp-close-btn .smartapp-close-btn-content::after {
  display: block;
  content: "";
  width: 20px;
  height: 2px;
  background: #999;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.smartapp-android .smartapp-close-btn .smartapp-close-btn-content span {
  display: none;
}
.smartapp-android .smartapp-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.smartapp-android .smartapp-info .smartapp-info-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 7px;
}
.smartapp-android .smartapp-info .smartapp-appicon {
  width: 70px;
}
.smartapp-android .smartapp-info .smartapp-appicon img {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 18px;
}
.smartapp-android .smartapp-info .smartapp-info-text {
  margin: 0 5px 0 12px;
  font-size: 12px;
  border: none;
  color: #6d6d6d;
}
.smartapp-android .smartapp-info .smartapp-info-text span {
  margin: 0 6px;
}
.smartapp-android .smartapp-info .smartapp-info-text-title {
  font-size: 14px;
  color: #000;
}
.smartapp-android .smartapp-info .smartapp-info-text-store {
  margin: 12px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.smartapp-android .smartapp-info .smartapp-view-btn {
  margin: auto 12px auto 0;
  padding: 6px 15px;
  height: 25px;
  line-height: 27px;
  background: #3367d6;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
}
.todo {
  background-color: #ffff00 !important;
  color: #ff0000 !important;
  font-style: italic !important;
  font-weight: bold !important;
  border: 1px 1px 1px 1px !important;
  border-style: dashed !important;
  border-color: #FF0000 !important;
  font-smooth: never;
  -webkit-font-smoothing: none;
}
body {
  background: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "Helvetica", "Arial", sans-serif;
}
a {
  text-decoration: none;
  color: #000;
}
a:active,
a:hover {
  color: #e53935;
}
.slick-slide {
  padding: 0 5px;
}
.slick-arrow {
  position: absolute;
  background-size: 14.5px 14.5px;
  background-position: center;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
  cursor: pointer;
  bottom: -10px;
  z-index: 1;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 42px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .slick-arrow {
    display: none !important;
  }
}
.slick-arrow.slick-prev {
  background-image: url("/images/ic_arrow_left_yellow.png");
  right: 202px;
}
@media screen and (max-width: 1218px) {
  .slick-arrow.slick-prev {
    right: 122px;
  }
}
.slick-arrow.slick-next {
  background-image: url("/images/ic_arrow_right_yellow.png");
  right: 80px;
}
@media screen and (max-width: 1218px) {
  .slick-arrow.slick-next {
    right: 0;
  }
}
.slick-dots {
  position: absolute;
  background: #fff url("/images/bg_top_banner.png") 320px 45px;
  width: 164px;
  text-align: center;
  bottom: -10px;
  right: 80px;
}
@media screen and (max-width: 1218px) {
  .slick-dots {
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  .slick-dots {
    display: none !important;
  }
}
.slick-dots * {
  color: #fff;
  line-height: 42px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.slick-dots li {
  display: none;
}
.slick-dots li.slick-active,
.slick-dots li:last-child {
  display: inline;
}
.slick-dots li:last-child button::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  padding: 0 4px;
  font-weight: 300;
}
.slick-dots li:last-child.slick-active::before {
  content: "10";
  font-size: 17px;
}
.slick-dots button {
  font-size: 17px;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  cursor: default;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track::before,
.slick-track::after {
  display: table;
  content: '';
}
.slick-track::after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.header {
  height: 60px;
}
@media screen and (max-width: 600px) {
  .header {
    height: 80px;
    line-height: 0;
  }
}
.header a {
  display: block;
}
.header .amadare {
  position: relative;
  display: inline-block;
  font-style: italic;
  margin-left: -1px;
}
.header-container {
  background: #e53935;
  height: 100%;
}
.header nav {
  zoom: 1;
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.header nav:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .header nav {
    width: auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .header nav {
    text-align: center;
    padding: 0;
    padding-top: 12px;
  }
}
.header-logo,
.header-nav-history,
.header-nav-series,
.header-nav-app,
.header-nav-rookie,
.header-nav-search {
  float: left;
}
.header-nav {
  zoom: 1;
  float: right;
  width: calc(100% - 180px);
  font-size: 15px;
  font-weight: 700;
  position: relative;
}
.header-nav:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .header-nav {
    width: calc(100% - 150px);
    font-size: 13px;
  }
}
@media screen and (max-width: 700px) {
  .header-nav {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .header-nav {
    width: auto;
    float: none;
    display: inline-block;
    font-size: 10px;
    height: 36px;
  }
}
.header-nav a {
  color: #fff;
}
@media screen and (max-width: 600px) {
  .header-nav a {
    border-bottom: 4px solid transparent;
  }
}
.header-nav button {
  color: #fff;
  background: none ! important;
  border: none;
  padding: 0 !important;
  font: inherit;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .header-nav button {
    border-bottom: 4px solid transparent;
  }
}
@media screen and (max-width: 600px) {
  .header-nav-search span:not(.amadare),
  .header-nav-bookstore span:not(.amadare) {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
  }
}
.header-nav-home,
.header-nav-history,
.header-nav-series,
.header-nav-app,
.header-nav-rookie,
.header-nav-search {
  margin-top: 20.5px;
  padding-right: 24px;
}
@media screen and (max-width: 980px) {
  .header-nav-home,
  .header-nav-history,
  .header-nav-series,
  .header-nav-app,
  .header-nav-rookie,
  .header-nav-search {
    margin-top: 22.5px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 700px) {
  .header-nav-home,
  .header-nav-history,
  .header-nav-series,
  .header-nav-app,
  .header-nav-rookie,
  .header-nav-search {
    padding-right: 12px;
  }
}
@media screen and (max-width: 600px) {
  .header-nav-home,
  .header-nav-history,
  .header-nav-series,
  .header-nav-app,
  .header-nav-rookie,
  .header-nav-search {
    margin: 0;
    padding-right: 0;
  }
}
.header-nav-history a:hover,
.header-nav-series a:hover,
.header-nav-app a:hover,
.header-nav-rookie a:hover,
.header-nav-history button:hover,
.header-nav-series button:hover,
.header-nav-app button:hover,
.header-nav-rookie button:hover {
  color: #fad7d7;
}
@media screen and (max-width: 600px) {
  .header-nav-history a,
  .header-nav-series a,
  .header-nav-app a,
  .header-nav-rookie a,
  .header-nav-history button,
  .header-nav-series button,
  .header-nav-app button,
  .header-nav-rookie button {
    line-height: 32px;
    height: 32px;
    padding: 0 8px;
  }
}
.header-logo {
  margin-top: 14px;
}
@media screen and (max-width: 600px) {
  .header-logo {
    margin: 0 auto 8px;
    float: none;
    line-height: 1.5;
  }
}
.header-logo a {
  width: 122px;
  height: 32px;
  padding-top: 32px;
  background: url("/images/jumpplus_white.png") left center no-repeat;
  background-size: contain;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .header-logo a {
    margin: 0 auto;
    width: 93.84615385px;
    height: 24.61538462px;
    padding-top: 24.61538462px;
  }
}
.header-logo a:hover {
  opacity: .9;
}
.header-nav-search {
  position: relative;
  top: -3px;
  padding-right: 0;
}
@media screen and (max-width: 986px) {
  .header-nav-search {
    top: -5px;
  }
}
@media screen and (max-width: 800px) {
  .header-nav-search {
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .header-nav-search {
    position: absolute;
    top: -33px;
    right: -28px;
  }
}
@media screen and (max-width: 360px) {
  .header-nav-search {
    right: 0;
  }
}
.header-nav-search a {
  display: block;
  width: 26px;
  height: 26px;
  background: url("/images/ic_search_white.svg") center no-repeat;
  background-size: 16px 16px;
  border: none;
}
@media screen and (max-width: 600px) {
  .header-nav-search a {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 13px;
  }
}
.header-nav-search a:hover {
  opacity: .9;
}
@media screen and (max-width: 600px) {
  .header-nav-search a:hover {
    background-color: #fff;
    background-image: url("/images/ic_search_hover.svg");
    opacity: 1;
  }
}
.header-nav-search span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.header-nav-bookstore {
  float: right;
  margin-top: 11px;
}
@media screen and (max-width: 800px) {
  .header-nav-bookstore {
    margin-top: 17px;
  }
}
@media screen and (max-width: 600px) {
  .header-nav-bookstore {
    float: left;
    margin-top: 0;
    line-height: 1.5;
  }
}
.header-nav-bookstore a {
  border-radius: 19px;
  padding: 0 10px;
  border: 2px solid #fff;
}
@media screen and (max-width: 600px) {
  .header-nav-bookstore a {
    border-radius: 0;
    background: none;
    padding: 0 8px;
    line-height: 32px;
    border: none;
  }
}
.header-nav-bookstore a:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 600px) {
  .header-nav-bookstore a:hover {
    background: none;
  }
}
.header-nav-bookstore strong,
.header-nav-bookstore h2 {
  display: inline-block;
  vertical-align: middle;
}
.header-nav-bookstore strong {
  color: #fad7d7;
  font-size: 10px;
  font-weight: 300;
  margin: 3px 5px 0 0;
}
@media screen and (max-width: 800px) {
  .header-nav-bookstore strong {
    display: none;
  }
}
.header-nav-bookstore h2 {
  background: url("/images/jump_book_store.png") center no-repeat;
  width: 150px;
  height: 34px;
  background-size: contain;
  padding-top: 34px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .header-nav-bookstore h2 {
    width: 113.4px;
    height: 23.8px;
    padding-top: 23.8px;
  }
}
@media screen and (max-width: 600px) {
  .header-nav-bookstore h2 {
    background: none;
    width: auto;
    height: auto;
    padding-top: 0;
    overflow: auto;
    font-size: 10px;
    font-weight: 700;
  }
}
@media screen and (max-width: 600px) {
  #page-jumpPlus-top .header-nav-home a {
    border-color: #000;
  }
}
@media screen and (max-width: 600px) {
  #page-jumpPlus-series-list .header-nav-series a,
  #page-jumpPlus-series-oneshot .header-nav-series a,
  #page-jumpPlus-series-finished .header-nav-series a,
  #page-jumpPlus-app .header-nav-app a {
    border-color: #fff;
  }
}
.plus-header-nav {
  zoom: 1;
  float: right;
  width: calc(100% - 180px);
  font-size: 15px;
  font-weight: 700;
  height: 60px;
}
.plus-header-nav:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .plus-header-nav {
    width: calc(100% - 150px);
    font-size: 13px;
  }
}
@media screen and (max-width: 700px) {
  .plus-header-nav {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .plus-header-nav {
    width: auto;
    float: none;
    display: inline-block;
    font-size: 10px;
    height: 36px;
  }
}
.plus-header-nav a {
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .plus-header-nav a {
    border-bottom: 4px solid transparent;
  }
}
.plus-header-nav button {
  color: #fff;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .plus-header-nav button {
    border-bottom: 4px solid transparent;
    padding: 0 8px;
    box-sizing: inherit;
  }
}
.plus-header-nav li {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 24px;
  line-height: 1;
}
@media screen and (max-width: 980px) {
  .plus-header-nav li {
    padding-right: 15px;
  }
}
@media screen and (max-width: 700px) {
  .plus-header-nav li {
    padding-right: 12px;
  }
}
@media screen and (max-width: 600px) {
  .plus-header-nav li {
    padding-right: 0;
  }
}
.plus-header-nav .plus-header-nav-series,
.plus-header-nav .plus-header-nav-app,
.plus-header-nav .plus-header-nav-rookie,
.plus-header-nav .plus-header-nav-search {
  float: left;
}
.plus-header-nav .plus-header-nav-history,
.plus-header-nav .plus-header-nav-signup,
.plus-header-nav .plus-header-nav-my {
  float: right;
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-series a,
  .plus-header-nav .plus-header-nav-app a,
  .plus-header-nav .plus-header-nav-rookie a,
  .plus-header-nav .plus-header-nav-history a,
  .plus-header-nav .plus-header-nav-signup a,
  .plus-header-nav .plus-header-nav-my a,
  .plus-header-nav .plus-header-nav-series button,
  .plus-header-nav .plus-header-nav-app button,
  .plus-header-nav .plus-header-nav-rookie button,
  .plus-header-nav .plus-header-nav-history button,
  .plus-header-nav .plus-header-nav-signup button,
  .plus-header-nav .plus-header-nav-my button {
    line-height: 32px;
    height: 32px;
    padding: 0 8px;
  }
}
.plus-header-nav .plus-header-nav-series a:hover,
.plus-header-nav .plus-header-nav-app a:hover,
.plus-header-nav .plus-header-nav-rookie a:hover,
.plus-header-nav .plus-header-nav-history a:hover,
.plus-header-nav .plus-header-nav-signup a:hover,
.plus-header-nav .plus-header-nav-my a:hover,
.plus-header-nav .plus-header-nav-series button:hover,
.plus-header-nav .plus-header-nav-app button:hover,
.plus-header-nav .plus-header-nav-rookie button:hover,
.plus-header-nav .plus-header-nav-history button:hover,
.plus-header-nav .plus-header-nav-signup button:hover,
.plus-header-nav .plus-header-nav-my button:hover {
  color: #fad7d7;
}
.plus-header-nav .plus-header-nav-search {
  padding-right: 0;
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-search {
    position: absolute;
    top: 25px;
    right: 40px;
  }
}
@media screen and (max-width: 420px) {
  .plus-header-nav .plus-header-nav-search {
    right: 16px;
  }
}
.plus-header-nav .plus-header-nav-search a {
  display: block;
  width: 26px;
  height: 26px;
  background: url("/images/ic_search_white.svg") center no-repeat;
  background-size: 16px 16px;
  border: none;
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-search a {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 13px;
  }
}
.plus-header-nav .plus-header-nav-search a:hover {
  opacity: .9;
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-search a:hover {
    background-color: #fff;
    background-image: url("/images/ic_search_hover.svg");
    opacity: 1;
  }
}
.plus-header-nav .plus-header-nav-search span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-search span:not(.amadare) {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
  }
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-rookie {
    margin-right: 6px;
  }
}
.plus-header-nav .plus-header-nav-history {
  padding-right: 16px;
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-history {
    padding-right: 0;
    margin-left: 8px;
  }
}
@media screen and (max-width: 320px) {
  .plus-header-nav .plus-header-nav-history {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .plus-header-nav .plus-header-nav-history::before {
    content: "";
    display: inline-block;
    border-left: 1px dotted rgba(255, 255, 255, 0.5);
    height: 12px;
    width: 1px;
    position: relative;
    top: 2px;
    left: -8px;
  }
}
@media screen and (max-width: 320px) {
  .plus-header-nav .plus-header-nav-history::before {
    left: -4px;
  }
}
@media screen and (min-width: 600px) {
  .plus-header-nav .plus-header-nav-signup,
  .plus-header-nav .plus-header-nav-my {
    padding-left: 15px;
    border-left: 1px dotted rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 600px) {
  .plus-header-nav .off {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
  }
}
@media screen and (max-width: 600px) {
  #page-jumpPlus-history .plus-header-nav-history a,
  #page-jumpPlus-series-list .plus-header-nav-series a,
  #page-jumpPlus-series-oneshot .plus-header-nav-series a,
  #page-jumpPlus-series-finished .plus-header-nav-series a,
  #page-jumpPlus-app .plus-header-nav-app a,
  #page-jumpPlus-my .plus-header-nav-my a,
  #page-jumpPlus-my-setting .plus-header-nav-my a,
  #page-jumpPlus-my-boughtSeries .plus-header-nav-my a,
  #page-jumpPlus-my-setting-pointHistory .plus-header-nav-my a,
  #page-jumpPlus-my-setting-boughtHistory .plus-header-nav-my a {
    border-color: #fff;
  }
}
.page-footer {
  width: 980px;
  margin: 40px auto;
  border-top: 2px solid #000;
  text-align: right;
}
@media screen and (max-width: 980px) {
  .page-footer {
    width: auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .page-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid #eaeaea;
  }
}
@media screen and (max-height: 450px) {
  .page-footer {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-right) + 16px);
  }
}
.page-footer li {
  display: inline-block;
  font-size: 12px;
  margin-left: 24px;
}
.page-footer li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 600px) {
  .page-footer li:first-child {
    margin: 0 10px;
  }
}
@media screen and (max-width: 600px) {
  .page-footer li {
    margin: 0 10px;
  }
}
.page-footer a {
  display: block;
  padding: 16px 0;
  color: #999;
}
.page-footer a:first-child {
  margin-left: 0;
}
.page-footer a:hover {
  color: #e53935;
}
@media screen and (max-width: 600px) {
  .page-footer a {
    padding: 8px 0;
  }
}
@media screen and (max-width: 320px) {
  .page-footer a span {
    display: none;
  }
}
.rookie-footer {
  position: relative;
  background: url("/images/bg_dots.png") center repeat;
  background-size: 10.5px 16.5px;
  text-align: center;
  height: 70px;
  border-bottom: 5px solid #2a97d5;
}
.rookie-footer a {
  position: absolute;
  bottom: 0;
  display: block;
  background: url("/images/banner/footer_rookie.png?20180507") center bottom no-repeat;
  width: 100%;
  height: 86px;
  background-size: contain;
  padding-top: 86px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .rookie-footer a {
    background-image: url("/images/banner/footer_rookie_sp.png?20180507");
  }
}
.footer {
  background: #000;
  color: #fff;
  padding: 24px 0 32px;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #e53935;
}
.footer-container {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-height: 450px) {
  .footer-container {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
  }
}
@media screen and (max-width: 980px) {
  .footer-container {
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .footer-container {
    padding: 0 16px;
    box-sizing: border-box;
  }
}
.footer-nav {
  zoom: 1;
}
.footer-nav:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.footer-logo,
.footer-nav-info,
.footer-nav-terms {
  float: left;
  width: 180px;
  margin-right: 16px;
}
@media screen and (max-width: 980px) {
  .footer-logo,
  .footer-nav-info,
  .footer-nav-terms {
    float: none;
    width: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 980px) {
  .footer-logo {
    position: absolute;
    margin-left: 16px;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .footer-logo {
    position: static;
    margin-left: 0;
    margin-bottom: 16px;
  }
}
.footer-logo img {
  width: 110px;
}
.footer-nav-info,
.footer-nav-terms {
  font-size: 12px;
}
@media screen and (max-width: 980px) {
  .footer-nav-info,
  .footer-nav-terms {
    padding-left: 164px;
    margin-bottom: 8px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav-info,
  .footer-nav-terms {
    border-top: 1px solid #333;
    padding: 4px 0;
    margin-bottom: 0;
  }
}
.footer-nav-info a,
.footer-nav-terms a {
  display: inline-block;
}
.footer-nav-info li,
.footer-nav-terms li {
  padding-bottom: 4px;
  padding: 4px 0;
}
@media screen and (max-width: 980px) {
  .footer-nav-info li,
  .footer-nav-terms li {
    display: inline-block;
    margin-right: 12px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav-info li,
  .footer-nav-terms li {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav-terms {
    border-bottom: 1px solid #333;
  }
}
.footer-nav-license {
  float: right;
  width: 326px;
  font-size: 10px;
}
@media screen and (max-width: 980px) {
  .footer-nav-license {
    width: calc(100% - 180px);
    margin-right: 16px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav-license {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.footer-nav-license dl {
  zoom: 1;
  margin-bottom: 16px;
}
.footer-nav-license dl:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.footer-nav-license dt {
  float: left;
  width: 60px;
}
.footer-nav-license dd {
  border-top: 1px solid #333;
  padding: 3px 0 1px;
  float: right;
  width: calc(100% - 76px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 600px) {
  .footer-nav-license dd {
    border: none;
    padding: 0 0 4px;
  }
}
.footer-nav-license dd:last-child {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 600px) {
  .footer-nav-license dd:last-child {
    border: none;
  }
}
.footer-nav-license img {
  max-width: 60px;
  max-height: 60px;
}
.footer-copyright {
  font-size: 10px;
  color: #666;
  margin: 32px 0 0 196px;
}
@media screen and (max-width: 980px) {
  .footer-copyright {
    margin-left: 164px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 600px) {
  .footer-copyright {
    margin-left: 0;
  }
}
.footer-copyright a {
  color: #666;
}
.footer-copyright a:hover {
  color: #e53935;
}
.footer-wj {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  line-height: 0;
  border-top: 1px solid #333;
  margin-top: 24px;
}
@media screen and (max-width: 980px) {
  .footer-wj {
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 600px) {
  .footer-wj {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
}
.footer-wj img {
  width: 100%;
}
.footer-wj-official {
  width: 32.6531%;
}
@media screen and (max-width: 600px) {
  .footer-wj-official {
    width: 100%;
    max-height: 70px;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .footer-wj-official img {
    max-height: 70px;
    width: auto;
  }
}
.footer-wj-teiki {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .footer-wj-teiki {
    width: 100%;
  }
}
.footer-banner {
  line-height: 0;
  margin-top: 16px;
  zoom: 1;
}
.footer-banner:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .footer-banner {
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 600px) {
  .footer-banner {
    margin-left: 0;
    margin-right: 0;
  }
}
.footer-banner li {
  float: left;
  box-sizing: border-box;
  width: 16.66666667%;
}
@media screen and (max-width: 600px) {
  .footer-banner li {
    width: 33.33333333%;
  }
}
@media screen and (max-width: 320px) {
  .footer-banner li {
    width: 50%;
  }
}
.footer-banner img {
  width: 163.33333333px;
  max-width: 100%;
}
#page-viewer:not(.private) .smartapp-android:not(.hidden) + .header {
  margin-top: 91px;
}
#page-viewerEmbed .viewer-embed-footer-logo a {
  background-image: url("/images/embed/jump_plus.png");
  background-size: contain;
  width: 115px;
  height: 33.5px;
}
.modal-window-container {
  background: rgba(43, 46, 56, 0.9);
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  position: fixed;
  text-align: center;
  width: 100%;
  height: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2000;
}
.modal-window-container::before {
  content: '';
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.modal-window {
  background: #fff;
  border-radius: 40px;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin: 0 -3px 30px;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  position: relative;
}
.modal-window .modal-close-button {
  position: absolute;
  right: 24px;
  top: 24px;
  background: transparent;
  border: none;
  outline: inherit;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .modal-window .modal-close-button {
    top: 18px;
    right: 16px;
  }
}
@media screen and (max-width: 760px) {
  .modal-window .modal-close-button img {
    width: 18px;
    height: auto;
  }
}
.modal-window .setting-inner {
  max-width: 375px;
}
body.showing-modal {
  position: fixed;
}
.point-page-container h2 {
  margin-right: 16px;
}
.point-page-container h2 img {
  width: 30px;
  margin: -4px 8px 0;
  vertical-align: middle;
}
.point-page-container p.description {
  max-width: 400px;
  margin: 16px auto 30px;
}
@media screen and (max-width: 760px) {
  .point-page-container p.description {
    margin: 12px auto 24px;
  }
}
.point-page-container ul.point-list {
  border-top: 1px solid #eaeaea;
  margin: 0 auto 56px;
  max-width: 400px;
}
.point-page-container ul.point-list li {
  border-bottom: 1px solid #eaeaea;
  padding: 16px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .point-page-container ul.point-list li {
    padding: 12px 0;
  }
}
.point-page-container ul.point-list p {
  font-size: 20px;
  width: 30%;
}
@media screen and (max-width: 760px) {
  .point-page-container ul.point-list p {
    font-size: 17px;
  }
}
.point-page-container ul.point-list p span {
  font-size: 17px;
  padding-left: 4px;
}
@media screen and (max-width: 760px) {
  .point-page-container ul.point-list p span {
    font-size: 15px;
  }
}
.point-page-container ul.point-list .point-extra {
  font-size: 15px;
  color: #F22A1F;
}
.point-page-container ul.point-list .point-bought-button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 6px;
  background: #e53935;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  padding: 6px 16px;
  width: 100px;
}
@media screen and (max-width: 760px) {
  .point-page-container ul.point-list .point-bought-button {
    font-size: 16px;
  }
}
.point-page-container ul.point-list .point-bought-button:hover {
  background: #d6201c;
}
.point-page-container ul.point-list .point-bought-button span {
  font-size: 15px;
  padding-left: 4px;
}
@media screen and (max-width: 760px) {
  .point-page-container ul.point-list .point-bought-button span {
    font-size: 13px;
  }
}
.point-page-container .text-link {
  font-size: 12px;
}
ul.point-log-list {
  margin: 10px 0 40px;
}
ul.point-log-list li {
  position: relative;
  padding: 8px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
ul.point-log-list li::after {
  border-top: 1px solid #eaeaea;
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 18px;
}
ul.point-log-list p {
  position: relative;
  z-index: 2;
}
ul.point-log-list p.date {
  color: #95989A;
  font-size: 14px;
}
ul.point-log-list p.date span {
  background: #fff;
  padding: 0 12px 0 0;
}
@media screen and (max-width: 760px) {
  ul.point-log-list p.date {
    font-size: 13px;
  }
}
ul.point-log-list p.point {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right;
}
ul.point-log-list p.point span {
  background: #fff;
  padding: 0 0 0 12px;
}
.payment-modal-window {
  max-width: 460px;
}
.payment-modal-window h2 img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin: -5px 10px 0 0;
}
@media screen and (max-width: 760px) {
  .payment-modal-window h2 img {
    width: 25px;
    height: 25px;
    margin: -4px px 0 0;
  }
}
.payment-modal-window .point-container {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 16px 24px;
}
.payment-modal-window .point-container .total-point-container,
.payment-modal-window .point-container .readable-product-point-container,
.payment-modal-window .point-container .minus-point-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0;
  max-width: 260px;
  margin: 0 auto;
}
.payment-modal-window .point-container h3 {
  margin: 4px 0 0;
  color: #95989A;
}
@media screen and (max-width: 760px) {
  .payment-modal-window .point-container h3 {
    font-size: 12px;
    margin: 0;
  }
}
.payment-modal-window .point-container p {
  font-size: 19px;
}
@media screen and (max-width: 760px) {
  .payment-modal-window .point-container p {
    font-size: 17px;
  }
}
.payment-modal-window .point-container .minus-point-container {
  border-top: 1px solid #d1d1d1;
  padding: 10px 0 8px;
  margin-top: 4px;
}
.payment-modal-window .point-container .minus-point-container h3 {
  color: #F22A1F;
}
.payment-modal-window .point-container .minus-point-container p {
  color: #F22A1F;
}
.payment-modal-window .color-button {
  background: #e53935;
}
.payment-modal-window .color-button:hover {
  background: #d6201c;
  color: #fff;
}
.payment-modal-window .color-button img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: -3px 6px 0 0;
}
.mypage-contaier {
  width: 960px;
  margin: 16px auto 60px;
  zoom: 1;
}
.mypage-contaier:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 980px) {
  .mypage-contaier {
    width: 100%;
  }
}
.mypage-sidebar {
  width: 206px;
  float: left;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar {
    float: none;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
}
.mypage-sidebar + .mypage-main {
  float: right;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar + .mypage-main {
    float: none;
  }
}
.mypage-main {
  width: 725px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .mypage-main {
    max-width: 725px;
    margin: 16px auto 0;
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 760px) {
  .mypage-main {
    max-width: 400px;
    padding: 0 16px;
  }
}
.mypage-intro {
  background: #f1f1f1;
  padding: 16px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .mypage-intro {
    padding: 8px;
  }
}
.mypage-intro h3 {
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
}
@media screen and (max-width: 760px) {
  .mypage-intro h3 {
    font-size: 13px;
  }
}
.mypage-intro p {
  padding: 10px 0;
  font-size: 13px;
}
@media screen and (max-width: 760px) {
  .mypage-intro p {
    font-size: 12px;
    padding: 8px 0;
  }
}
.mypage-intro .common-button {
  background: #e53935;
  max-width: 320px;
  font-size: 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 760px) {
  .mypage-intro .common-button {
    font-size: 13px;
    max-width: 250px;
  }
}
.mypage-intro .common-button:hover {
  background: #d6201c;
}
.mypage-intro .login-intro {
  color: #95989A;
  font-size: 12px;
  padding: 8px 0;
}
@media screen and (max-width: 760px) {
  .mypage-intro .login-intro {
    font-size: 11px;
  }
}
.mypage-intro .login-link {
  color: #e53935;
  cursor: pointer;
}
.mypage-intro .login-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar {
    padding: 0;
    background: #f1f1f1;
    margin-bottom: 32px;
  }
}
.mypage-sidebar ul {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar ul {
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 725px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 760px) {
  .mypage-sidebar ul {
    max-width: 400px;
  }
}
.mypage-sidebar li {
  border-bottom: 1px dashed #eaeaea;
}
.mypage-sidebar li:last-child {
  border: none;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar li {
    border: none;
    width: 33.3333%;
    text-align: center;
    position: relative;
  }
  .mypage-sidebar li::after {
    content: "";
    border-right: 1px dashed #95989A;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
  }
  .mypage-sidebar li:last-child::after {
    content: none;
  }
}
.mypage-sidebar li a {
  padding: 10px;
  display: block;
  color: #333;
}
.mypage-sidebar li a:hover {
  background: #f1f1f1;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar li a:hover {
    color: #95989A;
  }
  .mypage-sidebar li a:hover .st0 {
    fill: #95989A;
  }
}
.mypage-sidebar li a.selected {
  color: #e53935;
}
.mypage-sidebar li a.selected .st0 {
  fill: #e53935;
}
.mypage-sidebar li .sidebar-icon {
  display: inline-block;
  vertical-align: middle;
}
.mypage-sidebar li .sidebar-icon .st0 {
  fill: #333;
}
.mypage-sidebar li .sidebar-icon.mypage-icon {
  width: 17px;
  height: 22px;
  padding: 0 6px;
  margin-right: 4px;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar li .sidebar-icon.mypage-icon {
    padding: 0;
  }
}
@media screen and (max-width: 760px) {
  .mypage-sidebar li .sidebar-icon.mypage-icon {
    padding: 1.32px 0;
    margin: 0;
  }
}
.mypage-sidebar li .sidebar-icon.bought-icon {
  width: 24px;
  height: 19px;
  padding: 0 3px;
  margin-right: 4px;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar li .sidebar-icon.bought-icon {
    padding: 0;
  }
}
@media screen and (max-width: 760px) {
  .mypage-sidebar li .sidebar-icon.bought-icon {
    padding: 5.08px 0 1.08px;
    margin: 0;
  }
}
.mypage-sidebar li .sidebar-icon.setting-icon {
  width: 24px;
  height: 23px;
  padding: 0 3px;
  margin-right: 4px;
}
@media screen and (max-width: 980px) {
  .mypage-sidebar li .sidebar-icon.setting-icon {
    padding: 0;
  }
}
@media screen and (max-width: 760px) {
  .mypage-sidebar li .sidebar-icon.setting-icon {
    padding: 0.81px 0 0.82px;
    margin: 0;
  }
}
.mypage-sidebar li .label {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  margin-top: 2px;
}
@media screen and (max-width: 760px) {
  .mypage-sidebar li .label {
    display: block;
    font-size: 12px;
    margin: 4px 0 0;
  }
}
.mypage-top .mypage-top-point {
  text-align: right;
  margin: -30px 0 8px;
}
@media screen and (max-width: 980px) {
  .mypage-top .mypage-top-point {
    margin: -10px 0 8px;
  }
}
@media screen and (max-width: 760px) {
  .mypage-top .mypage-top-point {
    margin: -16px 0 24px;
    position: relative;
    zoom: 1;
  }
  .mypage-top .mypage-top-point:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }
  .mypage-top .mypage-top-point::before {
    content: '';
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    position: absolute;
    left: 0;
    top: 12px;
  }
}
.mypage-top .mypage-top-point .title {
  font-size: 12px;
  font-weight: 700;
  padding-right: 10px;
  display: inline;
  font-weight: 300;
}
@media screen and (max-width: 760px) {
  .mypage-top .mypage-top-point .title {
    padding-right: 10px;
    background: #fff;
    float: left;
    position: relative;
    padding-top: 4px;
  }
}
.mypage-top .mypage-top-point .point {
  color: #e53935;
  font-size: 17px;
}
@media screen and (max-width: 760px) {
  .mypage-top .mypage-top-point .point {
    padding-left: 10px;
    background: #fff;
    float: right;
    position: relative;
  }
}
.mypage-top .mypage-top-point .point:hover {
  opacity: .6;
}
.mypage-top .last-reading-container,
.mypage-top .magazine-list-container,
.mypage-top .bought-list-container,
.mypage-top .history-list-container {
  margin-bottom: 40px;
}
.mypage-top .magazine-list-container,
.mypage-top .bought-list-container,
.mypage-top .history-list-container {
  border-top: 2px solid #333;
}
.mypage-top h4 {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 700;
}
.mypage-top h4::before {
  display: inline-block;
  content: "";
  background-size: contain;
  vertical-align: middle;
  margin: -2px 8px 0 0;
}
.mypage-top h4.magazine-list-title::before {
  background: url("/images/user/ic_magazine.svg") center center no-repeat;
  width: 20px;
  height: 24px;
}
.mypage-top h4.bought-list-title::before {
  background: url("/images/user/ic_bought.svg") center center no-repeat;
  width: 24px;
  height: 24px;
}
.mypage-top .more-button-container {
  width: 100%;
  text-align: center;
  margin: 0;
}
.mypage-top .more-button-container .more-button {
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  opacity: .4;
  padding: 8px 16px;
}
@media screen and (max-width: 980px) {
  .mypage-top .more-button-container .more-button {
    background: #333;
    color: #fff;
    border-radius: 30px;
    opacity: 1;
    padding: 6px 24px;
    font-size: 12px;
  }
}
.mypage-top .more-button-container .more-button::after {
  display: inline-block;
  content: "";
  background: url("/images/user/ic_arrow_down_small.png") center center no-repeat;
  width: 8.5px;
  height: 5px;
  background-size: contain;
  vertical-align: middle;
  margin: -2px 0 0 8px;
}
@media screen and (max-width: 980px) {
  .mypage-top .more-button-container .more-button::after {
    color: #fff;
    background: url("/images/user/ic_arrow_down_small_white.png") center center no-repeat;
    background-size: contain;
    width: 8px;
  }
}
.mypage-top .more-button-container .more-button:hover {
  color: #333;
  opacity: 1;
}
@media screen and (max-width: 980px) {
  .mypage-top .more-button-container .more-button:hover {
    color: #fff;
    background: #595959;
  }
}
.mypage-top .more-button-container .more-button-link::after {
  content: none;
}
.magazine-list-container {
  position: relative;
}
.magazine-list-container .magazine-status {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}
.magazine-list-container .magazine-status .status {
  padding: 2px 12px;
  background: #fff;
  color: #F22A1F;
  border: 2px solid #F22A1F;
  border-right: none;
}
.magazine-list-container .magazine-status .magazine-title {
  padding: 2px 12px;
  background: #F22A1F;
  color: #fff;
  border: 2px solid #F22A1F;
  border-left: none;
}
.magazine-list-container .magazine-empty-container {
  position: relative;
  font-weight: 700;
  text-align: center;
}
.magazine-list-container .magazine-empty-container a {
  display: block;
  background: #e53935;
  color: #fff;
  margin: 0 auto;
  max-width: 280px;
  line-height: 40px;
  border-radius: 20px;
}
.magazine-list-container .magazine-empty-container a strong {
  color: #fff176;
}
.magazine-list-container .magazine-empty-container p {
  line-height: 1.2;
}
.magazine-list-container .magazine-empty-container-magazine {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 760px) {
  .magazine-list-container .magazine-empty-container-magazine {
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.magazine-list-container .magazine-empty-container-magazine li {
  line-height: 0;
}
@media screen and (max-width: 760px) {
  .magazine-list-container .magazine-empty-container-magazine li:nth-child(1),
  .magazine-list-container .magazine-empty-container-magazine li:nth-child(2),
  .magazine-list-container .magazine-empty-container-magazine li:nth-child(3) {
    width: calc((100% - 16px) / 3);
  }
  .magazine-list-container .magazine-empty-container-magazine li:nth-child(4),
  .magazine-list-container .magazine-empty-container-magazine li:nth-child(5),
  .magazine-list-container .magazine-empty-container-magazine li:nth-child(6) {
    display: none;
  }
}
@media screen and (min-width: 760px) {
  .magazine-list-container .magazine-empty-container-magazine img {
    width: auto;
    height: 198px;
  }
}
@media screen and (max-width: 760px) {
  .magazine-list-container .magazine-empty-container-magazine img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 760px) {
  .magazine-list-container .magazine-empty-container-text-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 760px) {
  .magazine-list-container .magazine-empty-container-text {
    margin-top: 16px;
  }
}
@media screen and (max-width: 760px) {
  .magazine-list-container .magazine-empty-container-text {
    margin-top: 12px;
  }
}
.magazine-list-container .magazine-empty-container-main-text strong {
  color: #e53935;
  padding-right: 5px;
}
.magazine-list-container .magazine-empty-container-sub-text {
  font-size: 12px;
  margin: 6px 0 8px;
}
.magazine-list-container .magazine-empty-container-sub-text strong {
  color: #e53935;
  padding: 0 4px;
}
.magazine-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.magazine-list li {
  margin-bottom: 16px;
  width: calc((100% - 80px) / 5.01);
}
@media screen and (min-width: 760px) {
  .magazine-list li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 760px) {
  .magazine-list li {
    width: calc((100% - 5%) / 2);
    margin-bottom: 16px;
  }
  .magazine-list li:nth-child(odd) {
    margin-right: 5%;
  }
}
.magazine-list li a {
  display: block;
}
.magazine-list .thmb-container {
  padding-top: 142.85714286%;
  position: relative;
  text-align: left;
  margin-bottom: 6px;
}
.magazine-list img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
}
.magazine-list .magazine-title {
  display: block;
  word-break: break-all;
  font-size: 12px;
  line-height: 1.4;
}
.magazine-list .label-container {
  margin-top: 4px;
  font-size: 10px;
}
.magazine-list .label-container .new-label {
  background: #F22A1F;
  color: #fff;
  padding: 0 3px;
  float: left;
  margin-right: 4px;
  margin-bottom: 3px;
  display: inline-block;
}
.magazine-list .label-container .date-label {
  color: #95989A;
  float: left;
  display: inline-block;
}
.bought-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bought-list li {
  margin-bottom: 20px;
  width: calc((100% - 80px) / 5.01);
  position: relative;
}
@media screen and (min-width: 760px) {
  .bought-list li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 760px) {
  .bought-list li {
    width: calc((100% - 5%) / 2);
    margin-bottom: 16px;
  }
  .bought-list li:nth-child(odd) {
    margin-right: 5%;
  }
  .bought-list li:nth-child(n+5) {
    display: none;
  }
  .bought-list li.more-button-container {
    display: block;
  }
}
.bought-list li a {
  display: block;
}
.bought-list li a:visited .series-title {
  color: #95989A;
}
.bought-list li a:visited:hover .series-title {
  color: #d6201c;
}
.bought-list li a .rental-series {
  color: #0FBF00;
}
.bought-list .bought-list-status {
  margin-bottom: 50px;
}
.bought-list .series-title,
.bought-list .episode-title {
  display: block;
  word-break: break-all;
}
.bought-list img {
  width: 100%;
  display: block;
  margin-bottom: 6px;
}
.bought-list .series-title {
  font-size: 13px;
}
@media screen and (max-width: 760px) {
  .bought-list .series-title {
    font-size: 12px;
  }
}
.bought-list .new-episode-label {
  background: #F22A1F;
  color: #fff;
  font-size: 10px;
  padding: 3px 4px;
}
.bought-list .new-episode-date {
  color: #95989A;
  display: block;
  font-size: 10px;
  margin-top: 2px;
}
.bought-list .episode-title {
  font-size: 10px;
  color: #95989A;
}
.bought-list .rental-series-title {
  display: -webkit-box;
  overflow: hidden;
  max-height: 3em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  margin-bottom: 8px;
}
@media screen and (max-width: 760px) {
  .bought-list .rental-series-title {
    font-size: 12px;
  }
}
.bought-list .rental-series {
  position: absolute;
  bottom: -30px;
  width: 100%;
  color: #0FBF00;
}
@media screen and (max-width: 760px) {
  .bought-list .rental-series {
    bottom: -30px;
  }
}
.bought-list .rental-series .rental-label {
  display: block;
  margin-bottom: 4px;
  line-height: 1;
  font-weight: 700;
  font-size: 11px;
}
@media screen and (max-width: 320px) {
  .bought-list .rental-series .rental-label {
    font-size: 10px;
  }
}
.bought-list .rental-series .rental-label::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 9px;
  background: url("/images/viewer/ic_checked.png") center center no-repeat;
  background-size: contain;
  margin-right: 2px;
}
.bought-list .rental-series .return-date {
  display: block;
  font-weight: 300;
  font-size: 11px;
}
@media screen and (max-width: 320px) {
  .bought-list .rental-series .return-date {
    font-size: 10px;
  }
}
.bought-list .rental-series .return-date .date-label {
  padding-right: 5px;
}
.bought-list-notice {
  text-align: center;
}
ul.pager {
  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;
  margin: 0 auto 32px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 600px;
}
@media screen and (max-width: 760px) {
  ul.pager {
    font-size: 13px;
  }
}
ul.pager li a {
  display: block;
  margin: 3px 20px;
  cursor: pointer;
}
ul.pager li a:hover {
  color: #e53935;
}
ul.pager li a .arrow {
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle;
}
ul.pager li a .prev-arrow {
  padding-right: 8px;
}
ul.pager li a .next-arrow {
  padding-left: 8px;
}
ul.pager .active a {
  background: #f1f1f1;
}
ul.pager .active a:hover {
  color: #fff;
  background: #666;
}
ul.pager .disabled a {
  color: #95989A;
}
ul.pager .disabled a:hover {
  color: #95989A;
}
.mypage-setting .status {
  font-size: 13px;
  margin: 8px 0 24px;
}
.mypage-setting .point-container {
  max-width: 400px;
  position: relative;
  margin: 16px 0;
}
.mypage-setting .point-container::before {
  content: '';
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  position: absolute;
  left: 0;
  top: 12px;
}
.mypage-setting .total-point-title,
.mypage-setting .total-point {
  background: #fff;
  padding-bottom: 6px;
  position: relative;
}
.mypage-setting .total-point-title {
  font-weight: 700;
  float: left;
  position: relative;
  font-size: 13px;
  padding-right: 8px;
  padding-top: 3px;
}
.mypage-setting .total-point {
  color: #e53935;
  float: right;
  font-size: 17px;
  padding-left: 8px;
}
.mypage-setting .point-breakdown {
  padding-left: 20px;
  margin-left: 20px;
  position: relative;
  clear: both;
}
.mypage-setting .point-breakdown .title,
.mypage-setting .point-breakdown .point {
  font-size: 13px;
  padding-top: 2px;
}
.mypage-setting .point-breakdown .title {
  position: relative;
  float: left;
  clear: both;
}
.mypage-setting .point-breakdown .title::before {
  position: absolute;
  content: '';
  width: 14px;
  border-left: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  top: -15px;
  left: -20px;
  height: 25px;
}
.mypage-setting .point-breakdown .title:first-child::before {
  top: 0;
  height: 11px;
}
.mypage-setting .point-breakdown .point {
  float: right;
}
.mypage-setting .expired-point {
  clear: both;
  padding: 12px 0 0;
  font-size: 13px;
}
.mypage-setting .expired-point span {
  display: inline-block;
}
.mypage-setting .point-bought-button {
  clear: both;
  padding-top: 16px;
}
.mypage-setting .point-bought-button a {
  background: #e53935;
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  width: 160px;
  padding: 6px 16px;
  margin-right: 10px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .mypage-setting .point-bought-button a {
    display: block;
    margin: 0 auto 10px;
    width: 180px;
  }
}
.mypage-setting .point-bought-button a:hover {
  background: #d6201c;
}
.mypage-setting .point-bought-button a img {
  width: 16px;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 3px;
}
.mypage-setting .point-bought-button a.point-history-button {
  background: #333;
  margin-right: 0;
}
@media screen and (max-width: 760px) {
  .mypage-setting .point-bought-button a.point-history-button {
    margin: 0 auto;
  }
}
.mypage-setting #mypage-list-contaier {
  margin-top: 40px;
}
.mypage-setting .logout-button {
  background: transparent;
  border: none;
  color: #95989A;
  text-decoration: underline;
  font-size: 13px;
  margin: 40px 0;
  padding: 0;
  cursor: pointer;
}
.mypage-setting .logout-button:hover {
  color: #333;
}
.mypage-setting .days-upgrade-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f1f1f1;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 20px;
}
@media screen and (max-width: 760px) {
  .mypage-setting .days-upgrade-content {
    padding: 16px;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .mypage-setting .days-upgrade-content {
    padding: 16px 8px;
  }
}
.mypage-setting .days-upgrade-content h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}
.mypage-setting .days-upgrade-content p {
  font-size: 13px;
}
.mypage-setting .days-upgrade-content strong {
  font-weight: 700;
  color: #e53935;
}
@media screen and (max-width: 760px) {
  .mypage-setting .days-upgrade-content .premium-link {
    display: block;
    margin-top: 10px;
  }
}
.mypage-bought-series .title-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-left: 16px;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .title-box {
    margin-left: 10px;
  }
}
.mypage-bought-series .new-episode-date {
  font-size: 12px;
  color: #95989A;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .new-episode-date {
    font-size: 10px;
  }
}
.mypage-bought-series .series-title {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.3;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .series-title {
    font-size: 15px;
  }
}
.mypage-bought-series .rental-series-list {
  border-top: 1px solid #eaeaea;
  margin: 16px 0 32px;
}
.mypage-bought-series .rental-series-list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .rental-series-list li a {
    padding: 10px 0;
  }
}
.mypage-bought-series .rental-series-list li a:hover {
  color: #d6201c;
}
.mypage-bought-series .rental-series-list li a:hover .episode-title {
  color: #d6201c;
}
.mypage-bought-series .rental-series-list li a img {
  width: 96px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .rental-series-list li a img {
    width: 105px;
    height: auto;
  }
}
@media screen and (max-width: 320px) {
  .mypage-bought-series .rental-series-list li a img {
    width: 80px;
  }
}
.mypage-bought-series .rental-series-list .episode-title {
  font-size: 12px;
  line-height: 1.3;
}
.mypage-bought-series .rental-series-list .rental-series {
  width: 100%;
  color: #0FBF00;
  line-height: 1.2;
  margin-top: 6px;
}
.mypage-bought-series .rental-series-list .rental-label {
  margin-right: 5px;
  font-weight: 700;
  font-size: 12px;
}
@media screen and (max-width: 320px) {
  .mypage-bought-series .rental-series-list .rental-label {
    font-size: 11px;
  }
}
.mypage-bought-series .rental-series-list .rental-label::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 9px;
  background: url("/images/viewer/ic_checked.png") center center no-repeat;
  background-size: contain;
  margin-right: 2px;
}
.mypage-bought-series .rental-series-list .return-date {
  display: inline-block;
  font-weight: 300;
  font-size: 12px;
}
@media screen and (max-width: 320px) {
  .mypage-bought-series .rental-series-list .return-date {
    font-size: 11px;
  }
}
.mypage-bought-series .rental-series-list .return-date .date-label {
  padding-right: 5px;
}
.mypage-bought-series .bought-series-list {
  border-top: 1px solid #eaeaea;
  margin: 16px 0 32px;
}
.mypage-bought-series .bought-series-list li {
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .bought-series-list li {
    padding: 10px 0;
  }
}
.mypage-bought-series .bought-series-list img {
  width: 140px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .bought-series-list img {
    width: 105px;
  }
}
@media screen and (max-width: 320px) {
  .mypage-bought-series .bought-series-list img {
    width: 80px;
  }
}
.mypage-bought-series .bought-series-list .author {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .bought-series-list .author {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.mypage-bought-series .bought-series-list a.main-link {
  background: #f1f1f1;
  border-radius: 6px;
  font-size: 13px;
  padding: 4px 12px;
  margin-right: 12px;
  display: inline-block;
  margin-bottom: 6px;
}
.mypage-bought-series .bought-series-list a.main-link:hover {
  background: #666;
  color: #fff;
}
.mypage-bought-series .bought-series-list a.main-link:visited {
  color: #95989A;
}
.mypage-bought-series .bought-series-list a.main-link:visited:hover {
  color: #fff;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .bought-series-list a.main-link {
    font-size: 12px;
    margin-right: 8px;
  }
}
.mypage-bought-series .bought-series-list a.sub-link {
  color: #333;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 6px;
}
.mypage-bought-series .bought-series-list a.sub-link:hover {
  color: #e53935;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .bought-series-list a.sub-link {
    font-size: 11px;
  }
}
.mypage-bought-series .list-empty {
  border-top: 1px solid #eaeaea;
  margin: 16px 0 32px;
}
.mypage-bought-series .list-empty li {
  padding: 72px 0;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (max-width: 760px) {
  .mypage-bought-series .list-empty li {
    padding: 40px 0;
  }
}
.mypage-bought-series .list-empty li p {
  text-align: center;
}
ul.bought-log-list {
  margin: 10px 0 40px;
  border-top: 1px solid #eaeaea;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
ul.bought-log-list li {
  border-bottom: 1px solid #eaeaea;
  position: relative;
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
ul.bought-log-list .data-box {
  width: calc(100% - 80px);
}
ul.bought-log-list .series-title,
ul.bought-log-list .episode-title {
  line-height: 1.2;
  padding-bottom: 6px;
}
ul.bought-log-list .series-title {
  color: #333;
  font-size: 17px;
}
@media screen and (max-width: 760px) {
  ul.bought-log-list .series-title {
    font-size: 15px;
  }
}
ul.bought-log-list .episode-title {
  color: #333;
  font-size: 12px;
}
ul.bought-log-list time {
  color: #95989A;
  line-height: 1;
  font-size: 12px;
}
@media screen and (max-width: 760px) {
  ul.bought-log-list time {
    font-size: 11px;
  }
}
ul.bought-log-list .point {
  width: 60px;
  min-width: 60px;
  margin-left: 10px;
  text-align: right;
  font-size: 15px;
  color: #333;
}
.top-banner {
  position: relative;
  background: #000 url("/images/bg_top_banner.png") center center repeat-x;
  background-size: 810px 200px;
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  overflow: hidden;
  height: 200px;
}
@media screen and (max-width: 800px) {
  .top-banner {
    height: 140px;
  }
}
@media screen and (max-width: 320px) {
  .top-banner {
    height: 124px;
  }
}
.top-banner-items img {
  height: 180px;
}
@media screen and (max-width: 800px) {
  .top-banner-items img {
    height: 120px;
  }
}
@media screen and (max-width: 320px) {
  .top-banner-items img {
    height: 104px;
  }
}
.top-contents {
  zoom: 1;
}
.top-contents:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.serial-series {
  position: relative;
  float: left;
  border-right: 1px solid #eaeaea;
  width: calc(100% - (100% - 984px) / 2 - 198px);
}
@media screen and (max-width: 986px) {
  .serial-series {
    float: none;
    border: none;
    width: auto;
    padding-right: calc((100% - 798px) / 2);
    box-sizing: border-box;
  }
}
.top-sidebar {
  float: left;
  width: 184px;
  margin-left: 14px;
}
@media screen and (max-width: 986px) {
  .top-sidebar {
    float: right;
    width: 578px;
    margin: 80px 14px 0 0;
    padding-right: calc((100% - 798px) / 2);
  }
}
@media screen and (max-width: 800px) {
  .top-sidebar {
    float: none;
    width: auto;
    padding-right: 0;
    margin: 0;
  }
}
.top-contents .page-footer {
  clear: both;
  margin-top: 0;
}
.top-tagline {
  text-align: center;
  padding: 20px 0;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  .top-tagline {
    padding: 16px 0;
  }
}
.top-tagline img {
  width: 403.5px;
  max-width: 80%;
}
.daily {
  position: relative;
  background-size: 800px auto;
  background-position: top right 288px;
  background-repeat: no-repeat;
  margin-top: 44px;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .daily {
    text-align: left;
    background-size: 450px auto;
    background-position: top center;
    margin-top: 16px;
  }
}
.daily::after {
  position: absolute;
  display: block;
  content: "";
  width: 770px;
  right: 14px;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 800px) {
  .daily::after {
    width: 100%;
    right: auto;
  }
}
.serial-series .daily:first-child {
  margin-top: -20px;
}
@media screen and (max-width: 800px) {
  .serial-series .daily:first-child {
    margin-top: -16px;
  }
}
.serial-series .daily:last-child::after {
  border: none;
}
.daily .date-wrapper {
  position: absolute;
  width: 180px;
  text-align: center;
  right: 604px;
}
@media screen and (max-width: 800px) {
  .daily .date-wrapper {
    width: auto;
    text-align: left;
    top: 48px;
    right: auto;
  }
}
.daily .date {
  display: inline-block;
  background: red;
  font-weight: 700;
  line-height: 1;
  width: 170px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  padding-bottom: 8px;
}
@media screen and (max-width: 800px) {
  .daily .date {
    width: auto;
    padding: 0 16px;
    line-height: 28px;
    height: 28px;
  }
}
.daily .number {
  display: block;
  font-size: 12px;
  text-align: center;
  width: 100%;
  content: "";
  padding: 7px 0 6px;
  margin: 0 0 7px 0;
  letter-spacing: .15em;
}
@media screen and (max-width: 800px) {
  .daily .number {
    display: none;
  }
}
.daily.monday .date {
  background: rgba(0, 137, 123, 0.85);
}
.daily.monday .number {
  background: rgba(0, 122, 109, 0.85);
}
.daily.tuesday .date {
  background: rgba(245, 124, 0, 0.85);
}
.daily.tuesday .number {
  background: rgba(230, 116, 0, 0.85);
}
.daily.wednesday .date {
  background: rgba(175, 180, 43, 0.85);
}
.daily.wednesday .number {
  background: rgba(159, 164, 39, 0.85);
}
.daily.thursday .date {
  background: rgba(171, 71, 188, 0.85);
}
.daily.thursday .number {
  background: rgba(159, 64, 175, 0.85);
}
.daily.friday .date {
  background: rgba(246, 190, 26, 0.85);
}
.daily.friday .number {
  background: rgba(232, 175, 9, 0.85);
}
.daily.saturday .date {
  background: rgba(30, 136, 229, 0.85);
}
.daily.saturday .number {
  background: rgba(25, 125, 214, 0.85);
}
.daily.sunday .date {
  background: rgba(239, 83, 80, 0.85);
}
.daily.sunday .number {
  background: rgba(238, 69, 66, 0.85);
}
.daily .number,
.daily .month,
.daily .day,
.daily .week {
  font-family: 'Roboto', sans-serif;
}
.daily .year {
  margin-right: 3px;
}
.daily .month,
.daily .day {
  font-size: 30px;
}
@media screen and (max-width: 800px) {
  .daily .month,
  .daily .day {
    font-size: 16px;
  }
}
.daily .month {
  padding-right: 3px;
}
.daily .day {
  padding: 0 3px 0 2px;
}
.daily .week::before,
.daily .week::after {
  display: inline-block;
  content: "";
  border-left: 1px solid #fff;
  height: 13px;
}
.daily .week::before {
  margin: 0 5px;
}
.daily .week::after {
  margin-left: 5px;
}
.daily-recommend {
  position: absolute;
  width: 180px;
  height: 100%;
  right: 604px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .daily-recommend {
    width: auto;
    right: auto;
    position: static;
  }
}
.daily-recommend-status {
  position: absolute;
  display: inline-block;
  background: rgba(216, 27, 96, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px 2px;
  margin: 75px 0 0 5px;
}
@media screen and (max-width: 800px) {
  .daily-recommend-status {
    padding-left: 16px;
    padding-right: 16px;
    margin: 0;
    top: 81px;
  }
}
.daily-recommend-item a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -1000px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .daily-recommend-item a {
    top: 0;
    height: 240px;
  }
}
.daily-series {
  zoom: 1;
  display: inline-block;
  width: 590px;
  background: url("/images/bg_slash.png") 2px bottom repeat-x;
  background-size: 196px 251px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 24px;
}
.daily-series:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 800px) {
  .daily-series {
    width: 100%;
    background: none;
    margin-top: 248px;
    overflow: hidden;
  }
}
.daily-series.no-update {
  margin-top: 16px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .daily-series.no-update {
    margin-top: -16px;
    padding-top: 17px;
  }
}
.daily-series.no-update::before {
  position: absolute;
  display: block;
  content: "";
  border-top: 1px solid #eaeaea;
  width: calc(100% - 14px);
  margin-top: -25px;
}
@media screen and (max-width: 800px) {
  .daily-series.no-update::before {
    width: calc(100% - 16px);
    margin-top: -17px;
    margin-left: 8px;
  }
}
.daily-series a {
  display: block;
}
.daily-series-item {
  position: relative;
  float: left;
  width: 180px;
  height: 235px;
  border: 2px solid #000;
  margin: 0 12px 12px 0;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .daily-series-item {
    width: calc(50% - 12px);
    box-sizing: border-box;
    margin: 0 0 8px 8px;
    height: auto;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 800px) {
  .daily-series .daily-series-item:last-child::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 100%;
    margin-left: 12px;
    background: url("/images/bg_slash_loop.png") center center repeat;
    background-size: 30px 30px;
  }
}
.daily-series-banner {
  width: 572px;
  margin: 0;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  .daily-series-banner {
    width: auto;
    margin: 0 8px 8px;
  }
}
.daily-series-banner img {
  width: 100%;
  height: auto;
  border: 2px solid #000;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .daily-series-banner img {
    box-sizing: border-box;
  }
}
.daily-series-thumb {
  height: 150px;
  line-height: 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .daily-series-thumb {
    height: auto;
    position: relative;
  }
}
@media screen and (max-width: 800px) {
  .daily-series-thumb::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 15px solid #fff;
    position: absolute;
    margin-top: -15px;
  }
}
.daily-series-thumb img {
  width: 180px;
  margin-top: -15px;
}
@media screen and (max-width: 800px) {
  .daily-series-thumb img {
    width: 100%;
    height: auto;
    margin-top: -15px;
  }
}
.web-content .daily-series-thumb {
  background-color: #111;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
@media screen and (max-width: 800px) {
  .web-content .daily-series-thumb {
    background-position-y: calc(50% - 7px);
  }
}
.daily-series-tagline {
  position: absolute;
  display: block;
  background: #333;
  font-size: 10px;
  color: #e6e6e6;
  padding: 5px 0 2px 10px;
  box-sizing: border-box;
  margin: -10px 0 0 -5px;
  width: 177px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .daily-series-tagline {
    margin-top: -25px;
    max-width: calc(100% - 3px);
  }
}
.daily-series-title,
.daily-series-author {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.daily-series-title,
.daily-series-author,
.daily-series-num {
  padding-left: 8px;
}
.daily-series-title {
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .daily-series-title {
    margin: 5px 0 2px;
    font-size: 12px;
  }
}
.daily-series-author {
  font-size: 10px;
}
.daily-series-num {
  font-size: 12px;
  color: #e53935;
}
@media screen and (max-width: 800px) {
  .daily-series-num {
    font-size: 10px;
  }
}
.daily-series-num::after {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #e53935;
  vertical-align: middle;
  margin: -2px 0 0 6px;
}
a:visited .daily-series-num,
.no-update .daily-series-num {
  color: #999;
}
a:visited .daily-series-num::after,
.no-update .daily-series-num::after {
  background: #fff;
}
.daily-show-all {
  font-size: 12px;
  color: #999;
  cursor: pointer;
  padding: 12px 0 24px;
  text-align: right;
  padding-right: 14px;
  margin-top: -24px;
}
.daily-show-all::after {
  display: inline-block;
  content: "";
  background: url("/images/ic_arrow_down_small.png") center center no-repeat;
  background-size: contain;
  width: 8.5px;
  height: 5px;
  vertical-align: middle;
  margin: -1px 6px 0;
}
.daily-show-all:hover {
  color: #e53935;
}
.serial-series-information {
  zoom: 1;
  text-align: right;
  line-height: 0;
}
.serial-series-information:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 800px) {
  .serial-series-information {
    text-align: left;
    border-bottom: 2px solid #000;
    padding-bottom: 16px;
  }
}
.serial-series-information h2 {
  overflow: hidden;
  box-sizing: border-box;
}
.serial-series-information-container {
  display: inline-block;
  text-align: left;
  width: 782px;
  padding-right: 14px;
  box-sizing: border-box;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .serial-series-information-container {
    display: block;
    width: auto;
    padding: 0;
  }
}
.serial-series-ranking,
.serial-series-rookie {
  min-height: 220px;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking,
  .serial-series-rookie {
    min-height: inherit;
  }
}
.serial-series-ranking {
  width: 570px;
  float: left;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking {
    float: none;
    width: auto;
  }
}
.serial-series-rookie {
  width: calc(100% - 586px);
  float: right;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie {
    float: none;
    width: auto;
    margin: 0 16px;
    padding-top: 16px;
  }
}
.serial-series-essays {
  padding-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .serial-series-essays {
    padding: 0 16px;
    margin-bottom: 24px;
  }
}
.serial-series-essays ul {
  zoom: 1;
}
.serial-series-essays ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.serial-series-essays li {
  position: relative;
  width: 242px;
  margin-right: 21px;
  float: left;
}
@media screen and (max-width: 800px) {
  .serial-series-essays li {
    float: none;
    width: auto;
    border-top: 1px solid #eaeaea;
    padding: 12px 0;
    margin-right: 0;
    zoom: 1;
  }
  .serial-series-essays li:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }
}
.serial-series-essays li:last-child {
  margin-right: 0;
}
.serial-series-essays a {
  display: block;
}
.serial-series-essays img {
  display: block;
  width: 100%;
  border: 2px solid #000;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .serial-series-essays img {
    width: 148px;
    float: left;
    margin: 0 12px 6px 0;
  }
}
@media screen and (max-width: 320px) {
  .serial-series-essays img {
    width: 132px;
  }
}
.serial-series-essays h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 8px 0 6px;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .serial-series-essays h4 {
    margin-top: 0;
  }
}
.serial-series-essays .timestamp {
  color: #000;
  padding-right: 8px;
}
.serial-series-essays p {
  font-size: 10px;
  color: #999;
}
.serial-series-essays .read-more-article {
  font-size: 13px;
  text-align: right;
  margin-top: 8px;
}
@media screen and (max-width: 800px) {
  .serial-series-essays .read-more-article {
    border-top: 1px solid #eaeaea;
    margin-top: 0;
    padding-top: 12px;
    text-align: center;
  }
}
.serial-series-essays .read-more-article a::after {
  display: inline-block;
  content: "";
  border: 3px solid transparent;
  border-left: 4px solid #000;
  margin-left: 4px;
}
.serial-series-essays-title,
.serial-series-essays-tagline {
  display: inline-block;
  vertical-align: middle;
}
.serial-series-essays-title {
  margin: 14px 0;
}
.serial-series-essays-title a {
  display: block;
  width: 133.5px;
  height: 30.5px;
  background: url("/images/alpha_logo_s.png") center center no-repeat;
  background-size: contain;
  padding-top: 30.5px;
  overflow: hidden;
  box-sizing: border-box;
}
.serial-series-essays-tagline {
  font-size: 12px;
  color: #999;
  margin: 2px 0 0 16px;
}
@media screen and (max-width: 800px) {
  .serial-series-essays-tagline {
    display: block;
    margin: -1px 0 14px;
    font-size: 10px;
  }
}
.serial-series-essays-tagline strong {
  font-weight: 300;
  color: #e50012;
  background: #fff001;
  padding: 2px 3px 0;
  margin-right: 2px;
}
.serial-series-ranking {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking {
    border-bottom: none;
  }
}
.serial-series-ranking ol {
  margin-left: 152px;
  position: relative;
  padding-bottom: 8px;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking ol {
    zoom: 1;
    margin: 0;
    padding: 16px 0 16px 16px;
    white-space: nowrap;
    overflow-x: scroll;
  }
  .serial-series-ranking ol:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }
}
.serial-series-ranking li {
  border-bottom: 1px solid #eaeaea;
  line-height: 29px;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking li {
    display: inline-block;
    vertical-align: top;
    border: none;
    line-height: 1.4;
    width: 96px;
    padding-right: 16px;
    position: relative;
  }
}
.serial-series-ranking li:hover .thumb-link {
  display: block;
}
.serial-series-ranking li:last-child {
  border: none;
}
.serial-series-ranking li:nth-child(1) .thumb-link {
  display: block;
}
.serial-series-ranking li:nth-child(1) h3::before {
  content: "1";
}
.serial-series-ranking li:nth-child(2) h3::before {
  content: "2";
}
.serial-series-ranking li:nth-child(3) h3::before {
  content: "3";
}
.serial-series-ranking li:nth-child(4) h3::before {
  content: "4";
}
.serial-series-ranking li:nth-child(5) h3::before {
  content: "5";
}
.serial-series-ranking a {
  display: block;
}
.serial-series-ranking .thumb-link {
  position: absolute;
  margin-left: -152px;
  top: 6px;
  display: none;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking .thumb-link {
    position: static;
    display: block;
    margin: 0;
    top: auto;
    line-height: 0;
    margin-bottom: 8px;
  }
}
.serial-series-ranking .thumb-link img {
  width: 136px;
  height: auto;
  border: 2px solid #000;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking .thumb-link img {
    width: 96px;
  }
}
.serial-series-ranking .ranking-text-link {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking .ranking-text-link {
    white-space: normal;
    overflow: auto;
  }
}
.serial-series-ranking h3 {
  display: inline;
  font-size: 13px;
  font-weight: 700;
  padding-right: 10px;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking h3 {
    display: block;
    padding: 0;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.4;
  }
}
.serial-series-ranking h3::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  line-height: 16px;
  background: #e53935;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin: -2px 6px 0 0;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking h3::before {
    position: absolute;
    display: block;
    margin: 0;
    top: -8px;
    right: 8px;
  }
}
.serial-series-ranking .author {
  font-size: 10px;
  color: #999;
  vertical-align: middle;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking .author {
    display: block;
  }
}
.serial-series-ranking-title {
  width: 123px;
  height: 20.5px;
  background: url("/images/hd_ranking.png") center center no-repeat;
  background-size: contain;
  padding-top: 20.5px;
  margin: 16px 0 10px;
}
@media screen and (max-width: 800px) {
  .serial-series-ranking-title {
    margin: 16px 0 0 16px;
  }
}
.serial-series-rookie {
  text-align: center;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie {
    text-align: left;
    border-top: 1px solid #eaeaea;
    border-bottom: none;
  }
}
.serial-series-rookie .description {
  font-size: 10px;
  font-weight: 700;
  color: #999;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie .description {
    background: #eaeaea;
    line-height: 31px;
    padding-left: 210px;
    font-weight: 300;
  }
}
.serial-series-rookie a {
  display: block;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie a {
    border: 1px solid #000;
    position: relative;
    height: 72px;
  }
}
.serial-series-rookie img {
  width: 80px;
  height: auto;
  margin: 16px 0 4px;
  border: 2px solid #000;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie img {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    border: none;
    border-right: 1px solid #000;
    width: 72px;
  }
}
.serial-series-rookie h3,
.serial-series-rookie .author {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie h3,
  .serial-series-rookie .author {
    padding-left: 84px;
  }
}
.serial-series-rookie h3 {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie h3 {
    font-size: 12px;
    padding-top: 5px;
  }
}
.serial-series-rookie .author {
  font-size: 10px;
  color: #999;
}
.serial-series-rookie-title {
  width: 114px;
  height: 23px;
  background: url("/images/hd_rookie.png") center center no-repeat;
  background-size: contain;
  padding-top: 23px;
  margin: 16px auto 4px;
}
@media screen and (max-width: 800px) {
  .serial-series-rookie-title {
    margin: 0;
    position: absolute;
    left: 84px;
    top: 4px;
  }
}
.top-sidebar-content {
  margin-bottom: 40px;
}
.top-sidebar-content img {
  width: 180px;
  max-width: 100%;
}
.top-sidebar-content-title {
  font-size: 13px;
  font-weight: 700;
  border-top: 2px solid #000;
  padding: 16px 0;
  margin: 0 2px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-content-title {
    margin: 0;
    padding: 16px;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-content.search {
    margin: 0;
    padding: 0 8px;
    background: #999;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-content.app {
    margin: 0;
    padding: 16px 6px;
    background: #999;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-content.nav {
    display: none;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-content.banner {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-content.jump {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-content.special-banner {
    border-top: 2px solid #000;
    padding-top: 24px;
  }
}
.top-sidebar-search,
.top-sidebar-nav,
.top-sidebar-news,
.top-sidebar-tweet {
  margin: 0 2px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-search,
  .top-sidebar-nav,
  .top-sidebar-news,
  .top-sidebar-tweet {
    margin: 0;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-search {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.top-sidebar-search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #eaeaea;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-sidebar-search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: calc(100% - 32px);
  font-size: 12px;
  height: 32px;
  line-height: 32px;
  background: transparent;
  padding: 0 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 986px) {
  .top-sidebar-search input {
    font-size: 16px;
  }
}
.top-sidebar-search input[type="search"]::-webkit-search-decoration {
  display: none;
}
.top-sidebar-search button {
  border: none;
  outline: none;
  padding: 0;
  width: 32px;
  height: 32px;
  background: url("/images/ic_search.svg") center no-repeat;
  background-size: 16px 16px;
  cursor: pointer;
}
.top-sidebar-search button:hover {
  background-image: url("/images/ic_search_hover.svg");
}
.top-sidebar-search button span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.top-sidebar-nav {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  font-size: 13px;
}
.top-sidebar-nav li {
  border-bottom: 1px solid #eaeaea;
}
.top-sidebar-nav li:last-child {
  border: none;
}
.top-sidebar-nav a {
  display: block;
  line-height: 32px;
  color: #000;
}
.top-sidebar-nav a:hover {
  color: #000;
  background: #fafafa;
}
.top-sidebar-app,
.top-sidebar-banner {
  text-align: center;
}
.top-sidebar-app li,
.top-sidebar-banner li {
  line-height: 0;
  margin-bottom: 4px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-app {
    zoom: 1;
  }
  .top-sidebar-app:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-app li {
    float: left;
    width: 50%;
    padding: 0 2px;
    box-sizing: border-box;
  }
}
.top-sidebar-app li img {
  width: auto;
}
.top-sidebar-app-text {
  color: #999;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  text-align: center;
}
@media screen and (max-width: 986px) {
  .top-sidebar-app-text {
    color: #999;
    font-size: 12px;
    color: #fff;
  }
}
@media screen and (max-width: 800px) {
  .top-sidebar-app-text {
    font-size: 10px;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-banner {
    border-bottom: 1px solid #000;
    padding: 0px 4px 16px;
    background: #999;
    zoom: 1;
  }
  .top-sidebar-banner:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }
}
.top-sidebar-banner li {
  line-height: 0;
}
@media screen and (max-width: 986px) {
  .top-sidebar-banner li {
    width: 50%;
    margin: 0;
    padding: 0 4px;
    box-sizing: border-box;
    float: left;
  }
}
.top-sidebar-banner img {
  border: 2px solid #000;
  box-sizing: border-box;
}
@media screen and (max-width: 986px) {
  .top-sidebar-banner img {
    width: 100%;
    border-color: #fff;
  }
}
.top-sidebar-jump {
  position: relative;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump {
    background: #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 8px 8px 0 120px;
    border-bottom: 1px solid #e6e6e6;
    min-height: 144px;
  }
}
.top-sidebar-jump a {
  display: block;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .thumb {
    position: absolute;
    width: 120px;
    text-align: center;
    left: 0;
    margin-top: 8px;
  }
}
.top-sidebar-jump .thumb img {
  border: 2px solid #000;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .thumb img {
    width: 80px;
    border: none;
  }
}
.top-sidebar-jump .thumb::before {
  position: absolute;
  display: block;
  content: "";
  background: url("/images/app_de_yomeru.png") center center no-repeat;
  background-size: contain;
  width: 73px;
  height: 61.5px;
  left: -20px;
  top: -20px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .thumb::before {
    width: 48.66666667px;
    height: 41px;
    left: -2px;
    top: -14px;
  }
}
.top-sidebar-jump .description,
.top-sidebar-jump .link {
  padding: 0 2px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .description,
  .top-sidebar-jump .link {
    padding: 0;
  }
}
.top-sidebar-jump .title,
.top-sidebar-jump .price {
  padding: 6px 2px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .title,
  .top-sidebar-jump .price {
    padding-left: 0;
    padding-right: 0;
  }
}
.top-sidebar-jump .title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .title {
    font-size: 13px;
    padding-bottom: 2px;
  }
  .top-sidebar-jump .title br {
    display: none;
  }
}
.top-sidebar-jump .description {
  font-size: 12px;
  color: #999;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .description {
    font-size: 10px;
  }
  .top-sidebar-jump .description br {
    display: none;
  }
}
.top-sidebar-jump .price {
  color: #e53935;
  font-size: 10px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .price {
    padding-top: 2px;
  }
}
.top-sidebar-jump .price strong,
.top-sidebar-jump .price .separater {
  font-size: 17px;
}
.top-sidebar-jump .price strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.top-sidebar-jump .link {
  text-align: center;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .link {
    display: inline-block;
    padding-bottom: 12px;
  }
}
.top-sidebar-jump .link a {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #e53935;
  line-height: 30px;
  height: 30px;
  border-radius: 15px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-jump .link a {
    padding: 0 16px;
  }
}
.top-sidebar-jump .separater {
  font-weight: 100;
}
.top-sidebar-special-banner a {
  display: block;
}
.top-sidebar-special-banner img {
  border: 2px solid #000;
}
.top-sidebar-special-banner img.pc {
  display: block;
  margin-bottom: 12px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-special-banner img.pc {
    display: none;
  }
}
.top-sidebar-special-banner img.sp {
  display: none;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 8px 0;
  width: calc(100% - 16px);
}
@media screen and (max-width: 986px) {
  .top-sidebar-special-banner img.sp {
    display: block;
  }
}
@media screen and (max-width: 986px) {
  .top-sidebar-news {
    padding: 0 16px;
  }
}
.top-sidebar-news li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #eaeaea;
}
.top-sidebar-news li:first-child {
  border-top: 1px solid #eaeaea;
}
.top-sidebar-news p {
  font-size: 12px;
  text-align: right;
  margin-top: 8px;
}
.top-sidebar-news p a {
  display: block;
}
.top-sidebar-news p a::after {
  display: inline-block;
  content: "";
  border: 3px solid transparent;
  border-left: 4px solid #000;
  margin-left: 4px;
}
.top-sidebar-tweet {
  border-top: 2px solid #000;
  padding-top: 4px;
}
@media screen and (max-width: 986px) {
  .top-sidebar-tweet iframe {
    width: 1px;
    min-width: 100%;
    -webkit-text-size-adjust: 100%;
  }
}
.series-list-wrapper {
  width: 980px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 980px) {
  .series-list-wrapper {
    width: auto;
  }
}
.series-list-header-title {
  font-size: 30px;
  font-weight: 700;
  margin: 32px 0 16px;
}
@media screen and (max-width: 980px) {
  .series-list-header-title {
    padding: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .series-list-header-title {
    text-align: center;
    margin: 24px 0;
    padding: 0;
  }
}
@media screen and (max-width: 320px) {
  .series-list-header-title span {
    display: none;
  }
}
.series-list-header-num {
  font-size: 13px;
  color: #999;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .series-list-header-num {
    display: block;
  }
}
.series-list-header-num::before {
  content: "(";
}
@media screen and (max-width: 600px) {
  .series-list-header-num::before {
    display: none;
  }
}
.series-list-header-num::after {
  content: ")";
}
@media screen and (max-width: 600px) {
  .series-list-header-num::after {
    display: none;
  }
}
.series-list-header-nav {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-bottom: 40px;
  line-height: 0;
}
@media screen and (max-width: 980px) {
  .series-list-header-nav {
    padding: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .series-list-header-nav {
    text-align: center;
    margin-bottom: 24px;
    padding: 0;
  }
}
.series-list-header-nav ul {
  zoom: 1;
}
.series-list-header-nav ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 600px) {
  .series-list-header-nav ul {
    display: inline-block;
  }
}
.series-list-header-nav li {
  float: left;
  font-size: 13px;
  line-height: 32px;
  margin-right: 32px;
}
@media screen and (max-width: 600px) {
  .series-list-header-nav li {
    margin: 0 16px;
    line-height: 40px;
  }
}
.series-list-header-nav a {
  display: block;
}
@media screen and (max-width: 600px) {
  .series-list-header-nav span {
    display: none;
  }
}
#page-jumpPlus-series-list .nav-series-list,
#page-jumpPlus-series-oneshot .nav-series-oneshot,
#page-jumpPlus-series-finished .nav-series-finished {
  position: relative;
  color: #e53935;
}
#page-jumpPlus-series-list .nav-series-list::before,
#page-jumpPlus-series-oneshot .nav-series-oneshot::before,
#page-jumpPlus-series-finished .nav-series-finished::before,
#page-jumpPlus-series-list .nav-series-list::after,
#page-jumpPlus-series-oneshot .nav-series-oneshot::after,
#page-jumpPlus-series-finished .nav-series-finished::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
}
#page-jumpPlus-series-list .nav-series-list::before,
#page-jumpPlus-series-oneshot .nav-series-oneshot::before,
#page-jumpPlus-series-finished .nav-series-finished::before {
  border-top: 2px solid #e53935;
  margin-top: -2px;
}
#page-jumpPlus-series-list .nav-series-list::after,
#page-jumpPlus-series-oneshot .nav-series-oneshot::after,
#page-jumpPlus-series-finished .nav-series-finished::after {
  border-bottom: 2px solid #e53935;
}
.series-list-date-week {
  font-size: 15px;
  font-weight: 300;
  margin: 40px 0 16px;
  color: #999;
}
.series-list-date-week::first-letter {
  display: inline-block;
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  background: #999;
  color: #fff;
  margin-right: 6px;
  margin-left: -8px;
}
.series-list-date-week.monday::first-letter {
  background: rgba(0, 137, 123, 0.85);
}
.series-list-date-week.tuesday::first-letter {
  background: rgba(245, 124, 0, 0.85);
}
.series-list-date-week.wednesday::first-letter {
  background: rgba(175, 180, 43, 0.85);
}
.series-list-date-week.thursday::first-letter {
  background: rgba(171, 71, 188, 0.85);
}
.series-list-date-week.friday::first-letter {
  background: rgba(246, 190, 26, 0.85);
}
.series-list-date-week.saturday::first-letter {
  background: rgba(30, 136, 229, 0.85);
}
.series-list-date-week.sunday::first-letter {
  background: rgba(239, 83, 80, 0.85);
}
@media screen and (max-width: 980px) {
  .series-list-date-week {
    padding: 0 16px;
  }
}
.series-list {
  zoom: 1;
}
.series-list:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.series-list li {
  position: relative;
  padding-left: 120px;
  width: 180px;
}
@media screen and (min-width: 980px) {
  .series-list li:nth-child(3n - 2) {
    float: left;
    border-right: 1px solid #eaeaea;
    padding-right: 20px;
  }
  .series-list li:nth-child(3n - 1) {
    float: left;
    border-right: 1px solid #eaeaea;
    padding-right: 20px;
    margin-left: 19px;
  }
  .series-list li:nth-child(3n) {
    float: right;
  }
}
@media screen and (max-width: 980px) {
  .series-list li {
    width: calc(50% - 156px);
  }
}
@media screen and (max-width: 600px) {
  .series-list li {
    width: auto;
    padding-left: 128px;
    box-sizing: border-box;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 980px) {
  .series-list li:nth-child(odd) {
    float: left;
    border-right: 1px solid #eaeaea;
    padding-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (max-width: 600px) {
  .series-list li:nth-child(odd) {
    float: none;
    border-right: none;
    padding-right: 8px;
    margin-left: 0;
  }
}
@media screen and (max-width: 980px) {
  .series-list li:nth-child(even) {
    float: right;
    margin-right: 16px;
  }
}
@media screen and (max-width: 600px) {
  .series-list li:nth-child(even) {
    float: none;
    padding-right: 8px;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .series-list li:last-child {
    border: none;
  }
}
.series-list a {
  display: block;
  height: 114px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .series-list a {
    height: auto;
    min-height: 98px;
    overflow: auto;
  }
}
.series-list img {
  width: 108px;
  margin-top: -9px;
}
.series-list-thumb {
  position: absolute;
  left: 0;
  height: 90px;
  line-height: 0;
  overflow: hidden;
  border: 2px solid #000;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .series-list-thumb {
    left: 8px;
  }
}
a:hover .series-list-thumb {
  border-color: #e53935;
}
.series-list-tagline {
  display: inline-block;
  background: #333;
  font-size: 10px;
  color: #e6e6e6;
  padding: 3px 6px 0;
  margin-bottom: 7px;
}
.series-list-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.series-list-author {
  font-size: 10px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.series-list-num {
  display: block;
  font-size: 10px;
  line-height: 1.3;
  color: #999;
}
.app-badge {
  background: #333;
  text-align: center;
  padding: 24px 0 40px;
}
.app-badge.bottom {
  padding: 100px 0 80px;
}
@media screen and (max-width: 820px) {
  .app-badge.bottom {
    margin-top: 160px;
    padding: 24px 0 40px;
  }
}
.app-badge p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.app-badge ul {
  zoom: 1;
  display: inline-block;
}
.app-badge ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 820px) {
  .app-badge ul {
    display: block;
    margin: 0 16px;
  }
}
.app-badge li {
  float: left;
  margin-left: 16px;
}
@media screen and (max-width: 820px) {
  .app-badge li {
    float: none;
    margin: 0 0 1px;
    line-height: 0;
  }
}
.app-badge li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 820px) {
  .app-badge a {
    display: block;
    background: #000;
  }
}
.app-badge img {
  width: 180px;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}
@media screen and (max-width: 820px) {
  .app-badge img {
    box-shadow: none;
  }
}
.app-content {
  background: url("/images/app/bg_concentrate.png") center -100px no-repeat;
  background-size: 1600px 337px;
  text-align: center;
  min-width: 980px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .app-content {
    min-width: auto;
  }
}
@media screen and (max-width: 820px) {
  .app-content {
    background-size: 533.33333333px 112.33333333px;
    background-position: center -33.33333333px;
  }
}
.app-content::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 389.5px;
  background: url("/images/app/appimage.png") center bottom no-repeat;
  background-size: 923.5px 389.5px;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .app-content::before {
    background-image: url("/images/app/appimage_sp_2.png");
    background-size: 334px 202.5px;
    height: 226px;
    bottom: -160px;
  }
}
.app-content h1 {
  display: inline-block;
  background: url("/images/app/tagline.png") center center no-repeat;
  width: 541.5px;
  height: 168.5px;
  background-size: contain;
  margin-top: -20px;
  padding-top: 168.5px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .app-content h1 {
    width: 309.42857143px;
    height: 96.28571429px;
    padding-top: 96.28571429px;
  }
}
.app-content-points {
  width: 820px;
  height: 567px;
  margin: 0 auto;
  zoom: 1;
}
.app-content-points:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 820px) {
  .app-content-points {
    width: auto;
    height: auto;
  }
}
.app-content-points h2 {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px 0;
}
@media screen and (max-width: 820px) {
  .app-content-points h2 {
    font-size: 12px;
  }
}
.app-content-point-1 {
  float: left;
}
@media screen and (max-width: 820px) {
  .app-content-point-1 {
    padding-left: 8px;
  }
}
.app-content-point-2 {
  float: right;
}
@media screen and (max-width: 820px) {
  .app-content-point-2 {
    padding-right: 8px;
  }
}
.app-content-point-1,
.app-content-point-2 {
  margin-top: 80px;
}
@media screen and (max-width: 820px) {
  .app-content-point-1,
  .app-content-point-2 {
    width: 50%;
    margin-top: 24px;
    box-sizing: border-box;
  }
}
.app-content-point-1-text,
.app-content-point-2-text {
  width: 215px;
  height: 71px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 71px;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 10px;
}
@media screen and (max-width: 820px) {
  .app-content-point-1-text,
  .app-content-point-2-text {
    width: 172px;
    height: 56.8px;
    padding-top: 56.8px;
    margin: 10px auto 0;
  }
}
@media screen and (max-width: 320px) {
  .app-content-point-1-text,
  .app-content-point-2-text {
    width: 143.33333333px;
    height: 47.33333333px;
    padding-top: 47.33333333px;
  }
}
.app-content-point-1-point,
.app-content-point-2-point {
  width: 200px;
  height: 200px;
  background-color: #1e88e5;
  border-radius: 100px;
  margin-top: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .app-content-point-1-point,
  .app-content-point-2-point {
    width: 153.84615385px;
    height: 153.84615385px;
    border-radius: 76.92307692px;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 320px) {
  .app-content-point-1-point,
  .app-content-point-2-point {
    width: 133.33333333px;
    height: 133.33333333px;
    border-radius: 66.66666667px;
  }
}
.app-content-point-1-text {
  background-image: url("/images/app/point_1.png");
}
.app-content-point-1-point {
  background-image: url("/images/app/point_1_free.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 127.5px 99px;
  padding-top: 200px;
}
@media screen and (max-width: 820px) {
  .app-content-point-1-point {
    background-size: 102px 79.2px;
    padding-top: 153.84615385px;
  }
}
@media screen and (max-width: 320px) {
  .app-content-point-1-point {
    background-size: 85px 66px;
    padding-top: 133.33333333px;
  }
}
.app-content-point-2-text {
  background-image: url("/images/app/point_2.png");
}
.app-content-point-2-point {
  padding-top: 30px;
}
@media screen and (max-width: 820px) {
  .app-content-point-2-point {
    padding-top: 20px;
  }
}
@media screen and (max-width: 320px) {
  .app-content-point-2-point {
    padding-top: 15px;
  }
}
.app-content-point-2-point img {
  width: 125px;
}
@media screen and (max-width: 820px) {
  .app-content-point-2-point img {
    width: 110px;
  }
}
@media screen and (max-width: 320px) {
  .app-content-point-2-point img {
    width: 100px;
  }
}
.app-content-smartphone {
  position: absolute;
  background: url("/images/app/smartphone.png") center center no-repeat;
  width: 300px;
  height: 616px;
  background-size: contain;
  left: 50%;
  margin-top: 30px;
  margin-left: -150px;
}
@media screen and (max-width: 820px) {
  .app-content-smartphone {
    position: static;
    margin: 16px auto;
  }
}
.app-content-smartphone::before {
  position: absolute;
  display: block;
  content: "";
  width: 120px;
  height: 120px;
  background: #000 url("/images/apple-touch-icon-180.png") center center no-repeat;
  background-size: 78px 78px;
  border-radius: 60px;
  right: -32px;
  top: -32px;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .app-content-smartphone::before {
    width: 100px;
    height: 100px;
    background-size: 65px 65px;
    border-radius: 50px;
    top: auto;
    right: auto;
    margin: -24px 0 0 224px;
  }
}
@media screen and (max-width: 320px) {
  .app-content-smartphone::before {
    width: 80px;
    height: 80px;
    background-size: 52px 52px;
    border-radius: 40px;
    top: auto;
    right: auto;
    margin: -8px 0 0 228px;
  }
}
@media screen and (max-width: 820px) {
  .app-content-smartphone::after {
    position: absolute;
    display: block;
    content: "";
    width: 92px;
    height: 172.5px;
    background: url("/images/app/appimage_sp_1.png") left bottom no-repeat;
    background-size: 92px 172.5px;
    left: 0;
    margin: 460px 0 0 1%;
  }
}
.app-content-smartphone ul {
  position: relative;
}
.app-content-smartphone li {
  position: absolute;
  top: 81px;
  left: 21px;
  line-height: 0;
}
.app-content-smartphone li:nth-child(2) {
  -webkit-animation: fadein2 10s infinite;
  animation: fadein2 10s infinite;
}
.app-content-smartphone li:nth-child(3) {
  -webkit-animation: fadein3 10s infinite;
  animation: fadein3 10s infinite;
}
.app-content-smartphone img {
  width: 255px;
  height: auto;
  border: 2px solid #000;
  border-radius: 2px;
}
@-webkit-keyframes fadein2 {
  0% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadein2 {
  0% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadein3 {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  97% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein3 {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  97% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.error-content,
.error-footer-image {
  position: relative;
  max-width: 800px;
  margin: 90px auto 150px;
}
@media screen and (max-width: 980px) {
  .error-content,
  .error-footer-image {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .error-content,
  .error-footer-image {
    max-width: 600px;
  }
}
@media screen and (max-width: 600px) {
  .error-content,
  .error-footer-image {
    width: auto;
    text-align: center;
  }
}
.error-content h1 {
  display: inline-block;
  padding-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  background: url("/images/error/bg_slash_line.png") bottom left repeat-x;
  background-size: 10px 8px;
}
@media screen and (max-width: 600px) {
  .error-content h1 {
    font-size: 17px;
  }
}
.error-content-description {
  margin: 58px 0 36px;
  font-size: 15px;
}
@media screen and (max-width: 600px) {
  .error-content-description {
    margin: 50px 8px 30px;
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .error-content-description br {
    display: none;
  }
}
.error-content-link li {
  display: inline-block;
  margin-right: 36px;
}
@media screen and (max-width: 600px) {
  .error-content-link li {
    margin-right: 9px;
  }
}
.error-content-link li:last-child {
  margin-right: 0;
}
.error-content-link li a {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
}
.error-content-link li a:hover {
  border-bottom: 2px solid #e53935;
}
@media screen and (max-width: 600px) {
  .error-content-link li a {
    font-size: 13px;
  }
}
.error-footer {
  height: 90px;
  background-color: #fafafa;
}
.error-footer a {
  display: block;
  position: absolute;
  right: 0;
  bottom: -14px;
}
@media screen and (max-width: 600px) {
  .error-footer a {
    right: 50%;
    margin-right: -30px;
  }
}
.error-footer img {
  width: 80px;
  height: auto;
}
.search-container {
  padding-bottom: 100px;
  box-sizing: border-box;
}
#page-jumpPlus-searchTop .search-container {
  min-height: 300px;
}
@media screen and (min-width: 600px) {
  #page-jumpPlus-searchTop .search-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: calc(100vh - 340px);
    max-height: 600px;
  }
}
.search-container .setting-inner {
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}
.search-container h2 {
  font-size: 30px;
  padding: 32px 0;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .search-container h2 {
    text-align: center;
  }
}
.search-container .bold-title {
  font-size: 15px;
  margin: 40px 0 12px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .search-container .bold-title {
    font-size: 13px;
    margin: 24px 0 6px;
  }
}
.search-container .list-empty {
  border-top: 1px solid #eaeaea;
  margin: 16px 0 32px;
}
.search-container .list-empty li {
  padding: 40px 0;
}
.search-container .list-empty p {
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 600px) {
  .search-container .list-empty p {
    font-size: 13px;
  }
}
.search-series-list {
  border-top: 1px solid #eaeaea;
  margin: 16px 0 32px;
}
.search-series-list li {
  padding: 16px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  text-align: left;
}
.search-series-list img {
  width: 140px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 760px) {
  .search-series-list img {
    width: 105px;
  }
}
@media screen and (max-width: 320px) {
  .search-series-list img {
    width: 80px;
  }
}
.search-series-list .title-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-left: 16px;
}
@media screen and (max-width: 760px) {
  .search-series-list .title-box {
    margin-left: 8px;
  }
}
.search-series-list .series-title {
  font-size: 17px;
  margin-bottom: 2px;
}
@media screen and (max-width: 760px) {
  .search-series-list .series-title {
    font-size: 15px;
  }
}
.search-series-list .author {
  font-size: 13px;
  margin-bottom: 8px;
}
@media screen and (max-width: 760px) {
  .search-series-list .author {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.search-series-list a.main-link {
  background: #f1f1f1;
  border-radius: 6px;
  font-size: 13px;
  padding: 4px 12px;
  margin-right: 12px;
  display: inline-block;
  margin-bottom: 6px;
}
.search-series-list a.main-link:hover {
  background: #666;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .search-series-list a.main-link {
    font-size: 12px;
    margin-right: 8px;
  }
}
.search-series-list a.sub-link {
  color: #95989A;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 6px;
}
.search-series-list a.sub-link:hover {
  color: #e53935;
}
@media screen and (max-width: 760px) {
  .search-series-list a.sub-link {
    font-size: 11px;
  }
}
ul.list-empty {
  border-top: 1px solid #eaeaea;
  margin: 16px 0 32px;
}
ul.list-empty li {
  padding: 72px 0;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (max-width: 760px) {
  ul.list-empty li {
    padding: 40px 0;
  }
}
ul.list-empty li p {
  text-align: center;
}
#page-viewer.page-viewer-rockingyou {
  background: #000;
  color: #fff;
}
#page-viewer.page-viewer-rockingyou header,
#page-viewer.page-viewer-rockingyou .episode-header-share .embed,
#page-viewer.page-viewer-rockingyou .episode-header-share .rss,
#page-viewer.page-viewer-rockingyou .viewer-colophon-recommend,
#page-viewer.page-viewer-rockingyou .episode-header,
#page-viewer.page-viewer-rockingyou .series-information,
#page-viewer.page-viewer-rockingyou .series-related-articles,
#page-viewer.page-viewer-rockingyou .page-footer,
#page-viewer.page-viewer-rockingyou .rookie-footer,
#page-viewer.page-viewer-rockingyou .footer-wj,
#page-viewer.page-viewer-rockingyou .footer-banner {
  display: none!important;
}
#page-viewer.page-viewer-rockingyou .episode-header,
#page-viewer.page-viewer-rockingyou .page-footer {
  border-color: #919496;
}
#page-viewer.page-viewer-rockingyou .viewer {
  background: #000;
}
#page-viewer.page-viewer-rockingyou .episode-header-container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#page-viewer.page-viewer-rockingyou .viewer-controller {
  background: #000;
}
@media screen and (min-width: 600px) {
  #page-viewer.page-viewer-rockingyou .viewer-controller {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .viewer-controller {
    border-bottom: none;
  }
}
#page-viewer.page-viewer-rockingyou .viewer-slider {
  background: #000;
}
@media screen and (min-width: 600px) {
  #page-viewer.page-viewer-rockingyou .spotify-playlist-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 1px solid #919496;
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .spotify-playlist-wrapper {
    padding: 0 32px;
    border-top: 1px solid #919496;
    border-bottom: 1px solid #919496;
  }
}
#page-viewer.page-viewer-rockingyou .spotify-playlist-wrapper > iframe {
  -webkit-transition: height 200ms 0s ease-out, width 200ms 0s ease-out;
  transition: height 200ms 0s ease-out, width 200ms 0s ease-out;
}
@media screen and (min-width: 600px) {
  #page-viewer.page-viewer-rockingyou .spotify-playlist-wrapper > iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: calc(100% - 135px + 40px);
    /* ビューワーの高さにツールバー分を足している */
    min-height: 540px;
    max-height: 840px;
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .spotify-playlist-wrapper > iframe {
    width: 100%;
    height: 500px;
  }
}
#page-viewer.page-viewer-rockingyou #ru-header-container h1 {
  max-width: 850px;
  width: 100%;
  margin: 32px auto 0;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou #ru-header-container h1 {
    margin: 16px auto 0;
  }
}
#page-viewer.page-viewer-rockingyou #ru-header-container h1 img {
  width: 100%;
}
#page-viewer.page-viewer-rockingyou #ru-header-container .episode-header-share {
  margin: 0 auto;
  padding: 32px 0 54px;
  text-align: center;
  border-bottom: 1px solid #919496;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou #ru-header-container .episode-header-share {
    padding: 16px 0 32px;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container {
  max-width: 900px;
  width: 90%;
  margin: 72px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container {
    display: block;
    margin: 32px auto;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container a:hover {
  opacity: .8;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-image-wrapper {
    text-align: center;
    background: url(/images/viewer/bg_stripe.png) 0 0 repeat;
    background-size: 9px 9px;
    line-height: 0;
    position: relative;
    z-index: 0;
  }
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-image-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .series-image {
  width: 242px;
  height: 242px;
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .series-contents-wrapper {
  width: 620px;
}
@media screen and (max-width: 980px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-contents-wrapper {
    width: calc(100% - 241px - 32px);
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-contents-wrapper {
    width: 100%;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .series-title {
  font-weight: 700;
  font-size: 30px;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-title {
    margin: 12px 0 2px;
    font-size: 20px;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .series-author {
  font-size: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-author {
    font-size: 17px;
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-description {
    margin-top: 16px;
    font-size: 12px;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-title {
  width: 241px;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-title {
    width: 140px;
    margin-bottom: 8px;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-comic,
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button {
  display: inline-block;
  margin: 0 24px 0 0;
  max-width: 176px;
  width: calc((100% - (24px * 2))/3);
}
@media screen and (max-width: 980px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-comic,
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button {
    margin: 0 16px 0 0;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-comic:last-child,
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button:last-child {
  margin-right: 0;
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-comic img,
#page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-comic {
    margin: 0 8px 0 0;
    width: calc((100% - (8px * 2))/3);
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button {
    margin-right: 8px;
    width: calc((100% - 8px)/2);
  }
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button:nth-child(3n) {
    margin-right: 0;
  }
  #page-viewer.page-viewer-rockingyou .ru-contents-container .contents-button:last-child {
    display: none;
  }
}
#page-viewer.page-viewer-rockingyou .ru-contents-container .series-description-spotify {
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou .ru-contents-container .series-description-spotify {
    margin-top: 0;
  }
}
#page-viewer.page-viewer-rockingyou .footer {
  border-top: 1px solid #919496;
}
@media screen and (min-width: 600px) {
  #page-viewer.page-viewer-rockingyou .viewer {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 600px) {
  #page-viewer.page-viewer-rockingyou.expand .viewer {
    max-height: calc(100% - 121px);
  }
}
@media screen and (min-width: 600px) {
  #page-viewer.page-viewer-rockingyou.expand .spotify-playlist-wrapper > iframe {
    max-height: 100%;
    height: 100%;
  }
}
#page-viewer.page-viewer-rockingyou.fullscreen .spotify-playlist-wrapper > iframe {
  height: 100%;
  max-height: inherit;
}
