@charset "UTF-8";

.is-form-loading .answer__input-load {
  opacity: 1;
}

.is-form-loading .answer__input-text {
  opacity: 0;
}

.answer__input-load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  width: 50px;
}

.answer__hint {
  margin-bottom: 38px;
  color: #fff;
  text-align: center;
}

.answer__hint-head {
  margin-bottom: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.answer__hint-detail {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.p-error {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  background: url(/assets2/img/bg.jpg) left top / contain repeat;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.is-error .p-error {
  opacity: 1;
  pointer-events: auto;
}

.p-error__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 600px;
}

.p-error__cap {
  display: block;
  position: relative;
  font-size: 82px;
  letter-spacing: 4px;
  text-align: center;
}

.p-error__btn {
  position: relative;
  margin: 60px auto 0;
  width: 400px;
}

.p-error__btn-text {
  display: block;
  position: relative;
  background: var(--color-main);
  color: #fff;
  padding: 18px 20px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}

.p-error__close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  background: var(--color-main);
  outline: 1px solid var(--color-white);
  outline-offset: -4px;
}

.p-error__close::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
  width: 60%;
  height: 2px;
  content: "";
}

.p-error__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
  width: 60%;
  height: 2px;
  content: "";
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }

  .is-sp {
    display: none;
  }

  .is-pc-inline {
    display: inline-block;
  }

  .is-sp-inline {
    display: none;
  }

  .is-pc {
    display: block;
  }

  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }

  .p-error__container {
    width: 90%;
  }

  .p-error__cap {
    font-size: 38px;
  }

  .p-error__btn {
    margin-top: 25px;
    width: 100%;
  }

  .p-error__btn-text {
    padding: 12px 10px;
    font-size: 14px;
  }

  .p-error__btn-text::before {
    border-width: 1px;
  }

  .p-error__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

}

.in_wrapper .logo {
  width: 400px;
  margin: 10vh auto 0;
}

@media screen and (max-width: 900px) {
  .in_wrapper .logo {
    width: 60%;
    margin: 12vh auto 0;
  }
}