/**login wrap**/
#user h1 {
	font-size: 26px;
	line-height: 30px;
	position: relative;
	margin: 20px 0;
	font-weight: bold;
}
.login-wrap {
	margin: 8px auto;
	padding: 20px 20px 4px 20px;
	position: relative;
    border: 1px solid #ddd;
	box-sizing: border-box;
}
.login-wrap *{
	box-sizing: border-box;
}
.login-left {
	padding: 0;
	margin: 0;
}
.login-right {
	margin: 15px 0 0 20px;
	width: 350px;
	float: right;
}
.login-right-wrap{
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 4px;
}
.login-member > div {
	position: relative;
}
.login-new {
	margin: 15px 0 0 0;
	position: relative;
}
.login-new > h2{
	font-size: 18px;
	font-weight: bold;
	text-indent: 4px;
	color: #666;
	padding: 4px 0;
}

/** icon **/
.login-right .material-icons.prepender {
	position: absolute;
	top: 5px;
	opacity: .6;
	border-right: 1px solid #ccc;
	height: 42px;
	width: 38px;
	text-align: center;
	line-height: 42px;
	z-index: 1;
}
.login-id, .login-pw {
	border: 1px solid #ccc;
	width: 100%;
	height: 44px;
	margin: 4px auto;
	border-radius: 4px;
	padding: 4px 4px 4px 42px;
	box-sizing: border-box;
	font-size: 17px;
}
	
/**login btn**/
.login-btn {
	outline: none;
	border: none;
	color: #fff;
	background-color: #f93a1a;
	width: 100%;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	padding: 15px 8px;
	border-radius: 4px;
	margin: 8px 0;
	cursor: pointer;
	font-size: 20px;
}
	
/**パスワードを忘れた方**/
.login-forgot-wrap{
	text-align: right;
}
.login-forgot {
	font-size: 13px;
	font-weight: bold;
	text-decoration: underline !important;
	padding: 8px 10px;
	margin: 0;
	color: #575757;
	display: inline-block;
}
.login-forgot .material-icons{
	position: relative;
	top: 2px;
	font-size: 16px;
	color: #444;
}
.login-forgot:hover {
	text-decoration: underline;
}
	
/**会員登録５大特典**/
.login-left h3{
	font-size: 22px;
	color: #575757;
	padding: 0px 10px 20px 10px;
}	
.login-img {
	overflow: hidden;
}
.login-img img{
	width: 100%;
	height: auto;
}	
.login-img .txt-wrap-frm {
	position: relative;
	text-align: center;
	margin-top: 2px;
}
.login-img .txt-wrap{
	margin: 15px 0;
	padding: 10px 0;
	display: inline-block;
}
.login-img .txt-wrap li{
	list-style-type: none;
	margin: 0 0 5px 0;
	font-size: 16px;
	line-height: 30px;	
	text-align: left;
}
.login-img .txt-wrap li:before {
	font-family: "Material Icons"; 
	content: "\e876";
	position: relative;
	left: -5px;
	top: 5px;
	font-size: 22px;
	color: #8fd827;
	font-weight: bold;
}
.login-img .txt-wrap:before, .login-img .txt-wrap:after {
	content: "";
	position: absolute;
	top: 20px;
	width: 40px;
	height: 70%;
	border: 10px solid #ddd;
}
.login-img .txt-wrap:before {
	left: 10px;
	border-right: transparent;
}
.login-img .txt-wrap:after {
	right: 5px;
	border-left: transparent;
}

/**ログインパスワード表示**/
.LoginFormFieldInput::-ms-reveal {
	display: none;
}
.LoginFormFieldInput{
	width: 100%;
	height: 44px;
	margin: 4px auto;
	padding: 4px 50px 4px 42px;
}
.LoginFormFieldCheckbox {
  display: block;
  position: relative;
  height: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-bottom: 0;
	box-sizing: border-box;
}
.LoginFormFieldCheckbox:before {
  display: none;
}
.LoginFormFieldCheckbox input {
	position: absolute;
	opacity: 0;
}
.LoginFormFieldCheckbox input:checked ~ span {
	background-image:url(/images/user/i-eye.png);
}
.LoginFormFieldCheckbox input:checked ~ span::after {
	display: block;
}
.LoginFormFieldCheckboxMark {
	background-image:url(/images/user/i-eye-off.png);
	width: 48px;
	height: 42px;
  background-repeat: no-repeat;
  background-size: 35px 35px;	
  position: absolute;
  top: -47px;
  right: 0;
	display: block!important;
	background-position: center;
}
