@charset "UTF-8";
:root {
  --font-ja: "Roboto", "Noto Sans Japanese", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  background-color: #ffffff;
  color: #3b4043;
  line-height: 1.625;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
}

/* --------------------------------------------------------------------------

---- 共通パーツ

-------------------------------------------------------------------------- */
.guidance-header {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.form {
  padding: 2rem 0;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}
.form__header {
  text-align: center;
  margin: 0 0 3rem;
}
.form__title {
  font-size: 2.8rem;
  line-height: 1em;
  text-align: center;
  margin: 0 0 2rem;
}
.form__image {
  width: 8rem;
  margin: 0 auto 2rem;
}
.form__image img {
  width: 100%;
}
.form__outline {
  font-size: 1.8rem;
  line-height: 1.5;
}
.form__section {
  margin: 0 0 10rem;
}
.form__section-title {
  color: #8f9598;
  font-size: 2.8rem;
  text-align: center;
  margin: 0 0 3rem;
  line-height: 1.5;
}
.form__section .input {
  margin: 0 0 2rem;
}
.form__section .input.hide {
  display: none;
}
.form__section .input.visible {
  display: block;
}
.form__section .input__title {
  font-size: 2rem;
  line-height: 1em;
  font-weight: bold;
  margin: 0 0 1rem;
}
.form__section .input__content {
  margin: 0;
}
.form__section .input__content .-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__section .input__content input[type=radio] {
  display: none;
}
.form__section .input__content input[type=radio]:checked + label:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #cd0032;
  border-radius: 50%;
  background-color: #cd0032;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  margin: auto;
  -webkit-transform: translate(6px, 0);
          transform: translate(6px, 0);
}
.form__section .input__content label {
  padding: 20px;
  border: 1px solid #c4c4c4;
  margin-top: 1px;
  margin-bottom: 20px;
  border-radius: 6px;
  width: 49%;
  position: relative;
  padding-left: 58px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: block;
}
.form__section .input__content label:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #c4c4c4;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  margin: auto;
  background-color: white;
}
.form__section .control {
  text-align: center;
}
.form__section .control .btn {
  background: #cd0032;
  display: block;
  max-width: 483px;
  border-radius: 50px;
  padding: 28px 0;
  text-align: center;
  text-decoration: none;
  color: white;
  position: relative;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  font-size: 26px;
  line-height: 1em;
  margin: 0 auto;
  font-weight: bold;
}
.form__section .control .btn:before {
  content: "";
  display: block;
  background-color: white;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  margin: auto;
  border-radius: 50%;
}
.form__section .control .btn:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/figure-btn-next.svg) 0 0 no-repeat;
  background-size: contain;
  right: 20px;
  top: 0;
  bottom: 0;
  height: 34px;
  width: 34px;
  margin: auto;
}
.form__section .control .btn:hover, .form__section .control .btn:active, .form__section .control .btn:focus, .form__section .control .btn:focus-within {
  opacity: 0.4;
}

@media (max-width: 807px) {
  .guidance-header {
    width: 50%;
    max-width: 808px;
    margin: 10px auto 0;
    text-align: center;
  }
  .form {
    padding-top: 15px;
  }
  .form__header {
    margin-bottom: 20px;
  }
  .form__title {
    font-size: 22px;
    margin: 0 0 20px;
  }
  .form__image {
    width: 58.95px;
    margin-bottom: 20px;
  }
  .form__outline {
    padding: 0 20px;
    font-size: 14px;
    line-height: 24px;
  }
  .form__section {
    margin-bottom: 68px;
  }
  .form__section-title {
    font-size: 20px;
    margin: 0 0 30px;
  }
  .form__section .input {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 0 20px;
  }
  .form__section .input.hide {
    display: none;
  }
  .form__section .input.visible {
    display: block;
  }
  .form__section .input__title {
    font-size: 20px;
  }
  .form__section .input__content {
    margin: 0 0 20px;
  }
  .form__section .input__content input[type=radio] {
    display: none;
  }
  .form__section .input__content input[type=radio]:checked + label:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #cd0032;
    border-radius: 50%;
    background-color: #cd0032;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    margin: auto;
    -webkit-transform: translate(6px, 0);
            transform: translate(6px, 0);
  }
  .form__section .input__content label {
    width: 100%;
    margin: 0 0 15px;
    line-height: 24px;
  }
  .form__section .input__content label:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #c4c4c4;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    margin: auto;
    background-color: white;
  }
  .form__section .control .btn {
    padding: 20px 20px 20px 0;
    line-height: 20px;
    font-size: 18px;
    max-width: 380px;
    width: 90%;
  }
  .form__section .control .btn:before {
    height: 20px;
    width: 20px;
    right: 10px;
  }
  .form__section .control .btn:after {
    height: 24px;
    width: 24px;
    right: 10px;
  }
  .form__section .control .btn:hover, .form__section .control .btn:active, .form__section .control .btn:focus, .form__section .control .btn:focus-within {
    opacity: 0.4;
  }
}/*# sourceMappingURL=style.css.map */