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

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

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(-90deg, rgb(13,67,73) 0%, rgb(27,63,72) 4%, rgb(41,59,71) 16%, rgb(27,31,40) 100%);
  color: #d2d2d2;
  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 {
 display: none;
}
.body-img-wrapper img {
  display: none;
}

p {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none;
}

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

.main-wrapper {
  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: #d2d2d2;
  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 #d2d2d2
}
.m-input-wrap input:focus + .m-input-border {
  box-shadow: 0 0 2.5px 0.5px #d2d2d2;
}
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: #1cd6c5;
  border-radius: 25px;
  border: 1px solid #1cd6c5;
  box-shadow: 0 0 3px 1px #1cd6c5;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
}
.m-btn:hover {
  background-color: #1cd6c540;
}
.m-btn-wrap {
  display: flex;
  justify-content: center;
}

.m-login-box-form-error {
  color: #1cd6c5;
  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(13,67,73);
  border-radius: 50%;
  margin-right: 6px;
}
.inquiry-arrow::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px #d2d2d2;
  border-right: solid 2px #d2d2d2;
  -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: #1cd6c5;
}
.m-anchor-link:hover {
  opacity: 0.8;
}

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