html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /* 62.5% 10px 1em */
  scroll-behavior: smooth;
  background: #fff;
  --black: #1d2327;
  --blue: #2271b1;
  --red: #de5252;
  --orange: #f8693e;
  --line: #cccccc;
  --text: #484848;
}
html body {
  width: 100%;
  height: 100%;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  -webkit-text-size-adjust: none;
}
html body img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
html body a {
  color: var(--blue);
  text-decoration: none;
}
html body main {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: min(5.3vw, 60px);
  box-sizing: border-box;
}
html body main .logo {
  width: 50%;
  text-align: center;
  margin: 0 auto 20px;
}
html body main .logo em {
  text-align: center;
  display: block;
  font-weight: bold;
  color: #CD391B;
  padding-top: 0.5em;
}
html body main .logo ~ p {
  padding-bottom: 1em;
}
html body main .form_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
html body main .form_inner .input em {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}
html body main .form_inner .policy {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 15px;
  background: #fcfcfc;
}
html body main .form_inner .policy .policy_inner {
  width: 100%;
  height: 160px;
  overflow-y: auto;
  padding-right: 5px;
  box-sizing: border-box;
}
html body main .form_inner .policy h3 {
  font-size: 1.4rem;
  font-weight: 600;
  padding-bottom: 1em;
}
html body main .form_inner .policy em {
  margin-top: 1em;
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
}
html body main .form_inner .policy p {
  font-size: 1.2rem;
}
html button, html .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: var(--blue);
  border: none;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
html input[type=text],
html input[type=email],
html input[type=password],
html input[type=tel] {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  padding: 0 8px;
  min-height: 40px;
  width: 100%;
  box-shadow: none;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: #fff;
  box-sizing: border-box;
  -webkit-appearance: none;
}
html input[type=checkbox] {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--black);
  clear: none;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  height: 20px;
  margin: -0.25rem 0.25rem 0 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  width: 20px;
  min-width: 1rem;
  -webkit-appearance: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
html input[type=checkbox]:before {
  position: absolute;
  left: 6px;
  top: 1px;
  content: "";
  height: 13px;
  width: 7px;
  border: 3px solid var(--black);
  box-sizing: border-box;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  transition: all 0.2s ease;
  opacity: 0;
}
html input[type=checkbox]:checked:before {
  opacity: 1;
}
html .check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
html .onetime_password {
  padding: 20px;
  text-align: center;
  background: #fcfcfc;
  border-radius: 3px;
}
html .onetime_password em {
  font-weight: 500;
}
html .onetime_password .input_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
html .onetime_password .input_box .usercode {
  width: 2.2em;
  text-align: center;
  border-color: var(--line);
  font-weight: 500;
  font-size: 18px;
}
html .error {
  width: 100%;
  font-size: 1.2rem;
  color: var(--red);
}
html .error.center {
  text-align: center;
}

/*# sourceMappingURL=line_style.css.map */
