@charset "utf-8";
/* CSS Document */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
.link-a {
  transition-property: opacity;
  transition-duration: 0.3s;
}
.link-a:hover {
  opacity: 0.7;
}
body {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ ", Meiryo, "MS ゴシック", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #f7fbfe;
}
.fullwide-wrap {
  width: 100vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: url("../images/login/bg-login.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.login-container {
  display: flex;
  flex-direction: column;
  width: 700px;
  background-color: white;
  margin: 40px 0 40px 0;
  background-image: url("../images/login/border.png");
  background-size: 100% 21px;
  background-repeat: no-repeat;
  box-shadow: 0px 2px 5px 2px rgba(110, 110, 110, 0.5);
  align-items: center;
  padding: 41px 0 50px 0;
}
@media screen and (max-width: 800px) {
  .login-container {
    width: 560px;
  }
}
@media screen and (max-width: 590px) {
  body {
    background-color: #edf0f3;
  }
  .fullwide-wrap {
    background: none;
  }
  .login-container {
    width: 100vw;
    box-shadow: none;
    margin: 0 0 40px 0;
  }
}
.logo {
  width: 274px;
  display: flex;
}
h2 {
  display: flex;
  justify-content: center;
  color: #d43c4c;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 500px;
  padding-bottom: 6px;
  margin: 20px 0 4px 0;
  border-bottom: 2px solid #b3b3b3;
}
@media screen and (max-width: 800px) {
  h2 {
    width: 400px;
  }
}
h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0;
  margin: 0 0 10px 0;
}
/*スマホ*/
@media screen and (max-width: 590px) {
  .logo {
    max-width: 274px;
    width: 70vw;
  }
  h2 {
    font-size: 26px;
    width: 80vw;
  }
  h1 {
    font-size: 26px;
  }
}
.form-window {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.form-window input {
  display: flex;
  width: 500px;
  height: 40px;
  margin: 0 0 30px 0;
}
.form-window input:last-child{
  margin: 0 0 50px 0;
}
@media screen and (max-width: 800px) {
  .form-window input {
    width: 400px;
  }
}
@media screen and (max-width: 590px) {
  .form-window input {
    width: 80vw;
  }
}
input {
  font-size: 26px;
  padding: 0 10px;
}
input::placeholder {
  font-size: 26px;
  padding: 0 10px;
}
.button01 {
  display: flex;
  justify-content: center;
  background: #3949ab;
  width: 300px;
  padding: 0.7em;
  border-radius: 9999px;
  font-size: 1.125em;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  letter-spacing: .1rem;
  transition: .4s;
  /*margin: 50px 0;*/
}
.button02 {
  background: white;
  width: 300px;
  padding: 0.7em;
  border: 3px solid #3949ab;
  border-radius: 9999px;
  font-size: 1.125em;
  text-align: center;
  color: #3949ab;
  text-decoration: none;
  letter-spacing: .1rem;
  transition: .4s;
  margin: 0;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
flex-wrap: nowrap;
}
.flex-column02 {
  display: flex;
  justify-content: center;
}
.link-a {
  display: flex;
  justify-content: center;
}
.text01 {
  text-align: center;
  margin: 20px 0 20px 0;
  padding: 0;
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  .text01 {
    width: 400px;
  }
}
@media screen and (max-width: 590px) {
  .button01, .button02 {
    width: 60vw;
  }
  .text01 {
    width: 80vw;
  }
}
