@charset "UTF-8";
/* ----------------------------------------------
    会員ログイン
    ログアウト
    新しいパスワードを取得
    重複ログインについて
    閲覧できないページです
---------------------------------------------- */
.page-taketin {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100vh - 64px - 130px);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .page-taketin {
    min-height: calc(100vh - 60px - 372px);
  }
}
.page-taketin a {
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}
.page-taketin a:hover {
  opacity: 0.6;
}
.page-taketin .tmp-login-form-pw-reset-link,
.page-taketin label.tmp-rember-label,
.page-taketin .new-member-link,
.page-taketin .tmp-label,
.page-taketin input[type=submit],
.page-taketin .tmp-pw-reset-email-label {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-taketin .tmp-login-form-pw-reset-link,
  .page-taketin label.tmp-rember-label,
  .page-taketin .new-member-link,
  .page-taketin .tmp-label,
  .page-taketin input[type=submit],
  .page-taketin .tmp-pw-reset-email-label {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------
    会員ログイン
---------------------------------------------- */
.page-login-img {
  display: block;
  width: 113px;
  height: auto;
  margin: auto;
}
.form-box {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.03);
  max-width: 560px;
  width: 100%;
  padding: 40px 75px 60px;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .form-box {
    width: 90%;
    padding: 30px 20px;
    margin: 60px auto;
  }
}

.login-box {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .login-box {
    margin-top: 30px;
  }
}
.login-box .new-member-link {
  display: block;
  font-weight: 500;
  color: #3f51b5;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin: auto;
}
.login-box .tmp-mail-input input,
.login-box .tmp-password-input input,
.login-box .tmp-pw-reset-email-input input {
  background-color: #fff;
  border: 1px solid #dbdbdb;
}
@media screen and (max-width: 767px) {
  .login-box .tmp-mail-input input,
  .login-box .tmp-password-input input,
  .login-box .tmp-pw-reset-email-input input {
    font-size: 1.6rem;
  }
}
.login-box .tmp-label {
  font-weight: 500;
}
.login-box .tmp-login-submit {
  margin: 40px auto;
}
.login-box .tmp-login-submit .tmp-login-form-submit {
  display: block;
  font-weight: 700;
  color: #fff;
  line-height: 2;
  text-align: center;
  border-radius: 4px;
  width: 100%;
  height: 50px;
  padding: 5px 52px;
}
.login-box #forgot_pass {
  font-weight: 500;
  text-decoration: underline;
}
.login-box #tmp-login-form-pw-reset-box {
  margin-bottom: 16px;
}
.login-box label.tmp-rember-label {
  cursor: pointer;
  font-weight: 500;
}

/* ----------------------------------------------
    ログアウト
---------------------------------------------- */
.logout-box img {
  display: block;
  width: 113px;
  height: auto;
  margin: 0 auto 40px;
}
.logout-box #logout-datetime {
  display: none;
}
.logout-box #logout-text {
  text-align: center;
  margin-bottom: 30px;
}
.logout-box .login-link {
  display: block;
  font-weight: 500;
  color: #3f51b5;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin: auto;
}
/* ----------------------------------------------
    新しいパスワードを取得
---------------------------------------------- */
.new-password-box #tmp-pw-reset-form {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .new-password-box #tmp-pw-reset-form {
    margin-top: 20px;
  }
}
.new-password-box .tmp-pw-reset-text {
  background-color: #fff;
  border: 1px solid #dbdbdb;
}
.new-password-box .tmp-pw-reset-submit-button {
  margin: 40px auto 20px;
}
.new-password-box .tmp-pw-reset-submit {
  display: block;
  font-weight: 700;
  color: #fff;
  line-height: 2;
  text-align: center;
  border-radius: 4px;
  width: 100%;
  height: 50px;
  padding: 5px 52px;
}
.new-password-box .tmp-login-form-pw-reset-link {
  display: block;
  font-weight: 500;
  color: #3f51b5;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin: auto;
}

/* ----------------------------------------------
    重複ログインについて
---------------------------------------------- */
.duplicate-not-allow {
  width: min(1100px, 88vw);
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .duplicate-not-allow {
    width: 90%;
  }
}

/* ----------------------------------------------
    閲覧できないページです
---------------------------------------------- */
.membership-not-allow {
  width: 560px;
}
@media screen and (max-width: 767px) {
  .membership-not-allow {
    width: 90%;
  }
}/*# sourceMappingURL=taketin.css.map */