@charset "UTF-8";

/*
  Site Name:
  Description: style
  Version: 1.0
  Author: jun.watanabe
*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   Base
   ========================================================================== */
/* Box-sizing
    ----------------------------------------------------------------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Default Font Size
   ----------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

/* body
   ----------------------------------------------------------------- */
body {
  text-align: center;
  /* box centering */
  color: #333;
  font-family: "Montserrat";
  margin: 0;
  padding: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  letter-spacing: normal;
}

/* button
   ----------------------------------------------------------------- */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  font-size: inherit;
  outline: 0;
}

/* select
   ----------------------------------------------------------------- */
select {
  font-size: 15px;
  font-size: 1.5rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  height: 34px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 23px 0 18.5px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  display: inline-block;
  vertical-align: top;
}

select::-ms-expand {
  display: none;
}

.select-wrap {
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: 1;
  vertical-align: middle;
}

.select-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
}

/* hr
   ----------------------------------------------------------------- */
hr {
  height: 0;
  font-size: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #ccc;
  display: block;
}

/* for iOS , Android
   ----------------------------------------------------------------- */
@media (min-width: 640px) and (max-width: 959px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

@media (max-width: 640px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  clear: both;
}

.footer-inner {
  padding: 15px;
  background-color: #f4f4f4;
  box-sizing: border-box;
  margin-top: 40px;
}

.f-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding-top: 10px;
}

.f-nav-item {
  font-size: 12px;
  font-size: 1.2rem;
  box-sizing: border-box;
  padding: 8px;
  width: 50%;
  color: #333;
  display: block;
  position: relative;
  text-decoration: underline;
  /* */
}

.f-nav-item:nth-child(2):after {
  display: none;
}

.f-nav-item:nth-child(5) {
  width: 100%;
}

.f-nav-item:after {
  content: "";
  display: block;
  width: 0px;
  height: 12px;
  background-color: #6293cd;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.f-nav-item:nth-child(4):after {
  display: none;
}

.f-nav-item-fullsize {
  font-size: 12px;
  font-size: 1.2rem;
  box-sizing: border-box;
  padding: 8px;
  width: 50%;
  color: #333;
  text-decoration: underline;
  display: block;
  position: relative;
}

.to-pagetop {
  position: fixed;
  z-index: 1000;
  bottom: 15px;
  right: 15px;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #001022;
  border-radius: 4px;
  width: 60px;
  height: 60px;
}

.to-pagetop:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top: none;
  border-bottom: 18px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.copyright {
  font-size: 10px;
  font-size: 1rem;
  color: #333;
}

/* ==========================================================================
   header
   ========================================================================== */
.header {
  position: relative;
  z-index: 1000;
  /* search */
  /* charge-tickets */
  /* menu */
}

.header-inner {
  height: 45px;
}

.header-drawer {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.header-drawer:after {
  /* headerの背景 */
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 45px;
  background-color: #fff;
}

.header .btn-search {
  position: absolute;
  top: 0;
  right: 53px;
  /* no-login */
  right: 123px;
  display: block;
  z-index: 50;
  background: url(../img/icon_search.png) 50% 50% no-repeat;
  background-size: 25px auto;
  width: 50px;
  height: 45px;
  transition: .3s ease-in-out;
}

.header .header-search {
  display: none;
  background-color: #0050AD;
  position: absolute;
  z-index: 50;
  top: 0;
  right: 65px;
  /* no-login */
  right: 135px;
  left: 10px;
  margin: auto;
  padding: 10px 0;
  opacity: 0;
  transition: .3s ease-in-out;
  text-align: right;
}

.header .header-search .input-text {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
  height: 34px;
  background: rgba(255, 255, 255, 0.9) url(../img/icon_search_gray.png) 5px 50% no-repeat;
  background-size: 18px auto;
  border: 1px solid #fff;
  border-radius: 17px;
  text-align: center;
  width: 0%;
  opacity: 0;
  transition: .3s ease-in-out;
}

.header .search-trigger:checked~.search-overlay {
  display: block;
  opacity: 1;
}

.header .search-trigger:checked~.header-search {
  display: block;
  opacity: 1;
}

.header .search-trigger:checked~.header-search .input-text {
  width: 100%;
  opacity: 1;
}

.header .btn-charge-ticket {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 66px;
  background: url(../img/btn_charge_tickets.png) 50% 50% no-repeat;
  background-size: 61px auto;
  width: 61px;
  height: 45px;
  overflow: hidden;
  text-indent: -9999px;
}

.header-menu {
  overflow: auto;
  position: fixed;
  top: 45px;
  right: 0;
  z-index: 50;
  width: 90%;
  max-width: 295px;
  height: 100%;
  background-color: #fff;
  transform: translateX(105%);
  transition: .3s ease-in-out;
}

.header .is-hidden {
  display: none;
}

.header .btn-menu {
  background: url(../img/btn_menu.png) 50% 50% no-repeat;
  background-size: 40px 30px;
  overflow: hidden;
  text-indent: -9999px;
  width: 70px;
  height: 45px;
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
}

.header .btn-menu .badge {
  position: absolute;
  z-index: 10;
  right: 5px;
  top: 4px;
}

.header .menu-overlay {
  display: none;
  position: fixed;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: .3s ease-in-out;
}

.header .menu-trigger:checked~.menu-overlay {
  display: block;
  opacity: 1;
}

.header .menu-trigger:checked~.btn-menu {
  background-image: url(../img/btn_menu_close.png);
}

.header .menu-trigger:checked~.btn-menu .badge {
  display: none;
}

.header .menu-trigger:checked~.header-menu {
  transform: translateX(0%);
}

.header-menu-account-info {
  padding: 15px;
  border: 1px solid #e9e9e9;
}

.header-menu-account-info-item-mail {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: .5em;
}

.header-menu-account-info-item-tickets {
  color: #666;
  padding: 12px 0 0;
  text-align: left;
  display: block;
}

.header-menu-account-info-item-tickets:before {
  content: "";
  font-size: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e6e6e6;
}

.header-menu-account-info-item .header-menu-account-info-item-header {
  font-size: 15px;
  font-size: 1.5rem;
}

.header-menu-account-info-item .header-menu-account-info-item-body {
  font-size: 16px;
  font-size: 1.6rem;
}

.header-menu-nav {
  border-top: 1px solid #e9e9e9;
}

.header-menu-nav-item {
  padding: 18px 15px;
  border: 1px solid #e9e9e9;
  border-top: none;
}

.header-menu-nav-item a {
  font-size: 19px;
  font-size: 1.9rem;
  color: #333;
  text-decoration: none;
  display: block;
  text-align: left;
  margin: -18px -15px;
  padding: 18px 15px;
  position: relative;
}

.header-menu-nav-item a .badge {
  margin-left: 5px;
  vertical-align: middle;
}

.header-menu-nav-item a:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #e6e6e6;
  display: inline-block;
  vertical-align: middle;
  margin: -.25em 10px 0 0;
}

.header-menu-nav-item a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header.is-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.header.pc-site {
  background-color: #0050AD;
}

.site-name {
  z-index: 50;
  position: absolute;
  top: 5px;
  left: 2px;
  width: 105px;
  height: 40px;
}

.site-name img {
  width: 90%;
  height: auto;
}

