
img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

html {
  font-size: 62.5%;
  overflow-y: hidden;
}

html, body {
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: rgba(255, 255,  255, 1);
}

body {
  z-index: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #777;
  font-family: "Noto Sans Japanese", Verdana, "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "sans-serif";
  font-size: 16px;
  line-height: 1.42857143;
  overflow-wrap: break-word;
  word-break: break-all;
  word-wrap: break-word;
}
/* COMPASSデザイン用のバックグラウンドイメージ */
.body-img-wrapper {
  position: absolute;
  z-index: 0;
  height: 100%;
  right: 0%;
}
.body-img-wrapper img {
  position: relative;
  right: 20%;
  z-index: 0;
  width: auto;
  height: 100%;
}

p {
  display: block;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none;
}

.text-center {
  text-align: center;
}

.main-wrapper {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* 入力フォーム */
.form-input-wrapper {
  padding-top: 25px;
}
.input-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
}
.input-wrapper-password {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  padding-top: 25px;
}
.input-wrapper-label {
  width: 340px;
  padding-top: 5px;
  margin-left: 10px;
  font-size: 1.5rem;
  text-align: left;
}
.m-input-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.m-input-wrap input {
  margin-top: 5px;
  width: 330px;
  padding: 5px 15px;
  color: #727272;
  font-size: 1.4rem;
  border: none;
  background: none;
  outline: none;
}
.m-input-label {
  padding-right: 10px;
  font-size: 1.7rem;
}
.m-checkbox-label {
  font-size: 1.4rem;
  padding-right: 10px;
}
.m-input-border {
  width: 340px;
  border-top: 1px solid #727272
}
.m-input-wrap input:focus + .m-input-border {
  box-shadow: 0 0 2.5px 0.5px #a2a2a2;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}

/* 送信ボタン */
.m-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
  width: 160px;
  height: 35px;
  background: #1cd6c517;
  color: rgb(84, 190, 224);
  border-radius: 25px;
  border: 1px solid rgb(84, 190, 224);
  box-shadow: 0 0 3px 1px rgb(84, 190, 224);
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
}
.m-btn:hover {
  background-color: rgba(14, 157, 182, 0.1);
}
.m-btn-wrap {
  display: flex;
  justify-content: center;
}
.m-login-box-form-error {
  color: rgb(84, 190, 224);
  margin-bottom: 10px;
  padding: 10px 0;
  text-align: center;
}

/* logo */
.logo-img {
  outline: none;
  max-width: 520px;
}

/* お問い合わせ */
.explain-text {
  opacity: 0.7;
  padding-top: 10px;
  text-align: center;
  font-size: 1.3rem;
}
.explain-text p {
  margin-right: 3px;
}
.inquiry-block {
  margin: 10px auto;
}
.inquiry-text {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
}
.inquiry-arrow {
  display: inline-block;
  position: relative;
  content: '';
  width: 25px;
  height: 25px;
  background:rgb(4, 111, 129);
  border-radius: 50%;
  margin-right: 6px;
}
.inquiry-arrow::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px #EEE;
  border-right: solid 2px #EEE;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 6px;
  margin-top: -5px;
}
.inquiry-explain-text {
  padding-top: 5px;
  padding-left: 30px;
  font-size: 1.25rem;
}

/* アンカーリンク用の設定 */
.m-anchor-link {
  color: rgb(84, 190, 224);
}
.m-anchor-link:hover {
  opacity: 0.5;
}

/* エラー系 */
.error-fields {
  padding-top: 8px;
  width: 100%;
}
.error-text {
  display: inline-block;
  margin-left: 80px;
  font-size: 1.2rem;
  color: #f34;
}
