@charset "UTF-8";


/* ログイン
------------------------------------------------------------------------------------*/
.formAlert_txt {
  width: 520px;
  background: #fdf5f8;
  border: #c8155b solid 1px;
  border-radius: 12px;
  color: #d4155b;
  font: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 2rem;
  position: relative;
  margin: 24px auto 0;
  padding: 14px 48px;
}
.formAlert_txt::before,
.formAlert_txt::after {
  content: "";
  width: 18px;
  height: 16px;
  background: url(/images/pc/common/formAlert_icon_pc.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.formAlert_txt::before { left: 20px; }
.formAlert_txt::after { right: 20px; }

.form_password_wrap { position: relative; }

.password_viewBtn {
  width: 22px;
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 10px;
  cursor: pointer;
}
.password_viewBtn_off { opacity: 0.4; }

.form_mail,
.form_password {
  width: 100%;
  height: 44px;
  border: #ddd solid 1px;
  font-size: 1.6rem;
  display: block;
  margin: 20px 0 0;
  padding: 0 12px;
}
.form_password { padding-right: 40px; }

.js_field_error {
  background-color: #fae6ed;
  border: #d4155b solid 1px;
}

.form_check_wrap {
  color: #707070;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 4px;
}

.form_check {
  width: 20px;
  height: 20px;
  border: #ddd solid 1px;
  border-radius: 4px;
  position: relative;
  top: 4px;
  cursor: pointer;
  margin-right: 8px;
  -webkit-appearance: none;
}
.form_check::after {
  content: "";
  width: 14px;
  height: 8px;
  border-bottom:#d4155b solid 3px;
  border-left: #d4155b solid 3px;
  display: block; 
  position: absolute;
  top: 3px;
  left: 2px;
  transform: rotate(-45deg);
  opacity: 0;
}
 .form_check:checked::after { opacity: 1; }