@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ---------------------------------------------
Reset
--------------------------------------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, fieldset, legend, select, input {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: #1F2C5C;
  background-color: #fff;
  overflow-x: hidden;
}

picture {
  display: flex;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

fieldset {
  border: none;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* ---------------------------------------------
header
--------------------------------------------- */
header picture {
  width: 20%;
  margin: auto;
  max-width: 248px;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  header picture {
    width: 25%;
    margin: 0;
    max-width: 264px;
    padding: 12px;
  }
}
/* ---------------------------------------------
step_form
--------------------------------------------- */
.step_form_wrapper {
  padding-bottom: 48px;
  background-image: url("../img/bg01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.step_form_wrapper .step_form_content {
  position: relative;
  width: 80%;
  margin: -5% auto 0;
  padding: 4px 4px 32px 4px;
  max-width: 880px;
  background-color: #fff;
  border: #1F2C5C 2px solid;
  border-radius: 32px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.4);
}
.step_form_wrapper .step_form_content::after {
  position: absolute;
  content: "";
  left: -1.8em;
  top: -1.5em;
  background-image: url("../img/form_fukidasi.png");
  width: 128px;
  height: 128px;
  background-size: contain;
  background-repeat: no-repeat;
}
.step_form_wrapper .step_form_content h2 {
  padding: 16px 0;
  text-align: center;
  line-height: 1;
  font-size: 32px;
  background-color: #B3EAFB;
  border-radius: 30px 30px 0 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.step_form_wrapper .step_form_content .step_progress {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
}
.step_form_wrapper .step_form_content .step_progress .progress_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  font-size: 26px;
  font-family: "Inter", serif;
  font-weight: bold;
  background-color: #fff;
  border-radius: 64px;
  border: #FFC050 1px solid;
  z-index: 1;
}
.step_form_wrapper .step_form_content .step_progress .progress_item.active {
  background-color: #FFC050;
}
.step_form_wrapper .step_form_content .step_progress::after {
  position: absolute;
  content: "";
  background-color: #FFC050;
  width: 10em;
  height: 1px;
  margin: auto;
}
.step_form_wrapper .step_form_content .step_form fieldset {
  width: 80%;
  margin: auto;
}
.step_form_wrapper .step_form_content .step_form fieldset legend {
  width: 55%;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
}
.step_form_wrapper .step_form_content .step_form fieldset legend::after {
  display: block;
  content: "";
  width: 100%;
  height: 12px;
  margin-top: 8px;
  background-image: url("../img/form_q_fukidasi.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  padding-bottom: 24px;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox .wpcf7-list-item, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-list-item {
  width: 36%;
  margin: 0;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox .wpcf7-list-item span, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-list-item span {
  display: block;
  padding: 16px 0;
  color: #666;
  text-align: center;
  line-height: 1;
  font-size: 24px;
  font-weight: 500;
  background-color: #FFE9C7;
  border: #1F2C5C 2px solid;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox input[type=checkbox], .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox input[type=radio], .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio input[type=checkbox], .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio input[type=radio] {
  display: none;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox input:checked + span, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio input:checked + span {
  color: #1F2C5C;
  background-color: #FFC050;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox input:disabled + span, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio input:disabled + span {
  color: #888;
  background-color: #ddd;
  border-color: #777;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox #birth_year option[value=選択してください], .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio #birth_year option[value=選択してください] {
  display: none;
}
.step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-list-item {
  width: 50%;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list {
  display: flex;
  flex-direction: column;
  width: 55%;
  margin: auto;
  padding-bottom: 16px;
  gap: 4px;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group label, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group label {
  width: 25%;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap {
  display: block;
  width: 75%;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap select, .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap input[type=text], .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap input[type=tel], .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap input[type=email], .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap select, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap input[type=text], .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap input[type=tel], .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap input[type=email] {
  width: 94%;
  display: block;
  padding: 10px 0 10px 16px;
  border: #1F2C5C 1px solid;
  border-radius: 8px;
  font-size: 20px;
  font-family: "noto sans JP";
  background-color: #fff;
  color: #333;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap select, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap select {
  width: 100%;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .error_text, .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .wpcf7-not-valid-tip, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .error_text, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .wpcf7-not-valid-tip {
  width: 100%;
  margin: -4px 0 8px 26%;
  text-align: left;
}
.step_form_wrapper .step_form_content .step_form fieldset .info_input_list .wpcf7-not-valid-tip, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .wpcf7-not-valid-tip {
  margin-left: 0;
}
.step_form_wrapper .step_form_content .step_form fieldset.confirm {
  margin-top: 32px;
}
.step_form_wrapper .step_form_content .step_form fieldset.confirm legend {
  width: unset;
  font-size: 24px;
  margin-bottom: 0;
}
.step_form_wrapper .step_form_content .step_form fieldset.confirm legend::after {
  content: none;
}
.step_form_wrapper .step_form_content .step_form fieldset.confirm .confirm_list {
  width: 55%;
  margin: 28px auto 0;
}
.step_form_wrapper .step_form_content .step_form fieldset.confirm .confirm_list div {
  display: flex;
  margin-bottom: 6px;
  font-size: 18px;
}
.step_form_wrapper .step_form_content .step_form fieldset.confirm .confirm_list div dt {
  margin-right: 8px;
  font-weight: bold;
  min-width: 5em;
}
.step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list {
  width: 55%;
  margin: 16px auto 0;
  gap: 8px;
}
.step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .daytime_group label {
  width: 30%;
  color: #666;
  font-size: 20px;
  font-weight: 500;
}
.step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .daytime_group .wpcf7-form-control-wrap:first-of-type {
  width: 40%;
}
.step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .daytime_group .wpcf7-form-control-wrap:last-of-type {
  width: 55%;
}
.step_form_wrapper .step_form_content .step_form fieldset.daytime {
  margin-top: 28px;
}
.step_form_wrapper .step_form_content .step_form fieldset.daytime legend {
  width: 70%;
  font-size: 16px;
  margin-bottom: 0;
}
.step_form_wrapper .step_form_content .step_form fieldset.daytime legend::after {
  content: none;
}
.step_form_wrapper .step_form_content .step_form fieldset .error_text, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-not-valid-tip {
  width: 74%;
  margin: auto;
  font-weight: 500;
  color: #E74C3C;
  text-align: center;
}
.step_form_wrapper .step_form_content .step_form fieldset .form_buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.step_form_wrapper .step_form_content .step_form fieldset .form_buttons .form_next_button, .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step {
  position: relative;
  display: block;
  padding: 10px 48px 12px;
  color: #1F2C5C;
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  line-height: 1;
  background-color: #FCEE21;
  border: #1F2C5C 2px solid;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.step_form_wrapper .step_form_content .step_form fieldset .form_buttons .form_next_button::after, .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step::after {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background-image: url("../img/next_button_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.step_form_wrapper .step_form_content .step_form fieldset .form_buttons .form_next_button:hover, .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step {
  color: #555;
  background-color: #ccc;
  border-color: #555;
}
.step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step::after {
  content: none;
}
.step_form_wrapper .step_form_content .step_last_text {
  margin: 80px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.step_form_wrapper .step_form_content input.wpcf7-form-control.has-spinner.wpcf7-submit {
  visibility: hidden;
}
.step_form_wrapper .step_form_content .wpcf7 form.sent .wpcf7-response-output, .step_form_wrapper .step_form_content .wpcf7 form .wpcf7-response-output, .step_form_wrapper .step_form_content .wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 768px) {
  .step_form_wrapper {
    padding-bottom: 4px;
    background-image: url("../img/bg01_sp.png");
  }
  .step_form_wrapper .step_form_content {
    padding-bottom: 16px;
    border-radius: 24px;
  }
  .step_form_wrapper .step_form_content::after {
    left: -0.8em;
    top: -0.5em;
    width: 68px;
    height: 68px;
  }
  .step_form_wrapper .step_form_content h2 {
    padding: 12px 0 12px 32px;
    font-size: 20px;
    border-radius: 22px 22px 0 0;
    box-shadow: none;
  }
  .step_form_wrapper .step_form_content .step_progress {
    margin: 16px 0;
    gap: 16px;
  }
  .step_form_wrapper .step_form_content .step_progress .progress_item {
    font-size: 16px;
  }
  .step_form_wrapper .step_form_content .step_progress .progress_item.active {
    background-color: #FFC050;
  }
  .step_form_wrapper .step_form_content .step_progress::after {
    width: 5em;
  }
  .step_form_wrapper .step_form_content .step_form fieldset {
    width: 92%;
  }
  .step_form_wrapper .step_form_content .step_form fieldset legend {
    width: 95%;
    margin-bottom: 8px;
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio {
    padding: 16px 0;
    gap: 8px 4px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox .wpcf7-list-item, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-list-item {
    width: 49%;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox .wpcf7-list-item span, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-list-item span {
    padding: 10px 0;
    font-size: 16px;
    border: #1F2C5C solid 1px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-checkbox .wpcf7-radio .wpcf7-list-item, .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-radio .wpcf7-list-item {
    width: 95%;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .info_input_list, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 8px;
    gap: 2px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group label, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group label {
    width: 27%;
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap select, .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap input[type=text], .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap input[type=tel], .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap input[type=email], .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap select, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap input[type=text], .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap input[type=tel], .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap input[type=email] {
    padding: 8px 0 8px 8px;
    font-size: 16px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .form_group span.wpcf7-form-control-wrap select, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .form_group span.wpcf7-form-control-wrap select {
    height: 44px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .info_input_list .error_text, .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .error_text {
    width: 75%;
    margin: 0px 0 8px 28%;
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.confirm {
    margin-top: 24px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.confirm legend {
    font-size: 18px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.confirm .confirm_list {
    width: 95%;
    margin: 16px auto 0;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.confirm .confirm_list div {
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.confirm .confirm_list div dt {
    margin-right: 4px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 16px auto 0;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .daytime_input_list .daytime_group label {
    width: 30%;
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.daytime {
    margin-top: 24px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.daytime legend {
    width: 100%;
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset.daytime .form_next_button {
    margin-top: 0;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .error_text {
    width: 100%;
    font-size: 15px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .form_buttons {
    gap: 8px;
    margin-top: 16px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .form_next_button, .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step {
    padding: 8px 40px 8px;
    font-size: 18px;
    border: #1F2C5C 1px solid;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .form_next_button::after, .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step::after {
    width: 8px;
    height: 12px;
  }
  .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .form_next_button:hover, .step_form_wrapper .step_form_content .step_form fieldset .form_buttons .reset-step:hover {
    opacity: 0.7;
  }
  .step_form_wrapper .step_form_content .step_last_text {
    margin: 24px 0;
    font-size: 16px;
  }
}
/* ---------------------------------------------
features DYMグループの3つの特徴
--------------------------------------------- */
.features {
  padding: 64px 0 48px;
  background-image: url("../img/bg02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.features .features_content {
  width: 90%;
  max-width: 880px;
  margin: auto;
}
.features .features_content .features_headline {
  margin-bottom: 48px;
}
.features .features_content .features_headline h2 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 36px;
}
.features .features_content .features_headline h2 .big {
  font-size: 1.7em;
  margin: 0 2px;
}
.features .features_content .features_headline picture {
  width: 9em;
  margin: auto;
}
.features .features_content .features_list {
  position: relative;
}
.features .features_content .features_list dd {
  padding: 1em 0.5em 2.2em 2em;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.features .features_content .features_list .w-small {
  width: 69%;
}
.features .features_content .features_list .w-small dd small {
  font-size: 0.7em;
}
.features .features_content .features_list::after {
  position: absolute;
  content: "";
  display: block;
  width: 42%;
  height: 65%;
  background-image: url("../img/feature_woman.png");
  background-size: cover;
  background-repeat: no-repeat;
  right: -12%;
  bottom: 3em;
}

@media screen and (max-width: 768px) {
  .features {
    padding: 48px 0 24px;
    background-image: url("../img/bg02_sp.png");
    background-position: top;
  }
  .features .features_content {
    width: 90%;
  }
  .features .features_content .features_headline {
    width: 50%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column-reverse;
  }
  .features .features_content .features_headline h2 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1;
  }
  .features .features_content .features_headline h2 .big {
    font-size: 1.4em;
  }
  .features .features_content .features_headline h2 .sp_big {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
  }
  .features .features_content .features_headline picture {
    width: 6em;
    margin: 0 auto 16px;
  }
  .features .features_content .features_list {
    position: static;
  }
  .features .features_content .features_list dd {
    padding: 8px 4px 8px 32px;
    font-size: 15px;
    line-height: 1.5;
  }
  .features .features_content .features_list .w-small {
    width: 100%;
  }
  .features .features_content .features_list .w-small dd small {
    font-size: 0.6em;
  }
  .features .features_content .features_list::after {
    content: none;
  }
}/*# sourceMappingURL=style.css.map */