/* global nav */
.g-nav {
  display: flex;
  position: relative;
  z-index: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.g-nav-item {
  font-size: 12px;
  font-size: 1.2rem;
  box-sizing: border-box;
  padding: 12px 10px;
  width: 33.333333%;
  color: #333;
  text-decoration: none;
  display: block;
  position: relative;
  letter-spacing: -.01em;
}

.g-nav-item.is-active {
  color: #0050AD;
  font-weight: bold;
}

.g-nav-item:after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.g-nav-item:last-child:after {
  left: 1px;
  right: unset;
}

.g-nav2 {
  display: flex;
  position: relative;
  z-index: 0;
  height: 41px;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.g-nav2-item {
  font-size: 12px;
  font-size: 1.2rem;
  box-sizing: border-box;
  padding: 14px 0px;
  width: 100%;
  color: #333;
  text-decoration: none;
  display: block;
  position: relative;
  letter-spacing: -.01em;
  justify-content: center;
}

.g-nav2-item.is-active {
  color: #0050AD;
  font-weight: bold;
}

.g-nav2-item:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* viewer */
.header-viewer {
  position: fixed;
  z-index: 100;
  width: 100%;
  min-height: 54px;
  background-color: #333;
}

.header-viewer .header-inner {
  min-height: 54px;
  height: auto;
}

.header-viewer .site-name {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 40px;
  height: 28.6px;
}

.header-viewer .comic-title {
  font-size: 16px;
  font-size: 1.6rem;
  color: #f6f6f6;
  box-sizing: border-box;
  position: relative;
  padding: 0 54px 0 45px;
  display: table;
  width: 100%;
}

.header-viewer .comic-title-header {
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
  height: 54px;
  text-align: left;
  padding: 0 50px 0 15px;
}

.header-viewer .comic-title-fav {
  position: absolute;
  width: 50px;
  height: 54px;
  top: 0;
  bottom: 0;
  right: 54px;
  margin: auto;
}

.header-viewer .btn-fav {
  background-image: url(../img/icon_fav_off_gray.png);
}

.header-viewer .btn-viewer-header-share {
  background-image: url(../img/btn_header_share_white.png);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ==========================================================================
   main
   ========================================================================== */
body.pc-site {
  min-width: 980px;
  min-height: 100vh;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/slick_ajax_loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: .5;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ==========================================================================
   block-list
   ========================================================================== */
.block-list-item {
  display: block;
}

.block-list-note>.block-list-item {
  text-indent: -1em;
  padding-left: 1em;
}

/* dlブロックリスト Modifier */
/* dl column tableview */
.block-list-table {
  display: table;
}

.block-list-table>dt, .block-list-table>dd {
  display: table-cell;
}

/* ==========================================================================
   button
   ========================================================================== */
.btn {
  /* autoprefixer: off */
  -moz-box-sizing: border-box;
  /* Firefox 1 - 28 */
  box-sizing: border-box;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  margin: 0;
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
}

.btn-full {
  width: 100%;
}

/* fav */
.fav-trigger.is-hidden {
  display: none;
}

.btn-fav {
  background: url(../img/icon_fav_off.png) 50% 50% no-repeat;
  background-size: 30px auto;
  width: 50px;
  height: 54px;
}

.fav-trigger:checked~.btn-fav {
  background-image: url(../img/icon_fav_on.png);
  background-size: 30px auto;
}

/* header share */
.btn-viewer-header-share {
  background: url(../img/btn_header_share.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 54px;
  height: 54px;
  text-indent: -9999px;
  overflow: hidden;
}

/* share */
.btn-share {
  background: url(../img/btn_share.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 80px;
  height: 38px;
  text-indent: -9999px;
  overflow: hidden;
  color: transparent;
}

/* footer-sign-up */
.btn-footer-sign-up {
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #fff;
  color: #333;
  padding: 15px 40px 15px 20px;
  position: relative;
}

.btn-footer-sign-up:after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #333;
  height: 0;
  width: 0;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* see all */
.btn-see-all {
  color: #333;
  background-color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  width: 100px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
  padding-right: 10px;
}

.btn-see-all:after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #333;
  height: 0;
  width: 0;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* viewer */
.btn-go-to-next-ep {
  color: #333;
  font-size: 20px;
  font-size: 2.0rem;
  display: table;
  width: 315px;
  height: 60px;
  margin: auto;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
}

.btn-go-to-next-ep span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-go-to-next-ep i {
  display: inline-block;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #333;
  width: 0;
  height: 0;
  position: relative;
  margin-left: 10px;
}

.btn-go-to-next-ep i:before, .btn-go-to-next-ep i:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #333;
  width: 0;
  height: 0;
  position: absolute;
  top: -6px;
  bottom: 0;
}

.btn-go-to-next-ep i:before {
  left: 2px;
}

.btn-go-to-next-ep i:after {
  left: 14px;
}

.btn-ep-coming-soon {
  color: #333;
  font-size: 20px;
  font-size: 2.0rem;
  width: 315px;
  height: 60px;
  margin: auto;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
  display: table;
}

.btn-ep-coming-soon span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-ep-coming-soon small {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  margin-top: 5px;
}

.btn-ep-coming-soon:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #333;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

.btn-same-artist-page {
  color: #333;
  font-size: 20px;
  font-size: 2.0rem;
  width: 315px;
  height: 60px;
  margin: auto;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
  display: table;
}

.btn-same-artist-page span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-same-artist-page:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #333;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

/* comic top */
.btn-start-reading {
  color: #0050AD;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  width: 345px;
  height: 60px;
  margin: auto;
  border: 1px solid #0050AD;
  text-align: center;
  position: relative;
  display: table;
  background-color: #fff;
}

.btn-start-reading span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-start-reading:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #0050AD;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  margin: auto;
}

.btn-continue-reading {
  color: #0050AD;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  width: 345px;
  height: 60px;
  margin: auto;
  border: 1px solid #0050AD;
  text-align: center;
  position: relative;
  display: table;
  background-color: #fff;
}

.btn-continue-reading span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-continue-reading small {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  margin-top: 4px;
}

.btn-continue-reading:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #0050AD;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  margin: auto;
}

.btn-purchase-all {
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  width: 345px;
  height: 50px;
  margin: auto;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
  display: table;
  background-color: #fff;
}

.btn-purchase-all span {
  display: table-cell;
  height: 50px;
  vertical-align: middle;
}

.btn-purchase-all span:after {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #333;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin-left: 14px;
}

/* login-signup */
.btn-login {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  width: 315px;
  height: 60px;
  line-height: 60px;
  background-color: #0050AD;
}

.btn-create-account {
  color: #0050AD;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  width: 315px;
  height: 60px;
  margin: auto;
  border: 1px solid #0050AD;
  text-align: center;
  position: relative;
  display: table;
  background-color: #fff;
}

.btn-create-account span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-create-account:after {
  display: block;
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #0050AD;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  margin: auto;
}

.btn-create-account-social {
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  width: 315px;
  height: 60px;
  margin: auto;
  text-align: center;
  position: relative;
  display: table;
}

.btn-create-account-social span {
  display: table-cell;
  height: 60px;
  vertical-align: middle;
}

.btn-create-account-social small {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  margin-right: .5em;
}

.btn-create-account-social-fb {
  background-color: #385495;
}

.btn-create-account-social-tw {
  background-color: #1DA1F2;
}

.btn-create-account-social-amazon {
  background-color: #F1B52E;
}

/* signup */
.btn-signup-cancel {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #666;
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.btn-signup-confirm {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #0050AD;
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

/* charge tickets */
.btn-payment-credit-card, .btn-payment-paypal {
  display: block;
  margin: auto;
}

.btn-payment-credit-card>div, .btn-payment-paypal>div {
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  width: 345px;
  height: 50px;
  margin: auto;
  border: 1px solid #d3d3d3;
  text-align: center;
  position: relative;
  display: table;
  background-color: #fff;
  text-align: left;
}

.btn-payment-credit-card>div:before, .btn-payment-paypal>div:before {
  content: "";
  background: 0 0 no-repeat;
  background-size: 120px auto;
  width: 120px;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
}

.btn-payment-credit-card>div small, .btn-payment-paypal>div small {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  margin-bottom: 5px;
}

.btn-payment-credit-card>div span, .btn-payment-paypal>div span {
  display: table-cell;
  height: 50px;
  vertical-align: middle;
  padding: 6px 35px 4px 134px;
}

.btn-payment-credit-card>div span:after, .btn-payment-paypal>div span:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn-payment-credit-card>div:before {
  background-image: url(../img/bnr_credit.png);
}

.btn-payment-paypal>div:before {
  background-image: url(../img/bnr_paypal.png);
}

.btn-charge-ticket-confirm {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #0050AD;
  height: 50px;
  width: 100%;
  text-align: center;
  line-height: 50px;
}

/* my library */
.btn-item-delete-trigger {
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  width: 70px;
  height: 36px;
  line-height: 36px;
  background-color: #0050AD;
  text-decoration: none;
}

.btn-item-delete-confirm {
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  width: 80px;
  height: 36px;
  line-height: 36px;
  background-color: #d5364e;
}

.btn-item-delete-cancel {
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  width: 80px;
  height: 36px;
  line-height: 36px;
  background-color: #666;
}

/* modal */
.btn-purchase-cancel {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #666;
  height: 50px;
  width: 100%;
  text-align: center;
  line-height: 50px;
}

.btn-purchase-confirm {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #0050AD;
  height: 50px;
  width: 100%;
  text-align: center;
  line-height: 50px;
}

.btn-purchase-complete {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #0050AD;
  height: 50px;
  width: 100%;
  text-align: center;
  line-height: 50px;
}

/* ==========================================================================
   Dialog
   ========================================================================== */
/* alert */
/* ==========================================================================
   Grid
   ========================================================================== */
.grid-float {
  *zoom: 1;
  /* 子要素でfloatを使用するのでClearfix */
  position: relative;
}

.grid-float:before, .grid-float:after {
  display: table;
  content: "";
  line-height: 0;
}

.grid-float:after {
  clear: both;
}

.grid-float>.grid-item {
  float: left;
}

/* table用 Modifier */
.grid-table {
  display: table;
}

.grid-table>.grid-item {
  float: none;
}

/* table-layout */
.grid-table-layout {
  display: table;
}

.grid-table-layout>.grid-item {
  float: none;
  display: table-cell;
}

/* inline-block */
.grid-inline-block {
  font-size: 0;
  letter-spacing: normal;
}

.grid-inline-block>.grid-item {
  float: none;
  display: inline-block;
  vertical-align: top;
}

.grid-full {
  margin-left: -10px;
  /* 余白を指定 */
  margin-right: -10px;
  /* 余白を指定 */
}

.grid-item {
  /* autoprefixer: off */
  -moz-box-sizing: border-box;
  /* Firefox 1 - 28 */
  box-sizing: border-box;
}

.grid-item.has-gutter {
  padding-right: 10px;
  /* 余白を指定 */
  padding-left: 10px;
  /* 余白を指定 */
}

/* 12カラム用 */
.grid-item-1 {
  width: 8.3333333333%;
}

.grid-item-2 {
  width: 16.6666666667%;
}

.grid-item-3 {
  width: 25%;
}

.grid-item-4 {
  width: 33.3333333333%;
}

.grid-item-5 {
  width: 41.6666666667%;
}

.grid-item-6 {
  width: 50%;
}

.grid-item-7 {
  width: 58.3333333333%;
}

.grid-item-8 {
  width: 66.6666666667%;
}

.grid-item-9 {
  width: 75%;
}

.grid-item-10 {
  width: 83.3333333333%;
}

.grid-item-11 {
  width: 91.6666666667%;
}

.grid-item-12 {
  width: 100%;
}

/* 10カラム用 */
.grid10-item-1 {
  width: 10%;
}

.grid10-item-2 {
  width: 20%;
}

.grid10-item-3 {
  width: 30%;
}

.grid10-item-4 {
  width: 40%;
}

.grid10-item-5 {
  width: 50%;
}

.grid10-item-6 {
  width: 60%;
}

.grid10-item-7 {
  width: 70%;
}

.grid10-item-8 {
  width: 80%;
}

.grid10-item-9 {
  width: 90%;
}

.grid10-item-10 {
  width: 100%;
}

/* ==========================================================================
   Flex
   ========================================================================== */
.flex {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

/* direction */
.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-rev {
  /* reverse */
  flex-direction: row-reverse;
}

.flex-dir-col {
  flex-direction: column;
}

.flex-dir-col-rev {
  /* reverse */
  flex-direction: column-reverse;
}

/* wrap */
.flex-wrap-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.flex-wrap-wrap-rev {
  flex-wrap: wrap-reverse;
}

/* justify-content */
.flex-jc-start {
  justify-content: flex-start;
}

.flex-jc-end {
  justify-content: flex-end;
}

.flex-jc-center {
  justify-content: center;
}

.flex-jc-space-between {
  justify-content: space-between;
}

.flex-jc-space-around {
  justify-content: space-around;
}

/* align-items */
.flex-ai-stretch {
  align-items: stretch;
}

.flex-ai-start {
  align-items: flex-start;
}

.flex-ai-end {
  align-items: flex-end;
}

.flex-ai-center {
  align-items: center;
}

.flex-ai-baseline {
  align-items: baseline;
}

/* align-content */
.flex-ac-stretch {
  align-items: stretch;
}

.flex-ac-start {
  align-items: flex-start;
}

.flex-ac-end {
  align-items: flex-end;
}

.flex-ac-center {
  align-items: center;
}

.flex-ac-space-between {
  align-items: space-between;
}

.flex-ac-space-around {
  align-items: space-around;
}

/* ==========================================================================
   hr
   ========================================================================== */
.hr {
  height: 0;
  font-size: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #A8A9AA;
  display: block;
}

.hr-dashed {
  border-style: dashed;
}

/* ==========================================================================
   icon
   ========================================================================== */
.icon {
  display: inline-block;
}

.icon-with-text {
  margin-right: 3px;
  vertical-align: middle;
}

/* notification */
.icon-notification {
  background: url(../img/icon_notification.png) 50% 50% no-repeat;
  width: 18px;
  height: 19px;
  vertical-align: bottom;
  margin-right: 5px;
}

/* ranking */
.icon-ranking {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  width: 20px;
  height: 20px;
  background-color: #0050AD;
  color: #fff;
}

.icon-ranking-1, .icon-ranking-2, .icon-ranking-3 {
  width: 26px;
  height: 26px;
  background: url(../img/icon_ranking_crown.png) 50% 50% no-repeat;
  background-size: 17px auto;
}

.icon-ranking-1 {
  background-color: #DBCD19;
}

.icon-ranking-2 {
  background-color: #A5A6B3;
}

.icon-ranking-3 {
  background-color: #A98564;
}

/* read-status */
.icon-read-status {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}

.icon-read-status-unread:after {
  content: "☆Unread";
}

.icon-read-status-unread-notyet {
  color: #d5364e;
}

.icon-read-status-unread-notyet:after {
  content: "☆Unread";
}

.icon-read-status-read:after {
  content: "★Read";
}

/* comic status */
.icon-comic-status {
  font-weight: bold;
  color: #fff;
}

.icon-comic-status-free {
  font-size: 13px;
  font-size: 1.3rem;
  width: 46px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background-color: #1d93ee;
}

.icon-comic-status-free:after {
  content: "Free";
}

.icon-comic-status-saved {
  font-size: 13px;
  font-size: 1.3rem;
  width: 46px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background-color: #bdbdbd;
}

.icon-comic-status-saved:after {
  content: "Saved";
}

.icon-comic-status-buy {
  font-size: 18px;
  font-size: 1.8rem;
  color: #d5364e;
}

.icon-comic-status-buy:after {
  font-size: 14px;
  font-size: 1.4rem;
  content: " Tickets";
}

/* ==========================================================================
   badge
   ========================================================================== */
.badge {
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  text-align: center;
  text-indent: 0;
  font-weight: bold;
  width: 21px;
  height: 21px;
  line-height: 21px;
  color: #FFF35D;
  background-color: #EC1A34;
  border-radius: 50%;
}

/* ==========================================================================
   logo
   ========================================================================== */
.logo {
  display: inline-block;
}

/* ==========================================================================
   media
   ========================================================================== */
/* floatで構成 */
.media-float {
  *zoom: 1;
  /* 子要素でfloatを使用するのでClearfixする */
}

.media-float:before, .media-float:after {
  display: table;
  content: "";
  line-height: 0;
}

.media-float:after {
  clear: both;
}

.media-float-image {
  float: left;
  margin-right: 10px;
  /* 任意の値 */
  /* marginはhtml上でuttilityクラスを使用して都度調整する */
}

.media-float-image>img {
  display: block;
}

.media-float-image-rev {
  /* Reverse */
  float: right;
  margin-right: 0;
  margin-left: 10px;
  /* marginはProjectのElement指定で解決する */
}

.media-float-body {
  overflow: hidden;
  /* 画像下にテキストが回り込むのを防ぐ */
}

.media-float-body-middle {
  /* テキストを画像の上下中央揃え */
  vertical-align: middle;
}

/* display: tableで構成 */
.media {
  display: table;
}

.media-image {
  display: table-cell;
  padding-right: 10px;
  /* 任意の値 table-cellを使用するので余白をpaddingで調整 */
  /* paddingはProjectのElement指定で解決する */
}

.media-image-rev {
  /* Reverse */
  padding-right: 0;
  padding-left: 10px;
}

.media-image-middle {
  vertical-align: middle;
  /* 画像を上下中央揃え */
}

.media-image>img {
  display: block;
}

.media-body {
  display: table-cell;
  vertical-align: top;
  overflow: hidden;
  /* 画像下にテキストが回り込むのを防ぐ */
}

.media-body-middle {
  vertical-align: middle;
  /* テキストを画像の上下中央揃え */
}

/* 縦用Modifier */
.media-vertical {
  display: block;
}

.media-vertical>.media-image {
  display: block;
  padding-right: 0;
  padding-bottom: 8px;
}

.media-vertical>.media-image-rev {
  /* Reverse */
  padding: 8px 0 0 0;
}

.media-vertical>.media-body {
  display: block;
  overflow: hidden;
  /* 画像下にテキストが回り込むのを防ぐ */
}

/* ==========================================================================
   table
   ========================================================================== */
.table {
  /* autoprefixer: off */
  -moz-box-sizing: border-box;
  /* Firefox 1 - 28 */
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}

.table th, .table td {
  border: 1px solid #ccc;
  vertical-align: middle;
}

/* ==========================================================================
   tableview
   ========================================================================== */
/*
ブロック型テーブルリスト
リンクがある場合は子要素の<a>に-targetを指定する
*/
.tableview {
  overflow: hidden;
}

.tableview-item {
  padding: 10px 0;
  /* ベースとなる余白指定 */
}

/* アイコン付きリンクリスト */
.tableview-target {
  display: block;
  margin: -10px 0;
  /* paddingの相殺 */
  padding: 10px 0;
  /* 余白設定 */
  text-decoration: none;
  position: relative;
  padding-right: 0;
  /* アイコン分の余白を指定 */
  overflow: hidden;
}

.tableview-target:link, .tableview-target:visited, .tableview-target:active, .tableview-target:hover {
  color: #333;
  text-decoration: none;
}

.tableview-target:after {
  content: "";
  position: absolute;
  top: 0;
  /* topとbottom、対になるプロパティに値を持たせて、領域を作る */
  bottom: 0;
  /* topとbottom、対になるプロパティに値を持たせて、領域を作る */
  right: 0;
  /* iconの位置調整 */
  margin: auto;
  /* 垂直中央配置 */
}

/* ==========================================================================
   target
   ========================================================================== */
.target {
  line-height: 1;
  display: inline-block;
  position: relative;
}

.target:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

.target:link, .target:visited, .target:active, .target:hover {
  color: #333;
}

/* ==========================================================================
   tab
   ========================================================================== */
/*
#styleguide
タブ

タブを実装するスタイル
初期表示する要素には'.is-active'を付加しておく
'.js-tabs'がナビゲーション、'js-tab a'で表示切り替え
'.js-tab-panels'が要素を内包するブロック、子要素に'.js-tab-panel'と任意のIDを指定して制御

```
<ul class="js-tabs">
  <li><a href="#elm01" class="js-tab">elm01</a></li>
  <li><a href="#elm02" class="js-tab">elm02</a></li>
</ul>

<div class="js-tab-panels">
  <div class="js-tab-panel is-active" id="elm01">エレメント01</div>
  <div class="js-tab-panel" id="elm02">エレメント02</div>
</div>

```
*/
.js-tab-panel {
  display: none;
}

.js-tab-panel.is-active {
  display: block;
}

/* ==========================================================================
   accordion
   ========================================================================== */
/*
#styleguide
アコーディオン

dtに'.is-opened'を付加すると最初からオープン

```
<dl class="js-accordion">
  <dt><a href="#">アコーディオンオープン</a></dt>
  <dd>アコーディオン内容</dd>
</dl>
```
*/
.js-accordion>dt.is-opend {
  display: block;
}

/* ==========================================================================
   article
   ========================================================================== */
.article {
  padding-top: 85px;
  /* .header */
}

.article-pc-site {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  padding-top: 0;
  height: 100vh;
}

.article-pc-site:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 46.9026549%;
  background-color: #0050AD;
}

/* viewer */
.article-viewer {
  padding: 90px 0 60px;
}

/* free comics */
.article-free .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  padding: 25px 0 0;
}

.article-free .article-header small {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  display: block;
  margin-top: 10px;
}

/* ongoing */
.article-ongoing .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  padding: 25px 0 16px;
}

/* ranking */
.article-ranking {
  margin-bottom: -40px;
  /* .main padding value cancel */
}

.article-ranking .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 10px 16px;
}

.article-ranking .article-header small {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: normal;
  color: #666;
  display: inline-block;
  padding: 0 3px;
}

.article-ranking .article-header-flex {
  display: flex;
  justify-content: space-around;
}

.article-ranking .article-body-flex {
  display: flex;
  border-top: 1px solid #e9e9e9;
}

.article-ranking .article-body-flex .flex-item:nth-child(1) {
  width: 76px;
  background-color: #e9e9e9;
  border-right: 1px solid #e9e9e9;
}

.article-ranking .article-body-flex .flex-item:nth-child(2) {
  flex: 1;
}

/* genre */
.article-genre .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 10px 0;
}

.article-genre .article-header-items {
  position: relative;
}

.article-genre .article-header-item:nth-child(2) {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

/* comic-top */
.article-comic-top .article-image img {
  width: 100%;
  height: auto;
}

/* login-signup */
.article-login-signup .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 10px 20px;
}

/* signup */
.article-signup .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 10px 30px;
}

