@charset "UTF-8";

/* 電子ブックログイン */
.login {
  margin: 2em auto;
  padding: 1em;
  line-height: 1.3em;
  border: #3cb371 solid 4px;
}

h2 {
  margin-bottom: 5px;
  padding-left: 10px;
  border-bottom: 1px solid #3cb371;
  border-left: 8px solid #3cb371;
}

.info {
  font-size: .7em;
}

/* パスワード表示用 */

.passParent {
  position: relative;
}

#passOpen {
  position: absolute;
  top: 40%;
  right: 5%;
  margin-bottom: 30px;
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
}

.eye {
  width: 20px;
  height: 20px;
  background: url("../img/pass.svg") center center no-repeat;
}

.eye.change {
  width: 20px;
  height: 20px;
  background: url("../img/passslash.svg") center center no-repeat;
}

::-ms-reveal {
  display: none;
}

input[type="text"], input[type="password"] {
  width: 95%;
  margin: 0 0 5px 1em;
  font-size: 1.1em;
}

.modalWrap {
  display: flex;
  justify-content: space-around;
}

#login {
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  padding: 12px 0;
  margin: 16px auto 0;
  background: #696969;
  color: #fff;
  width: 50%;
  background: #b22222;
}

#login:hover {
  opacity: .8;
}

/* パス忘れボタン */
.btn_forget {
  padding-left: 2px;
  padding-right: 2px;
  background: #fff;
  font-size: .9em;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  margin-top: 1em;
  text-align: right;
}

.btn_forget:hover {
  opacity: .7;
}

/* 連絡先 */
.telInfo, .idTelInfo {
  font-size: .9em;
  margin-left: 1em;
  margin-top: 1em;
}

.telephone {
  width: 95%;
  margin: .5em auto 15px;
  padding: 15px 2px 2px;
  border: 1pt solid #333;
  text-align: center;
}

.telephone p {
  margin: 0 .5em 5px;
  font-size: .9em;
  line-height: 1.2em;
}

.indentInfo {
  text-indent: -1em;
  padding-left: 2em;
  margin-top: 0;
}

@media screen and (min-width:768px) {

  body {
    width: 450px;
    line-height: 1.3em;
  }

  .header {
    width: 100%;
  }

  .baseName {
    width: 450px;
  }

  #errorWrap {
    width: 100%;
    padding-left: 0;
  }

  .telFlex {
    display: flex;
    justify-content: center;
  }

}