/* ==================================================================

Setting

================================================================== */
/* Break Point
--------------------------------- */
/* Width
--------------------------------- */
/* Color
--------------------------------- */
/* Font
--------------------------------- */
/* Google Web Font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* ==================================================================

Mixin

================================================================== */
/* Break Point
--------------------------------- */
/* Clearfix
--------------------------------- */
/* ==================================================================

Wrapper

================================================================== */
/* .l-wrapper
--------------------------------- */
.l-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 130px;
  background: #20968e;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-bottom: 100px;
  }
}

/* ==================================================================

Footer

================================================================== */
/* .l-footer
--------------------------------- */
.l-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* ==================================================================

Login

================================================================== */
/* .p-login
--------------------------------- */
.p-login {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  max-width: 350px;
  margin-top: 25px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 30px rgba(14, 66, 62, 0.3);
          box-shadow: 0 0 30px rgba(14, 66, 62, 0.3);
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .p-login {
    position: static;
    max-width: none;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    -webkit-transform: none;
            transform: none;
  }
}

/* .p-login__title
--------------------------------- */
.p-login__title {
  padding: 13px 20px;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  background: #222;
}

/* .p-login__cont
--------------------------------- */
.p-login__cont {
  padding: 25px 30px 30px;
}

@media screen and (max-width: 767px) {
  .p-login__cont {
    padding: 20px 20px 25px;
  }
}

.p-login__cont > .text {
  margin-top: 15px;
  text-align: center;
}

.p-login__cont > .box {
  margin-top: 15px;
  padding: 10px 20px 13px;
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #ddd;
  color: #777;
  border-radius: 3px;
}

.p-login__cont > .box > .id {
  margin-top: 5px;
}

.p-login__cont > .box > .id > .em {
  font-weight: bold;
  color: #222;
}

.p-login__cont > .login {
  margin-top: 15px;
}

.p-login__cont > .login > label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #aaa;
}

.p-login__cont > .login > input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.p-login__cont > .login > button {
  width: 100%;
  margin-top: 20px;
  padding: 7px 20px;
  font-weight: bold;
  text-align: center;
  border: 2px solid transparent;
  color: #fff;
  background: #30cbc7;
  border-radius: 3px;
  -webkit-transition: border-color 0.2s, color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.p-login__cont > .login > button:hover {
  border: 2px solid #30cbc7;
  color: #30cbc7;
  background: #fff;
}

.p-login__cont > .link {
  margin-top: 15px;
  font-size: 1.3rem;
  text-align: right;
}

.p-login__cont > :first-child {
  margin-top: 0;
}
