@charset "utf-8";
/* 共通CSS */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');

* {
  box-sizing: border-box;
  line-height: 1.75em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  color: #1A1A1A;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
}

br,
span {
  line-height: inherit;
}

label {
  display: block;
  padding-bottom: 0.5em;
}

label span {
  display: inline-block;
  padding-left: 1em;
  font-size: 0.75em;
}

input {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
  padding: 0.85em 1em;
  border: 1px solid #999;
  border-radius: 5px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1em;
}

input::placeholder {
  color: #D3D3D3;
}

button {
  width: 100%;
  margin-top: 32px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.btn--blue {
  display: block;
  padding: 0.7125em 1em;
  background-color: #5AC2D9;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 1.125em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s, box-shadow .2s;
}

@media (hover: hover) {
  .btn--blue:hover {
    background-color: #36A4BD;
    box-shadow: none;
  }
}


/* ログイン画面 */
.login__wrapper {
  display: grid;
  place-content: center;
  place-items: center;
  margin: 0 auto;
  width: 420px;
  height: 100vh;
}

.login__title {
  text-align: center;
}

.login__title span {
  font-size: 15px;
}

.login__title span img {
  display: inline-block;
  width: 150px;
  margin-right: 8px;
  vertical-align: text-bottom;
}

.login__title > img {
  display: inline-block;
  width: 336px;
  margin: 20px 0 56px;
}

main {
  width: 100%;
}

.login__form {
  width: 100%;
}

.login__link {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.login__link a {
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s;
}

.login__error {
  padding-bottom: 0.5em;
  color: #D30000;
}

@media (hover: hover) {
  .login__link a:hover,
  .login__link a:focus {
    opacity: 0.7;
  }
}


/* 新規登録・パスワード再発行 */
.wrapper {
  display: flex;
  flex-direction:column;
  min-height: 100dvh;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

header.header__nomenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #D3D3D3;
}

header .inner {
  padding: 0;
}

.header__logo {
  width: 230px;
  padding: 8px 20px;
}

main.main__nomenu {
  flex: 1;
  width: 420px;
  margin: 0 auto;
  padding-top: 60px;
}

.signup__title {
  padding: 80px 0 8px;
  font-size: 1.75em;
  text-align: center;
}

.forgot__text {
  padding: 100px 0 22px;
}

footer {
  position: relative;
  padding: 30px 0 20px;
}

small {
  display: block;
  color: #999;
  font-size: 0.875em;
  text-align: center;
}


.password-wrapper {
  position: relative;
}

.password-btn {
  position: absolute;
  top: 0.8em;
  right: 0.75em;
  display: inline-block;
  width: 5em;
  padding: 0.25em 0;
  background-color: #36A4BD;
  border-radius: 4px;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}