@charset "UTF-8";


/*--------------------------------
MAIN
---------------------------------*/
main {
  flex: 1;
}

button, [type="button"], [type="reset"], [type="submit"], [role="button"] {
    cursor: pointer;
    color: #fff;
}

/*  login-view */
#login-view {
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  width: 100%;
  background-image: url(../img/main-img.jpg);
  background-size:cover;
  background-position: center ;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#login-view .header-logo {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
  margin: 1rem ;
  letter-spacing: .05em;
}

#login-view .header-logo a {
  background-color: #c21c1c;
  color: #fff;
  padding: 10px 20px;
}

#login-view  h1 {
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
font-size: 1.4em;
margin-bottom: 10px;
}

.login-container {
  width: 400px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #c21c1c;
  border-radius: 25px;
  font-size: 16px;
}

input::placeholder {
  color: #b44747;
}

input:focus {
  outline: none;
  border-color: #c21c1c;
  box-shadow: 0 0 5px rgba(255, 192, 203, 0.5);
}

button {
  width: 100%;
  padding: 10px;
  margin: 20px  0;
  background-color: #c21c1c;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
 opacity: 0.7;
}


/*  footer-login  */
#footer-login {
  width: 100%;
  height: auto;
  position: relative;
}

#footer-login .footer-container {
  background-color: #c21c1c;  
  padding: 8px 0;
  width: 100%;
  left: 0;
  bottom:0;
  position:absolute;
}

#footer-login .copyright {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
  text-align: center;
}

/*--------------------------------
SP
---------------------------------*/
@media screen and (max-width: 960px) {


 /*  SP-MAIN  */
  #login-view {
  width: 100%;
  background-image: url(../img/main-img-sp.jpg);
  background-size:cover;
  background-position: center top;
  background-position-x: center;
  background-position-y: top;
}

.wrapper {
  padding: 0  30px;
}

/*  login-view */

/*  footer */
#footer-login {
  height: auto;
}

#footer-login .copyright {
  font-size: 0.7em;
}

}