@charset "UTF-8";
/* 
Theme Name: form
*/
html {
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

@-webkit-keyframes colorChange {
  0% {
    color: #333333;
  }
  100% {
    color: white;
    background-color: #007DCF;
    border: 2px solid #007DCF;
  }
}

@keyframes colorChange {
  0% {
    color: #333333;
  }
  100% {
    color: white;
    background-color: #007DCF;
    border: 2px solid #007DCF;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes result-animation {
  0% {
    color: white;
  }
  17% {
    color: rgba(255, 255, 255, 0.2);
  }
  34% {
    color: white;
  }
  51% {
    color: rgba(255, 255, 255, 0.2);
  }
  99% {
    background-color: #ff3e3e;
  }
  100% {
    background-color: #0099ff;
  }
}

@keyframes result-animation {
  0% {
    color: white;
  }
  17% {
    color: rgba(255, 255, 255, 0.2);
  }
  34% {
    color: white;
  }
  51% {
    color: rgba(255, 255, 255, 0.2);
  }
  99% {
    background-color: #ff3e3e;
  }
  100% {
    background-color: #0099ff;
  }
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333333;
  word-break: break-all;
  letter-spacing: 0.07em;
  line-height: 1.2;
  position: relative;
}

body input {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ";
  font-size: 1rem;
}

body textarea {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ";
  font-size: 1rem;
  width: 33rem;
  height: 10rem;
  padding: 0.5rem;
  border: 1px solid #d1d1d1;
  outline: none;
  resize: none;
}

body textarea:focus {
  border: 2px solid #18c5b7;
}

body.mask {
  overflow-y: hidden;
}

body.mask::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 500;
}

.hidden {
  display: none;
}

.hidden.show {
  display: block;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

header {
  height: 60px;
  padding: 10px 0;
  border-bottom: 2px solid #eee;
  text-align: center;
}

header h1 {
  width: 200px;
  display: table;
  margin: 0 auto;
}

header h1 img {
  width: 100%;
  height: auto;
}

.top_view {
  background-color: #007dcf;
  width: 100%;
}

.top_view img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.top_sp {
  display: none !important;
}

.form-sec {
  background-color: #007DCF;
  padding: 4.5rem 2.5rem 6rem;
}

.form-sec .title_inner {
  text-align: center;
}

.form-sec .title_inner h2 {
  color: white;
  font-size: 2rem;
  line-height: 50px;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 14px;
}

.form-sec .title_inner img {
  margin-bottom: 44px;
}

.form-sec .container {
  padding: 3.75rem 2.5rem 6.25rem;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 50px;
}

.form-sec h3 {
  display: inline-block;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #f74040;
}

.form-sec h3 .deco {
  display: inline-block;
  margin: 0 0.6rem;
}

.form-sec h3 .deco:first-of-type {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.form-sec h3 .bold {
  font-size: 1.8rem;
}

.form-sec .step-indicater {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 40rem;
  margin: 0 auto 3rem auto;
  position: relative;
}

.form-sec .step-indicater::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #868686;
}

.form-sec .step-indicater span {
  display: block;
  width: 1rem;
  height: 1rem;
  position: relative;
  border-radius: 50%;
  border: 1px solid #bbbbbb;
  background-color: white;
  z-index: 2;
}

.form-sec .step-indicater span.active {
  border: none;
  background-color: #f97e24;
}

.form-sec .first-sec .question_step {
  margin: 0 auto 4px;
  color: #f97e24;
  font-size: 1.5rem;
  font-weight: bold;
}

.form-sec .first-sec .question {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
  font-weight: bold;
  display: table;
}

.form-sec .first-sec .question:not(:first-of-type) {
  margin-top: 2rem;
}

.form-sec .first-sec .wpcf7-list-item {
  margin-left: 0;
  margin-bottom: 1rem;
}

.form-sec .first-sec .wpcf7-list-item:nth-of-type(odd) label {
  margin-right: 1.3rem;
}

.form-sec .first-sec label {
  display: inline-block;
}

.form-sec .first-sec .wpcf7-list-item-label {
  display: inline-block;
  width: 20rem;
  height: 5.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  cursor: pointer;
  border: 2px solid #007DCF;
}

.form-sec .first-sec .wpcf7-list-item-label:hover {
  -webkit-animation: colorChange 0.3s forwards;
          animation: colorChange 0.3s forwards;
}

.form-sec .first-sec input[type="radio"] {
  display: none;
}

.form-sec .first-sec input[type="radio"]:checked + span {
  background-color: #007DCF;
  color: white;
}

.form-sec .first-sec .q1-box,
.form-sec .first-sec .q2-box,
.form-sec .first-sec .q3-box,
.form-sec .first-sec .q4-box,
.form-sec .first-sec .q5-box {
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
  max-width: 661px;
}

.form-sec .first-sec .q1-box .question,
.form-sec .first-sec .q2-box .question,
.form-sec .first-sec .q3-box .question,
.form-sec .first-sec .q4-box .question,
.form-sec .first-sec .q5-box .question {
  position: relative;
}

.form-sec .first-sec .q1-box .question::before,
.form-sec .first-sec .q2-box .question::before,
.form-sec .first-sec .q3-box .question::before,
.form-sec .first-sec .q4-box .question::before,
.form-sec .first-sec .q5-box .question::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  background-image: url(./img/women.png);
  background-size: contain;
  left: -84px;
  top: -36px;
}

.form-sec .first-sec .q1-box.show,
.form-sec .first-sec .q2-box.show,
.form-sec .first-sec .q3-box.show,
.form-sec .first-sec .q4-box.show,
.form-sec .first-sec .q5-box.show {
  display: block;
  -webkit-animation: fade-in 0.6s forwards;
          animation: fade-in 0.6s forwards;
  text-align: center;
}

.form-sec .first-sec .q5-box {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-sec .first-sec .validation-message1 {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: #f74040;
}

.form-sec .btn-box {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 414px;
  margin: 0 auto;
}

.form-sec .btn {
  width: 12rem;
  height: 2.6rem;
  margin-top: 0.6rem;
  text-align: center;
  line-height: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  border: 1px solid;
}

.form-sec .btn-next {
  margin-left: 1rem;
  display: none;
}

.form-sec .btn-next.show {
  display: inline-block;
}

.form-sec .btn-confirm {
  background-color: #0099ff;
  color: white;
}

.form-sec .second-sec {
  display: none;
  text-align: center;
}

.form-sec .second-sec .result {
  width: 10rem;
  height: 4rem;
  margin: 0 auto 2rem auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  background-color: #ff3e3e;
  color: white;
  font-weight: 500;
}

.form-sec .second-sec .question_step {
  margin: 0 auto 4px;
  color: #f97e24;
  font-size: 1.5rem;
  font-weight: bold;
}

.form-sec .second-sec .text {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  visibility: hidden;
  opacity: 0;
  -webkit-animation: fade-in 0.8s forwards 2.5s;
          animation: fade-in 0.8s forwards 2.5s;
}

.form-sec .second-sec dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d1d1d1;
  text-align: left;
}

.form-sec .second-sec dt {
  width: 19rem;
  margin-right: 2rem;
  line-height: 2.8rem;
  font-weight: bold;
  border-right: 2px dotted #d1d1d1;
}

.form-sec .second-sec dt span {
  display: inline-block;
  margin-left: 1.4rem;
  height: 27px;
  padding: 0 0.8rem;
  font-size: 0.875rem;
  line-height: 27px;
  border-radius: 4px;
  background-color: #E04F4F;
  color: white;
}

.form-sec .second-sec dt .no-require {
  background-color: #00A3F7;
}

.form-sec .second-sec dt p {
  margin-left: 2rem;
  font-size: 0.9rem;
}

.form-sec .second-sec dd p {
  color: #f74040;
  margin-top: 0.2rem;
}

.form-sec .second-sec input {
  display: inline-block;
  height: 2.8rem;
  width: 32rem;
  padding: 0 0.5rem;
  border: 1px solid #707070;
  border-radius: 4px;
  outline: none;
}

.form-sec .second-sec input:focus {
  border: 2px solid #00A3F7;
}

.form-sec .second-sec textarea {
  width: 32rem;
  height: 10rem;
  padding: 0.5rem;
  border: 1px solid #707070;
  border-radius: 4px;
  outline: none;
  resize: none;
}

.form-sec .second-sec textarea:focus {
  border: 2px solid #00A3F7;
}

.form-sec .second-sec .validation-message2 {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: #f74040;
}

.form-sec .second-sec.show {
  display: block;
}

.form-sec .second-sec.show .result {
  -webkit-animation: result-animation 2.4s forwards;
          animation: result-animation 2.4s forwards;
  -webkit-transition-delay: 23s;
          transition-delay: 23s;
}

.form-sec .modal {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-bottom: 100px;
  overflow-y: scroll;
  z-index: 1000;
  font-size: 1.3rem;
}

.form-sec .modal .inner {
  padding: 5rem 1rem 1rem;
  max-width: 40rem;
}

.form-sec .modal .text {
  display: table;
  margin-bottom: 2.3rem;
  padding-bottom: 0.2rem;
  font-size: 1.2rem;
  color: #f74040;
}

.form-sec .modal .confirms {
  border: 1px solid #333333;
  margin-bottom: 1rem;
}

.form-sec .modal dl {
  margin-bottom: 0.3rem;
  padding: 0.5rem 1rem;
}

.form-sec .modal dt {
  font-weight: 500;
  margin-bottom: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(195, 39, 31, 0.9);
}

.form-sec .modal dd {
  min-height: 1.5rem;
}

.form-sec .modal .btn {
  width: 15rem;
}

.form-sec .modal .btn-prev2 {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.form-sec .modal .btn-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: top;
  padding: 0;
  font-size: 1.4rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ";
  color: white;
  background-color: #0099ff;
  cursor: pointer;
}

.form-sec .modal .last-text-box {
  width: 100%;
  margin: 0 auto;
}

.form-sec .modal .last-text {
  font-size: 1.2rem;
}

.form-sec .modal .last-text-list {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.form-sec .modal .last-text-list li {
  margin-bottom: 0.5rem;
}

.form-sec .modal .last-text-list span {
  color: #f74040;
}

.form-sec .modal.show {
  display: block;
  visibility: visible;
}

.form-sec .wpcf7 form .wpcf7-response-output {
  max-width: 1000px;
  margin: 0 auto;
  border: none;
  color: #f74040;
}

.form-sec.hidden {
  display: none;
}

footer {
  color: white;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding-bottom: 0.5rem;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 200;
  font-size: 10px;
}

.thanks-sec {
  padding-bottom: 3rem;
  line-height: 1.5;
}

.thanks-sec .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
}

.thanks-sec h2 {
  max-width: 40rem;
  padding-top: 4.5rem;
  font-size: 1.4rem;
  font-family: "Noto Serif SC", serif;
  font-weight: 500;
}

.thanks-sec p {
  font-size: 1.1rem;
}

.thanks-sec img {
  width: 15rem;
  height: auto;
}

.thanks-sec .caution {
  color: #f74040;
  font-size: 1.1rem;
  font-weight: bold;
}

.thanks-sec .company-profile {
  display: table;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  border: 1px solid;
}

.thanks-sec .company-profile a {
  color: #b80a0a;
}

@media screen and (max-width: 1023px) {
  .form-sec .first-sec .wpcf7-list-item {
    margin-bottom: 1rem;
  }
  .form-sec .first-sec .question:not(:first-of-type) {
    margin-top: 1rem;
  }
  .form-sec .second-sec dl {
    display: block;
    width: 92%;
    border-bottom: none;
  }
  .form-sec .second-sec dt {
    border-right: none;
    margin-bottom: 1rem;
  }
  .form-sec .second-sec input {
    width: 100%;
  }
  .form-sec .second-sec textarea {
    width: 100%;
  }
}

@media screen and (max-width: 870px) {
  .form-sec .first-sec .q1-box,
  .form-sec .first-sec .q2-box,
  .form-sec .first-sec .q3-box,
  .form-sec .first-sec .q4-box,
  .form-sec .first-sec .q5-box {
    max-width: 21rem;
  }
  .form-sec .btn-box {
    max-width: 20rem;
    margin: 0 auto;
  }
  .form-sec textarea {
    width: 100%;
  }
  .form-sec .btn-next {
    margin-left: 0;
  }
  .form-sec .btn-confirm {
    margin-left: 0;
  }
  .form-sec .btn-submit {
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  .form-sec h2::after {
    display: block;
    font-size: 1.1rem;
  }
  .form-sec .first-sec textarea {
    width: 100%;
  }
  .form-sec .second-sec dl {
    width: 100%;
  }
  .form-sec .title_inner h2 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  header {
    height: auto;
    padding: 10px 0;
    border-bottom: none;
  }
  header a {
    width: 200px;
    height: 40px;
  }
  header h1 {
    width: 200px;
    height: 40px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .top_pc {
    display: none !important;
  }
  .top_sp {
    display: block !important;
  }
  .form-sec {
    padding: 0 1rem 4rem;
  }
  .form-sec .title_inner h2 {
    font-size: 1.2rem;
    line-height: 32px;
  }
  .form-sec .container {
    border-width: 2px;
    padding: 3rem 2rem 2rem;
  }
  .form-sec h2 {
    margin-left: -0.2rem;
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
  }
  .form-sec h2 ::after {
    font-size: 1rem;
  }
  .form-sec h3 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.3rem;
    font-size: 1.1rem;
  }
  .form-sec h3 .bold {
    font-size: 1.5rem;
  }
  .form-sec .step-indicater {
    margin-bottom: 1.8rem;
  }
  .form-sec .step-indicater::after {
    top: 5px;
  }
  .form-sec .step-indicater span {
    width: 12px;
    height: 12px;
  }
  .form-sec .first-sec .question_step {
    font-size: 1rem;
  }
  .form-sec .first-sec .question {
    font-size: 0.8rem;
    margin-bottom: 1.8rem;
  }
  .form-sec .first-sec .question:not(:first-of-type) {
    margin-top: 0.8rem;
  }
  .form-sec .first-sec .q1-box .question::before,
  .form-sec .first-sec .q2-box .question::before,
  .form-sec .first-sec .q3-box .question::before,
  .form-sec .first-sec .q4-box .question::before,
  .form-sec .first-sec .q5-box .question::before {
    display: none;
    width: 60px;
    height: 60px;
    left: -74px;
    top: -36px;
  }
  .form-sec .first-sec .q1,
  .form-sec .first-sec .q2,
  .form-sec .first-sec .q3,
  .form-sec .first-sec .q4 {
    display: block;
  }
  .form-sec .first-sec .wpcf7-form-control {
    display: block;
  }
  .form-sec .first-sec .wpcf7-list-item {
    display: block;
    margin-bottom: 0.8rem;
  }
  .form-sec .first-sec .wpcf7-list-item:nth-of-type(odd) label {
    margin-right: 0;
  }
  .form-sec .first-sec label {
    display: block;
  }
  .form-sec .first-sec .wpcf7-list-item-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 4.4rem;
    padding: 0.4rem 0.7rem;
    font-size: 16px;
  }
  .form-sec .second-sec .question_step {
    font-size: 1rem;
  }
  .form-sec .second-sec .text {
    font-size: 0.8rem;
  }
  .form-sec .second-sec dl {
    margin: 1.3rem 0;
  }
  .form-sec .second-sec dt {
    width: 100%;
    margin-bottom: 0.7rem;
    line-height: 2.1rem;
  }
  .form-sec .second-sec dt p {
    margin-left: 0;
  }
  .form-sec .second-sec dt span {
    margin-right: 0.7rem;
    font-size: 14px;
  }
  .form-sec .second-sec input {
    height: 2.8rem;
    font-size: 15px;
  }
  .form-sec .second-sec .btn-prev1 {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .form-sec .modal {
    font-size: 1rem;
  }
  .form-sec .modal .inner {
    padding: 3rem 2rem 5rem;
  }
  .form-sec .modal .confirms {
    padding: 1.5rem 0.5rem;
  }
  .form-sec .modal .confirms dl {
    margin-bottom: 0.5rem;
  }
  .form-sec .modal .confirms dt {
    font-size: 1rem;
  }
  .form-sec .modal .confirms dd {
    font-size: 1rem;
  }
  .form-sec .modal .text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .form-sec .modal .dl {
    margin-bottom: 0.1rem;
  }
  .form-sec .modal .btn-prev2 {
    margin-right: 0;
  }
  .form-sec .modal .btn-submit {
    font-size: 1.1rem;
  }
  .form-sec .modal .last-text-box {
    width: calc(100% - 18px);
  }
  .form-sec .modal .last-text {
    font-size: 0.9rem;
  }
  .form-sec .modal .last-text-list {
    font-size: 0.9rem;
  }
  .thanks-sec .inner {
    padding: 3rem 2rem;
  }
  .thanks-sec .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .thanks-sec .box img {
    display: table;
    margin: 0 auto;
  }
  .thanks-sec h2 {
    padding-top: 0rem;
    font-size: 1.2rem;
  }
  .thanks-sec p {
    font-size: 15px;
    line-height: 2;
  }
  .thanks-sec .caution {
    font-size: 1rem;
  }
  .thanks-sec .company-profile {
    margin-top: 2.5rem;
  }
}
/*# sourceMappingURL=style.css.map */