@charset "UTF-8";


/* ログイン
------------------------------------------------------------------------------------*/
.formAlert_txt {
  width: 520px;
  background: rgb(248 89 147 / .05);
  border: #f85993 solid 1px;
  border-radius: 5px;
  color: #f85993;
  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: #ccc 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: rgb(248 89 147 / .05);
  border: #f85993 solid 1px;
}

.form_check_wrap {
  color: #3c3c3c;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 4px;
}

.form_check {
  width: 20px;
  height: 20px;
  border: #ccc 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:#f85993 solid 3px;
  border-left: #f85993 solid 3px;
  display: block; 
  position: absolute;
  top: 3px;
  left: 2px;
  transform: rotate(-45deg);
  opacity: 0;
}
 .form_check:checked::after { opacity: 1; }

 /* パスワード再設定のお知らせ
------------------------------------------------------------------------------------*/
.loginInfo_wrap{
  display: flex;
  justify-content: center;
  margin: 16px auto 0;
  text-align: center;
}
.loginInfo_wrap a{
  border: 2px solid #098bf2;
  color: #098bf2;
  padding: 16px;
  position: relative;
  display: block;
  font-weight: bold;
  min-width: 960px;
}
.loginInfo_wrap a:hover{
  text-decoration: none;
}
.loginInfo_wrap a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: #098bf2 solid 2px;
  border-bottom: #098bf2 solid 2px;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  transform: rotate(-45deg);
  right: 16px;
}
.loginInfo_wrap br{
  display: none;
}