/* charge-tickets */
.article-charge-tickets .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 15px 10px;
}

.article-charge-tickets .article-header small {
  font-size: 18px;
  font-size: 1.8rem;
  color: #0050AD;
  background-color: #f6f6f6;
  display: block;
  padding: 12px 15px 15px;
  margin-top: 15px;
}

/* customer-support */
.article-customer-support .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 10px;
}

/* my-library */
.article-my-library {
  padding-top: 54px;
}

.article-my-library .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
  padding: 25px 10px;
}

/* ==========================================================================
   form
   ========================================================================== */
.form {
  /* placeholder */
  /* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
  /* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
  /* input[text] */
}

.form :placeholder-shown {
  color: #d3d3d3;
}

.form ::-webkit-input-placeholder {
  color: #d3d3d3;
}

.form :-moz-placeholder {
  color: #d3d3d3;
  opacity: 1;
}

.form ::-moz-placeholder {
  color: #d3d3d3;
  opacity: 1;
}

.form :-ms-input-placeholder {
  color: #d3d3d3;
}

.form :placeholder-shown {
  color: #d3d3d3;
}

.form input[type=text], .form input[type=email], .form input[type=password] {
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  padding: 10px;
}

.form input[type=text]:focus, .form input[type=email]:focus, .form input[type=password]:focus {
  border-color: #0050AD;
  outline: 0;
}

.form input[type=text].is-not-empty, .form input[type=email].is-not-empty, .form input[type=password].is-not-empty {
  border-color: #0050AD;
}

.form-error-message, .form label.error {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #d5364e;
  display: block;
}

/* ==========================================================================
   mod
   ========================================================================== */
/* page nav */
.mod-page-nav {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.mod-page-nav a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
}

.mod-page-nav-prev {
  font-size: 15px;
  font-size: 1.5rem;
  color: #666;
  line-height: 34px;
  width: 84px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-page-nav-prev:before {
  content: "←";
  margin-right: .25em;
}

.mod-page-nav-next {
  font-size: 15px;
  font-size: 1.5rem;
  color: #666;
  line-height: 34px;
  width: 84px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-page-nav-next:after {
  content: "→";
  margin-left: .25em;
}

.mod-page-nav-item {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  width: 34px;
  line-height: 34px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-page-nav-item.is-active {
  pointer-events: none;
  background-color: #0050AD;
  color: #fff;
}

/* genre list */
.mod-genre-list .mod-header {
  font-size: 24px;
  font-size: 2.4rem;
  color: #fff;
  background-color: #151515;
  padding: 10px 15px;
  text-align: left;
}

.mod-genre-list-items {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

.mod-genre-list-item {
  box-sizing: border-box;
  width: 50%;
  padding: 15px;
  background-color: #333;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}

.mod-genre-list-item a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  display: block;
  margin: -15px;
  padding: 15px;
  position: relative;
}

.mod-genre-list-item a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mod-genre-list-item-full {
  width: 100%;
}

.mod-genre-list-item.is-active:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* home mv */
.mod-home-mv {
  position: relative;
  margin-bottom: 5px;
  /* slick */
}

.mod-home-mv .mod-item {
  padding: 0 2px;
}

.mod-home-mv .mod-item img {
  width: 100%;
  height: auto;
}

.mod-home-mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.mod-home-mv .slick-dots {
  bottom: 10px;
}

.mod-home-mv .slick-dots li {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.mod-home-mv .slick-dots li button {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #d3d3d3;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
}

.mod-home-mv .slick-dots .slick-active button {
  background-color: #d3d3d3;
}

.mod-home-mv .slick-nav {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.mod-home-mv .slick-nav-wrap {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 12px;
  margin: auto;
  text-align: center;
}

.mod-home-mv .slick-nav .slick-dots {
  position: static;
}

/* home notification */
.mod-notification .mod-header {
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #EC1A34;
  color: #FFF35D;
  padding: 5px 10px;
  text-align: left;
}

.mod-notification-list {
  width: 100%;
}

.mod-notification-list-item {
  font-size: 15px;
  font-size: 1.5rem;
  box-sizing: border-box;
  padding: 8px 15px;
  text-align: left;
  background-color: #333;
  color: #fff;
  border-bottom: 1px solid #000;
}

.mod-notification-list-item a {
  color: #fff;
}

.mod-notification-list-item-data {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.mod-notification-list-item-data span {
  display: table-cell;
  box-sizing: border-box;
}

.mod-notification-list-item-data-header {
  padding-right: 10px;
  width: 105px;
}

.mod-notification-list-item-data-body {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* section */
.mod-section {
  padding: 15px 15px 0;
}

.mod-section .mod-header {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
  border-bottom: 6px solid #E9E9E9;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

/* new-today */
.mod-new-today .mod-image {
  position: relative;
  z-index: 0;
}

.mod-new-today .mod-image img {
  width: 100%;
  height: auto;
}

.mod-new-today .mod-body {
  position: relative;
  z-index: 20;
}

.mod-new-today .mod-footer {
  padding-top: 30px;
  text-align: right;
  z-index: 20;
}

.mod-new-today .mod-flex {
  display: flex;
  justify-content: space-between;
}

.mod-new-today .mod-flex .flex-item {
  line-height: 1;
}

.mod-new-today .mod-flex .flex-item:nth-child(1) {
  flex-grow: 2;
  text-align: left;
}

.mod-new-today .mod-flex .flex-item:nth-child(2) {
  text-align: right;
  flex-grow: 3;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mod-new-today .mod-flex .flex-item:nth-child(3) {
  text-align: right;
  flex-grow: 1;
}

.mod-new-today-item {
  margin-bottom: 20px;
  position: relative;
}

.mod-new-today-item:last-child {
  margin-bottom: 0;
}

.mod-new-today-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-new-today-item-data-meta {
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 4px;
}

.mod-new-today-item-data-meta-genre a {
  font-size: 13px;
  font-size: 1.3rem;
  color: #0050AD;
  text-decoration: none;
}

/* recentry-read */
.mod-recently-read {
  margin-top: 16px;
}

.mod-recently-read .mod-image {
  position: relative;
  z-index: 0;
}

.mod-recently-read .mod-image img {
  width: 100%;
  height: auto;
}

.mod-recently-read .mod-header {
  position: relative;
  z-index: 20;
}

.mod-recently-read .mod-body {
  position: relative;
  z-index: 20;
}

.mod-recently-read .mod-flex {
  flex-direction: column;
}

.mod-recently-read .mod-flex .flex-item {
  text-align: left;
}

.mod-recently-read-items {
  display: flex;
  margin: 0 -4px;
}

.mod-recently-read-item {
  box-sizing: border-box;
  width: 25%;
  padding: 0 4px;
  position: relative;
}

.mod-recently-read-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-recently-read-item-data-meta {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px;
  display: block;
}

.mod-recently-read-item-data-meta-genre a {
  font-size: 11px;
  font-size: 1.1rem;
  color: #0050AD;
  text-decoration: none;
}

.mod-recently-read-item-data-meta-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* ranking-summary */
.mod-ranking-summary {
  margin-top: 16px;
}

.mod-ranking-summary .mod-image {
  position: relative;
  z-index: 0;
}

.mod-ranking-summary .mod-image img {
  width: 100%;
  height: auto;
}

.mod-ranking-summary .mod-image-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 2px 2px;
}

.mod-ranking-summary .mod-image .icon-ranking {
  position: absolute;
  top: 0;
  left: 0;
}

.mod-ranking-summary .mod-header {
  position: relative;
  z-index: 20;
}

.mod-ranking-summary .mod-body {
  margin-bottom: -16px;
  position: relative;
  z-index: 20;
}

.mod-ranking-summary .mod-flex {
  flex-direction: column;
}

.mod-ranking-summary .mod-flex .flex-item {
  text-align: left;
}

.mod-ranking-summary-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.mod-ranking-summary-item {
  box-sizing: border-box;
  width: 25%;
  padding: 0 4px 16px;
  position: relative;
}

.mod-ranking-summary-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-ranking-summary-item:nth-child(1) {
  width: 33.333333%;
}

.mod-ranking-summary-item:nth-child(2) {
  width: 33.333333%;
}

.mod-ranking-summary-item:nth-child(3) {
  width: 33.333333%;
}

.mod-ranking-summary-item-data-meta {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0 4px;
  display: block;
}

.mod-ranking-summary-item-data-meta-genre a {
  font-size: 11px;
  font-size: 1.1rem;
  color: #0050AD;
  text-decoration: none;
}

.mod-ranking-summary-item-data-meta-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* viewer */
/* fixed nav */
.mod-viewer-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #333;
  box-shadow: 0 1px 0 black inset;
  height: 60px;
}

.mod-viewer-nav-item {
  position: absolute;
  display: inline-block;
  height: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-decoration: none;
}

.mod-viewer-nav-item-prev {
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  line-height: 34px;
  width: 84px;
  left: 6px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-viewer-nav-item-prev:before {
  content: "←";
  margin-right: .25em;
}

.mod-viewer-nav-item-next {
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  line-height: 34px;
  width: 84px;
  right: 6px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-viewer-nav-item-next:after {
  content: "→";
  margin-left: .25em;
}

.mod-viewer-nav-item-up {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  left: 50%;
  margin-left: -51px;
}

.mod-viewer-nav-item-up:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-width: 0;
  border-bottom: 12px solid #333;
}

.mod-viewer-nav-item-down {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  left: 50%;
  margin-left: 9px;
}

.mod-viewer-nav-item-down:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-width: 0;
  border-top: 12px solid #333;
}

.mod-viewer-status {
  font-size: 18px;
  font-size: 1.8rem;
  color: #666;
  text-align: right;
  padding: 20px 10px 18px;
}

.mod-viewer-status-fin {
  font-size: 26px;
  font-size: 2.6rem;
  color: #333;
  padding: 30px 10px 0;
  text-align: center;
}

.mod-viewer-link {
  margin-top: 30px;
}

/* free comics */
.mod-free-comics .mod-image {
  position: relative;
  z-index: 0;
}

.mod-free-comics .mod-image img {
  width: 100%;
  height: auto;
}

.mod-free-comics .mod-image-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2px;
}

.mod-free-comics .mod-header {
  position: relative;
  z-index: 20;
}

.mod-free-comics .mod-body {
  position: relative;
  z-index: 20;
}

.mod-free-comics .mod-flex {
  flex-direction: column;
}

.mod-free-comics .mod-flex .flex-item {
  text-align: left;
}

.mod-free-comics-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7.5px -20px;
}

.mod-free-comics-item {
  box-sizing: border-box;
  width: 50%;
  padding: 0 7.5px 20px;
  position: relative;
}

.mod-free-comics-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-free-comics-item-data-wrap {
  display: flex;
}

.mod-free-comics-item-data-meta {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px;
  display: block;
}

.mod-free-comics-item-data-meta-genre a {
  font-size: 11px;
  font-size: 1.1rem;
  color: #0050AD;
  text-decoration: none;
}

.mod-free-comics-item-data-meta-name {
  word-wrap: break-word;
}

.mod-free-comics-caption-item-meta {
  display: block;
}

.mod-free-comics-caption-item-meta-price {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}

.mod-free-comics-caption-item-meta-period {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* ongoing */
.mod-ongoing {
  margin-bottom: 50px;
}

.mod-ongoing>.mod-header {
  position: relative;
  z-index: 20;
  margin-bottom: 0;
}

.mod-ongoing>.mod-body {
  position: relative;
  z-index: 20;
}

.mod-ongoing>.mod-footer {
  text-align: right;
  padding-top: 20px;
  position: relative;
  z-index: 20;
}

.mod-ongoing-item {
  position: relative;
  margin: 0 -15px;
}

.mod-ongoing-item a {
  text-decoration: none;
  display: block;
}

.mod-ongoing-item:nth-child(even) {
  background-color: #f6f6f6;
}

.mod-ongoing-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  margin: auto;
  height: 1px;
  background-color: #e9e9e9;
}

.mod-ongoing-item-media {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.mod-ongoing-item-media .media-image {
  width: 80px;
  padding: 10px 15px 10px 10px;
}

.mod-ongoing-item-media .media-image img {
  width: 100%;
  height: auto;
  border: 1px solid #e9e9e9;
}

.mod-ongoing-item-media .media-body {
  padding: 10px 0 10px 25px;
  text-align: left;
}

.mod-ongoing-item-data-wrap {
  position: relative;
  min-height: 80px;
}

.mod-ongoing-item-data-meta {
  display: block;
  position: absolute;
}

.mod-ongoing-item-data-meta-genre {
  font-size: 13px;
  font-size: 1.3rem;
  color: #0050AD;
  top: 7px;
  left: 0;
}

.mod-ongoing-item-data-meta-name {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  position: relative;
  padding: 30px 0;
}

.mod-ongoing-item-data-meta-update {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666;
  bottom: 0;
  left: 0;
}

.mod-ongoing-slide {
  position: relative;
  /* slick */
}

.mod-ongoing-slide .slick-disabled {
  opacity: 0;
}

.mod-ongoing-slide .slick-arrow {
  font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  box-sizing: border-box;
  background-color: transparent;
  border: 0;
  position: absolute;
  z-index: 99;
  top: 2.6rem;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  text-decoration: none;
  display: inline-block;
  padding: 0 3px;
}

.mod-ongoing-slide .slick-arrow span {
  border-bottom: 1px solid #666;
}

.mod-ongoing-slide .slick-arrow-prev {
  right: 5.1em;
}

.mod-ongoing-slide .slick-arrow-prev:after {
  content: "↑";
}

.mod-ongoing-slide .slick-arrow-next {
  right: 13px;
}

.mod-ongoing-slide .slick-arrow-next:after {
  content: "↓";
}

/* ranking */
.mod-ranking-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mod-ranking-nav-item {
  width: 100%;
  margin-bottom: 1px;
}

.mod-ranking-nav-item a {
  box-sizing: border-box;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  display: flex;
  width: 100%;
  text-decoration: none;
  color: #333;
  position: relative;
}

.mod-ranking-nav-item a span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: #fff;
}

.mod-ranking-nav-item a.is-active {
  color: #0050AD;
}

.mod-ranking-nav-item a.is-active:after {
  content: "";
  width: 6px;
  background-color: #0050AD;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

body {
  /* ranking counter reset */
  counter-reset: ranking;
}

.mod-ranking {
  margin-bottom: 50px;
}

.mod-ranking-item {
  position: relative;
  margin: 0;
}

.mod-ranking-item a {
  text-decoration: none;
  display: block;
}

.mod-ranking-item:nth-child(odd) {
  background-color: #f6f6f6;
}

.mod-ranking-item:nth-child(1):after, .mod-ranking-item:nth-child(2):after, .mod-ranking-item:nth-child(3):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../img/icon_ranking_crown.png) 50% 50% no-repeat;
  background-size: 17px auto;
}

.mod-ranking-item:nth-child(1):after {
  background-size: 21px auto;
  width: 32px;
  height: 32px;
  background-color: #dbcd19;
}

.mod-ranking-item:nth-child(1) .mod-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: 50% 0 no-repeat;
  background-size: cover;
}

.mod-ranking-item:nth-child(1) .mod-image img {
  width: 100%;
  height: auto;
}

.mod-ranking-item:nth-child(1) .mod-body {
  min-height: 130px;
  display: flex;
  align-items: flex-end;
}

.mod-ranking-item:nth-child(1) .mod-ranking-item-media {
  display: flex;
  align-content: center;
  position: relative;
  padding-top: 40px;
}

.mod-ranking-item:nth-child(1) .mod-ranking-item-media:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

.mod-ranking-item:nth-child(1) .mod-ranking-item-media .media-header {
  position: relative;
  z-index: 10;
  display: block;
  height: 50px;
  padding: 0;
}

.mod-ranking-item:nth-child(1) .mod-ranking-item-media .media-body {
  position: relative;
  z-index: 10;
  display: block;
  flex: 1;
  padding: .5em 5px 0 0;
}

.mod-ranking-item:nth-child(2):after {
  background-color: #a5a6b3;
}

.mod-ranking-item:nth-child(3):after {
  background-color: #a98564;
}

.mod-ranking-item-media {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 5px 0;
}

.mod-ranking-item-media .media-header {
  font-size: 42px;
  font-size: 4.2rem;
  color: #666;
  width: 50px;
  height: 80px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  padding: 0 5px;
}

.mod-ranking-item-media .media-header:before {
  counter-increment: ranking;
  content: counter(ranking);
}

.mod-ranking-item-media .media-image {
  width: 80px;
  padding: 0 5px;
}

.mod-ranking-item-media .media-image img {
  width: 100%;
  height: auto;
  border: 1px solid #e9e9e9;
}

.mod-ranking-item-media .media-body {
  vertical-align: middle;
  text-align: left;
  position: relative;
  z-index: 10;
}

.mod-ranking-item-meta {
  display: block;
}

.mod-ranking-item-meta-genre {
  font-size: 13px;
  font-size: 1.3rem;
  color: #0050AD;
  padding-bottom: 5px;
}

.mod-ranking-item-meta-name {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  word-wrap: break-word;
  position: relative;
}

/* genre */
.mod-genre-nav-wrap {
  overflow: hidden;
  background-color: #e9e9e9;
  margin: 0;
}

.mod-genre-nav-items {
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: row;
  margin: 0 -2.5px;
}

.mod-genre-nav-item {
  width: 78px;
  padding: 0 2.5px;
}

.mod-genre-nav-item a {
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
  display: table;
  width: 78px;
  text-decoration: none;
  color: #333;
  position: relative;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-genre-nav-item a span {
  box-sizing: border-box;
  display: table-cell;
  height: 40px;
  width: 100%;
  vertical-align: middle;
  text-align: center;
}

.mod-genre-nav-item a.is-active {
  color: #0050AD;
}

.mod-genre-nav-item a.is-active:after {
  content: "";
  height: 3px;
  background-color: #0050AD;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.mod-genre {
  margin-top: 16px;
}

.mod-genre .mod-image {
  position: relative;
  z-index: 0;
}

.mod-genre .mod-image img {
  width: 100%;
  height: auto;
}

.mod-genre .mod-header {
  position: relative;
  z-index: 20;
}

.mod-genre .mod-body {
  position: relative;
  z-index: 20;
}

.mod-genre .mod-flex {
  flex-direction: column;
}

.mod-genre .mod-flex>.flex-item {
  text-align: left;
}

.mod-genre-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.mod-genre-item {
  box-sizing: border-box;
  width: 33.333333%;
  padding: 0 4px 20px;
  position: relative;
}

.mod-genre-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-genre-item-data-meta {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px;
  display: block;
}

.mod-genre-item-data-meta-genre a {
  font-size: 11px;
  font-size: 1.1rem;
  color: #0050AD;
  text-decoration: none;
}

.mod-genre-item-data-meta-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* comic-top */
.mod-comic-top-header {
  padding-bottom: 25px;
}

.mod-comic-top-header>.mod-header {
  font-size: 20px;
  font-size: 2.0rem;
  padding: 15px 60px 15px 15px;
  text-align: left;
  position: relative;
}

.mod-comic-top-header>.mod-body {
  padding-top: 10px;
}

.mod-comic-top-header>.mod-footer {
  padding-top: 20px;
}

.mod-comic-top-header-fav {
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin: auto;
  transform: translate(0, -50%);
}

.mod-comic-top-header-fav .btn-fav {
  width: 30px;
  height: 30px;
}

.mod-comic-top-header-flex {
  display: flex;
  padding: 0 15px;
}

.mod-comic-top-header-flex>.flex-item:nth-child(1) {
  flex: 1;
  text-align: left;
}

.mod-comic-top-header-flex>.flex-item:nth-child(2) {
  width: 95px;
  text-align: right;
}

.mod-comic-top-header-meta {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
}

.mod-comic-top-header-meta a {
  color: #0050AD;
}

.mod-comic-top-header-meta-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mod-comic-top-header-meta-flex>.flex-item {
  display: block;
}

.mod-comic-top-information {
  padding: 20px 15px;
  background-color: #f6f6f6;
}

.mod-comic-top-information>.mod-footer {
  padding-top: 10px;
}

.mod-comic-top-information-meta {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.5;
  display: block;
}

.mod-comic-top-information-meta-purchase span {
  color: #0050AD;
}

.mod-comic-top-summary, .mod-comic-top-artist-comment {
  padding-bottom: 18px;
}

.mod-comic-top-summary>.mod-body, .mod-comic-top-artist-comment>.mod-body {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  line-height: 1.57;
  text-align: left;
}

.mod-comic-top-summary>.mod-footer, .mod-comic-top-artist-comment>.mod-footer {
  padding-top: 30px;
  text-align: right;
  z-index: 20;
}

.mod-comic-top-list {
  background-color: #f6f6f6;
  padding: 12px 15px 40px;
  margin-bottom: -40px;
  /* .main padding value cancel */
}

.mod-comic-top-list .mod-nav {
  text-align: right;
  padding: 0 0 10px;
}

.mod-comic-top-list .mod-nav a {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.mod-comic-top-list .mod-nav a:before, .mod-comic-top-list .mod-nav a:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  margin: auto;
  transform: translate(0, -50%);
}

.mod-comic-top-list .mod-nav a:before {
  content: "↑";
  left: -1.25em;
  margin-top: .175em;
}

.mod-comic-top-list .mod-nav a:after {
  content: "↓";
  left: -.75em;
}

.mod-comic-top-list .mod-nav a span {
  border-bottom: 1px solid #0050AD;
}

.mod-comic-top-list .mod-image {
  position: relative;
  z-index: 0;
}

.mod-comic-top-list .mod-image img {
  width: 100%;
  height: auto;
}

.mod-comic-top-list .mod-body {
  position: relative;
  z-index: 10;
}

.mod-comic-top-list .mod-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  height: 50px;
  background-color: #fff;
}

.mod-comic-top-list .mod-flex>.flex-item:nth-child(1) {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: left;
  width: 45px;
  padding-right: 10px;
}

.mod-comic-top-list .mod-flex>.flex-item:nth-child(2) {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: right;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mod-comic-top-list .mod-flex>.flex-item:nth-child(3) {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666;
  text-align: right;
  width: 80px;
  padding-left: 10px;
}

.mod-comic-top-list-item {
  margin-bottom: 15px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  position: relative;
}

.mod-comic-top-list-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
}

.mod-comic-top-list-item:last-child {
  margin-bottom: 0;
}

.mod-comic-top-list-item.is-read:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.5);
}

.mod-comic-top-list-item.is-lock:before, .mod-comic-top-list-item.is-lock:after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}

.mod-comic-top-list-item.is-lock:before {
  background: url(../img/icon_lock.png) 50% 50% no-repeat;
  background-size: 50px auto;
  width: 50px;
  height: 50px;
  z-index: 6;
  top: 6px;
  left: 6px;
}

.mod-comic-top-list-item.is-lock:after {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.3);
}

