/* -------------------------------------------------------
基本設定
---------------------------------------------------------- */
html { font-size: 62.5%; /* 1rem = 10px */ width: 100%; }
body { font-family: "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; margin: 0; padding: 0; color: #111; background: #fff; font-size: 1.6rem; }

/* -------------------------
ログインページ
-------------------------- */
.login-header {
  margin: 20px auto 0;
  padding: 0 10px;
  width: 100%;
}

.login-header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo__img {
  width: 200px;
  height: auto;
}

.login-header-top__text {
  font-size: 22px;
  font-weight: 700;
}

.login-header-info {
  background: #f0f0f0;
  padding: 16px;
}

.login-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.login-wrap {
  border: 2px solid #878787;
  margin: 10px;
}

.login-wrap--column {
  display: flex;
  flex-direction: column;
}

.login-ttl {
  background: #f0f0f0;
  padding: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.login-ttl__sub {
  font-size: 20px;
}

.login-form {
  padding: 24px 22px;
}

.login-text {
  margin-bottom: 20px;
  max-width: 100%;
}

.login-text:last-of-type {
  margin-bottom: 0;
}

.login-text__label {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.login-text__input {
  width: 100%;
  border: 2px solid #878787;
  border-radius: 6px;
  padding: 9px 16px;
}

.login-text__input:focus {
  outline: none;
  border: 2px solid #e4005a;
}

.login-checkbox {
  margin: 10px 0;
}

.login-checkbox-center {
  margin: 10px 0;
  text-align: center;
}

.login-checkbox__input {
  margin-right: 24px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.login-checkbox__input::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffffff;
  border: 2px solid #878787;
  width: 20px;
  height: 20px;
  top: -12px;
  left: 0;
}

.login-checkbox__input::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  opacity: 0;
  height: 6px;
  width: 11px;
  transform: rotate(-45deg);
  top: -7px;
  left: 5px;
}

.login-checkbox__input:checked::before {
  background: #e4005a;
  border: 2px solid #e4005a;
}

.login-checkbox__input:checked::after {
  opacity: 1;
}

.login-checkbox__label {
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.login-link-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 0;
}

.login-link-wrap {
  text-align: center;
  margin: 5px;
}

.login-link {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  color: #000;
  padding: 10px;
}

.login-link__arrow {
  display: inline-block;
  position: relative;
  padding: 10px;
}

.login-link__arrow::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  left: 3px;
  top: 12px;
  transform: rotate(45deg);
}

.login-button-wrap {
  max-width: 320px;
  margin: 0 auto;
}

.login-button {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 8px;
  border-radius: 6px;
  background: #e4005a;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.login-button.--blue {
  background: #61A6B7;
}

.login-desc {
  padding: 20px 12px;
}

.login-desc__text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.js-auth-recaptcha-error{
   font-size: 12px;
   margin-top: 10px;
   color: #e4005a;
}

.login-bottom {
  text-align: right;
  padding: 0 10px;
}

.login-bottom a {
  color: #000;
  padding-right: 10px;
  font-weight: bold;
}

.login-mailregist {
  padding: 25px;
}

.login-mailregist-text {
  font-size: 18px;
  text-align: center;
  line-height: 2;
  margin: 0 auto 20px;
}

.login-mailregist-text.--small {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

.login-mailregist-text a {
  text-decoration: none;
  color: #00a0e9;
}

.login-mailregist-link {
  text-align: right;
}

.login-mailregist-link a {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  margin-left: 14px;
}

@media screen and (min-width: 768px) {
  .login-header {
    margin: 40px auto 0;
    max-width: 1000px;
  }

  .login-header-top {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .login-logo {
    margin-right: 15px;
  }

  .login-logo__img {
    width: 290px;
    height: auto;
  }

  .login-header-top__text {
    font-size: 33px;
    font-weight: 700;
  }

  .login-content {
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .login-wrap {
    max-width: 480px;
    border: 2px solid #878787;
    flex: 1;
    margin: 10px;
  }

  .login-ttl {
    background: #f0f0f0;
    padding: 22px 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-direction: row;
  }

  .login-ttl__sub {
    font-size: 20px;
  }

  .login-form {
    padding: 50px 44px;
  }

  .login-link:hover {
    opacity: 0.7;
  }

  .login-desc {
    padding: 25px 20px;
  }

  .login-content {
    padding-bottom: 80px;
  }

  .login-mailregist {
    max-width: 1000px;
    margin: 0 auto;
    padding: 130px 25px;
  }

  .login-mailregist-text {
    font-size: 33px;
    text-align: center;
    line-height: 2;
    margin: 0 auto 50px;
  }

  .login-mailregist-text.--small {
    font-size: 20px;
    text-align: center;
    line-height: 2;
  }

  .login-mailregist-link a {
    color: #000;
    text-decoration: underline;
    margin-left: 14px;
  }
}

@media screen and (max-width: 500px) {
  .login-content {
    padding-bottom: 120px;
  }
  .login-header-top__text {
    text-align: center;
  }
}

.js-auth-recaptcha-error{
   font-size: 12px;
   margin-top: 10px;
   color: #e4005a;
}
.u-f-primary {
  color: #e4005a;
}
.u-f-bold {
  font-weight: bold;
}
.u-f-bold.u-f-black {
  color: #000;
  padding-right: 10px;
  font-weight: bold;
}


/* -------------------------
規約同意・会員情報ページ
-------------------------- */

.auth-header {
  padding: 20px 10px;
  text-align: center;
}

.auth-logo-img {
  width: 200px;
  height: auto;
}

.auth-content {
  margin: 10px;
}

.auth-ttl-wrap {
  background: #f0f0f0;
  padding: 18px 15px;
  border: 2px solid #878787;
  border-bottom: none;
}

.auth-ttl {
  color: #e4005a;
  font-size: 22px;
}

.auth-ttl-desc {
  font-size: 16px;
}

.auth-table {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid #878787;
  border-top: none;
  font-size: 16px;
}

.auth-table-row {
  border-bottom: 2px solid #878787;
  padding: 34px 15px;
  display: block;
}

.auth-table-row:last-child {
  border-bottom: none;
}

.is-no-checked {
  background-color: rgba(228, 0, 127, 0.06);
}

.auth-table-header {
  display: block;
  margin-bottom: 10px;
}

.auth-table-header__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.auth-table-required {
  font-size: 14px;
  background: #ff5448;
  color: #ffffff;
  padding: 2px;
  line-height: 1;
}

.auth-table-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-alert {
  display: none;
  color: #ff5448;
  font-weight: 700;
  padding-left: 7px;
}

.auth-input-wrap {
  display: flex;
}

.auth-checkbox {
  margin-right: 24px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.auth-checkbox::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #878787;
  width: 14px;
  height: 14px;
  top: 5px;
  left: 5px;
}

.auth-checkbox::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  opacity: 0;
  height: 6px;
  width: 8px;
  transform: rotate(-45deg);
  top: 8px;
  left: 8px;
}

.auth-checkbox:checked::before {
  background: #e4005a;
  border: 1px solid #e4005a;
}

.auth-checkbox:checked::after {
  opacity: 1;
}

.auth-radio {
  margin-right: 24px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.auth-radio::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #878787;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  top: 5px;
  left: 5px;
}

.auth-radio::after {
  content: "";
  display: block;
  position: absolute;
  border: 2px solid #ffffff;
  opacity: 0;
  height: 10px;
  width: 10px;
  top: 7px;
  left: 7px;
  border-radius: 50%;
}

.auth-radio:checked::before {
  background: #e4005a;
  border: 2px solid #e4005a;
}

.auth-radio:checked::after {
  opacity: 1;
}

.auth-label {
  cursor: pointer;
}

.auth-link {
  color: #2f9ee7;
}

.auth-button-wrap {
  max-width: 300px;
  margin: 20px auto;
}

.auth-button {
  background: #e4005a;
  color: #ffffff;
  padding: 8px 46px 8px 40px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.auth-button::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 1px;
  border-right: solid 1px;
  position: absolute;
  right: 42%;
  top: 17px;
  transform: rotate(45deg);
}

.auth-list{
  padding-left: 1em;
  list-style-type: disc;
  list-style-position: outside;
}

.login-err {
  color: red;
  margin: 3px 0;
}

.js-login-btn:disabled,
.js-auth-btn:disabled {
  opacity: .6;
}

@media screen and (min-width: 768px) {
  .auth-header {
    border-bottom: 5px solid #e4005a;
    text-align: center;
    padding: 40px 0 10px;
  }

  .auth-logo-img {
    width: 290px;
    height: auto;
  }

  .auth-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px;
  }

  .auth-ttl-wrap {
    background: none;
    padding: 8px;
    border: none;
  }

  .auth-ttl {
    color: #e4005a;
    font-size: 28px;
  }

  .auth-table {
    border-collapse: collapse;
    width: 100%;
    margin: 30px auto;
    border: none;
    font-size: 16px;
  }

  .auth-table-row {
    border-bottom: none;
    padding: 0;
    display: table-row;
  }

  .auth-table-header {
    border: 1px solid #878787;
    border-left: none;
    padding: 0.8em 0.4em 0.8em 0.8em;
    width: 36.5%;
    display: table-cell;
  }

  .auth-table-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
  }

  .auth-table-cell {
    border: 1px solid #878787;
    border-right: none;
    padding: 0.8em;
    display: table-cell;
  }

  .auth-input-wrap {
    display: flex;
    margin-bottom: 10px;
  }

  .auth-input-wrap:last-child {
    margin-bottom: 0;
  }

  .auth-button-wrap {
    text-align: right;
    max-width: none;
  }

  .auth-button {
    background: #e4005a;
    color: #ffffff;
    padding: 8px 46px 8px 40px;
    font-size: 16px;
    position: relative;
    display: inline-block;
    width: auto;
  }

  .auth-button::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: solid 1px;
    border-right: solid 1px;
    position: absolute;
    right: 36px;
    top: 17px;
    transform: rotate(45deg);
  }

    .auth-list{
    padding-left: 1em;
    list-style-type: disc;
    list-style-position: outside;
    }
}


