@charset "UTF-8";
/* 暫定処置 */
:root {
  --color_border_light: #d7d8d9;
  --color_ui_disable: #e1e1e1;
  --color_ui_disable_font: #a9a9a9;
}

/* -------------------------------------------------------------------------------
  Class Module
------------------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media screen and (min-width: 600px) {
  .for_pc {
    display: block;
  }
  .for_sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .for_pc {
    display: none;
  }
  .for_sp {
    display: block;
  }
}
/* 旧コンテンツ部分（暫定的に残す部分） */
.section_old {
  width: 710px;
  margin: 3rem auto;
  color: var(--color_font_mid);
}
@media screen and (max-width: 599px) {
  .section_old {
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
}

.sn-form {
  /* -------------------------------------------------------------------------------
    Element
  ------------------------------------------------------------------------------- */
  /* ラジオボタン＆チェックボックス */
  /* -------------------------------------------------------------------------------
    Component
  ------------------------------------------------------------------------------- */
  /* 製品数量指定  */
}
.sn-form a {
  color: var(--color_link);
  text-decoration: none;
}
.sn-form a:hover {
  color: var(--color_link_hover);
}
.sn-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.sn-form fieldset ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sn-form fieldset ul.sn-form-fieldset-grid-3 {
  display: flex;
  flex-wrap: wrap;
}
.sn-form fieldset ul.sn-form-fieldset-grid-3 li {
  width: 33%;
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}
.sn-form fieldset ul.sn-form-fieldset-grid-4 {
  display: flex;
  flex-wrap: wrap;
}
.sn-form fieldset ul.sn-form-fieldset-grid-4 li {
  width: 25%;
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}
.sn-form fieldset ul.sn-form-fieldset-grid-5 {
  display: flex;
  flex-wrap: wrap;
}
.sn-form fieldset ul.sn-form-fieldset-grid-5 li {
  width: 20%;
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}
.sn-form fieldset ul.sn-form-fieldset-grid-auto {
  display: flex;
  flex-wrap: wrap;
}
.sn-form fieldset ul.sn-form-fieldset-grid-auto li {
  display: flex;
  align-items: center;
  margin: 0.5rem 1.5rem 0.5rem 0;
}
.sn-form fieldset ul.sn-form-fieldset-grid__item--radio_and_text {
  flex-basis: 15rem;
}
.sn-form fieldset ul.sn-form-fieldset-grid__item--radio_and_text label {
  white-space: nowrap;
}
.sn-form input[type=email], .sn-form input[type=number], .sn-form input[type=password], .sn-form input[type=tel], .sn-form input[type=text] {
  /*デフォルト*/
  border: 1px solid #86868b;
  border-radius: 6px;
  padding: 0.6rem 1.1rem;
  color: #000;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  /*入力済み*/
  /*エラー*/
  /*エラー*/
  /*入力中*/
  /*サイズ*/
}
.sn-form input[type=email]:valid, .sn-form input[type=number]:valid, .sn-form input[type=password]:valid, .sn-form input[type=tel]:valid, .sn-form input[type=text]:valid {
  background-color: #fff;
}
.sn-form input[type=email]:invalid:not(:empty), .sn-form input[type=number]:invalid:not(:empty), .sn-form input[type=password]:invalid:not(:empty), .sn-form input[type=tel]:invalid:not(:empty), .sn-form input[type=text]:invalid:not(:empty) {
  background-color: #fae5e5;
}
.sn-form input[type=email].sn-form__input_error, .sn-form input[type=number].sn-form__input_error, .sn-form input[type=password].sn-form__input_error, .sn-form input[type=tel].sn-form__input_error, .sn-form input[type=text].sn-form__input_error {
  background: #fff2f4 !important;
  border: 1px solid var(--color_alert);
  padding: 0.6rem 1.1rem;
}
.sn-form input[type=email]:focus, .sn-form input[type=number]:focus, .sn-form input[type=password]:focus, .sn-form input[type=tel]:focus, .sn-form input[type=text]:focus {
  background-color: #fff;
  border: 2px solid var(--color_success);
  padding: 0.5rem 1rem;
}
.sn-form input[type=email]:focus.sn-form__input_error, .sn-form input[type=number]:focus.sn-form__input_error, .sn-form input[type=password]:focus.sn-form__input_error, .sn-form input[type=tel]:focus.sn-form__input_error, .sn-form input[type=text]:focus.sn-form__input_error {
  border: 1px solid var(--color_alert);
  padding: 0.6rem 1.1rem;
  background: #fff !important;
}
.sn-form input[type=email].input-size-v-short, .sn-form input[type=number].input-size-v-short, .sn-form input[type=password].input-size-v-short, .sn-form input[type=tel].input-size-v-short, .sn-form input[type=text].input-size-v-short {
  width: 12%;
}
@media screen and (max-width: 599px) {
  .sn-form input[type=email].input-size-v-short, .sn-form input[type=number].input-size-v-short, .sn-form input[type=password].input-size-v-short, .sn-form input[type=tel].input-size-v-short, .sn-form input[type=text].input-size-v-short {
    width: 25%;
  }
}
.sn-form input[type=email].input-size-short, .sn-form input[type=number].input-size-short, .sn-form input[type=password].input-size-short, .sn-form input[type=tel].input-size-short, .sn-form input[type=text].input-size-short {
  width: 17%;
}
@media screen and (max-width: 599px) {
  .sn-form input[type=email].input-size-short, .sn-form input[type=number].input-size-short, .sn-form input[type=password].input-size-short, .sn-form input[type=tel].input-size-short, .sn-form input[type=text].input-size-short {
    width: 30%;
  }
}
.sn-form input[type=email].input-size-middle, .sn-form input[type=number].input-size-middle, .sn-form input[type=password].input-size-middle, .sn-form input[type=tel].input-size-middle, .sn-form input[type=text].input-size-middle {
  width: 35%;
}
@media screen and (max-width: 599px) {
  .sn-form input[type=email].input-size-middle, .sn-form input[type=number].input-size-middle, .sn-form input[type=password].input-size-middle, .sn-form input[type=tel].input-size-middle, .sn-form input[type=text].input-size-middle {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .sn-form input[type=email].input-size-middle + input, .sn-form input[type=number].input-size-middle + input, .sn-form input[type=password].input-size-middle + input, .sn-form input[type=tel].input-size-middle + input, .sn-form input[type=text].input-size-middle + input {
    margin-top: 1rem;
  }
}
.sn-form input[type=email].input-size-long, .sn-form input[type=number].input-size-long, .sn-form input[type=password].input-size-long, .sn-form input[type=tel].input-size-long, .sn-form input[type=text].input-size-long {
  width: 80%;
}
@media screen and (max-width: 599px) {
  .sn-form input[type=email].input-size-long, .sn-form input[type=number].input-size-long, .sn-form input[type=password].input-size-long, .sn-form input[type=tel].input-size-long, .sn-form input[type=text].input-size-long {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .sn-form input[type=email].input-size-long + input, .sn-form input[type=number].input-size-long + input, .sn-form input[type=password].input-size-long + input, .sn-form input[type=tel].input-size-long + input, .sn-form input[type=text].input-size-long + input {
    margin-top: 1rem;
  }
}
.sn-form input[type=submit],
.sn-form button {
  -webkit-appearance: none;
}
.sn-form select {
  margin: 0.5rem 0;
  padding: 0.6rem 1.1rem;
  color: #000;
  border: 1px solid #86868b;
  border-radius: 6px;
  /*入力中*/
}
.sn-form select:focus {
  background-color: #fff;
  border: 2px solid var(--color_success);
  padding: 0.5rem 1rem;
}
.sn-form textarea {
  /*デフォルト*/
  border: 1px solid #86868b;
  border-radius: 6px;
  padding: 0.6rem 1.1rem;
  color: #000;
  box-sizing: border-box;
  width: 100%;
  min-height: 10rem;
  /*入力済み*/
  /*入力中*/
}
.sn-form textarea:valid {
  background-color: #fff;
}
.sn-form textarea:focus {
  background-color: #fff;
  border: 2px solid var(--color_success);
  padding: 0.5rem 1rem;
}
.sn-form textarea:focus.sn-form__input_error {
  border: 1px solid var(--color_alert);
  padding: 0.6rem 1.1rem;
  background: #fff !important;
}
.sn-form input[type=radio],
.sn-form input[type=checkbox] {
  display: none;
}
.sn-form input[type=radio] + label,
.sn-form input[type=checkbox] + label {
  box-sizing: border-box;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
  padding: 6px 10px 6px 34px;
  border-radius: 8px;
  vertical-align: baseline;
  cursor: pointer;
}
.sn-form input[type=radio] + label:hover,
.sn-form input[type=checkbox] + label:hover {
  background-color: rgba(228, 255, 214, 0.5);
}
.sn-form input[type=radio] + label:after {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: #16a085;
  content: "";
  opacity: 0;
}
.sn-form input[type=radio]:checked + label:after {
  opacity: 1;
}
.sn-form input[type=radio] + label:before {
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #888;
  border-radius: 20px;
  content: "";
  background: #fff;
}
.sn-form input[type=checkbox] + label:after {
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 14px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #16a085;
  border-bottom: 3px solid #16a085;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}
.sn-form input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.sn-form input[type=checkbox] + label:before {
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #888;
  border-radius: 4px;
  content: "";
  background: #fff;
}
.sn-form input:disabled + label {
  background-color: transparent;
  pointer-events: none;
  color: #888;
}
.sn-form input:disabled + label:after {
  border: none;
  background: none;
}
.sn-form input:disabled + label:before {
  color: #fff;
  background: #eee;
}
.sn-form-wrapper {
  width: 71rem;
  margin: 6rem auto;
  color: var(--color_font_mid);
}
@media screen and (max-width: 599px) {
  .sn-form-wrapper {
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
}
.sn-form-wrapper a {
  color: var(--color_link);
  text-decoration: none;
}
.sn-form-wrapper a:hover {
  color: var(--color_link_hover);
}
.sn-form-top {
  margin-bottom: 3rem;
}
.sn-form-top h1 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 599px) {
  .sn-form-top h1 {
    line-height: 1.3;
  }
}
.sn-form-lead__text-impact {
  font-size: 1.8rem;
}
.sn-form-bottom {
  margin-top: 5rem;
}
.sn-form-section {
  margin: 5rem 0;
}
.sn-form-section__title {
  font-size: 1.9rem;
  margin: 0 0 2rem;
}
.sn-form-container {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color_border_light);
  border-top: 1px solid var(--color_border_light);
  margin-top: -1px;
}
.sn-form-container.border-none {
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}
.sn-form-container-lvl2 {
  margin-top: 1.6rem;
  margin-left: 1.6rem;
}
.sn-form-container-lvl2.margin-top {
  margin-top: 2rem;
}
.sn-form-container__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.sn-form-container .sn-form-container__title:first-child {
  margin-top: 0;
}
.sn-form-container-lvl2 .sn-form-container__title:first-child {
  margin-top: 2rem;
}
.sn-form-container__title:first-child {
  margin-top: 0;
}
.corner_ui + .sn-form-container__title {
  margin-top: 0;
}
.sn-form-container__title a {
  font-size: 1.3rem;
  font-weight: normal;
}
.sn-form-container__title_sub {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}
.sn-form-container__text {
  margin: 0;
  font-size: 1.5rem;
}
.sn-form-container__text + .sn-form-container__text {
  margin-top: 1rem;
}
.sn-form-container__text-sentence {
  display: block;
}
.sn-form-container__text .sn-form-container__text-sentence:nth-of-type(3) {
  margin-bottom: 1rem;
}
.sn-form-container__guide {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}
.sn-form-container__guide--right {
  font-size: 1.3rem;
  text-align: right;
}
.sn-form-container__guide--follow_top {
  margin: 0.5rem 0 1rem;
  font-size: 1.3rem;
}
.sn-form-style-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--color_border_light);
  border-radius: 1rem;
  flex-direction: column;
}
.sn-form-style-box + .sn-form-style-box {
  margin-top: 3rem;
}
.sn-form-style-box .sn-form-container {
  max-width: 100%;
  border: none;
}
.sn-form-style-box .sn-form-container:first-of-type {
  padding-top: 0;
}
.sn-form-style-box .sn-form-container .sn-form-container__title {
  margin-top: 0;
}
.sn-form-style-box .sn-form-submit-container {
  margin-top: 0;
}
@media screen and (min-width: 600px) {
  .sn-form-style-box .sn-form-submit-container {
    min-width: 37rem;
  }
}
.sn-form-style-box-with-title {
  margin: 0 0 3rem;
  padding: 2rem;
  border: 1px solid var(--color_border_light);
  border-radius: 10px;
}
.sn-form-style-box-with-title .sn-form-style-box__title {
  display: flex;
  justify-content: space-between;
  background: var(--color_ui_light);
  margin: -2rem -2rem 0 -2rem;
  padding: 1.5rem 2rem;
  border-radius: 10px 10px 0 0;
  font-size: 1.6rem;
}
.sn-form-style-box-with-title .sn-form-container {
  border-top: none;
  border-bottom: none;
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}
.sn-form .box-align-left {
  display: block;
}
.sn-form .box-align-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sn-form .corner_ui {
  height: 0;
}
.sn-form .corner_ui--right_top {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: -1.2rem; /*アイコンサイズの半分*/
}
.sn-form .corner_ui .corner_ui__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sn-form .corner_ui .corner_ui__list li {
  margin: 0;
  padding: 0;
}
.sn-form-submit-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4rem 0;
}
@media screen and (max-width: 599px) {
  .sn-form-submit-container {
    flex-wrap: wrap;
  }
  .sn-form-submit-container .sn-form__button-next {
    order: 1;
  }
  .sn-form-submit-container .sn-form__button-back {
    order: 10;
  }
  .sn-form-submit-container .sn-form-submit-caption {
    order: 20;
  }
}
.sn-form-submit-caption {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
.sn-form-submit-caption p,
.sn-form-submit-caption ul {
  font-size: 1.4rem;
  margin: 0 0 1rem;
}
.sn-form-submit-caption .text-small {
  font-size: 1.3rem;
}
.sn-form-submit-caption .block-center {
  display: flex;
  justify-content: center;
}
.sn-form__input {
  /* default */
  /* margin module */
}
.sn-form__input_email, .sn-form__input_number, .sn-form__input_password, .sn-form__input_tel, .sn-form__input-text {
  margin: 0.5rem 0;
}
.sn-form__input-mr-s {
  margin-right: 1rem !important;
}
@media screen and (max-width: 599px) {
  .sn-form__input-mr-s.input-size-middle, .sn-form__input-mr-s.input-size-long {
    margin-right: 0 !important;
  }
}
.sn-form__input-mr-m {
  margin-right: 2rem !important;
}
@media screen and (max-width: 599px) {
  .sn-form__input-mr-m.input-size-middle, .sn-form__input-mr-m.input-size-long {
    margin-right: 0 !important;
  }
}
.sn-form__button-back, .sn-form__button-next {
  width: 17rem;
  font-size: 1.6rem;
  padding: 1rem;
  margin: 0 2rem;
  border: none;
  border-radius: var(--radius_l);
}
@media screen and (max-width: 599px) {
  .sn-form__button-back, .sn-form__button-next {
    width: 20rem;
    min-height: 5rem;
    margin: 1.5rem;
  }
}
.sn-form__button-back[disabled], .sn-form__button-next[disabled] {
  background: var(--color_ui_disable);
  color: var(--color_ui_disable_font);
}
.sn-form__button-back:not([disabled]) {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: var(--shadow_light);
  transition: all 0.2s ease;
  color: var(--color_font_mid);
}
.sn-form__button-back:not([disabled]):hover {
  background: #ffffff;
}
.sn-form__button-back:not([disabled]):active {
  background: #f3f4f5;
}
.sn-form__button-next:not([disabled]) {
  background: var(--color_success);
  box-shadow: var(--shadow_mid);
  color: #fff;
  transition: all 0.2s ease;
}
.sn-form__button-next:not([disabled]):hover {
  background: var(--color_success_hover);
}
.sn-form__button-next:not([disabled]):active {
  background: #14947b;
}
.sn-form__button-single {
  width: 25rem;
  height: 4.8rem;
}
.sn-form-msg__success {
  margin: 0 0 2rem;
  padding: 1rem 2rem;
  background: #dcefeb;
  list-style: none;
}
.sn-form-msg__success li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.sn-form-msg__success li::before {
  content: url("/~/media/img/common/icon/icon_check_circle_g_fill.ashx?w=22");
  margin-right: 0.8rem;
}
.sn-form-msg__error {
  margin: 0 0 2rem;
  padding: 2rem;
  background: #fbecec;
  list-style: none;
}
.sn-form-msg__error li {
  color: var(--color_alert);
}
.sn-form__input_rule {
  font-weight: normal;
  font-size: 1.4rem;
}
.sn-form-grid {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 599px) {
  .sn-form-grid {
    display: block;
  }
}
.sn-form-grid-column_2 {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .sn-form-grid-column_2 {
    width: 100%;
  }
}
.sn-form-grid-column_3 {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .sn-form-grid-column_3 {
    width: 100%;
  }
}
.sn-form-grid-column_4 {
  width: 40%;
}
@media screen and (max-width: 599px) {
  .sn-form-grid-column_4 {
    width: 100%;
  }
}
.sn-form-grid-column_6 {
  width: 60%;
}
@media screen and (max-width: 599px) {
  .sn-form-grid-column_6 {
    width: 100%;
  }
}
.sn-form-grid-column_8 {
  width: 80%;
}
@media screen and (max-width: 599px) {
  .sn-form-grid-column_8 {
    width: 100%;
  }
}
.sn-form-grid + .sn-form-grid {
  margin-top: 1.6rem;
}
.sn-form__error {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
}
.sn-form__error li {
  color: var(--color_alert);
  font-size: 1.4rem;
}
.sn-form__error li::before {
  content: "・";
}
.sn-form__mark_required::before {
  content: "[必須]";
  color: var(--color_alert);
  font-weight: normal;
  font-size: 1.3rem;
}
.sn-form__text_link {
  padding-right: 1.3rem;
  background: url("/~/media/img/common/icon/icon_link.svg") right 60% no-repeat;
}
.sn-form__icon_link {
  margin: 0;
  padding: 0;
}
.sn-form__icon_link img {
  width: 2.4rem;
  height: 2.4rem;
}
.sn-form__text-attention {
  color: var(--color_alert);
}
.sn-form__font-attention, .sn-form__font_attention {
  color: var(--color_alert);
}
.sn-form__icon_info {
  padding-left: 1.7rem;
  background: url("/~/media/img/common/icon/icon_info_i_outline.svg") left center no-repeat;
}
.sn-form__icon_security {
  padding-left: 2.3rem;
  background: url("/~/media/img/common/icon/icon_user-info_password.svg") left center no-repeat;
  background-size: contain;
}
.sn-form-product-qty thead th {
  font-weight: normal;
}
.sn-form-product-qty thead tr,
.sn-form-product-qty tbody tr {
  display: table;
  border-bottom: 1px solid #aaa;
  width: 100%;
}
.sn-form-product-qty thead th,
.sn-form-product-qty thead td,
.sn-form-product-qty tbody th,
.sn-form-product-qty tbody td {
  padding: 1rem;
}
.sn-form-product-qty thead .col-product,
.sn-form-product-qty tbody .col-product {
  width: 70%;
}
.sn-form-product-qty thead .col-qty,
.sn-form-product-qty tbody .col-qty {
  width: 30%;
}

/* -----------------------------------------------------------------
 Credit Card UI (元はStripe)
----------------------------------------------------------------- */
#card_selector {
  width: 100%;
  border: 1px solid #d6d6d6;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  #card_selector {
    font-size: 1.5rem;
  }
}
#card_selector #selector-card-element {
  /* ヘッダ、登録カード */
  /* ヘッダ */
  /* 登録カード */
  /*ナンバリング*/
}
@media screen and (min-width: 600px) {
  .cards_view #card_selector #selector-card-element .expiration {
    padding-right: 20rem;
  }
}
#card_selector #selector-card-element .card_header {
  background: var(--color_ui_light);
}
@media screen and (max-width: 599px) {
  #card_selector #selector-card-element .card_header {
    box-sizing: border-box;
    padding: 0 1rem;
  }
}
#card_selector #selector-card-element .card_header .cell {
  text-align: left;
  padding-left: 185px;
}
#card_selector #selector-card-element .card_header .cell::before {
  content: "カード番号";
}
@media screen and (max-width: 599px) {
  .cards_view #card_selector #selector-card-element .card_header .cell::before {
    margin-left: 11rem;
  }
}
@media screen and (max-width: 599px) {
  #card_selector #selector-card-element .card_header .cell {
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  #card_selector #selector-card-element .card_area .row {
    padding: 1rem 1rem 1rem 0;
  }
}
#card_selector #selector-card-element .card_area .row .cell .table {
  display: flex;
  align-items: center;
}
#card_selector #selector-card-element .card_area .row .cell .table .card_brand {
  width: 100px;
  height: 30px;
}
@media screen and (min-width: 600px) {
  #card_selector #selector-card-element .card_area .row .cell .table .card_brand {
    padding-left: 7.5rem;
  }
}
@media screen and (max-width: 599px) {
  #card_selector #selector-card-element .card_area .row .cell .table .card_brand {
    width: 0;
    padding: 0;
  }
}
#card_selector #selector-card-element .card_area .row .cell .table .card_brand::before {
  /*
  display: block;
  content: "";
  background: url(/~/media/img/common/icon/icon_card.svg) no-repeat;
  width:  36px;
  height: 27px;
  background-size: contain;
  @include gl.mq("sp") {
    content: none;
  }
  */
}
@media screen and (max-width: 599px) {
  .cards_view #card_selector #selector-card-element .card_area .row .cell .table .card_brand {
    width: 9rem;
  }
}
.cards_view #card_selector #selector-card-element .card_area .row .cell .table .card_brand::before {
  /*
  display: block;
  content: "";
  background: url(/~/media/img/common/icon/icon_card_registered.svg) no-repeat;
  width:  44px;
  height: 33px;
  background-size: contain;                  
  @include gl.mq("sp") {
    margin-left: 10px;
  }
  */
}
@media screen and (min-width: 600px) {
  #card_selector #selector-card-element .card_area .row .cell .table .last_four {
    margin-left: 5rem;
  }
}
#card_selector #selector-card-element .card_area .card_form .payment-element.StripeElement > div {
  text-align: center;
  margin: 1rem 0;
}
#card_selector #selector-card-element .card_area .card_form .btn_message {
  margin: 2rem 1rem;
}
#card_selector #selector-card-element div:nth-of-type(2) .table::before {
  content: "1.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(3) .table::before {
  content: "2.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(4) .table::before {
  content: "3.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(5) .table::before {
  content: "4.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(6) .table::before {
  content: "5.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(7) .table::before {
  content: "6.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(8) .table::before {
  content: "7.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(9) .table::before {
  content: "8.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(10) .table::before {
  content: "9.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(11) .table::before {
  content: "10.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(12) .table::before {
  content: "11.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(13) .table::before {
  content: "12.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(14) .table::before {
  content: "13.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(15) .table::before {
  content: "14.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(16) .table::before {
  content: "15.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(17) .table::before {
  content: "16.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(18) .table::before {
  content: "17.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(19) .table::before {
  content: "18.";
  margin-left: 1rem;
}
#card_selector #selector-card-element div:nth-of-type(20) .table::before {
  content: "19.";
  margin-left: 1rem;
}
@media screen and (max-width: 599px) {
  #card_selector #selector-card-element div.card_header > div.expiration,
#card_selector #selector-card-element div.row > div.expiration {
    width: 30%;
  }
}
#card_selector #selector-card-element div.card_header > div.btn_area,
#card_selector #selector-card-element div.row > div.btn_area {
  width: 11rem;
}
@media screen and (max-width: 599px) {
  #card_selector #selector-card-element div.card_header > div.btn_area,
#card_selector #selector-card-element div.row > div.btn_area {
    width: 6.5rem;
  }
}
#card_selector #register-card-element .table .new_card {
  display: flex;
  align-items: center;
  background: none;
  color: var(--color_link);
  font-weight: normal;
  cursor: pointer;
  padding-left: 1rem;
  /*
  &::before{
    content: url(/~/media/img/common/icon/icon_add.svg);
    margin-right: 0.3rem;
  }
  */
}
#card_selector #register-card-element .table .add_btn_area {
  visibility: hidden;
  /*
  display: flex;
  padding-left: 2rem;
  .add_card_btn{
    color: #007DCE;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    &[disabled]{
      color: #aaa;
      cursor: default;
    }
  }
  */
}
#card_selector #register-card-element .card_form .btn_message {
  margin: 2rem 1rem;
}
#card_selector .edit_card_btn,
#card_selector .delete_btn {
  border: 1px solid #b9b9b9;
  border-radius: 6px;
  background: #fff;
  min-width: 10rem;
  font-size: 1.5rem;
  padding: 0.7rem;
  box-shadow: rgba(99, 99, 99, 0.1) 0rem 0.2rem 0.2rem 0rem;
}
#card_selector .edit_card_btn:hover,
#card_selector .delete_btn:hover {
  background-color: #f6f7f8;
}
#card_selector .edit_card_btn:active,
#card_selector .delete_btn:active {
  background-color: #f0f1f2;
}
#card_selector .edit_card_btn[disabled],
#card_selector .delete_btn[disabled] {
  box-shadow: none;
  border: none;
  color: #8a8a8a;
  background: #dbdbdb;
}
@media screen and (max-width: 599px) {
  #card_selector .edit_card_btn,
#card_selector .delete_btn {
    min-width: 6.5rem;
  }
}
#card_selector .edit_card_btn {
  background: #fff url("/~/media/img/common/icon/icon_edit.svg") 10px center no-repeat;
  background-size: 1.2rem;
}
@media screen and (max-width: 599px) {
  #card_selector .edit_card_btn {
    background: none;
  }
}
@media screen and (max-width: 599px) {
  #card_selector .form_btn_area {
    display: flex;
    flex-direction: column-reverse;
  }
}
#card_selector .form_btn_area .cancel_btn,
#card_selector .form_btn_area .register_btn {
  font-size: 1.6rem;
}
@media screen and (min-width: 600px) {
  #card_selector .form_btn_area .cancel_btn,
#card_selector .form_btn_area .register_btn {
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  #card_selector .form_btn_area .cancel_btn,
#card_selector .form_btn_area .register_btn {
    margin: 0 auto;
  }
}
#card_selector .form_btn_area .cancel_btn {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: var(--shadow_light);
  border-radius: 6px;
}
#card_selector .form_btn_area .cancel_btn:hover {
  background: #ffffff;
}
#card_selector .form_btn_area .cancel_btn:active {
  background: #e0e0e0;
}
#card_selector .form_btn_area .register_btn {
  background: var(--color_success);
  box-shadow: var(--shadow_mid);
  border: none;
  border-radius: 6px;
}
#card_selector .form_btn_area .register_btn:hover {
  background: var(--color_success_hover);
}
#card_selector .form_btn_area .register_btn:active {
  background: #14947b;
}
@media screen and (min-width: 600px) {
  #card_selector .form_btn_area .cancel_btn + .register_btn {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 599px) {
  #card_selector .form_btn_area .cancel_btn + .register_btn {
    margin-bottom: 2rem;
  }
}
#card_selector + .sn-form-bottom {
  margin-top: 3rem;
}
#card_selector + .sn-form-bottom p[class*=btn] {
  margin-bottom: 5rem;
}
@media screen and (max-width: 599px) {
  #card_selector + .sn-form-bottom p[class*=btn] {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.ui-dialog.ui-widget .delete_btn {
  background: var(--color_alert);
  border: none;
}
.ui-dialog.ui-widget .delete_btn:hover {
  background: var(--color_alert_hover);
}
.ui-dialog.ui-widget .delete_btn,
.ui-dialog.ui-widget .cancel_btn {
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .ui-dialog.ui-widget {
    width: 100% !important;
  }
}