@charset "utf-8";
/*************************************************************
 *
 * Copyright (c) 2026 ysrock Co., Ltd.	<info@ysrock.co.jp>
 * Copyright (c) 2026 Yasuo Sugano	<sugano@ysrock.co.jp>
 *
 * Version	: 1.0.2
 * Update	  : 2026.02.03
 *
 *************************************************************/

body {
  background-color: #f2f2f2;
}

/**
 * ログインフォーム
 **/
#login_form {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: #bdbdbd;
  background-color: #fff;
  text-align: center;
}

/* メッセージ */
#login_form > div.message {
  font-weight: bold;
  line-height: 1.6em;
  color: #ff4136;
}

/* テキストボックス */
#login_form > input {
  display: block;
  width: 100%;
  border-style: solid;
  border-color: #c8cfd7;
  color: #162533;
  transition: border-color .2s;
}

/* 送信ボタン */
#login_form > button {
  display: block;
  width: 100%;
  padding: 0;
  background-color: #005bac;
  font-weight: bold;
  color: #fff;
  transition: background-color .2s,
              color .2s;
}

/* パスワードを忘れた方はこちら */
#password_forget {
  display: inline-block;
  color: #0000f0;
  text-decoration: underline;
  cursor: pointer;
}
@media print, screen and (min-width: 1025px) {
  /* px */

  #login_form {
    width: 600px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%),
                0 3px 1px -2px rgb(0 0 0 / 20%),
                0 1px 5px 0 rgb(0 0 0 / 12%);
    margin-top: 40px;
    border-width: 1px;
    padding: 50px;
  }

  /* ロゴ */
  #logo > img {
    width: 200px;
  }

  /* メッセージ */
  #login_form > div.message {
    margin: 30px 0 16px;
    font-size: 14px;
  }

  /* テキストボックス */
  #login_form > input {
    height: 60px;
    margin-top: 30px;
    border-width: 1px;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    font-size: 18px;
    line-height: 60px;
  }
  #login_form > input + input {
    margin-top: 20px;
  }

  /* 送信ボタン */
  #login_form > button {
    height: 60px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 21px;
    line-height: 60px;
  }

  /* パスワードを忘れた方はこちら */
  #password_forget {
    margin-top: 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
	/* px/8.5 */

  #login_form {
    width: 70.2576vw;
    box-shadow: 0 0.2341vw 0.2341vw 0 rgb(0 0 0 / 14%),
                0 0.3512vw 0.117vw -0.2341vw rgb(0 0 0 / 20%),
                0 0.117vw 0.5854vw 0 rgb(0 0 0 / 12%);
    margin-top: 4.6838vw;
    border-width: 0.117vw;
    padding: 5.8548vw;
  }

  #logo > img {
    width: 23.4192vw;
  }

  #login_form > div.message {
    margin: 3.5128vw 0 1.8735vw;
    font-size: 1.6393vw;
  }

  #login_form > input {
    height: 7.0257vw;
    margin-top: 3.5128vw;
    border-width: 0.117vw;
    border-radius: 0.4683vw;
    box-shadow: inset 0 0.117vw 0.117vw rgb(0 0 0 / 8%);
    font-size: 2.1077vw;
    line-height: 7.0257vw;
  }
  #login_form > input + input {
    margin-top: 2.3419vw;
  }

  #login_form > button {
    height: 7.0257vw;
    margin-top: 2.3419vw;
    border-radius: 0.4683vw;
    font-size: 2.459vw;
    line-height: 7.0257vw;
  }

  #password_forget {
    margin-top: 2.3419vw;
    font-size: 1.6393vw;
  }
}
@media screen and (max-width: 640px) {
	/* px/4 */

  #login_form {
    width: 90vw;
    box-shadow: 0 0.5vw 0.5vw 0 rgb(0 0 0 / 14%),
                0 0.75vw 0.25vw -0.5vw rgb(0 0 0 / 20%),
                0 0.25vw 1.25vw 0 rgb(0 0 0 / 12%);
    margin-top: 10vw;
    border-width: 0.25vw;
    padding: 12.5vw;
  }

  #logo > img {
    width: 50vw;
  }

  #login_form > div.message {
    margin: 7.5vw 0 4vw;
    font-size: 3.5vw;
  }

  #login_form > input {
    height: 15vw;
    margin-top: 7.5vw;
    border-width: 0.25vw;
    border-radius: 1vw;
    box-shadow: inset 0 0.25vw 0.25vw rgb(0 0 0 / 8%);
    font-size: 4.5vw;
    line-height: 15vw;
  }
  #login_form > input + input {
    margin-top: 5vw;
  }

  #login_form > button {
    height: 15vw;
    margin-top: 5vw;
    border-radius: 1vw;
    font-size: 5.25vw;
    line-height: 15vw;
  }

  #password_forget {
    margin-top: 5vw;
    font-size: 3.5vw;
  }
}


/**
 * パスワードを忘れた
 */
#forget_form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .2);
}
body.noScrollY-forget_form > #forget_form {
  display: block;
}

/* 閉じるボタン */
#forget_form > div.close {
  position: fixed;
  top: 1em;
  right: 1em;
  width: 3em;
  height: 3em;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
#forget_form > div.close:hover {
  border-color: #000;
}
#forget_form > div.close::before,
#forget_form > div.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2em;
  height: .5em;
  background-color: #000;
}
#forget_form > div.close::before {
  transform: translate(-50%, -50%)
             rotate(45deg);
}
#forget_form > div.close::after {
  transform: translate(-50%, -50%)
             rotate(-45deg);
}

/* 白背景ラッパー */
#forget_form > div.whiteWrap {
  position: fixed;
  left: 50%;
  border-style: solid;
  border-color: #dbdbdb;
  background-color: #fff;
  opacity: 0;
  transition: opacity .2s;
  transform: translateX(-50%);
}
#forget_form.is-transition > div.whiteWrap {
  opacity: 1;
}

/* テキストボックス */
#forget_form > div.whiteWrap > input {
  display: block;
  width: 100%;
  border-style: solid;
  border-color: #c8cfd7;
  color: #162533;
  transition: border-color .2s;
}

/* 送信ボタン */
#forget_form > div.whiteWrap > button {
  display: block;
  width: 100%;
  padding: 0;
  background-color: #005bac;
  font-weight: bold;
  color: #fff;
  transition: background-color .2s,
              color .2s;
}
@media print, screen and (min-width: 1025px) {
  /* px */

  /* 閉じるボタン */
  #forget_form > div.close {
    border-width: 1px;
  }
  
  /* 白背景ラッパー */
  #forget_form > div.whiteWrap {
    top: 100px;
    width: 550px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%),
                0 3px 1px -2px rgb(0 0 0 / 20%),
                0 1px 5px 0 rgb(0 0 0 / 12%);
    border-width: 1px;
    border-radius: 10px;
    padding: 50px;
  }
  
  /* テキストボックス */
  #forget_form > div.whiteWrap > input {
    height: 60px;
    margin-top: 20px;
    border-width: 1px;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    font-size: 18px;
    line-height: 60px;
  }
  /* 送信ボタン */
  #forget_form > div.whiteWrap > button {
    height: 60px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 21px;
    line-height: 60px;
  }
}






@media print, screen and (min-width: 1025px) {
  /* px */

}