/* -------------------------
共通
-------------------------- */

.c-button {
  display: flex;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  text-decoration: none;
  height: max-content;
}
.c-button.--membership-delete {
  background: #e4005a;
  color: #ffffff;
  font-weight: 700;
}
.c-button[disabled] {
  opacity: .3;
  cursor: not-allowed;
}
.c-label {
  padding: 4px;
  font-size: .8em;
  font-weight: bold;
}
.c-label.--err {
  background: red;
  color: #fff;
  margin-left: 10px;
}

/* -------------------------
利用停止
-------------------------- */

.membership-delete-header {
  border-bottom: 5px solid #e4005a;
  text-align: center;
  padding: 40px 0 10px;
}
.membership-delete {
  width: 90%;
  margin: auto;
}
.membership-delete-wrap {
  width: 96%;
  margin: 20px auto;
}
.membership-delete-form {
  display: flex;
  flex-direction: column;
}
.membership-delete-form button {
  margin-bottom: 10px;
}
.membership-delete-ttl {
  color: #e4005a;
}
.membership-delete-txt {
  margin: 10px 0 30px 0;
}
@media screen and (min-width: 768px) {
  .membership-delete {
    max-width: 1000px;
  }
  .membership-delete-form {
    flex-direction: row;
    justify-content: space-between;
  }
}

.membership-delete.--completed {
  .membership-delete-wrap {
    text-align: center;
    margin-top: 60px;
  }
  .membership-delete-ttl {
    font-size: 28px;
    margin-bottom: 10px;
  }
}