@charset "UTF-8";
i{
font-style: normal;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
  member confirm
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/*--------------*/
.main{
  margin: 60px auto;
/*width: 1200px;*/
}
.main > h2{
  margin: auto auto 60px;
  text-align: center;
}
.main > h2 > span{
  font-size: 28px;
  font-weight: 500;
  color: #061651;
  letter-spacing: 0.15em;
}

/*----------------------------------------*/
.member_login-form{
  background-color: #e2e8ed;
  margin: 60px auto;
  padding: 40px 0;
}
.MLF-div{
  width: 900px;
  margin: auto;
}
.MLF-div > form{
  margin: auto;
  width: 900px;
}
.MLF-table{
  width: 900px;
}

.MLF-table th{
  border-right: none;
  background-color: #e2e8ed;
  position: relative;
  text-align: left;
  width: 200px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #061651;
  vertical-align: top;
  padding: 25px 0 25px 65px;
}
.MLF-table td{
  border-left: none;
  width: 700px;
  font-size: 16px;
  padding: 12px 0 12px 40px;
  font-weight: 500;
}
.InputText01{
  width: 100%;
  font-size: 16px;
  padding: 12px 12px;
  border: 1px solid #061651;
}
.MLFtable-ul{
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.MLFtable-ul li > p{
  color: #004ba4;
  font-size: 16px;
  font-weight: 400;
}
.MLFtable-ul li > p > a{
  color: #004ba4;
  padding: 0 3px;
  font-weight: 500;
  border-bottom: 1px solid #004ba4;
}
.MLFtable-ul li > p > a:hover{
  color: #555555;
  border-bottom: none;
}

/* チェックボックス01 */
.MLFtable-ul > li > input[type=checkbox] {
  display: none;
}
.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.MLFtable-ul > li > .checkbox01::before {
  background: #fff;
  border: 1px solid #231815;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.MLFtable-ul > li > .checkbox01::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;f;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -6px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.MLFtable-ul > li > input[type=checkbox]:checked + .checkbox01::before {
  background: #061651;
  border: 1px solid #061651;
}
.MLFtable-ul > li > input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}


/*----------------------------------------*/
.MLF-btn_area{
  margin: 0 auto auto 240px;
}
.ButtonSubmit{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  border: 2px solid #061651;
  position: relative;
  display: table;
  width: 500px;
  height: 80px;
  text-align: center;
  background-color: #fff;
  margin: 40px 0 auto 0;
  overflow: hidden;
}
.ButtonSubmit::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: #061651;
}
.ButtonSubmit:hover::before{
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.ButtonSubmit::after{
  position: absolute;
  z-index: 5;
  right: 15px;
  top: 30px;
  content: '';
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  border-color: #061651 #061651 transparent transparent;
  transform: rotate(45deg);
  transition: all .4s;
  -webkit-transition: .4s;
  transition: .4s;
}
.ButtonSubmit:hover::after{
  border-color: #fff #fff transparent transparent;
}
.ButtonSubmit > span{
  position: relative;
  z-index: 10;
  display: table-cell;
  width: 500px;
  vertical-align: middle;
  text-align: center;
  font-size: 28px;
  color: #061651;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: all .4s;
  -webkit-transition: .4s;
  transition: .4s;
}
.ButtonSubmit:hover > span{
  color: #fff;
}

/*----------------------------------------*/
.MLF-div > form > p.Error{
  color: #b52626;
  display: block;
  margin: auto;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.12em;
}
.MLF-div > form > p.Error > strong{
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: auto;
}
.MLF-div > form > p.Error > span{
  display: block;
  margin: 10px auto 10px;
}
.MLF-table .InputText01.Error{
  background-color: #ffd4d4;
  border: 1px solid #b52626;
}



