@charset "utf-8";

/*--------------------------------------------------------

  login css

--------------------------------------------------------*/
html, body, p {
  margin: 0;
  padding: 0;
  font-family:'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-top: 80px;
}
.header img {
  width: 180px;
}
.box {
  /* border: 1px solid #ccc; */
  position: relative;
  height: 70vh;
}
.box-form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  min-width: 500px;
  max-width: 600px;
  padding: 40px 20px 0;
  box-sizing: border-box;
  height: 60%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
  color: #5d5b59;
}
.box-form .ttl {
  text-align: center;
  font-size: 1.6rem;
  color: #23b49d;
  margin-bottom: 0.8em;
}
.box-form .inputtxt {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border: none;
  outline: none;
  background-color: #eee;
  color: #333;
}
.box-form .inputtxt::placeholder {
  color: #aaa;
}
.box-form .inputtxt:focus {
  background-color: #f5f5f5;
}
.box-form .check {
  text-align: center;
}
.box-form .check-box {
  background: #fff;
  border-radius: 0.5em;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9rem;
  margin-right: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em 0;
  position: relative;
  transition: 0.5s;
}
.box-form .check-box::before {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 0.25em;
  content: '';
  display: inline-block;
  height: 1.5em;
  margin-top: -0.25em;
  margin-right: 0.5em;
  vertical-align: middle;
  width: 1.5em;
}
.box-form input[type='checkbox'] {
  display: none;
}
.box-form input[type='checkbox']:checked + .check-box::after {
  border-bottom: 3px solid #3db49d;
  border-left: 3px solid #3db49d;
  content: '';
  display: block;
  height: 0.35em;
  position: absolute;
  transform: rotate(-45deg);
  width: 0.65em;
  top: 1em;
  left: 0.5em;
}
.box-form .submit {
  text-align: center;
}
.box-form .submit .btn {
  background-color: #23b49d;
  border-radius: 2em;
  color: #fff;
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: auto;
  margin-top: 1em;
  padding: 1em;
  text-align: center;
  transition: 0.3s;
  width: 18em;
  border: none;
  cursor: pointer;
  user-select: none;
  outline: none;
}
.box-form .submit .btn:hover {
  background-color: #4ec3b0;
}
.box-form .requests {
  margin-top: 40px;
}
.box-form .requests .item {
  display: block;
  text-decoration: none;
  color: #23b49d;
  transition: 0.3s;
}
.box-form .requests .item::before {
  content: ">";
  font-family: 'Consolas';
  margin-right: 5px;
}
.box-form .requests .item:not(:last-child) {
  margin-bottom: 0.3em;
}
.box-form .requests .item:hover {
  color: #333;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 1rem;
  }
  .box-form {
    min-width: unset;
    padding: 0 20px;
    width: 100%;
  }
  .box-form .submit .btn {
    width: 100%;
  }
}