:root {
  --black:#161A2D;
  --purple:#4089F5;
  --blue:#34BDE6; }

html {
  overflow-x: hidden;
  font-size: 10px; }

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--black);
  font-weight: 400;
  line-height: 1.6; }

img {
  vertical-align: bottom;
  display: block;
  margin: 0; }

a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  transition: all .3s; }

a:hover {
  opacity: .6; }

ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }

h1 {
  margin: 0; }

.pc_only {
  display: none; }

.sp_none {
  display: none; }

.gheader {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000; }
  .gheader .header_inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .gheader .header_inner .logo_wrap {
      width: 100%;
      height: 50px;
      background-color: #fff;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 0 10px;
      box-sizing: border-box; }
      .gheader .header_inner .logo_wrap img {
        width: 200px;
        height: auto; }
    .gheader .header_inner .step_wrap {
      width: 100%;
      height: 60px;
      background-color: var(--black);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 10px; }
      .gheader .header_inner .step_wrap .step_inner {
        display: flex;
        justify-content: space-between;
        width: 140px;
        height: 100%;
        align-items: center;
        color: #fff;
        position: relative; }
        .gheader .header_inner .step_wrap .step_inner .step_num {
          font-size: 1.4rem;
          font-weight: 700;
          width: 30px;
          height: 30px;
          border: 1px solid #fff;
          border-radius: 3px;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          z-index: 1;
          background-color: var(--black); }
        .gheader .header_inner .step_wrap .step_inner .step_white {
          background-color: #fff;
          color: var(--black); }
      .gheader .header_inner .step_wrap .step_inner::after {
        content: "STEP";
        display: block;
        font-size: 1.4rem;
        position: absolute;
        top: 16px;
        left: -45px; }
      .gheader .header_inner .step_wrap .step_inner::before {
        content: "";
        width: 130px;
        height: 15px;
        border-top: dotted 2px #fff;
        position: absolute;
        bottom: 11px;
        left: 5px; }

main {
  width: 100vw;
  padding: 140px 0 140px 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4); }

form {
  width: 300vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; }

.form_step2 {
  margin-left: -100vw; }

.form_step3 {
  margin-left: -200vw; }

.form_wrap {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.lest_time, .no_back {
  font-weight: 700;
  color: #fff; }

.lest_time {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 1.4rem; }

h2 {
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  margin: 0 auto 15px auto; }

.form_window {
  width: calc(100% - 20px);
  max-width: 540px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
  padding: 40px 15px;
  box-sizing: border-box; }
  .form_window label {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    display: block; }
  .form_window input, .form_window select {
    font-size: 1.6rem;
    border: none;
    background-color: #F4F4F4;
    height: 33px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 3px;
    margin-bottom: 20px; }

.forward {
  font-size: 2rem;
  width: 280px;
  height: 63px;
  background-color: var(--purple);
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin: 20px auto;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all .3s; }

.forward:hover {
  opacity: .6; }

.back_button {
  color: #5CAEE8;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all .3s; }

.back_button:hover {
  opacity: .6; }

input:invalid, select:invalid {
  background-color: #FFEBEB; }

input:valid, select:valid {
  background-color: #e8f0fe; }

.red {
  background-color: #FFEBEB !important; }

.error {
  font-size: 1.4rem;
  color: var(--purple);
  text-align: center;
  margin: 0;
  opacity: 0;
  transition: all .3s; }

.visible {
  opacity: 1; }

.name_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .name_wrap input {
    width: 48%; }

.birth_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between; }
  .birth_wrap .tbBirth {
    width: 31%; }

.prefecture {
  width: 100%; }

#Email {
  width: 100%; }

#tel {
  width: 100%;
  margin-bottom: 0; }

.phonenum_caption {
  display: inline-block;
  margin-bottom: 20px; }

.radio_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center; }

input[type=radio] {
  display: none; }

.check::before {
  background: #F4F4F4;
  border: solid 1px var(--black);
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 16px; }

.check::after {
  background: var(--black);
  border-radius: 50%;
  content: "";
  color: #fff;
  display: block;
  height: 12px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 17px;
  width: 12px; }

input[type=radio]:checked + .check::after {
  opacity: 1; }

.ex {
  display: inline-block !important;
  padding: 10px 20px 0 30px;
  height: 100%;
  font-weight: 400 !important;
  position: relative;
  margin-bottom: 20px; }

#job {
  width: 100%; }

textarea {
  width: 100%;
  background-color: #F4F4F4;
  border: none;
  border-radius: 3px;
  padding: 10px 10px;
  box-sizing: border-box;
  font-size: 1.6rem; }

.small_p {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; }
  .small_p input {
    margin: 0 10px 0 0;
    height: auto; }
  .small_p .consent {
    font-size: 1.4rem !important;
    font-weight: 400 !important; }
    .small_p .consent a {
      color: var(--blue);
      font-weight: 700;
      border-bottom: 1px solid var(--blue); }

#submit {
  font-size: 2rem;
  width: 280px;
  height: 63px;
  background-color: var(--purple);
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin: 20px auto;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all .3s; }

#submit:hover {
  opacity: .6; }

#submit:disabled {
  pointer-events: none;
  opacity: .6; }

.cmt {
  font-size: 1.2rem;
  margin-bottom: 30px; }

#gr_checkbox {
  display: flex;
  justify-content: center; }

@media screen and (min-width: 500px) {
  .form_window {
    padding: 40px 30px; } }
@media screen and (min-width: 768px) {
  .form_window {
    padding: 40px 60px; }

  .gheader .header_inner .logo_wrap {
    padding: 0 30px; } }
@media screen and (min-width: 1024px) {
  .gheader {
    height: 60px;
    background-color: #fff; }
    .gheader .header_inner {
      flex-direction: row;
      justify-content: space-between;
      padding: 0 50px;
      box-sizing: border-box; }
      .gheader .header_inner .logo_wrap {
        width: 240px;
        height: 60px;
        padding: 0 0; }
        .gheader .header_inner .logo_wrap img {
          width: 100%; }
      .gheader .header_inner .step_wrap {
        width: 140px;
        height: 60px;
        background-color: #fff;
        justify-content: flex-end;
        padding: 0 0px; }
        .gheader .header_inner .step_wrap .step_inner {
          justify-content: space-between;
          color: var(--navy); }
          .gheader .header_inner .step_wrap .step_inner .step_num {
            border: 1px solid var(--black);
            background-color: #fff; }
          .gheader .header_inner .step_wrap .step_inner .step_white {
            background-color: var(--black);
            color: #fff; }
        .gheader .header_inner .step_wrap .step_inner::before {
          border-top: dotted 2px var(--black);
          bottom: 14px; } }
