@charset "utf-8";

/* ===============================================
  RESET
=============================================== */
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, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

button, hr {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

/* ===============================================
  BASE
=============================================== */
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  height: 100%;
  background: #eef0f2;
  font-family: "メイリオ", "Meiryo", "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #2f2f2f;
}

a {
  color: #1d4a6d;
  text-decoration: none;
  outline: none;
}

a:hover,
button:hover,
.c-checkbox:hover,
.c-radioBtn label:hover {
  opacity: .65;
}

/* ===============================================
/*  HEADER
------------------------------------------------*/
.l-header {
  position: relative;
  height: 50px;
  padding: 4px 8px;
  background: #fff;
  border-bottom: 2px solid #1d3850;
}

.l-header__inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
}

.l-header__logo {
  float: left;
}

.l-header__logo a {
  display: block;
  width: 240px;
  height: 40px;
  background: transparent url(images/Header_Logo.png) no-repeat 50% 50%;
  background-size: 240px auto;
  font-size: 0;
}

.l-header__logo span {
  display: block;
  width: 240px;
  height: 40px;
  background: transparent url(images/Header_Logo.png) no-repeat 50% 50%;
  background-size: 240px auto;
  font-size: 0;
}

@media (max-width: 1024px) {
  .l-header__logo a {
    width: 165px;
    background: transparent url(images/Header_Logo.png) no-repeat 0 50%;
    background-size: 165px auto;
  }

  .l-header__logo span {
    width: 165px;
    background: transparent url(images/Header_Logo.png) no-repeat 0 50%;
    background-size: 165px auto;
  }
}

.l-header__btns {
  float: right;
}

.l-header__btns li {
  float: left;
  margin-left: 4px;
}

.l-header__logout a {
  display: block;
  padding: 4px 0;
  color: #1d4a6d;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.l-header__logout a .ico-loginout {
  display: block;
  width: 60px;
  font-size: 19px;
  text-align: center;
}

