@charset "UTF-8";
/* ログイン css */

main {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  margin: 60px 0;
  text-align: center;
  position: relative;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  color: var(--tmt-tn);
  -webkit-text-stroke: 2px var(--tmt);
}
h1[data-ver]::after {
  content: 'ver 'attr(data-ver);
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: normal;
  color: var(--tmt-tn);
  -webkit-text-stroke: 0 currentColor;
}
h1 img {
  width: 68px;
  position: absolute;
  left: 0;
}
.inp-box {
  width: 99vw;
  width: 99dvw;
  max-width: 440px;
}
.inp-box dl~dl {
  margin-top: 48px;
}
.inp-box dl>dt {
  display: none;
}
.inp-box dl>dd {
  position: relative;
}

.inp-box dl>dd::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  display: inline-block;
  font-size: 24px;
  padding: 4px;
  line-height: 43px;
  width: 32px;
  text-align: center;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  color: #fff;
  background-color: var(--tmt);
}
.inp-box dl>dd:has([type="email"])::before {
  content: '\f0e0';
}
.inp-box dl>dd:has([type="password"])::before {
  content: '\f084';
}

input {
  font-size: 24px;
  padding: 8px 8px 8px 52px;
  background-color: var(--tmt-tntn);
  border-color: var(--tmt);
}
input:-internal-autofill-selected {
  box-shadow: 0 0 0 1000px var(--tmt-tntn) inset !important;
  background-color: var(--tmt-tntn) !important;
}

div:has( > button[type="submit"]) { margin: 48px 0; }
.ta-c:has(a) { margin: 20px 0; }

a { color: var(--tmt-br); }
a:hover { color: var(--tmt-tn); text-decoration: none; }
