@charset "utf-8";

/*____________________________________________________________________________

SITE TITLE: FASHION WALKER
TITLE: PC ログイン 【L4】
____________________________________________________________________________*/

/*共通*/
#login h2 {
  margin: 12px 0 33px;
}
#users {
  color:#000;
  display: flex;
  justify-content: space-between;
}
#users:after {
    /* content:""; */
    display:block;
    clear:both;
}
#users h3 {
  font-size: 18px;
  background:#f5f5f5;
  padding:15px 20px;
}
#users p {
  font-size: 14px;
  margin-bottom:20px;
  line-height: 170%;
}
/* ログイン */
.registered_users {
  width: 480px;
  /* min-height:430px; */
  /* float:left; */
  border:1px solid #ddd;
  box-sizing:border-box;
}
.registered_users_in, .new_users_in {
  padding:23px 36px 0 40px;
}
.registered_users a {
  display:block;
  color: #c970b9;
  text-decoration:underline;
  text-align: center;
  font-size: 14px;
  margin: 20px 0; 
}
.registered_users a:hover {
  text-decoration:none;
}
.registered_users dl {
  clear:both;
  overflow:hidden;
  margin-bottom: 15px;
}
.registered_users dt, .registered_users dd {
  width: 100%;
}
.registered_users dt label {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 7px;
}
.registered_users input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.registered_users input {
  width: 100%;
  background:#fff;
  border:1px solid #ddd;
  box-sizing:border-box;
  padding: 13px 10px;
  font-size: 14px;
}
#password_visibility_label {
  cursor: pointer;
}
.registered_users .block-password{
  margin-bottom:32px;
}

/* 新規会員登録 */
.new_users {
  width: 480px;
  /* height:430px; */
  /* float:right; */
  border:1px solid #ddd;
  box-sizing:border-box;
}
.new_users ul {
  margin-bottom: 33px;
}
.new_users li {
  font-size: 16px;
  padding: 9px 0;
  color: #c970b9;
  background:url(//sc3.locondo.jp/contents/img/pc/login_dot.gif) no-repeat left center;
  padding-left: 13px;
}
/* ボタン共通設定 */
button#login_btn ,
button#new_btn {
  display:block;
  cursor:pointer;
  border:none;
  width: 100%;
  height:54px;
  font-size:18px;
  color:#fff;
  border-radius:4px;
}
button#login_btn {
  margin:20px 0 0 0;
  background-color: #c970b9;
}
button#new_btn {
  margin:0 0 0 0;
  color: #c970b9;
  background-color:#fff;
  border:1px solid #c970b9;
}
button#login_btn:hover ,
button#new_btn:hover  {
  filter:alpha(opacity=60);
  -ms-filter:"alpha(opacity=60)";
  opacity:0.8;
}
/* エラーメッセージ */
a#loginError {
    color: #f06f47;
    text-decoration: underline;
}
a#loginError:hover {
    color: #f06f47;
    text-decoration: none;
}

/* ログイン再認証 */

#login.isLogin h2 {
  display: none;
}
#login.isLogin .registered_users {
  float: none;
  margin: 32px auto 0;
  width: 490px;
}
#login.isLogin button#login_btn {
}

/* FWユーザー */
.legacy_member_info{
  background-color: #f4f4f4;
  padding: 20px;
  margin-bottom: 20px;
}
.legacy_member_info a{
  color: #444;
  text-decoration: underline;
}
.important_icon{
  color: #fff;
  background-color: #000;
  border-radius: 2px;
  padding: 2px 4px;
  font-weight: bold;
  font-size: 12px;
  margin-right: 8px;
}
h3.legacy_member_info_title{
  font-size: 14px;
  font-weight: bold;
}
.legacy_member_info_text{
  margin: 10px 0 5px;
}
.legacy_member_info_note{
  font-size: 11px;
}
/* エラーメッセージ調整 */
.loginPage .error-msg .txt{
  display:block;
  margin-bottom:.5em;
  font-size:13px;
}
.loginPage .error-msg .note{
  display:inline-block;
  line-height:1.7;
  font-size:11px;
  font-weight:400;
}
.loginPage .error-msg .note a{
  text-decoration:underline;
  color:inherit !important;
}