@charset "UTF-8";


/* =====================================================
 * ログインページ
 * ===================================================== */


.parent { /* 全体の枠 */
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


@media screen AND (min-width:1125.1px) {
  .parent {
    width: 480px;
  }
}


/* -------------------------
 * ログインマーク
 * ------------------------- */
.gate_lock {
  margin: 0 10px 30px 0;
  text-align: center;
  font-weight: bold;
  font-size: 130%;
}


.gate_lock::before {
  font-family: "Font Awesome 5 Free";
  content: "\f023";
  display: inline-block; /* 必須 */
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: #999;
  color:#fff;
  font-size: 150%;
  font-weight: 900;
  margin-right: 10px;
}


/* -------------------------
 * 見出し
 * ------------------------- */
.type_in {
  margin: 0;
  font-size: 90%;
  font-weight: bold;
}


.supp { /* 補足説明 */
  margin: 0;
  font-weight: normal;
  font-size: 80%;
  color: #666;
}


/* -------------------------
 * 下部のボタン
 * ------------------------- */
.twin-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* -------------------------
 * エラー出力
 * ------------------------- */
.error {
  margin: 5px 0px 0px;
  font-size: 85%;
  color: red;
  white-space: normal;
}
