@charset "utf-8";

/*PC（751px以上）*/

@media screen and (min-width: 750px) {

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  .login-container {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0 30px 0;
  }

  .login-container h1 {
    text-align: center;
    font-size: 3vw;
    line-height: 2;
    color: #111;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 2px;
  }
  
  .login-container h5 {
    text-align: center;
    font-size: 2vw;
    line-height: 1.5;
    font-weight: bold;
    color: #111;
    font-family: "Sawarabi Gothic", sans-serif;
  }

  .login-form-control {
    border: solid 2px #111;
    border-radius: 10px;
    margin: 0 auto;
    width: 60%;
    font-size: 24px;
    line-height: 2;
    padding: 8px;
    display: block;
  }

  .login-alert-danger {
    margin: 10px auto 0 auto;
    font-size: 18px;
    background-color: #ffddff;
    color: #f00;
    line-height: 1.5;
    padding: 10px;
    width: 50%;
    border-radius: 5px;
  }

  .login-form-submit {
    margin: 0 auto;
    width: 30%;
    font-size: 2vw;
    line-height: 2;
    text-align: center;
    background-color: #005500;
    border-radius: 10px;
    font-weight: bold;
    display: block;
    color: #fff;
    font-family: "Sawarabi Gothic", sans-serif;
  }

  .login-form-submit:hover {
    cursor: pointer;
    opacity: 0.7;
  }

  .btn {
    display: inline-block;
    background-color: #000088;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    font-family: "Sawarabi Gothic", sans-serif;
  }

}

/*SP（750px以下）*/

@media screen and (max-width: 750px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .login-container {
    width: 98%;
    margin: 0 auto;
    padding: 20px 0 30px 0;
  }

  .login-container h1 {
    text-align: center;
    font-size: 5vw;
    line-height: 1.8;
    font-weight: bold;
    color: #111;
    font-family: "Sawarabi Gothic", sans-serif;
    font-style: normal;
    letter-spacing: 2px;
  }

  .login-container h5 {
    text-align: center;
    font-size: 4.8vw;
    line-height: 1.5;
    font-weight: bold;
    color: #111;
    font-family: "Sawarabi Gothic", sans-serif;
  }

  .login-form-control {
    border: solid 2px #111;
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    font-size: 24px;
    line-height: 1.5;
    padding: 8px;
    display: block;
  }

  .login-alert-danger {
    margin: 10px auto 0 auto;
    font-size: 14px;
    background-color: #ffddff;
    color: #f00;
    line-height: 1.5;
    padding: 5px;
    width: 100%;
    border-radius: 5px;
  }

  .login-form-submit {
    margin: 0 auto;
    width: 90%;
    font-size: 4.5vw;
    line-height: 2;
    text-align: center;
    background-color: #005500;
    border-radius: 10px;
    font-weight: bold;
    display: block;
    color: #fff;
    font-family: "Sawarabi Gothic", sans-serif;
  }

  .login-form-submit:hover {
    cursor: pointer;
    opacity: 0.7;
  }

  .btn {
    display: inline-block;
    background-color: #000088;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    font-family: "Sawarabi Gothic", sans-serif;
  }

}