@charset "UTF-8";

/*----------------------------------------------------
COMMON STYLE
----------------------------------------------------*/

button {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align:middle;
  font-family : inherit;
  font-size : 100%;
}

.pc { display: block; }
.sp { display: none; }

.txtLink {
  text-decoration: underline;
}

.sup {
  font-size: 0.8em;
	vertical-align: top;
}

.bold {
  font-weight: bold;
}

.cRed {
  color: #f00;
}

/*----------------------------------------------------
#form（ログイン画面）
----------------------------------------------------*/

.loginArea {
  font-size: 14px;
  line-height: 1.2;
  max-width: 560px;
  width: 75%;
  padding: 6% 8%;
  border:1px solid #cccccc;
  line-height: 200%;
  margin: 100px auto;
}

.inputBox label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
}

.loginInputField {
  max-width: 500px;
  height: 28px;
  width: 100%;
  box-sizing: border-box;
}

.form_inner {
  max-width: 500px;
  margin: 0 auto;
}

.inputBox.pass {
  margin-top: 30px;
}

.loginBtn {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: block;
  width: 256px;
  height: 42px;
  padding: 8px 0;
  background: url(../img/btn_bbsize.png) no-repeat;
      background-position-x: 0%;
      background-position-y: 0%;
  background-position: 0 0;
  margin: auto;
  box-sizing: content-box;
  cursor: pointer;
}

.loginBtn:hover {
  background-position:0 -59px;
	color: #fff;
}

.buttonBox {
  width: 100%;
  margin-top: 20px;
}

.error {
  width: 100%;
  color: #e60012;
  margin-top: 40px;
  text-align: center;
}

.field-icon {
  position: relative;
}

.field-icon .fas {
  color: #000;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-40%);
  cursor: pointer;
}

.label {
  font-weight: bold;
}

/*----------------------------------------------------
.mainte（メンテナンス画面）
----------------------------------------------------*/

.mainte {
  max-width: 690px;
  width: 75%;
  min-height: 100px;
  padding: 6% 5%;
  margin: 100px auto;
  border: 8px solid #ededed;
  line-height: 200%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mainte_txt {
  font-size: 18px;
  line-height: 1.7;
  text-indent: -5em;
  padding-left: 5em;
}

.mainte_txt.txtEn {
  margin-top: 1.5em;
  padding-top: 1.5em;
  position: relative;
}

.mainte_txt.txtEn::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #ededed;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.note {
  font-size: 0.8em;
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}

.noteEn {
  text-indent: -0.7em;
  padding-left: 0.7em;
}

.lsAj {
  letter-spacing: 0.15em;
}

@media screen and (max-width: 750px) {

  /*----------------------------------------------------
  COMMON STYLE
  ----------------------------------------------------*/

  .pc { display: none; }
  .sp { display: block; }

  /*----------------------------------------------------
  #form（ログイン画面）
  ----------------------------------------------------*/
  .loginArea {
    margin: 50px auto;
  }

  /*----------------------------------------------------
  .mainte（メンテナンス画面）
  ----------------------------------------------------*/
  .mainte {
    min-height: none;
    margin: 50px auto;
  }

  .mainte_txt {
    font-size: 16px;
    text-indent: 0;
    padding-left: 0;
  }

}


