@charset "UTF-8";
html {
  font-size: 1rem;
}

.f8 {
  font-size: 0.5rem;
}

.f9 {
  font-size: 0.5625rem;
}

.f10 {
  font-size: 0.625rem;
}

.f11 {
  font-size: 0.6875rem;
}

.f12 {
  font-size: 0.75rem;
}

.f13 {
  font-size: 0.8125rem;
}

.f14 {
  font-size: 0.875rem;
}

.f15 {
  font-size: 0.9375rem;
}

.f16 {
  font-size: 1rem;
}

.f17 {
  font-size: 1.0625rem;
}

.f18 {
  font-size: 1.125rem;
}

.f19 {
  font-size: 1.1875rem;
}

.f20 {
  font-size: 1.25rem;
}

.f21 {
  font-size: 1.3125rem;
}

.f22 {
  font-size: 1.375rem;
}

.f23 {
  font-size: 1.4375rem;
}

.f24 {
  font-size: 1.5rem;
}

.f25 {
  font-size: 1.5625rem;
}

.f26 {
  font-size: 1.625rem;
}

.f27 {
  font-size: 1.6875rem;
}

.f28 {
  font-size: 1.75rem;
}

.f29 {
  font-size: 1.8125rem;
}

.f30 {
  font-size: 1.875rem;
}

.f32 {
  font-size: 2rem;
}

.f33 {
  font-size: 2.0625rem;
}

.f34 {
  font-size: 2.125rem;
}

.f35 {
  font-size: 2.1875rem;
}

.f36 {
  font-size: 2.25rem;
}

.f37 {
  font-size: 2.313rem;
}

.f38 {
  font-size: 2.38rem;
}

.f39 {
  font-size: 2.438rem;
}

.f40 {
  font-size: 2.5rem;
}

.f42 {
  font-size: 2.625rem;
}

.f43 {
  font-size: 2.688rem;
}

.f44 {
  font-size: 2.75rem;
}

.f45 {
  font-size: 2.8125rem;
}

.f47 {
  font-size: 2.9375rem;
}

.f49 {
  font-size: 3.063rem;
}

.f50 {
  font-size: 3.125rem;
}

.f55 {
  font-size: 3.4375rem;
}

.f67 {
  font-size: 4.1875rem;
}

.f78 {
  font-size: 4.875rem;
}

.f80 {
  font-size: 5rem;
}

.f90 {
  font-size: 5.625rem;
}

@media only screen and (min-width: 600px) {
  .fullscreen-bg {
    position: fixed;
    inset: 0;
    background-image: url("../images/mec_mart.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
}

@media only screen and (min-width: 600px) {
  #wrap {
    position: relative;
  }
}

#window__login {
  background-color: #fff;
}
@media only screen and (min-width: 600px) {
  #window__login {
    z-index: 10000;
    position: fixed;
    right: 10vw;
    /* 縦が短いときも確実に見えるように上オフセットは小さめに・下は自動 */
    top: clamp(12px, 8vh, 80px);
    /* 高さは 70vh を上限にしつつ、端末の実表示高(dvh)にも追従 */
    max-height: min(70vh, 100dvh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    width: 441px;
    /* 中身が溢れたらスクロール */
    overflow: auto;
    /* 角や影などあれば任意で */
  }
}
@media (min-width: 600px) and (max-height: 480px) {
  #window__login {
    top: 12px;
    right: min(6vw, 40px);
    max-height: calc(100dvh - 24px);
    width: min(441px, 92vw);
  }
}
#window__login__wrap {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.25rem;
}

#logo {
  margin-top: 4.375rem;
  margin-bottom: 1.875rem;
  text-align: center;
}
#logo img {
  width: 250px;
  height: auto;
}

.input__group {
  margin-top: 0.875rem;
  display: flex;
  flex-wrap: wrap;
}
.input__group label {
  font-size: 1.25rem;
  width: 100%;
  font-weight: bold;
}
.input__group input[type=text] {
  background-color: #FAF1F1;
  height: 3.125rem;
  width: 100%;
  border: 1px solid #E60012;
  padding-left: 1rem;
}
.input__group input[type=password] {
  background-color: #FAF1F1;
  height: 3.125rem;
  width: 100%;
  border: 1px solid #E60012;
  padding-left: 1rem;
}
.input__group__checkbox {
  margin-top: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.input__group__checkbox label {
  font-size: 0.9375rem;
}
.input__group__checkbox input[type=checkbox] {
  margin: 0;
  position: relative;
  top: 1px;
}
.input__group__password {
  position: relative;
  width: 100%;
}
.input__group__toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
}
.input__group__toggle:hover {
  color: #000;
}

#login__button {
  margin-top: clamp(1.25rem, 8vh, 4.8125rem);
}
#login__button button {
  font-weight: bold;
  background-color: #E60012;
  color: #fff;
  height: 57px;
  width: 100%;
  font-size: 1.125rem;
}
#login__button__a {
  margin-top: 0.5625rem;
  text-align: right;
  font-size: 0.9375rem;
  color: #00A7FE;
}
#login__button__a a {
  text-decoration: none;
}
#login__button__a a:link, #login__button__a a:visited, #login__button__a a:active, #login__button__a a:hover {
  color: #00A7FE;
}/*# sourceMappingURL=page-login.css.map */