@charset "UTF-8";
/* ------------------------
  各変数
------------------------- */
:root {
  --wd-base: 1100px;
  --wd-xxs: 598px;
  --wd-xs: 780px;
  --wd-s: 890px;
  --wd-m: 1240px;
  --ma-xxs: 1rem;
  --ma-xs: 2rem;
  --ma-s: 4rem;
  --ma-m: 6rem;
  --ma-l: 8rem;
  --ma-xl: 10rem;
  --ma-xxl: 12rem;
  --color-base: #fff;
  --color-main: #001B46;
  --color-ac: #E0F5FF;
  --color-ac2: #2c98cc;
  --color-ac3: #004F79;
  --color-text: #333;
}

/* ------------------------
  SCSS
------------------------- */
/* -----------------------
  ログイン 新規登録 共通
----------------------- */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.form-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form-container {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-head {
  margin: 10px 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.form-head-2 {
  font-size: 2rem;
  font-weight: 700;
}

.form-sub-text {
  margin: 4rem 0;
  font-size: 16px;
}

.form-col {
  text-align: left;
}

.form-col label {
  font-size: 16px;
  line-height: 1.4;
}

.form-col__pass {
  position: relative;
}

.form-col__pass img {
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}

.form-info {
  margin: 18px 0 0;
  text-align: left;
}

.form-info-col {
  font-size: 14px;
  line-height: 1.8;
}

.form-info-col a {
  color: blue;
}

.form-submit {
  margin: 20px 0 0;
}

.logo {
  width: 140px;
  padding: 20px 0 10px;
}

.form-sub-info {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  font-size: 13px;
}

.form-sub-info a {
  margin: 0 10px;
}

.required {
  margin-left: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  background-color: rgb(188, 0, 0);
  padding: 2px 6px;
  border-radius: 4px;
}

.required.required--no {
  background-color: #808080;
}

label {
  display: inline-block;
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input.input-s {
  width: calc(50% - 10px);
}

button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: white;
  background-color: #004F79;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.new-user-wrap button {
  background-color: #438b24;
}

button:hover {
  opacity: 0.8;
}

/* -----------------------
  ログイン
----------------------- */
.form-wrap.form-wrap--login {
  padding: 4rem 0;
}

.form-wrap--login .form-container {
  max-width: 380px;
  padding: 20px;
}

.form-wrap.form-wrap--login .form-col {
  margin-top: 16px;
}

.new-user-wrap {
  background: #f4f4f4;
  padding: 14px 14px 20px;
  margin-top: 20px;
  border-radius: 4px;
}

/* -----------------------
  新規登録
----------------------- */
.contact-step {
  display: flex;
  margin: 20px 0 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid #9D9D9D;
  border-radius: 2px;
  overflow: hidden;
}

.contact-step-col {
  width: 33.3333333333%;
  padding: 10px 0;
  color: #9D9D9D;
  background-color: #F0FAFF;
  position: relative;
}

.contact-step-col:not(:last-child) {
  border-right: 1px solid #9D9D9D;
}

.contact-step-col.active {
  color: #fff;
  background-color: #2C98CC;
}

.contact-step-arrow {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  z-index: 1;
}

.contact-step-arrow-body {
  display: block;
  width: 10px;
  height: 10px;
  background: #9D9D9D;
  position: relative;
}

.contact-step-arrow-body:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #9D9D9D;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
}

.active .contact-step-arrow-body {
  background: #2C98CC;
}

.active .contact-step-arrow-body:before {
  border-left: 14px solid #2C98CC;
}

.before .contact-step-arrow-body {
  background: #F0FAFF;
}

.before .contact-step-arrow-body:before {
  border-left: 14px solid #F0FAFF;
}

.form-wrap.form-wrap--signup {
  height: auto;
  margin: 4rem 0;
}

.form-wrap--signup .form-container {
  max-width: 680px;
  padding: 20px 40px;
}

.form-wrap.form-wrap--signup .form-col:first-child label {
  margin: 0 0 6px;
}
.form-wrap.form-wrap--signup label {
  margin: 18px 0 6px;
}

/* -----------------------
  確認画面
----------------------- */
.form-wrap--confirm input {
  background-color: #f4f4f4;
}

.plan {
  margin-bottom: 4px;
  padding: 10px;
  background: #F0FAFF;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.confirm-btn-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.confirm-btn-wrap button {
  max-width: 48%;
}

.confirm-btn-wrap button:first-child {
  background: #6c757d;
}

/* -----------------------
  ログイン 運営管理
----------------------- */
.-ops- .form-wrap {
  height: 100vh;
  background-color: var(--color-ac2);
}/*# sourceMappingURL=login.css.map */