.l-header__logout a .ico-txt {
  display: block;
  padding-top: 1px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

.l-header__language {
  position: relative;
  display: block;
  width: 65px;
  padding: 4px;
  color: #666;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.l-header__language .ico-browser {
  display: block;
  font-size: 19px;
  text-align: center;
}

.l-header__language .ico-txt {
  display: block;
  padding-top: 1px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

.l-header__language select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 38px;
  background: none;
  border: none;
  color: transparent;
  font-size: 16px;
}

.l-header__language option {
  color: #2f2f2f;
  font-weight: bold;
}

.fn-language-switch:focus {
  outline: none;
}

.languageHidden {
  display: none !important;
}


/* ===============================================
/*  FOOTER
------------------------------------------------*/
.l-fix__footer {
  min-height: 100%;
  margin: 0 0 -28px;
}

.l-fix__footer:after {
  content: '';
  display: block;
  height: 28px;
}

.l-footer {
  height: 28px;
  padding: 4px 0;
  background-color: #1d3850;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

/* ===============================================
/*  LAYOUT
------------------------------------------------*/
.l-wrapper {
  position: relative;
  max-width: 1024px;
  margin: 20px auto;
  padding: 8px 20px;
  background: #fff;
}

@media (max-width: 1024px) {
  .l-wrapper {
    width: 100%;
    margin-top: 8px;
    padding: 0;
  }
}

.l-main {
  overflow: hidden;
  margin: 16px;
}

@media (max-width: 320px) {
  .l-main {
    margin: 8px;
  }
}

.l-main__left {
  float: left;
  width: 50%;
}

.l-main__right {
  overflow: hidden;
}

@media (max-width: 768px) {
  .l-main__left,
  .l-main__right {
    float: none;
    width: 100%;
  }
}

.l-main__box {
  position: relative;
  background-color: #1d3850;
  border: 1px solid #1d3850;
  border-radius: 4px;
  background: #fff;
  min-width: 300px;
  margin: 16px 16px 32px;
}

@media (max-width: 768px) {
  .l-main__box {
    float: none;
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
  }
}

.l-main__box__inner {
  position: relative;
  padding: 8px 16px;
  background-color: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.l-fix__menu--bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #1d3850;
  z-index: 2;
}

.l-fix__menu--bottom__inner {
  overflow: hidden;
  max-width: 1024px;
  margin: auto;
  padding: 4px 8px;
}

.l-modal {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.l-modal.on {
  visibility: visible;
}

.l-modal__inner {
  position: relative;
}

.l-modal__inner__contents {
  min-width: 320px;
  max-height: 80vh;
  padding: 24px;
  border-radius: 4px;
  background-color: #eef0f2;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media (max-width: 414px) {
  .l-modal__inner__contents {
    width: 100% !important;
    min-width: 90vw !important;
    max-width: 90vw !important;
  }
}

.l-modal__inner__close {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-modal__inner__close__inner {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  background: #2f2f2f;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 9900;
}

.l-transition {
  margin: 32px auto 24px;
}

.l-transition .c-btn,
.l-transition .c-btn--back,
.l-transition .c-btn--forward {
  max-width: 280px;
  margin: auto;
}

.l-transition .c-btn--conversion {
  max-width: 300px;
  margin: auto;
}

/* ===============================================
/*  HEADLINE
------------------------------------------------*/
.c-hdl {
  display: block;
  height: 38px;
  margin: 4px 0 16px;
  padding: 4px 8px;
  border-left: 8px solid #1d3850;
  border-bottom: 1px dotted #1d3850;
  font-size: 18px;
  font-weight: bold;
}

.c-hdl--pri {
  display: block;
  padding: 8px 16px;
  background: #1d3850;
  color: #fff;
}

.c-hdl--pri .ico {
  padding: 0 8px 0 0;
  font-size: 20px;
  vertical-align: middle;
}

.c-hdl--pri .ico-txt {
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
}

.c-hdl--sec {
  display: block;
  border-left: 6px solid #1d3850;
  font-size: 15px;
  font-weight: bold;
  margin: 8px 0;
  padding-left: 8px;
}

.c-hdl--thi {
  display: block;
  border-left: 6px solid #f2800e;
  font-size: 15px;
  font-weight: bold;
  margin: 8px 0;
  padding-left: 8px;
}

.c-hdl--simple {
  display: block;
  margin: 0 auto 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

/* ===============================================
/*  ANCHOR
------------------------------------------------*/
.c-link {
  display: inline-block;
}

.c-link li {
  display: inline-block;
}

.c-link .c-link__group {
  margin-right: 8px;
}

.c-link a,
.c-link--icon a {
  display: inline-block;
  padding: 8px 4px;
}

.c-link .ico-triangle_right {
  padding-right: 4px;
  font-size: 10px;
  color: #f2800e;
}

.c-link__group li {
  display: inline-block;
}

.c-link__group li + li:before {
  content: '／';
  display: inline-block;
  padding-right: 4px;
}

.ico-help,
.ico-external-link,
a .ico-txt > .ico-external-link {
  font-size: 13px;
  padding: 0 0 0 4px;
  vertical-align: super;
}

.c-link--icon .ico {
  padding: 0 8px 0 0;
  font-size: 18px;
  vertical-align: middle;
}

.c-link--icon .ico-txt {
  vertical-align: middle;
}

.c-link__underline {
  text-decoration: underline;
}

/* ===============================================
/*  TEXT LIST
------------------------------------------------*/
.c-attention__list {
  text-align: left;
}

.c-attention__list li {
  margin: 0 0 8px;
  font-size: 12px;
  list-style-type: none;
}

.c-attention__list li {
  text-indent: 1em;
}

.c-attention__list a {
  font-weight: bold;
}

li.c-attention__list__icn,
li.c-attention__list__bullet,
li.c-attention__list__annotation,
li.c-attention__list__annotation--red {
  margin: 0 0 6px 1em;
  text-indent: -1em;
}

.c-attention__list__annotation--red {
  color: #e40007;
}

.c-attention__list__icn:before,
.c-attention__list__bullet:before,
.c-attention__list__annotation:before,
.c-attention__list__annotation--red:before {
  display: inline;
}

.c-attention__list__bullet:before {
  content: "・";
}

.c-attention__list__annotation:before,
.c-attention__list__annotation--red:before {
  content: "※";
  padding-right: 2px;
}

.c-attention__list__icn {
  color: #e40007;
}

.c-attention__list__icn .ico-attention {
  padding-right: 4px;
}

.c-attention__list__ttl {
  display: block;
  margin: 8px 0 0 -8px;
  padding: 4px 0;
  font-weight: bold;
}

/* ===============================================
/*  BUTTON
------------------------------------------------*/
.c-btn,
.c-btn--back,
.c-btn--conversion,
.c-btn--cart,
.c-btn--release,
.c-btn--check,
.c-btn--forward {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: auto;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.4) inset;
  overflow: hidden;
}

.c-btn.on,
.c-btn--disable.on {
  color: #ccc;
  background: #eef0f2;
  border: 1px solid #ccc;
  pointer-events: none;
  box-shadow: none;
}

.c-btn--forward_disable.on {
  color: #ccc;
  background: #eef0f2;
  border: 1px solid #ccc;
  pointer-events: none;
  box-shadow: none;
}

.c-btn--forward_disable.on:before {
  right: 12px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.c-btn {
  height: 40px;
  line-height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  color: #1d3850;
  font-size: 14px;
}

.c-btn .ico {
  padding-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

.ico + .ico-txt {
  vertical-align: middle;
  font-weight: bold;
}

.c-btn--done {
  color: #118800;
  border-radius: 24px;
}

.c-btn--back,
.c-btn--forward {
  height: 40px;
  line-height: 40px;
  position: relative;
  background: #fff;
  border: 1px solid #ccc;
  color: #1d4a6d;
  font-size: 14px;
}

.c-btn--back {
  padding-left: 16px;
}

.c-btn--forward {
  padding-right: 16px;
}

.c-btn--conversion {
  height: 48px;
  line-height: 48px;
  position: relative;
  background: #f2800e;
  border-radius: 24px;
  color: #fff;
  font-size: 15px;
}

.c-btn--cart {
  position: relative;
  height: 48px;
  line-height: 48px;
  position: relative;
  background: #5a8d48;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
}

.c-btn--cart.on {
  background: #fff;
  border: 1px solid #5a8d48;
  color: #5a8d48;
}

.c-btn--cart .ico-cart {
  font-size: 22px;
  padding-right: 8px;
  vertical-align: -2px;
}

.c-btn--release {
  position: relative;
  height: 38px;
  line-height: 38px;
  border: 1px solid #ccc;
  background: #fff;
  color: #e40007;
  font-size: 14px;
}

.c-btn--release .ico {
  vertical-align: middle;
  font-size: 20px;
}

.c-btn--release .ico-txt {
  vertical-align: 2px;
}

.c-btn--check {
  position: relative;
  height: 38px;
  line-height: 38px;
  border: 1px solid #ccc;
  background: #fff;
  color: #1d3850;
  font-size: 14px;
}

.c-btn--back:before,
.c-btn--forward:before,
.c-btn--conversion:before {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-btn--back:before {
  left: 12px;
  border-left: 2px solid #1d4a6d;
  border-top: 2px solid #1d4a6d;
}

.c-btn--forward:before {
  right: 12px;
  border-right: 2px solid #1d4a6d;
  border-bottom: 2px solid #1d4a6d;
}

.c-btn--conversion:before {
  right: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.c-btn--mini {
  display: inline-block;
  position: relative;
  min-width: 80px;
  padding: 8px 4px;
  color: #1d3850;
  font-weight: bold;
  font-size: 12px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.4) inset;
  text-align: center;
}

.c-btn__col {
  overflow: hidden;
  width: 280px;
  margin: 16px auto;
  font-size: 0;
  display: table;
}

.c-btn__col li {
  display: table-cell;
}

.c-btn__col .c-btn {
  height: 100px;
  width: 100px;
  margin: auto;
}

.c-btn__col .ico,
.c-btn__col .ico-txt {
  display: block;
}

.c-btn__col .ico {
  font-size: 40px;
}

.c-btn__row {
  width: 280px;
  margin: 20px auto;
}

.c-btn__row li {
  margin: 8px auto;
}

.c-btn__row .ico {
  font-size: 20px;
}

.ico.ico-purchase_history.ico-purchase_history_complete, .ico.ico-bookshelf {
 line-height:2;
}

.c-inputField--delete a.off {
  display: none;
}

/* ===============================================
/*  INPUT FIELD
------------------------------------------------*/
.c-inputField {
  position: relative;
}

.c-inputField input {
  padding: 0 8px;
  width: 100%;
  height: 48px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-appearance: none;
}

.c-inputField input::placeholder {
  color: #999;
  font-size: 14px;
}

.c-inputField input:focus {
  border: 1px solid #1d3850;
  outline: none;
}

.c-inputField.c-input--icn input {
  padding-left: 50px;
}

.c-inputField.c-input--icn .ico-mail,
.c-inputField.c-input--icn .ico-key {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
  color: #ccc;
}

.c-inputField--description {
  position: absolute;
  top: -10px;
  right: 10px;
  display: block;
  background: #fff;
  color: #999;
}

.c-inputField--delete {
  position: absolute;
  left: 0;
  top: 0;
}
.c-inputField--delete a {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline;
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  padding: 2px;
  text-align: center;
}
/* ===============================================
/*  INPUT FIELD
------------------------------------------------*/
.c-textarea,
.c-textarea--readonly {
  width: 100%;
  height: 3em;
  min-height: 3em;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  scrollbar-base-color: transparent;
}
.c-textarea::-webkit-scrollbar,
.c-textarea--readonly::-webkit-scrollbar {
  width: 8px;
}
.c-textarea::-webkit-scrollbar-track,
.c-textarea--readonly::-webkit-scrollbar-track {
  background: transparent;
  border: none;
  box-shadow: inset 0 0 2px #ccc;
}
.c-textarea::-webkit-scrollbar-thumb,
.c-textarea--readonly::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
  box-shadow: none;
}
.c-textarea--readonly {
  resize: vertical;
}

/* ===============================================
/*  SELECTBOX
------------------------------------------------*/
.c-selectBox {
  position: relative;
  width: 100%;
}

.c-selectBox__select {
  width: 100%;
  height: 38px;
  padding: 0 25px 0 15px;
  color: #1d3850;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.c-selectBox__select::-ms-expand {
  display: none;
}

.c-selectBox__select:focus {
  border: 1px solid #1d3850;
  outline: none;
}

.c-selectBox::before {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #1d3850;
  content: "";
  pointer-events: none;
}

/* ===============================================
/*  RADIO-BUTTON
------------------------------------------------*/
.c-radioBtn {
  position: relative;
  display: table;
  width: 100%;
}

.c-radioBtn__check[type="radio"] {
  display: none;
}

.c-radioBtn__check[type="radio"]:checked + .c-radioBtn__lavel {
  border: 2px solid #1d3850;
  opacity: 1;
}

.c-radioBtn__check[type="radio"]:checked + .c-radioBtn__lavel::before {
  border: 2px solid #159f05;
}

.c-radioBtn__check[type="radio"]:checked + .c-radioBtn__lavel::after {
  opacity: 1;
  background-color: #159f05;
}

.c-radioBtn__lavel {
  display: table-cell;
  width: 100%;
  height: 44px;
  padding: 2px 8px 2px 36px;
  font-size: 13px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  color: #1d3850;
  vertical-align: middle;
  cursor: pointer;
}

.c-radioBtn__lavel.on {
  pointer-events: none;
  opacity: .5;
}

.c-radioBtn__lavel__txt {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.c-radioBtn__lavel::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  box-sizing: border-box;
}

.c-radioBtn__lavel::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
  width: 10px;
  height: 10px;
  background: #eef0f2;
  border-radius: 50%;
}

.c-radioBtn__lavel:focus {
  border: 1px solid #1D3850;
  outline: none;
}

.c-radioBtn__lavel--fill {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.c-radioBtn__lavel--fill {
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #1d3850;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.c-radioBtn__check[type="radio"]:checked + .c-radioBtn__lavel--fill {
  border: 1px solid #1d3850;
  background: #159f05;
  color: #fff;
}

/* ===============================================
/*  CHECKBOX
------------------------------------------------*/
.c-checkbox {
  position: relative;
  display: block;
  height: 100%;
  cursor: pointer;
}

.c-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.c-checkbox__label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.c-checkbox__label:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  vertical-align: middle;
  text-align: center;
}

.c-checkbox__label:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 6px;
  width: 6px;
  height: 12px;
  border-right: 3px solid #eef0f2;
  border-bottom: 3px solid #eef0f2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -8px 0 0;
}

.c-checkbox input:checked + .c-checkbox__label:after {
  border-right: 3px solid #159f05;
  border-bottom: 3px solid #159f05;
}

.c-checkbox__label__txt {
  padding: 8px;
  color: #1d3850;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
}

.c-checkbox__label:focus {
  outline: none;
}

/* ===============================================
/*  ON/OFF SWITCH
------------------------------------------------*/
.c-switch__wrap {
  overflow: hidden;
}

.c-switch__wrap .c-switch-btn {
  float: right;
}

.c-switch-btn {
  display: inline-block;
  height: 28px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 700;
}

.c-switch__label {
  display: inline-block;
  line-height: 28px;
  font-weight: bold;
  font-size: 14px;
}

.c-switch-btn input {
  display: none;
}

.c-switch-btn .c-switch-btn__label,
.c-switch-btn .c-switch-btn__label::before,
.c-switch-btn .c-switch-btn__label::after {
  transition: all .15s;
}

.c-switch-btn .c-switch-btn__label {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 28px;
  border-radius: 20px;
  background: #ccc;
  cursor: pointer;
}

.c-switch-btn .c-switch-btn__label::before {
  content: attr(data-off-label);
  display: block;
  position: absolute;
  top: 4px;
  right: 8px;
  color: #fff;
}

.c-switch-btn .c-switch-btn__label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
}

.c-switch-btn .c-switch-btn__input:checked + .c-switch-btn__label {
  background: #159f05;
}

.c-switch-btn .c-switch-btn__input:checked + .c-switch-btn__label::before {
  content: attr(data-on-label);
  left: 12px;
  right: auto;
  color: #fff;
}

.c-switch-btn .c-switch-btn__input:checked + .c-switch-btn__label::after {
  left: 44px;
  background: #fff;
}

/* ===============================================
/*  FUNCTION SHOW HIDE
------------------------------------------------*/
.fn-showHide .fn-showHide-contents {
  visibility: hidden;
  height: 0;
  transition: 0.25s opacity;
  opacity: 0;
}

.fn-showHide.on .fn-showHide-contents {
  visibility: visible;
  height: auto;
  opacity: 1;
}

/* TOGGLE BOX */
.fn-showhide:not(.on) .fn-showhide__box,
.accordion:not(.on) .accordion__box {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  transition: height .25s ease;
  transition: opacity .25s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fn-showhide.on .fn-showhide__box,
.accordion.on .accordion__box {
  visibility: visible;
  overflow: auto;
  opacity: 1;
  height: auto;
  max-height: 9999px;
  transition: height .25s ease;
  transition: opacity .25s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* TOGGLE TITLE */
.fn-showhide__label,
.accordion__label {
  position: relative;
  cursor: pointer;
}

.fn-showhide__label:hover,
.accordion__label:hover {
  opacity: .75;
}

.c-hdl--pri.fn-showhide__label:after,
.c-hdl--pri.accordion__label:after,
.c-showhide__sub__icn:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  margin-top: -9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.25s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-hdl--pri.fn-showhide__label:after,
.c-hdl--pri.accordion__label:after {
  border-color: #fff;
}

.fn-showhide.on .c-hdl--pri.fn-showhide__label:after,
.accordion.on .c-hdl--pri.accordion__label:after {
  margin-top: -5px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition: 0.25s;
}

/* TOGGLE SIMPLE */
.c-showhide__sub {
  padding: 6px 4px 6px 28px;
  background: #eef0f2;
  border: 1px solid #ccc;
  color: #1d3850;
  font-weight: bold;
}

.fn-showhide .c-showhide__sub__icn,
.fn-showhide .c-showhide__sub__icn:after,
.accordion .c-showhide__sub__icn:after,
.accordion .c-showhide__sub__icn {
  width: 8px;
  height: 8px;
  border-color: #1d3850;
  left: 9px;
  margin-top: -8px;
}
.fn-showhide.on .c-showhide__sub__icn,
.fn-showhide.on .c-showhide__sub__icn:after,
.accordion.on .c-showhide__sub__icn:after,
.accordion.on .c-showhide__sub__icn {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  margin-top: -3px;
}

.c-showhide__sub__label {
  font-weight: bold;
}

.c-showhide__sub__label--sub {
  position: absolute;
  right: 10px;
}

.c-showhide__sub__label .ico {
  vertical-align: middle;
}

/* ===============================================
/*  STEP
------------------------------------------------*/
.c-step {
  text-align: center;
  margin: 8px auto 16px;
}

.c-step li {
  display: inline-block;
}

.c-step li + li {
  margin-left: 10px;
}

.c-step li + li:before {
  display: none;
}

.c-step li span {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  background-color: #fff;
  border: 1px dashed #1d3850;
  color: #1d3850;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.c-step li span:before {
  position: absolute;
  left: -8px;
  top: -8px;
  display: block;
  padding-top: 1px;
  width: 15px;
  background: #1d3850;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}

.c-step li:first-child span:before {
  content: '1';
}

.c-step li:nth-child(2) span:before {
  content: '2';
}

.c-step li:nth-child(3) span:before {
  content: '3';
}

.c-step li:nth-child(4) span:before {
  content: '4';
}

.c-step li.on span {
  background-color: #1d3850;
  color: #fff;
}

.c-step li.on span:before {
  background: #fff;
  border-color: #1d3850;
  color: #1d3850;
}

.c-step li.off span {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}

.c-step li.off span:before {
  background: #fff;
  border-color: #ccc;
  color: #ccc;
}

/* ===============================================
/*  RANK ICON
------------------------------------------------*/
.c-rankStatus:before,
.c-rankStatus--sm:before,
.icn-achieved:after {
  content: '';
  display: inline-block;
  background: url("https://c.bookwalker.jp/ex/scc/sprite-rank.png") no-repeat 0 0;
  background-size: 60px auto;
}

.c-rankStatus:before {
  width: 50px;
  height: 48px;
}

.c-rankStatus.noRank:before,
.c-rankStatus--sm.noRank:before {
  background: none;
  width: 0;
  height: 0;
}

.c-rankStatus--sm:before {
  width: 30px;
  height: 25px;
}

.c-rankStatus.joker:before {
  background-position: 50% -303px;
}

.c-rankStatus.ace:before {
  background-position: 50% -256px;
}

.c-rankStatus.king:before {
  background-position: 50% -202px;
}

.c-rankStatus.queen:before {
  background-position: 50% -146px;
}

.c-rankStatus.jack:before {
  margin: 2px 0 0;
  background-position: 50% -96px;
}

.c-rankStatus.regular:before {
  background-position: 50% -46px;
}

.c-rankStatus.light:before {
  background-position: 50% 0;
}

.c-rankStatus--sm.joker:before {
  background-position: 50% -513px;
}

.c-rankStatus--sm.ace:before {
  background-position: 50% -487px;
}

.c-rankStatus--sm.king:before {
  background-position: 50% -459px;
}

.c-rankStatus--sm.queen:before {
  background-position: 50% -429px;
}

.c-rankStatus--sm.jack:before {
  background-position: 50% -402px;
}

.c-rankStatus--sm.regular:before {
  background-position: 50% -376px;
}

.c-rankStatus--sm.light:before {
  background-position: 50% -349px;
}

/* ===============================================
/*  MESSAGE
------------------------------------------------*/
.c-messageContainer {
  margin: 0 auto 15px;
  padding: 15px;
  color: #1d3850;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  border: 1px solid #1d3850;
}

@media (max-width: 768px) {
  .c-messageContainer {
    padding: 12px;
    font-size: 14px;
  }
}

.c-messageContainer.on {
  border: 1px solid #e40007;
  color: #e40007;
}

.c-messageContainer .c-attention__list li {
  margin: 8px;
  font-size: 16px;
  color: #e40007;
}

.c-attention--icn {
  display: block;
  margin: auto;
  color: #e40007;
  text-align: center;
}

.c-attention--icn .ico-attention {
  padding-right: 5px;
}

.c-attention--txt {
  display: none;
  margin: 8px 0 16px;
  font-size: 12px;
  color: #e40007;
}

.c-attention--txt + .c-attention--txt {
  margin-top: -12px;
}

.c-attention--txt .ico-attention {
  padding-right: 5px;
}

.fn-msg-attention.on .c-attention--txt {
  display: block;
}

.fn-msg-attention.on .c-inputField input {
  border: 1px solid #e40007;
}

@media (max-width: 768px) {
  .c-messageContainer {
    padding: 12px;
    font-size: 14px;
  }

  .c-messageContainer .c-attention__list li {
    font-size: 14px;
  }
}

/* ===============================================
/*  BANNER
------------------------------------------------*/
.c-cpBanner {
  max-width: 320px;
  margin: 16px auto;
  text-align: center;
}

.c-cpBanner img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ===============================================
/*  DECORATION
------------------------------------------------*/
.c-box--emp,
.c-box--wek,
.c-box--double,
.c-box--dotted {
  position: relative;
  display: block;
  margin: 16px auto;
  line-height: 1.4;
}

.c-box--emp {
  padding: 16px;
  border: solid 2px #f2800e;
  border-radius: 4px;
}

.c-box--wek {
  padding: 20px;
  background-color: #eef0f2;
}

.c-box--double {
  padding: 8px 12px;
  border: 4px double #ccc;
}

.c-box--double a {
  text-decoration: underline;
}

.c-box--dotted {
  padding: 12px;
  border: 4px dotted #ccc;
  text-align: center;
}

.c-box--ttl {
  position: absolute;
  top: -10px;
  left: 15px;
  padding: 0 10px;
  background: #fff;
  color: #999;
  font-size: 13px;
  font-weight: bold;
}

.c-box--inner {
  text-align: left;
}

.c-caption {
  display: block;
  margin-bottom: 1rem;
  color: #1d3850;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.c-caption .ico-attention {
  padding-right: 8px;
}

.c-description {
  display: block;
  padding: 8px;
  color: #2f2f2f;
  font-size: 12px;
  line-height: 1.6;
}

.c-attention__guide {
  display: block;
  margin: 4px 0;
  text-align: center;
}

.c-attention__guide a {
  text-decoration: underline;
  font-weight: bold;
}

/* ===============================================
/*  UTILITY
------------------------------------------------*/
.u-line {
  border: none;
  border-bottom: 1px solid #ccc;
}

.u-line--dashed {
  margin: 0 auto 20px;
  border: none;
  border-bottom: 1px dashed #ccc;
}

.u-line--dotted {
  border: none;
  border-bottom: 1px dotted #ccc;
}

.u-ico--tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #1d3850;
}

.u-ico--applying {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  vertical-align: middle;
}

.u-ico--applying:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25%;
  height: 50%;
  border-right: 2px solid #159f05;
  border-bottom: 2px solid #159f05;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -60%) rotate(45deg);
}

.u-emp {
  font-weight: bold;
}

.u-wek {
  font-size: 12px;
}

.u-dn {
  display: none;
}

.u-nowrap {
  white-space: nowrap;
}

/* ===============================================
/*  ROADING
------------------------------------------------*/
.c-loading {
  margin: 4px auto;
  text-align: center;
}

.c-loading__icn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(https://c.bookwalker.jp/ex/scc/loading-animation.svg) no-repeat;
  background-size: 24px auto;
  animation: loading .6s linear infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===============================================
/*  ANIMATION
------------------------------------------------*/
@keyframes bounce {
  0%, 20%, 50%, 80%, to {
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  40% {
    -ms-transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  60% {
    -ms-transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

.u-anime--bounce {
  animation-name: bounce;
  animation-iteration-count: 2;
  animation-duration: 1s;
}

/* 点滅 */
@keyframes blink {
  50% {
    opacity: .1;
  }
}

.u-anime--blink {
  animation-name: blink;
  animation-iteration-count: 2;
  animation-duration: .5s;
}

/* ===============================================
/*  TABLE.CART.DETAILS
------------------------------------------------*/
.c-table {
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #1d3850;
  border-collapse: separate;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-spacing: 0;
  border: 1px solid #1d3850;
  overflow: hidden;
}

.c-table__header th + th,
.c-table__body td + td {
  border-left: 1px solid #ccc;
}

.c-table__header th {
  padding: 2px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.c-table__body {
  background-color: #fff;
  border: 1px solid #ccc;
}

.c-table__body tr {
  height: 100%;
}

.c-table__body tr + tr td {
  border-top: 1px dotted #ccc;
}

.c-table__ttl {
  position: relative;
}

.c-table__ttl a {
  display: block;
  min-height: 100px;
  padding: 12px 20px;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .c-table__ttl a {
    padding: 8px;
  }
}

.c-table__ttl__tmb {
  float: left;
  display: block;
  width: 80px;
}

.c-table__ttl__tmb img {
  display: block;
  width: 70px;
  border: 1px solid #ccc;
  font-size: 0;
}

.c-table__ttl__tmb + .c-table__ttl__txt {
  margin-left: 80px;
}

.c-table__ttl__txt {
  margin: 0 0 20px 0;
  padding: 8px;
}

.c-table__ttl a .c-table__ttl__txt {
  padding: 0;
}

.c-table__ttl__txt .u-wek {
  display: block;
  margin-top: 3px;
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

.c-table__price {
  position: absolute;
  right: 16px;
  bottom: 8px;
}

.c-table__price span,
.c-table__price small {
  color: #666;
  font-size: 11px;
  font-weight: normal;
}

.c-table__price .u-emp {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: bold;
}

.c-table__action {
  vertical-align: middle;
  width: 10%;
  min-width: 44px;
  background: #eef0f2;
}

.c-table__action .c-checkbox__label {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ===============================================
/*  TABLE.CART.BASIC
------------------------------------------------*/
.c-table--basic {
  width: 100%;
}
.c-table--basic th,
.c-table--basic td {
  width: 100%;
  padding: 6px 4px;
  border-bottom: 1px dotted #ccc;
}

.c-table--basic__ttl {
  background-color: initial;
  position: relative;
}

.c-table--basic__txt {
  float: left;
  width: calc(100% - 100px);
}

.c-table--basic__price {
  float: right;
  width: 100px;
  text-align: right;
  vertical-align: bottom;
}

/* ===============================================
/*  TABLE.SIMPLE
------------------------------------------------*/
.c-table--simple {
  width: 100%;
}
.c-table--simple th,
.c-table--simple td {
  padding: 6px 4px;
  border-bottom: 1px dotted #ccc;
}

.c-table--simple__ttl {
  position: relative;
}

.c-table--simple__name {
  margin: 0 0 18px 0;
}

.c-table--simple__value {
  position: absolute;
  right: 8px;
  bottom: 8px;
}

/* ===============================================
/*  TABLE.mini
------------------------------------------------*/
.c-table--mini {
  width: 100%;
  font-size: 12px;
}

.c-table--mini tbody {
  margin: 4px;
}

.c-table--mini > tbody > tr > th,
.c-table--mini > tbody > tr > td {
  padding: 8px 0;
  line-height: 1.5;
}

.c-table--mini > tbody > tr > th {
  width: 6em;
  text-align: left;
  font-weight: bold;
}

.c-table--mini > tbody > tr > td {
  text-align: right;
}


.c-mobileRakutenEdy.gb_en_font {
  font-size: 11px;
}
.c-mobileRakutenEdy.gb_ja_font {
  font-size: 12px;
}

@media (min-width: 415px) {
  .c-mobileRakutenEdy.gb_en_font {
    font-size: 12px;
  }
}