.mod-comic-top-list-item-data-meta {
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 4px;
}

.mod-comic-top-list-item-data-meta-genre a {
  font-size: 13px;
  font-size: 1.3rem;
  color: #0050AD;
  text-decoration: none;
}

.mod-comic-top-list-item-data-meta-info {
  display: block;
}

.mod-comic-top-list-item-data-meta-info:nth-child(2) {
  padding-top: 5px;
}

/* comic-top-artist */
.mod-comic-top-artist-header-media {
  padding: 10px;
  background-color: #f6f6f6;
  display: flex;
}

.mod-comic-top-artist-header-media .media-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
}

.mod-comic-top-artist-header-media .media-image>span {
  background: 50% 50% no-repeat;
  background-size: 60px auto;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.mod-comic-top-artist-header-media .media-header {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
}

.mod-comic-top-artist-summary {
  margin-top: 16px;
}

.mod-comic-top-artist-summary .mod-image {
  position: relative;
  z-index: 0;
}

.mod-comic-top-artist-summary .mod-image img {
  width: 100%;
  height: auto;
}

.mod-comic-top-artist-summary .mod-header {
  position: relative;
  z-index: 20;
}

.mod-comic-top-artist-summary .mod-body {
  position: relative;
  z-index: 20;
}

.mod-comic-top-artist-summary .mod-flex {
  flex-direction: column;
}

.mod-comic-top-artist-summary .mod-flex>.flex-item {
  text-align: left;
}

.mod-comic-top-artist-summary-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.mod-comic-top-artist-summary-item {
  box-sizing: border-box;
  width: 33.333333%;
  padding: 0 4px 20px;
}

.mod-comic-top-artist-summary-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-comic-top-artist-summary-item-data-meta {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px;
  display: block;
}

.mod-comic-top-artist-summary-item-data-meta-genre a {
  font-size: 11px;
  font-size: 1.1rem;
  color: #0050AD;
  text-decoration: none;
}

.mod-comic-top-artist-summary-item-data-meta-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* login-signup */
.mod-login-signup-form {
  background-color: #fff;
  padding: 0 30px 20px;
}

.mod-login-signup-form>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.5rem;
}

.mod-login-signup-form-item {
  text-align: left;
  position: relative;
}

.mod-login-signup-form-item .form-caption {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: right;
  padding-top: 8px;
}

.mod-login-signup-form-item .form-caption a {
  color: #0050AD;
}

.mod-login-signup-form-item-mail {
  padding-top: 3rem;
}

.mod-login-signup-form-item-mail label.error {
  padding-top: 1em;
}

.mod-login-signup-form-item-password {
  margin-top: 10px;
  padding-top: 1.5rem;
}

.mod-login-signup-form-item-keep-login {
  margin-top: 15px;
}

.mod-login-signup-form .form-error-message,
.mod-login-signup-form label.error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-login-signup-form .keep-login-trigger.is-hidden {
  display: none;
}

.mod-login-signup-form .keep-login-label {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.31;
  display: block;
  padding: 0 0 0 24px;
  position: relative;
  text-align: left;
}

.mod-login-signup-form .keep-login-label:before, .mod-login-signup-form .keep-login-label:after {
  content: "";
  position: absolute;
  top: .1em;
  margin: auto;
  font-size: 0;
  line-height: 1;
}

.mod-login-signup-form .keep-login-label:before {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  left: 0;
}

.mod-login-signup-form .keep-login-label:after {
  display: none;
}

