@charset "UTF-8";

main{

}
/*---------------------------------------------------------------*/
/*--//fvArea--*/





/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*　　　　PC css　　　　*/
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
main{
  padding: 150px 0 0 0;
}
/*---------------------------------------------------------------*/
/*--//mainArea--*/
.mainArea{
  width: 700px;
  padding: 40px 100px;
  margin: auto auto 150px;
  border-radius: 8px;
  background-color: #dff6ff;
}
.mainArea > h2{
  position: relative;
  text-align: center;
  margin: 0 0 20px 0;
}
.mainArea > h2 > span{
  font-size: 20px;
  color: #333333;
  font-weight: 500;
}

.formDl{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.formDl > dt{
  position: relative;
  width: 200px;
  margin: 5px 0;
}
.formDl > dt > span{
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
}
.formDl > dd{
  margin: 5px 0;
  width: 300px;
}

.formDl > dt.retentionCheckText > span{
  font-size: 12px;
}
.formDl > dd > label{
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.formDl > dd > label > span{
  padding: 2px 0 0 10px;
}

input[type="text"] {
  width: 100%;
}
input[type="password"] {
  width: 100%;
}
input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 2px;
  cursor: pointer;
}
input[type="checkbox"]:checked {
  background-color: #06b6d4;
  border: 1px solid #06b6d4;
}
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.ButtonSubmit{
  background-color: #6ac8ef;
  border: 1px solid #6ac8ef;
  width: 200px;
  height: 40px;
  margin: 20px auto 20px 200px;
transition: all 0.4s ease;
}
.ButtonSubmit > span{
  color: #fff;
  display: grid;
  place-items: center;
transition: all 0.4s ease;
}
.ButtonSubmit:hover{
  background-color: #fff;
}
.ButtonSubmit:hover > span{
  color: #6ac8ef;
}

.NoPassText{
  text-align: center;
  font-size: 14px;
  padding: 20px 0 0 0;
}
.NoPassText > a{
  text-decoration: underline;
}
.NoPassText > a:hover{
  text-decoration: none;
}

.NopasText,
.NomailText{
  color: #931533;
  font-size: 13px;
  white-space: nowrap;
  padding: 5px 0 0 0;
}
.ReissueText{
  padding: 20px;
  margin: 0 0 20px 0;
  line-height: 1.3;
  background-color: #fff;
}


}/*--　PC css終了　--*/