.mod-login-signup-form .keep-login-trigger:checked~.keep-login-label:after {
  display: block;
  background: url(../img/icon_check.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 14px;
  left: 1px;
}

.mod-login-signup-create-account {
  background-color: #F6F6F6;
  padding: 30px 30px 40px;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-login-signup-create-account>.mod-header {
  font-size: 20px;
  font-size: 2.0rem;
  margin-bottom: 10px;
}

.mod-login-signup-create-account>.mod-header span {
  color: #d5364e;
}

.mod-login-signup-create-account-item-separate {
  font-size: 20px;
  font-size: 2.0rem;
  padding: 10px 0;
}

.mod-login-signup-create-account-item-social .btn {
  margin-bottom: 10px;
}

.mod-login-signup-create-account-item-social .btn:last-child {
  margin-bottom: 0;
}

/* signup */
.mod-signup-form {
  background-color: #fff;
  padding: 0 30px 20px;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-signup-form>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-signup-form>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-signup-form>.mod-footer .mod-flex .flex-item {
  display: block;
  width: 50%;
  padding: 0 7.5px;
}

.mod-signup-form>.mod-footer .form-error-message {
  top: 0;
}

.mod-signup-form-item {
  text-align: left;
  position: relative;
}

.mod-signup-form-item .form-caption {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  padding-top: 3px;
}

.mod-signup-form-item .form-caption a {
  color: #666;
}

.mod-signup-form-item-mail {
  padding-bottom: 2rem;
}

.mod-signup-form-item-mail label.error {
  bottom: .5rem;
}

.mod-signup-form-item-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-signup-form-item-password label.error {
  bottom: .5rem;
}

.mod-signup-form-item-password .form-caption {
  position: absolute;
  right: 0;
  bottom: 0.5em;
}

.mod-signup-form-item-re-enter-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-signup-form-item-re-enter-password label.error {
  bottom: .5rem;
}

.mod-signup-form-item-term {
  margin: 15px -30px 0;
  padding: 12px 15px 12px;
  background-color: #f6f6f6;
}

.mod-signup-form-item-term .form-caption {
  padding-top: 10px;
}

.mod-signup-form-item-term .form-caption a {
  color: #0050AD;
}

.mod-signup-form .form-error-message, .mod-signup-form label.error {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-signup-form .term-agree-trigger.is-hidden {
  display: none;
}

.mod-signup-form .term-agree-label {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.31;
  display: block;
  padding: 0 0 0 24px;
  position: relative;
  text-align: left;
}

.mod-signup-form .term-agree-label span {
  color: #d5364e;
}

.mod-signup-form .term-agree-label small {
  font-size: 12px;
  font-size: 1.2rem;
  color: #d5364e;
}

.mod-signup-form .term-agree-label:before, .mod-signup-form .term-agree-label:after {
  content: "";
  position: absolute;
  top: .1em;
  margin: auto;
  font-size: 0;
  line-height: 1;
}

.mod-signup-form .term-agree-label:before {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  left: 0;
}

.mod-signup-form .term-agree-label:after {
  display: none;
}

.mod-signup-form .term-agree-trigger:checked~.term-agree-label:after {
  display: block;
  background: url(../img/icon_check.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 14px;
  left: 1px;
}

/* charge tickets */
.mod-charge-tickets-choose-amount>.mod-header {
  margin-bottom: 15px;
}

.mod-charge-tickets-choose-amount>.mod-footer {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.38;
  color: #666;
  text-align: left;
  padding-top: 20px;
}

.mod-charge-tickets-choose-amount-select .select-wrap {
  box-sizing: boder-box;
  display: block;
  margin: 0 15px;
}

.mod-charge-tickets-choose-amount-select select {
  width: 100%;
}

.mod-charge-tickets-choose-amount-list {
  margin-top: 24px;
  border-top: 1px solid #e9e9e9;
}

.mod-charge-tickets-choose-amount-list>.mod-footer {
  padding: 20px 0 0 0;
}

.mod-charge-tickets-choose-amount-list>.mod-footer .btn {
  margin-bottom: 10px;
}

.mod-charge-tickets-choose-amount-list>.mod-footer .btn:last-child {
  margin-bottom: 0;
}

.mod-charge-tickets-choose-amount-list .list-item {
  text-align: left;
  border-bottom: 1px solid #e9e9e9;
}

.mod-charge-tickets-choose-amount-list-data {
  position: relative;
}

.mod-charge-tickets-choose-amount-list-data .mod-charge-tickets-choose-amount-data-meta {
  font-size: 16px;
  font-size: 1.6rem;
}

.mod-charge-tickets-choose-amount-list-data .mod-charge-tickets-choose-amount-data-meta-price {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  padding: 0 14px;
  margin-top: .1em;
  transform: translate(0, -50%);
}

.mod-charge-tickets-choose-amount-list .purchase-select-radio.is-hidden {
  display: none;
}

.mod-charge-tickets-choose-amount-list .purchase-select-label {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 10;
  display: block;
  padding: 15px 100px 15px 46px;
}

.mod-charge-tickets-choose-amount-list .purchase-select-label:before, .mod-charge-tickets-choose-amount-list .purchase-select-label:after {
  content: "";
  display: block;
  font-size: 0;
  line-height: 1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mod-charge-tickets-choose-amount-list .purchase-select-label:before {
  box-sizing: border-box;
  left: 15px;
  width: 16px;
  height: 16px;
  background-color: #f6f6f6;
  border: 1px solid #d3d3d3;
}

.mod-charge-tickets-choose-amount-list .purchase-select-label:after {
  left: 18px;
  width: 10px;
  height: 10px;
  background-color: #e9e9e9;
}

.mod-charge-tickets-choose-amount-list .purchase-select-radio:checked~.purchase-select-label:after {
  background-color: #666;
}

.mod-charge-tickets-choose-amount-list .purchase-select-name {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  z-index: 10;
  display: block;
  padding: 15px 100px 15px 46px;
}

.mod-charge-tickets-choose-amount-list .purchase-select-name:before {
  content: "";
  display: block;
  font-size: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  left: 19px;
  width: 10px;
  height: 10px;
  background-color: #e9e9e9;
}

/* charged */
.mod-charge-tickets-charged-message {
  padding: 0 30px;
}

.mod-charge-tickets-charged-message>.mod-image {
  width: 144px;
  margin: 25px auto;
}

.mod-charge-tickets-charged-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-charge-tickets-charged-message>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-charge-tickets-charged-message>.mod-footer {
  padding-top: 20px;
}

/* customer support */
.mod-customer-support-nav {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-start;
  margin: 0;
}

.mod-customer-support-nav-wrap {
  box-sizing: border-box;
  width: 100%;
  background-color: #e9e9e9;
  padding: 10px 5px;
}

.mod-customer-support-nav-item {
  width: 33.333333%;
  padding: 0 2.5px;
}

.mod-customer-support-nav-item a {
  box-sizing: border-box;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  display: table;
  width: 100%;
  min-width: 90px;
  text-decoration: none;
  color: #333;
  position: relative;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-customer-support-nav-item a span {
  box-sizing: border-box;
  display: table-cell;
  width: 100%;
  height: 40px;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
}

.mod-customer-support-nav-item a.is-active {
  color: #0050AD;
}

.mod-customer-support-nav-item a.is-active:after {
  content: "";
  height: 3px;
  background-color: #0050AD;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.mod-customer-support-items {
  border-top: 1px solid #e9e9e9;
}

.mod-customer-support-item {
  text-align: left;
}

.mod-customer-support-item-header {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 25px 15px;
  background-color: #fff;
  border-bottom: 1px solid #e9e9e9;
}

.mod-customer-support-item-header a {
  line-height: 1.5;
  display: block;
  margin: -25px -15px;
  padding: 25px 40px 25px 35px;
  text-indent: -20px;
  color: #666;
  text-decoration: none;
  position: relative;
}

.mod-customer-support-item-header a:before {
  content: "";
  display: inline-block;
  font-size: 0;
  line-height: 1;
  margin: auto 10px auto auto;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  background-color: #e9e9e9;
}

.mod-customer-support-item-header a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(135deg) translate(0, 5px);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mod-customer-support-item-header a.is-opened:after {
  transform: rotate(-45deg) translate(-5px, 0);
}

.mod-customer-support-item-body {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.5;
  padding: 25px 15px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e9e9e9;
}

.mod-customer-support-item-body em {
  font-weight: bold;
}

.mod-customer-support-item-body strong {
  color: #d5364e;
}

.mod-customer-support-item-body a {
  color: #0050AD;
  text-decoration: underline;
}

/* my-library */
.mod-my-library-nav {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-start;
  margin: 0;
}

.mod-my-library-nav-wrap {
  box-sizing: border-box;
  width: 100%;
  background-color: #e9e9e9;
  padding: 10px 5px;
}

.mod-my-library-nav-item {
  width: 33.333333%;
  padding: 0 2.5px;
}

.mod-my-library-nav-item a {
  box-sizing: border-box;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  display: table;
  width: 100%;
  min-width: 90px;
  text-decoration: none;
  color: #333;
  position: relative;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.mod-my-library-nav-item a span {
  box-sizing: border-box;
  display: table-cell;
  width: 100%;
  height: 40px;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
}

.mod-my-library-nav-item a.is-active {
  color: #0050AD;
}

.mod-my-library-nav-item a.is-active:after {
  content: "";
  height: 3px;
  background-color: #0050AD;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.mod-my-library {
  padding-top: 0;
}

.mod-my-library .mod-image {
  position: relative;
  z-index: 0;
}

.mod-my-library .mod-image img {
  width: 100%;
  height: auto;
}

.mod-my-library .mod-header {
  position: relative;
  z-index: 20;
}

.mod-my-library .mod-body {
  position: relative;
  z-index: 20;
}

.mod-my-library .mod-flex {
  flex-direction: column;
}

.mod-my-library .mod-flex>.flex-item {
  text-align: left;
}

.mod-my-library-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}

.mod-my-library-item {
  box-sizing: border-box;
  width: 33.333333%;
  padding: 0 4px 20px;
  position: relative;
}

.mod-my-library-item>a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
}

.mod-my-library-item .mod-input {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.mod-my-library-item .mod-input input[type=checkbox] {
  display: none;
}

.mod-my-library-item .mod-input label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.mod-my-library-item .mod-input label:before, .mod-my-library-item .mod-input label:after {
  content: "";
  position: absolute;
  top: 7px;
  margin: auto;
  font-size: 0;
  line-height: 1;
}

.mod-my-library-item .mod-input label:before {
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  border: 1px solid #0050AD;
  background-color: #fff;
  left: 7px;
}

.mod-my-library-item .mod-input label:after {
  display: none;
}

.mod-my-library-item .mod-input input[type=checkbox]:checked~label:after {
  display: block;
  background: url(../img/icon_check.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 21px;
  left: 9px;
}

.mod-my-library-item-data-meta {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 0 4px;
  display: block;
}

.mod-my-library-item-data-meta-name {
  padding-top: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mod-my-library-item-data-meta-ep {
  font-size: 12px;
  font-size: 1.2rem;
  color: #0050AD;
  padding-top: 5px;
}

.mod-my-library-item-data-meta-status {
  padding-top: 5px;
}

.mod-my-library-item-data-meta .icon-read-status {
  font-size: 12px;
  font-size: 1.2rem;
}

.mod-item-control {
  display: flex;
  justify-content: flex-end;
  margin: 24px auto;
  overflow: hidden;
  position: relative;
}

.mod-item-control .btn-item-delete-trigger {
  margin-right: 10px;
  position: relative;
  z-index: 0;
}

.mod-item-control .sort-select {
  width: 70px;
  height: 36px;
  position: relative;
  z-index: 0;
  font-size: 15px;
  font-size: 1.5rem;
  color: #666;
  background-color: #fff;
  border: 1px solid #d3d3d3;
}

.mod-item-control .sort-select:after {
  display: none;
}

.mod-item-control .sort-select select {
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  border: none;
  background-color: transparent;
  padding: 0;
  color: transparent;
}

.mod-item-control .sort-select span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-left: .65em;
}

.mod-item-control .sort-select span:before, .mod-item-control .sort-select span:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  margin: auto;
  transform: translate(0, -50%);
}

.mod-item-control .sort-select span:before {
  content: "↑";
  left: .4em;
}

.mod-item-control .sort-select span:after {
  content: "↓";
  left: .75em;
}

.mod-item-control-confirm {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
}

.mod-item-control-confirm-wrap {
  display: none;
}

.mod-item-control-confirm .btn {
  margin-right: 10px;
}

.mod-item-control-confirm .btn:last-child {
  margin-right: 0;
}

/* modal */
.mod-modal.white-popup {
  position: relative;
  background: #fff;
  width: auto;
  margin: 14px 25px;
}

.mod-modal button.mfp-close {
  background: url(../img/btn_modal_close.png) 0 0 no-repeat;
  width: 38px;
  height: 38px;
  position: absolute;
  top: -14px;
  right: -14px;
  text-indent: -9999px;
  overflow: hidden;
  opacity: 1;
}

.mod-modal .mod-header {
  font-size: 24px;
  font-size: 2.4rem;
  padding: 23px 10px;
  text-align: center;
  box-shadow: 0 2px 0 #d3d3d3;
}

.mod-modal .mod-footer {
  padding: 19px 15px 22px;
}

.mod-modal .mod-footer .grid-inline-block {
  margin: 0 -7.5px;
}

.mod-modal .mod-footer .grid-inline-block .grid-item {
  width: 50%;
  padding: 0 7.5px;
}

.mod-modal .mod-list {
  border-top: 1px solid #e9e9e9;
}

.mod-modal .mod-list .list-item {
  border: 1px solid #e9e9e9;
  border-top: 0;
}

.mod-modal-share-list {
  padding-bottom: 54px;
}

.mod-modal-share-list .list-item a {
  color: #333;
  display: block;
  text-decoration: none;
  position: relative;
}

.mod-modal-share-list .list-item a:after {
  content: "";
  width: 10px;
  height: 10px;
  font-size: 0;
  line-height: 1;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

.mod-modal-share-list-media .media {
  display: table;
  width: 100%;
}

.mod-modal-share-list-media .media-image {
  box-sizing: border-box;
  width: 80px;
  padding: 15px 20px;
  display: table-cell;
  vertical-align: middle;
}

.mod-modal-share-list-media .media-image img {
  width: 100%;
  height: auto;
}

.mod-modal-share-list-media .media-body {
  font-size: 19px;
  font-size: 1.9rem;
  display: table-cell;
  vertical-align: middle;
}

.mod-modal-purchase-list-data {
  position: relative;
}

.mod-modal-purchase-list-data .mod-modal-purchase-list-data-meta-price {
  font-size: 18px;
  font-size: 1.8rem;
  color: #0050AD;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  padding: 0 14px;
  margin-top: .1em;
  transform: translate(0, -50%);
}

.mod-modal-purchase-list-data .mod-modal-purchase-list-data-meta-price small {
  font-size: 14px;
  font-size: 1.4rem;
}

.mod-modal-purchase-list .purchase-select-radio.is-hidden {
  display: none;
}

.mod-modal-purchase-list .purchase-select-label {
  font-size: 19px;
  font-size: 1.9rem;
  position: relative;
  z-index: 10;
  display: block;
  padding: 25px 100px 22px 46px;
}

.mod-modal-purchase-list .purchase-select-label:before, .mod-modal-purchase-list .purchase-select-label:after {
  content: "";
  display: block;
  font-size: 0;
  line-height: 1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mod-modal-purchase-list .purchase-select-label:before {
  box-sizing: border-box;
  left: 15px;
  width: 16px;
  height: 16px;
  background-color: #f6f6f6;
  border: 1px solid #d3d3d3;
}

.mod-modal-purchase-list .purchase-select-label:after {
  left: 18px;
  width: 10px;
  height: 10px;
  background-color: #e9e9e9;
}

.mod-modal-purchase-list .purchase-select-radio:checked~.purchase-select-label:after {
  background-color: #666;
}

.mod-modal-purchase-list .purchase-select-name {
  font-size: 19px;
  font-size: 1.9rem;
  position: relative;
  z-index: 10;
  display: block;
  padding: 25px 100px 22px 46px;
}

.mod-modal-purchase-list .purchase-select-name:before {
  content: "";
  display: block;
  font-size: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  left: 19px;
  width: 10px;
  height: 10px;
  background-color: #e9e9e9;
}

.mod-modal-purchase-current-ticekts {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 14px 16px;
  text-align: right;
}

.mod-modal-purchase-subscribe {
  background-color: #e9e9e9;
}

.mod-modal-purchase-subscribe .subscribe-check-trigger.is-hidden {
  display: none;
}

.mod-modal-purchase-subscribe .subscribe-check-label {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  padding: 16px 6px 16px 48px;
  position: relative;
  text-align: left;
}

.mod-modal-purchase-subscribe .subscribe-check-label:before, .mod-modal-purchase-subscribe .subscribe-check-label:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 0;
  line-height: 1;
}

.mod-modal-purchase-subscribe .subscribe-check-label:before {
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  left: 14px;
}

.mod-modal-purchase-subscribe .subscribe-check-label:after {
  display: none;
}

.mod-modal-purchase-subscribe .subscribe-check-trigger:checked~.subscribe-check-label:after {
  display: block;
  background: url(../img/icon_check.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 21px;
  left: 16px;
}

.mod-modal-dialog .mfp-close {
  display: none;
}

.mod-modal-dialog>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
  padding: 30px 0 0;
}

.mod-modal-dialog>.mod-body em {
  font-size: 34px;
  font-size: 3.4rem;
  display: block;
  line-height: 1.18;
}

.mod-modal-dialog>.mod-footer {
  padding-top: 40px;
}

/* pc-site */
.mod-pc-site-information {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: -40px;
  transform: translate(0, -50%);
}

.mod-pc-site-information>.mod-header {
  padding: 30px 0 98px;
  margin-bottom: -80px;
}

.mod-pc-site-information>.mod-footer {
  font-size: 31px;
  line-height: 1.16;
  padding: 28px 0 0;
  color: #fff;
}

.mod-pc-site-information .logo-pc-site {
  width: 740px;
  max-width: 100%;
}

.mod-pc-site-information .logo-pc-site img {
  width: 100%;
  height: auto;
}

.mod-pc-site-top-items {
  position: absolute;
  z-index: 10;
  top: 54px;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-pc-site-top-item {
  display: flex;
  font-size: 0;
  letter-spacing: normal;
  line-height: 1;
  justify-content: center;
  align-items: flex-start;
}

.mod-pc-site-top-item img {
  width: 16.666666667%;
}

.mod-pc-site-bottom-items {
  position: absolute;
  z-index: 10;
  bottom: 90px;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-pc-site-bottom-item {
  display: flex;
  font-size: 0;
  letter-spacing: normal;
  line-height: 1;
  justify-content: center;
  align-items: flex-end;
}

.mod-pc-site-bottom-item img {
  width: 16.666666667%;
}

/* ==========================================================================
   align
   ========================================================================== */
.al-l {
  text-align: left;
}

.al-r {
  text-align: right;
}

.al-c {
  text-align: center;
}

/* ==========================================================================
   clearfix
   ========================================================================== */
.clf {
  *zoom: 1;
}

.clf:before, .clf:after {
  display: table;
  content: "";
  line-height: 0;
}

.clf:after {
  clear: both;
}

/* ==========================================================================
   display
   ========================================================================== */
.inline {
  display: inline;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

/* ==========================================================================
   float
   ========================================================================== */
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

.fl-clr {
  clear: both;
}

/* ==========================================================================
   letter-spacing
   ========================================================================== */
.ls-0 {
  letter-spacing: 0;
}

.ls-s {
  letter-spacing: .1em;
}

.ls-m {
  letter-spacing: .2em;
}

.ls-l {
  letter-spacing: .3em;
}

/* ==========================================================================
   line-height
   ========================================================================== */
.lh-0 {
  line-height: 0;
}

.lh-1 {
  line-height: 1;
}

.lh-s {
  line-height: 1.2;
}

.lh-m {
  line-height: 1.4;
}

.lh-l {
  line-height: 1.6;
}

.lh-xl {
  line-height: 1.8;
}

.lh-xxl {
  line-height: 2.0;
}

/* ==========================================================================
   list-style
   ========================================================================== */
.lst {
  list-style-position: inside;
}

.lst>li {
  text-indent: -1.7em;
  padding-left: 1.7em;
}

/* マーカーなし */
.lst-none {
  list-style-type: none;
}

/* 黒丸 */
.lst-disc {
  list-style-type: disc;
}

/* 白丸 */
.lst-circle {
  list-style-type: circle;
}

/* 黒四角 */
.lst-square {
  list-style-type: square;
}

/* 小文字のローマ数字 */
.lst-lower-roman {
  list-style-type: lower-roman;
}

/* 大文字のローマ数字 */
.lst-upper-roman {
  list-style-type: upper-roman;
}

/* 小文字のギリシャ文字 */
.lst-lower-greek {
  list-style-type: lower-greek;
}

/* 算用数字 */
.lst-decimal {
  list-style-type: decimal;
}

/* 算用数字()付き */
.lst-decimal-with-brackets {
  list-style-type: none;
  padding-left: 2em;
  margin: 0;
}

.lst-decimal-with-brackets li {
  list-style-position: inside;
  counter-increment: cnt;
}

.lst-decimal-with-brackets li:before {
  display: marker;
  content: "("counter(cnt) ")";
}

/* 先頭に0をつけた算用数字 */
.lst-decimal-leading-zero {
  list-style-type: decimal-leading-zero;
}

/* 小文字のアルファベット */
.lst-lower-latin {
  list-style-type: lower-latin;
}

/* 小文字のアルファベット */
.lst-lower-alpha {
  list-style-type: lower-alpha;
}

/* 大文字のアルファベット */
.lst-upper-latin {
  list-style-type: upper-latin;
}

/* 大文字のアルファベット */
.lst-upper-alpha {
  list-style-type: upper-alpha;
}

/* 漢数字 */
.lst-cjk-ideographic {
  list-style-type: cjk-ideographic;
}

/* ひらがなのあいうえお順 */
.lst-hiragana {
  list-style-type: hiragana;
}

/* カタカナのアイウエオ順 */
.lst-katakana {
  list-style-type: katakana;
}

/* ひらがなのいろはにほへと順 */
.lst-hiragana-iroha {
  list-style-type: hiragana-iroha;
}

/* カタカナのイロハニホヘト順 */
.lst-katakana-iroha {
  list-style-type: katakana-iroha;
}

/* ヘブライ数字 */
.lst-hebrew {
  list-style-type: hebrew;
}

/* アルメニア数字 */
.lst-armenian {
  list-style-type: armenian;
}

/* グルジア数字 */
.lst-georgian {
  list-style-type: georgian;
}

/* ==========================================================================
   Margin and Paddings
   ========================================================================== */
.mt-00 {
  margin-top: 0px;
}

.mt-05 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mr-00 {
  margin-right: 0px;
}

.mr-05 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.mb-00 {
  margin-bottom: 0px;
}

.mb-05 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-00 {
  margin-left: 0px;
}

.ml-05 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

/*****  padding  *****/
.pt-00 {
  padding-top: 0px;
}

.pt-05 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pr-00 {
  padding-right: 0px;
}

.pr-05 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-100 {
  padding-right: 100px;
}

.pb-00 {
  padding-bottom: 0px;
}

.pb-05 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-00 {
  padding-left: 0px;
}

.pl-05 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-100 {
  padding-left: 100px;
}

/* ==========================================================================
   postion
   ========================================================================== */
.pos-a {
  position: absolute;
}

.pos-r {
  position: relative;
}

.pos-s {
  position: static;
}

.pos-f {
  position: fixed;
}

.pos-center {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.pos-middle {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

/* ==========================================================================
   size
   ========================================================================== */
.size-full {
  width: 100%;
}

/* ==========================================================================
   text
   ========================================================================== */
.ff-gothic {
  font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.ff-mincho {
  font-family: "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", Meiryo, serif;
}

.fw-b {
  font-weight: bold;
}

.fz-00 {
  font-size: 0;
}

.fz-05 {
  font-size: 5px;
  font-size: 0.5rem;
}

.fz-06, .fz-XXS {
  font-size: 6px;
  font-size: 0.6rem;
}

.fz-08, .fz-XS {
  font-size: 8px;
  font-size: 0.8rem;
}

.fz-09 {
  font-size: 9px;
  font-size: 0.9rem;
}

.fz-10, .fz-S {
  font-size: 10px;
  font-size: 1.0rem;
}

.fz-11 {
  font-size: 11px;
  font-size: 1.1rem;
}

.fz-12, .fz-M {
  font-size: 12px;
  font-size: 1.2rem;
}

.fz-13 {
  font-size: 13px;
  font-size: 1.3rem;
}

.fz-14, .fz-L {
  font-size: 14px;
  font-size: 1.4rem;
}

.fz-15 {
  font-size: 15px;
  font-size: 1.5rem;
}

.fz-16, .fz-XL {
  font-size: 16px;
  font-size: 1.6rem;
}

.fz-18, .fz-XXL {
  font-size: 18px;
  font-size: 1.8rem;
}

.fz-19 {
  font-size: 19px;
  font-size: 1.9rem;
}

.fz-20 {
  font-size: 20px;
  font-size: 2.0rem;
}

.fz-21 {
  font-size: 21px;
  font-size: 2.1rem;
}

.fz-22 {
  font-size: 22px;
  font-size: 2.2rem;
}

.fz-24 {
  font-size: 24px;
  font-size: 2.4rem;
}

.fz-26 {
  font-size: 26px;
  font-size: 2.6rem;
}

.fz-27 {
  font-size: 27px;
  font-size: 2.7rem;
}

.fz-36 {
  font-size: 36px;
  font-size: 3.6rem;
}

.fz-40 {
  font-size: 40px;
  font-size: 4.0rem;
}

.fz-48 {
  font-size: 48px;
  font-size: 4.8rem;
}

.fz-50 {
  font-size: 50px;
  font-size: 5.0rem;
}

.fz-72 {
  font-size: 72px;
  font-size: 7.2rem;
}

.fz-85 {
  font-size: 85px;
  font-size: 8.5rem;
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★新規作成ページ用CSS★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★btn関係★★★★★★★★★★★★★★*/
/* password-assistance */
.btn-login {
  width: 315px;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
}

/* deactivate */
.btn-deactivate-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-deactivate-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* deactivating */
.btn-deactivating-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-deactivating-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* terms */
.btn-terms {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* perivacy */
.btn-privacy {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* deactivarion */
.btn-deactivation {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* sign-up-comp */
.btn-sign-up-comp {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* password-sent */
.btn-password-sent {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.modal-btn-password-sent {
  width: 50%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* pwreset */
.btn-pwreset-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-pwreset-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* regsent */
.btn-regsent {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.modal-btn-regsent {
  width: 50%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-resend-the-email {
  background-color: white;
}

/* cemail */
.btn-cemail-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-cemail-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* cpass */
.btn-cpass-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-cpass-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* age */
.btn-age-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-age-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* payment */
.btn-payment-cancel {
  width: 100%;
  height: 50px;
  background-color: #666;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.btn-payment-confirm {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

.modal-btn-payment {
  width: 50%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* error page*/
.btn-error-page {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* ticket charge history*/
.btn-history-back {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #0050AD;
  height: 50px;
  width: 50%;
  text-align: center;
  line-height: 50px;
}

.btn-history-seemore {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: 700;
  color: #fff;
  background-color: #0050AD;
  height: 35px;
  width: 30%;
  text-align: center;
  line-height: 35px;
}

/* nortification*/
.btn-nortification {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* about*/
.btn-about {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* error page*/
.btn-lp {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/* Landing Page */
.btn-lp {
  width: 100%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 50px;
  text-align: center;
}

/*★★★★★★★★★★★★★★article関係★★★★★★★★★★★★★★*/
/* password-assistance */
.article-password-assistance .article-header {
  padding: 25px 10px 15px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.password-assistance-main {
  padding-bottom: 10px;
}

/* deactivate */
.article-deactivate .article-header {
  padding: 25px 15px 10px 5px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-deactivate .article-header small {
  display: block;
  padding: 12px 15px 15px 2px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* deactivating */
.article-deactivating .article-header {
  padding: 25px 15px 10px 5px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-deactivating .article-header small {
  display: block;
  padding: 12px 15px 15px 2px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* terms */
.article-terms .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-terms .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* privacy */
.article-privacy .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-privacy .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* deactivation */
.article-deactivation .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-deactivation .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* sign-up-comp */
.article-sign-up-comp .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-sign-up-comp .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* password-sent */
.article-password-sent .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-password-sent .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* pwreset */
.article-pwreset .article-header {
  padding: 25px 6px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* regsent */
.article-regsent .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-regsent .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* cemail */
.article-cemail .article-header {
  padding: 25px 6px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* cpass */
.article-cpass .article-header {
  padding: 25px 6px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* age */
.article-age .article-header {
  padding: 25px 10px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* payment */
.article-payment .article-header {
  padding: 25px 6px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* error page */
.article-error-page .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-error-page .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* maintenance */
.article-maintenance .article-header {
  padding: 0px 15px 0px;
  margin-top: -20px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-maintenance .article-footer {
  position: relative;
  clear: both;
}

.article-footer .article-footer-inner {
  background-color: #0050AD;
  padding: 24px 30px 16px;
}

/* turn-on-javascript */
.article-turn-on-javascript .article-header {
  padding: 0px 15px 0px;
  margin-top: -20px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.footer-inner-turn-on-javascript {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #0050AD;
  padding: 24px 30px 16px;
  height: 130px;
}

.footer-inner-turn-on-javascript .copyright {
  margin-top: 70px;
}

/* information */
.article-information .article-header {
  padding: 25px 6px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* history */
.article-history .article-header {
  padding: 25px 6px 30px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

/* nortification */
.article-nortification .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-nortification .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* about */
.article-about .article-header {
  padding: 25px 15px 10px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: -.02em;
}

.article-about .article-header small {
  display: block;
  padding: 12px 15px 15px;
  background-color: #f6f6f6;
  color: #0050ad;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

/* Landing Page */
.article-lp .article-header {
  font-size: 32px;
  font-size: 3.2rem;
  padding-right: 10px;
}

.article-lp .article-header img {
  margin-top: -40px;
  margin-left: -10px;
  height: auto;
  width: 100%;
}

/*★★★★★★★★★★★★★★mod関係★★★★★★★★★★★★★★*/
/* password-assistance */
.mod-password-assistance-form {
  padding: 10px 30px 30px;
  background-color: #fff;
}

.mod-password-assistance-form .mod-body .form-error-message p {
  font-size: 12px;
}

.mod-password-assistance-form>.mod-body>.mod-password-assistance-form-item>.password-assistance-main-message {
  font-size: 18px;
  padding-bottom: 10px;
  padding-top: 20px;
}

.mod-password-assistance-form .mod-footer {
  position: relative;
  font-size: 14px;
  margin-top: 15px;
  padding-top: 1.5rem;
}

.mod-password-assistance-form .mod-footer em {
  font-weight: 700;
}

.mod-password-assistance-form-item {
  position: relative;
  text-align: left;
}

.mod-password-assistance-form-item .form-caption {
  font-size: 13px;
  font-size: 1.3rem;
  padding-top: 8px;
  text-align: right;
}

.mod-password-assistance-form-item .form-caption a {
  color: #0050ad;
}

.mod-password-assistance-form label.error {
  position: absolute;
  top: 55;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 13px;
}

.mod-password-assistance-form .form-error-message {
  position: absolute;
  font-size: 13px;
}

/* deactivate */
.mod-deactivate-form {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-deactivate-form>.mod-footer {
  position: relative;
  padding-top: .50rem;
}

.mod-deactivate-form>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-deactivate-form>.mod-footer .mod-flex .flex-item {
  display: block;
  width: 50%;
  padding: 0 7.5px;
}

.mod-deactivate-choose-reason-list {
  border-top: 1px solid #e9e9e9;
}

.mod-deactivate-choose-reason-list .list-item {
  border-bottom: 1px solid #e9e9e9;
  text-align: left;
}

.mod-deactivate-choose-reason-list-data {
  position: relative;
}

.mod-deactivate-choose-reason-list-data .mod-deactivate-choose-reason-data-meta {
  font-size: 16px;
  font-size: 1.6rem;
}

.mod-deactivate-choose-reason-list-data .mod-deactivate-choose-reason-data-meta-price {
  z-index: 0;
  position: absolute;
  top: 50%;
  right: 0;
  padding: 0 14px;
  margin-top: .1em;
  transform: translate(0, -50%);
}

.mod-deactivate-choose-reason-list .reason-select-radio.is-hidden {
  display: none;
}

.mod-deactivate-choose-reason-list .reason-select-label {
  display: block;
  z-index: 10;
  position: relative;
  padding: 15px 5px 15px 40px;
  font-size: 14px;
  font-size: 1.4rem;
}

.mod-deactivate-choose-reason-list .reason-select-label:before, .mod-deactivate-choose-reason-list .reason-select-label:after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  content: "";
  font-size: 0;
  line-height: 1;
}

.mod-deactivate-choose-reason-list .reason-select-label:before {
  left: 15px;
  width: 16px;
  height: 16px;
  background-color: #f6f6f6;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
}

.mod-deactivate-choose-reason-list .reason-select-label:after {
  left: 18px;
  width: 10px;
  height: 10px;
  background-color: #e9e9e9;
}

.mod-deactivate-choose-reason-list .reason-select-radio:checked~.reason-select-label:after {
  background-color: #666;
}

.mod-deactivate-choose-reason-list .reason-select-name {
  display: block;
  z-index: 10;
  position: relative;
  padding: 15px 100px 15px 46px;
  font-size: 16px;
  font-size: 1.6rem;
}

.mod-deactivate-choose-reason-list .reason-select-name:before {
  display: block;
  position: absolute;
  top: 0;
  left: 19px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: #e9e9e9;
  box-sizing: border-box;
  content: "";
  font-size: 0;
  line-height: 1;
}

.mod-deactivate-choose-reason-list-data textarea {
  width: 100%;
  margin-bottom: 25px;
}

.mod-terms-body-item .mod-terms-body-item-main-message p {
  font-size: 18px;
  line-height: 90%;
}

.mod-terms-body-item .form-error-message p {
  padding-top: 10px;
  text-align: center;
}

.mod-footer .form-error-message p {
  padding-bottom: 5px;
}

/* deactivating */
.mod-deactivating-form {
  padding: 0 30px 20px;
  background-color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}

.mod-deactivating-form p {
  font-size: 16px;
}

.mod-deactivating-form>.mod-footer {
  position: relative;
  padding-top: 1.75rem;
}

.mod-deactivating-form>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-deactivating-form>.mod-footer .mod-flex .flex-item {
  display: block;
  width: 50%;
  padding: 0 7.5px;
}

/* terms */
.mod-terms-message {
  padding: 0 30px;
}

.mod-terms-message>.mod-image {
  width: 144px;
  margin: 25px auto;
}

.mod-terms-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-terms-message>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-terms-message>.mod-footer {
  padding-top: 20px;
}

.mod-terms-effects {
  padding: 10px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: right;
}

.mod-terms-effects em {
  font-weight: bold;
  text-decoration: underline;
}

.mod-terms-body-item {
  padding: 10px 15px;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: left;
}

.mod-terms-body-item em {
  font-weight: bold;
}

.mod-terms-body-item strong {
  color: #d5364e;
}

.mod-terms-item-body a {
  color: #0050ad;
  text-decoration: underline;
}

/* privacy */
.mod-privacy-message {
  padding: 0 30px;
}

.mod-privacy-message>.mod-image {
  width: 144px;
  margin: 25px auto;
}

.mod-privacy-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-privacy-message>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-privacy-message>.mod-footer {
  padding-top: 20px;
}

.mod-privacy-effects {
  padding: 10px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: right;
}

.mod-privacy-effects em {
  font-weight: bold;
  text-decoration: underline;
}

.mod-privacy-body-item {
  padding: 10px 15px;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: left;
}

.mod-privacy-body-item em {
  font-weight: bold;
}

.mod-privacy-body-item strong {
  color: #d5364e;
}

.mod-privacy-item-body a {
  color: #0050ad;
  text-decoration: underline;
}

/* deactivation */
.mod-deactivation-message {
  padding: 0 30px;
}

.mod-deactivation-message>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-deactivation-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-deactivation-message>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-deactivation-message>.mod-footer {
  padding-top: 20px;
}

.mod-deactivation-effects {
  padding: 10px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: right;
}

.mod-deactivation-effects em {
  font-weight: bold;
  text-decoration: underline;
}

.mod-deactivation-body-item {
  padding: 10px 15px;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: left;
}

.mod-deactivation-body-item em {
  font-weight: bold;
}

.mod-deactivation-body-item strong {
  color: #d5364e;
}

.mod-deactivation-item-body a {
  color: #0050ad;
  text-decoration: underline;
}

/* sign-up-comp */
.mod-sign-up-comp-message {
  padding: 0 30px;
}

.mod-sign-up-comp-message>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-sign-up-comp-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-sign-up-comp-message em {
  font-weight: bole;
}

.mod-sign-up-comp-message>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-sign-up-comp-message>.mod-footer {
  padding-top: 20px;
}

/* password-sent */
.mod-password-sent-message {
  padding: 0 30px;
}

.mod-password-sent-message>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-password-sent-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-password-sent-message>.mod-body {
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 20px;
  text-align: center;
}

.mod-password-sent-message>.mod-footer {
  padding-top: 50px;
}

.mod-password-sent-message>.mod-body .user-email-address {
  color: red;
}

.mod-password-sent-body-item {
  padding: 40px 15px 0;
  color: #666;
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 1.5;
  text-align: left;
}

.mod-password-sent-body-item em {
  font-weight: bold;
}

.mod-password-sent-body-item strong {
  color: #d5364e;
}

.mod-password-sent-item-body a {
  color: #0050ad;
  text-decoration: underline;
}

.mod-password-sent-message>.mod-footer p {
  padding: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
}

/* pwreset */
.mod-pwreset {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-pwreset>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-pwreset>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-pwreset>.mod-footer .mod-flex .flex-item {
  display: block;
  width: 100%;
  padding: 0 7.5px;
}

.mod-pwreset>.mod-footer .form-error-message {
  top: 0;
}

.mod-pwreset-item {
  position: relative;
  text-align: left;
  margin-bottom: 15px;
}

.mod-pwreset-item .form-caption {
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 3px;
  text-align: right;
}

.mod-pwreset-item .form-caption a {
  color: #666;
}

.mod-pwreset-item-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-pwreset-item-password .form-caption {
  position: absolute;
  right: 0;
  bottom: .5em;
}

.mod-pwreset-item-re-enter-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-pwreset-item-re-enter-password label.error {
  bottom: .5rem;
}

.mod-pwreset .mod-pwreset-item-password label.error {
  position: absolute;
  margin-top: 4rem;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-pwreset .mod-pwreset-item-re-enter-password label.error {
  position: absolute;
  margin-top: 2rem;
  left: 0;
  right: 0;
  margin: auto;
  bottom: .5rem;
}

.mod-pwreset .mod-pwreset-item-password label.error {
  margin-top: 1.5rem;
}

.mod-pwreset-email-address {
  margin-top: 5px;
  margin-bottom: 4.5rem;
}

.mod-pwreset-email-address-title {
  font-size: 12px;
  font-size: 1.2rem;
  padding-bottom: 3px;
  text-align: left;
}

.mod-pwreset-email-address-data {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
}

/* regsent */
.mod-regsent-message {
  padding: 0 30px;
}

.mod-regsent-message>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-regsent-message>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-regsent-message>.mod-body {
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 20px;
  text-align: center;
}

.mod-regsent-message>.mod-body .user-email-address {
  color: red;
}

.mod-regsent-message>.mod-footer {
  padding-top: 50px;
}

.mod-regsent-message>.mod-footer p {
  padding: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
}

/* cemail */
.mod-cemail {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-cemail>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-cemail>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-cemail>.mod-footer .mod-flex .flex-item {
  display: block;
  margin-top: 1.5rem;
  width: 50%;
  padding: 0 7.5px;
}

.mod-cemail-item {
  position: relative;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}

.mod-cemail-item .form-caption {
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 3px;
  text-align: right;
}

.mod-cemail-item .form-caption a {
  color: #666;
}

.mod-cemail-item-mail {
  padding-bottom: .5rem;
}

.mod-cemail-item-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-cemail-item-password .form-caption {
  position: absolute;
  right: 0;
  bottom: .5em;
}

.mod-cemail-item-re-enter-mail {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-cemail-item-re-enter-mail label.error {
  bottom: .5rem;
}

.mod-cemail-item-term .form-caption {
  padding-top: 10px;
}

.mod-cemail-item-term .form-caption a {
  color: #0050ad;
}

.mod-cemail .form-error-message, .mod-cemail label.error {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-cemail-item-password label.error {
  margin-top: 1.5rem;
}

.mod-cemail-email-address {
  margin-top: 5px;
  padding-bottom: 1.5rem;
}

.mod-cemail-email-address-title {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 3px;
  text-align: left;
}

.mod-cemail-email-address-data {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
}

/* cpass */
.mod-cpass {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-cpass>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-cpass>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-cpass>.mod-footer .mod-flex .flex-item {
  display: block;
  margin-top: 1.5rem;
  width: 50%;
  padding: 0 7.5px;
}

.mod-cpass-item {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}

.mod-cpass-item .form-caption {
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 3px;
  text-align: right;
}

.mod-cpass-item .form-caption a {
  color: #666;
}

.mod-cpass-item-mail {
  padding-bottom: .5rem;
}

.mod-cpass-item-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-cpass-item-password .form-caption {
  position: absolute;
  right: 0;
  bottom: .5em;
}

.mod-cpass-item-term .form-caption {
  padding-top: 10px;
}

.mod-cpass-item-term .form-caption a {
  color: #0050ad;
}

.mod-cpass .form-error-message, .mod-cpass label.error {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-cpass-item-pass label.error {
  margin-top: 1.5rem;
}

/* age */
.mod-age-form {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-age-form>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-age-form>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-age-form>.mod-footer .mod-flex .flex-item {
  display: block;
  width: 50%;
  padding: 10px 7.5px 0;
}

.mod-age-form>.mod-footer .form-error-message {
  top: 0;
  margin-top: -8px;
}

.mod-age-form>.mod-footer .user-notice {
  font-size: 12px;
  font-size: 1.2rem;
}

.mod-age-form>.mod-footer .user-notice span {
  color: #d5364e;
}

.mod-age-form-item {
  position: relative;
  text-align: left;
}

.mod-age-form-item input {
  text-align: center;
}

.mod-age-form-item .form-caption {
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 3px;
  text-align: right;
}

.mod-age-form-item .form-caption a {
  color: #666;
}

.mod-age-form-item-mail {
  padding-bottom: 2rem;
}

.mod-age-form-item-mail label.error {
  bottom: .5rem;
}

.mod-age-form-item-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-age-form-item-password label.error {
  bottom: .5rem;
}

.mod-age-form-item-password .form-caption {
  position: absolute;
  right: 0;
  bottom: .5em;
}

.mod-age-form-item-re-enter-password {
  margin-top: 5px;
  padding-bottom: 2rem;
}

.mod-age-form-item-re-enter-password label.error {
  bottom: .5rem;
}

.mod-age-form-item-privacy {
  margin: 15px -30px 0;
  padding: 12px 15px 12px;
  background-color: #f6f6f6;
}

.mod-age-form-item-privacy .form-caption {
  padding-top: 10px;
}

.mod-age-form-item-privacy .form-caption a {
  color: #0050ad;
}

.mod-age-form .form-error-message, .mod-age-form label.error {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-age-form .privacy-agree-trigger.is-hidden {
  display: none;
}

.mod-age-form .privacy-agree-label {
  display: block;
  position: relative;
  padding: 0 0 0 24px;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.31;
  text-align: left;
}

.mod-age-form .privacy-agree-label span {
  color: #d5364e;
}

.mod-age-form .privacy-agree-label small {
  color: #d5364e;
  font-size: 12px;
  font-size: 1.2rem;
}

.mod-age-form .privacy-agree-label:before, .mod-age-form .privacy-agree-label:after {
  position: absolute;
  top: .1em;
  margin: auto;
  content: "";
  font-size: 0;
  line-height: 1;
}

.mod-age-form .privacy-agree-label:before {
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
}

.mod-age-form .privacy-agree-label:after {
  display: none;
}

.mod-age-form .privacy-agree-trigger:checked~.privacy-agree-label:after {
  display: block;
  left: 1px;
  width: 16px;
  height: 14px;
  background: url(../img/icon_check.png) 0 0 no-repeat;
  background-size: 100% auto;
}

.mod-age-form-items .mod-age-form-item {
  margin-top: 5px;
  padding-bottom: 2.5rem;
}

.mod-age-form-item-title {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 3px;
  text-align: left;
}

.mod-age-form-item-title-detail {
  font-size: 12px;
  font-size: 1.2rem;
}

.form input[type=number] {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  font-size: 18px;
  font-size: 1.8rem;
}

.form input[type=number]:focus {
  border-color: #0050ad;
  outline: 0;
}

.form input[type=number].is-not-empty {
  border-color: #0050ad;
}

.form-error-message, .form label.error {
  position: absolute;
  display: block;
  color: #d5364e;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

/* payment */
.mod-payment {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-payment>.mod-header {
  border-bottom: 5px solid #e9e9e9;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  margin-bottom: 30px;
}

.mod-payment>.mod-header h3 {
  margin-bottom: 2rem;
  text-align: left;
}

.mod-payment>.mod-header span {
  float: left;
  text-align: left;
}

.mod-payment>.mod-header p {
  text-align: right;
}

.mod-payment>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-payment>.mod-footer .mod-flex {
  display: flex;
  margin: 0 -7.5px;
}

.mod-payment>.mod-footer .mod-flex .flex-item {
  display: block;
  width: 50%;
  padding: 0 7.5px;
}

.mod-payment>.mod-footer .form-error-message {
  top: 0;
}

.mod-payment-items {
  position: relative;
  margin-top: 15px;
  text-align: left;
}

.mod-payment-items input {
  text-align: center;
}

.mod-payment-items .form-caption {
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 3px;
  text-align: right;
}

.mod-payment-items .form-caption a {
  color: #666;
}

.mod-payment-saved-card-data {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #8c8c8c;
  box-sizing: border-box;
  color: #333;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  background-color: #666;
  color: #FFF;
  font-weight: bold;
}

.mod-payment-saved-card-data-details {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  line-height: normal;
  border: 1px solid #8c8c8c;
  margin-bottom: 20px;
  padding-left: 30px;
}

.mod-payment-new-card-data-details {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  line-height: normal;
  border: 1px solid #8c8c8c;
  padding: 0 10px 10px;
}

.mod-payment-item-cardnumber {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.mod-payment-item-cardnumber p {
  font-size: 16px;
  font-size: 1.6rem;
}

.mod-payment-item-expire {
  padding-bottom: 2rem;
}

.mod-payment-item-expire p {
  font-size: 14px;
  font-size: 1.4rem;
}

.mod-payment-item-expire span {
  padding-left: 5.5px;
  font-size: 20px;
}

.mod-payment-item-expire #expire-month {
  float: left;
  width: 30%;
}

.mod-payment-item-expire #expire-year {
  width: 30%;
}

.mod-payment-item-security {
  width: 100%;
  margin-left: -5.5rem;
  padding-bottom: 2rem;
}

.mod-payment-item-security p {
  float: left;
  font-size: 14px;
  font-size: 1.4rem;
}

.mod-payment-item-security a {
  float: right;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 1rem;
}

.mod-payment-item-savecard {
  margin-top: 5px;
}

.mod-payment-item-savecard .form-error-message,
.mod-payment-item-savecard label.error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.mod-payment-item-savecard .payment-trigger.is-hidden {
  display: none;
}

.mod-payment-item-savecard .payment-label {
  display: block;
  position: relative;
  padding: 0 0 0 24px;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.31;
  text-align: left;
}

.mod-payment-item-savecard .payment-label:before, .mod-payment-item-savecard .payment-label:after {
  position: absolute;
  top: .1em;
  margin: auto;
  content: "";
  font-size: 0;
  line-height: 1;
}

.mod-payment-item-savecard .payment-label:before {
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
}

.mod-payment-item-savecard .payment-label:after {
  display: none;
}

.mod-payment-item-savecard .payment-trigger:checked~.payment-label:after {
  display: block;
  left: 1px;
  width: 16px;
  height: 14px;
  background: url(../img/icon_check.png) 0 0 no-repeat;
  background-size: 100% auto;
}

.mod-body-payment .mod-modal-payment img {
  width: 100%;
  height: auto;
  margin-bottom: -25px;
  margin-top: -25px;
}

#expire-month-error {
  position: absolute;
  display: block;
  padding-top: 44px;
  color: #d5364e;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

#expire-year-error {
  position: absolute;
  display: block;
  color: #d5364e;
  padding-top: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.mod-charge-tickets-choose-amount-list .card-select-radio.is-hidden {
  display: none;
}

.mod-charge-tickets-choose-amount-list .card-select-radio:checked~.purchase-select-label:after {
  background-color: #666;
}

.mod-modal-purchase-list .card-select-radio.is-hidden {
  display: none;
}

.mod-modal-purchase-list .card-select-radio:checked~.purchase-select-label:after {
  background-color: #666;
}

/* error-page */
.mod-error-page {
  padding: 0 30px;
}

.mod-error-page>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-error-page>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-error-page em {
  font-weight: bole;
}

.mod-error-page>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-error-page>.mod-footer {
  padding-top: 20px;
}

/* maintenance */
.mod-maintenance {
  padding: 0 30px;
}

.mod-maintenance>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-maintenance>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-maintenance em {
  font-weight: bold;
}

.mod-maintenance>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-maintenance>.mod-footer {
  padding-top: 20px;
}

/* turn on javascript */
.mod-turn-on-javascript {
  padding: 0 30px;
}

.mod-turn-on-javascript>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-turn-on-javascript>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-turn-on-javascript em {
  font-weight: bold;
}

.mod-turn-on-javascript>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-turn-on-javascript>.mod-footer {
  padding-top: 20px;
}

/* information */
.mod-information {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-information>.mod-header {
  border-bottom: 5px solid #e9e9e9;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  margin-bottom: 30px;
}

.mod-information>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-information-items {
  position: relative;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
}

.mod-information-items a {
  font-size: 14px;
  font-size: 1.4rem;
}

.mod-information-items span {
  text-align: center;
}

.mod-information-items .form-caption {
  font-size: 18px;
  font-size: 1.8rem;
  padding-top: 3px;
  text-align: right;
}

.mod-information-items .form-caption a {
  color: #666;
}

.mod-information-item-password .form-caption {
  position: absolute;
  right: 0;
  bottom: .5em;
}

.mod-information-id-data {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mod-information-password-data {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mod-information-information-data {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mod-information-ticketshistory-data-date {
  float: left;
  display: block;
  width: 50%;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
}

.mod-information-ticketshistory-data-amount {
  float: left;
  display: block;
  width: 50%;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
}

.mod-information-ticketshistory-data-nothing {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-size: 1.8rem;
}

.mod-information-item-ticketshistory-more {
  text-align: right;
}

/* history */
.mod-history {
  padding: 0 30px 20px;
  background-color: #fff;
  margin-bottom: -40px;
  /* .main padding cancel */
}

.mod-history>.mod-header {
  border-bottom: 5px solid #e9e9e9;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 25px;
  margin-bottom: 30px;
}

.mod-history>.mod-footer {
  position: relative;
  margin-top: 15px;
  padding-top: 1.75rem;
}

.mod-history-items {
  text-align: center;
  position: relative;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
}

.mod-history-items a {
  font-size: 14px;
  font-size: 1.4rem;
}

.mod-history-items span {
  text-align: center;
}

.mod-history-button {
  text-align: center;
  margin-bottom: 10px;
}

.mod-history-item-top span {
  float: left;
  text-align: center;
  display: block;
  width: 50%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #8c8c8c;
  box-sizing: border-box;
  color: #333;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 700;
}

.mod-history-ticketshistory-data-date {
  float: left;
  display: block;
  width: 50%;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
}

.mod-history-ticketshistory-data-amount {
  float: left;
  display: block;
  width: 50%;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  box-sizing: border-box;
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
}

.see-more-history {
  position: fixed;
  z-index: 1000;
  bottom: 15px;
  right: 15px;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #001022;
  border-radius: 4px;
  width: 60px;
  height: 60px;
}

.see-more-history:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top: none;
  border-bottom: 18px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.mod-history-seemore {
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
}

/* nortification */
.mod-nortification {
  padding: 0 30px;
}

.mod-nortification>.mod-image {
  width: 200px;
  margin: 25px auto;
}

.mod-nortification>.mod-image img {
  width: 100%;
  height: auto;
}

.mod-nortification em {
  font-weight: bole;
}

.mod-nortification>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-nortification>.mod-footer {
  padding-top: 20px;
}

/* about */
.mod-about {
  padding: 0 40px;
  text-align: left;
}

.mod-about>.mod-image {
  width: 100%;
}

.mod-about>.mod-image img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border: 1px solid #d3d3d3;
}

.mod-image p {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 5px;
  padding-top: 20px;
}

.mod-about .mod-image-other p {
  border-top: 5px solid #d3d3d3;
}

/* .mod-about-caution-title p{
  font-weight: 700 ;
} */
.mod-about-caution p {
  margin-top: -20px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.mod-about-caution em {
  font-weight: bold;
}

.mod-about>.mod-footer {
  padding-top: 20px;
}

/* comi-top */
.mod-comic-top-header .form-error-message {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  left: 0;
  right: 0;
  padding-top: 10px;
}

/* Landing Page */
.mod-lp {
  padding: 5px 15px 0px 15px;
}

.mod-lp p {
  font-size: 1.2rem;
  font-size: 12px;
  text-align: left;
}

.mod-lp .mod-lp-image {
  margin: -8px 0px 10px 0px;
  border: 3px solid #d3d3d3;
}

.mod-lp>.mod-lp-image img {
  width: 100%;
  height: 100%;
  margin-bottom: -2px;
}

.mod-lp .mod-lp-title {
  font-weight: bold;
  font-size: 1.6rem;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  table-layout: fixed;
}

.mod-lp .mod-lp-summary {
  color: #666;
  width: 100%;
  table-layout: fixed;
}

.mod-lp-name {
  margin-top: 2px;
  overflow-wrap: break-word;
}

.mod-lp-detail {
  margin-top: 2px;
  overflow-wrap: break-word;
}

.mod-lp>.mod-body {
  font-size: 20px;
  font-size: 2.0rem;
  text-align: center;
}

.mod-lp>.mod-footer {
  margin-top: -5px;
}

.mod-lp>.mod-footer img {
  margin-top: 20px;
  width: 100%;
  height: auto;
}

/*★★★★★★★★★★★★★★modal関係★★★★★★★★★★★★★★*/
/* password-sent */
.mod-modal .mod-footer .grid-inline-block-password-sent {
  margin: 0 -7.5px;
}

.mod-modal .mod-footer .grid-inline-block-password-sent .grid-item {
  text-align: center;
}

.mod-modal-password-sent span {
  color: red;
}

.mod-modal .mod-body .mod-modal-password-sent {
  padding: 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}

/* regsent */
.mod-modal .mod-footer .grid-inline-block-regsent {
  margin: 0 -7.5px;
}

.mod-modal .mod-footer .grid-inline-block-regsent .grid-item {
  text-align: center;
}

.mod-modal-regsent span {
  color: red;
}

.mod-modal .mod-body .mod-modal-regsent {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

/* payment */
.mod-modal {
  border: 2px solid black;
}

.mod-modal .mod-header-payment {
  padding: 7px 10px;
  box-shadow: 0 2px 0 #d3d3d3;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}

.mod-modal .mod-body-payment .mod-modal-payment {
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
}

.mod-modal .mod-footer-payment .grid-inline-block-regsent {
  margin: 0 -7.5px;
}

.mod-modal .mod-footer-payment .grid-inline-block-regsent .grid-item {
  text-align: center;
}

.footer-socialmedia {
  width: 100%;
  padding: 15px;
}

.footer-socialmedia a {
  text-decoration: none;
}

img.footer-socialmedia-facebook {
  width: 35px;
  margin: 0 0px;
}

img.footer-socialmedia-twitter {
  width: 35px;
  margin: 0 26px;
}

img.footer-socialmedia-instagram {
  width: 35px;
  margin: 0 0px;
}

/* recruit */
.mod-recruit-header {
  padding-bottom: 25px;
}

.mod-body-recruit-column {
  margin-bottom: 15px;
}

.mod-body-recruit-column-header {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  padding: 15px 60px 5px 15px;
  text-align: left;
  position: relative;
}

.mod-body-recruit-column-body-list {
  line-height: normal;
  text-align: left;
  list-style-type: disc;
  padding: 0 40px;
  font-size: 12px;
  font-size: 1.2rem;
}

.mod-body-recruit-column-body-list-title {
  margin: 10px 0px 0px -20px;
  font-size: 16px;
  font-size: 1.6rem;
}

/* recruit */
.article-recruit .article-image img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #d3d3d3;
}

.article-recruit .article-footer {
  padding: 10px 20px 0;
  font-size: 12px;
}

/* recruit */
.btn-recruit {
  width: 60%;
  height: 50px;
  background-color: #0050ad;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 50px;
  text-align: center;
  border: 2px solid #d3d3d3;
}

.mod-image @include mxFz16;
font-weight: bold;
color: #0050AD;
}

fair-title {
  font-size: 25px;
  color: #009;
  font-weight: bold;
  padding-bottom: 40px;
  padding-top: 50px;
}
