@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
  background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 1em;
  font-weight: inherit;
}

strong,
b {
  font-weight: bold;
}

em {
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  padding-left: 1em;
}

ul ::marker {
  content: '・';
}

a:has(> img) {
  display: block;
}

@media (any-hover: hover) {
  a {
    transition: opacity 0.3s ease;
  }

  a:hover {
    opacity: 0.7;
  }
}

input,
button,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  background-color: #fff;
  border: none;
  outline: none;
}

input:not([type="submit"]),
select,
textarea {
  border: 1px solid #707070;
}

textarea {
  width: 100%;
  padding: 7px 13px;
}

input:not([type="submit"]):not([type="button"]):not([type="radio"]):not([type="checkbox"]),
select {
  width: 100%;
  height: 41px;
  padding: 7px 13px;
}

input[type="number"] {
  max-width: 101px;
}

input[type="radio"],
input[type="checkbox"] {
  margin-left: 4px;
  margin-right: 8px;
  transform: scale(1.4);
}

input[type="submit"],
input[type="button"],
label[for],
select {
  cursor: pointer;
}

@media (any-hover: hover) {

  input[type="submit"],
  input[type="button"] {
    transition: opacity 0.3s ease;
  }

  input[type="submit"]:hover,
  input[type="button"]:hover {
    opacity: 0.7;
  }
}

.site-header {
  display: grid;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
}

.site-header .logo {
  max-width: 373px;
}

.site-header .title {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .site-header {
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .site-header {
    padding: 28px 37px 29px 42px;
  }

  .site-header .title {
    font-size: 24px;
  }
}

.site {
  min-block-size: 100svh;
}

.site-footer {
  position: -webkit-sticky;
  position: sticky;
  inset-block-start: 100%;
  padding: 100px 0;
}

.site-footer .copyright {
  font-size: 12px;
  text-align: center;
}

.red {
  color: #f00;
}

.fw-b {
  font-weight: bold;
}

.site-main {
  width: calc(100% - 40px);
  max-width: 680px;
  margin-inline: auto;
  padding-top: 55px;
}

.page--title {
  display: grid;
  justify-content: center;
  margin-bottom: 21px;
  padding: 16px 30px 13px 34px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45;
  background-color: #f8b829;
}

.page--title em {
  color: #EEFF00;
  text-decoration: underline;
}

.step--list {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 44px;
  font-size: clamp(10px, 3vw, 16px);
  font-weight: bold;
}

.step--list .item {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 3.9em;
  color: #fff;
  background-color: #bcbcbc;
  border-radius: 50%;
}

.survey-form01 .page--title,
.survey-form01 .step--list .item:first-child,
.survey-form-nt01 .page--title,
.survey-form-nt01 .step--list .item:first-child {
  background-color: #f8b829;
}

.survey-form02 .page--title,
.survey-form02 .step--list .item:nth-child(2),
.survey-form-nt02 .page--title,
.survey-form-nt02 .step--list .item:nth-child(2) {
  background-color: #4FC700;
}

.survey-form03 .page--title,
.survey-form03 .step--list .item:nth-child(3) {
  background-color: #0586AE;
}

.survey-form04 .page--title,
.survey-form04 .step--list .item:nth-child(4) {
  background-color: #4129BF;
}

.survey-form05 .page--title,
.survey-form05 .step--list .item:nth-child(5) {
  background-color: #FF6E23;
}

@media screen and (min-width: 768px) {
  .step--list {
    justify-content: center;
    gap: 43px;
  }

  .step--list .item {
    width: 63px;
  }

  .step--list .item:not(:last-child) {
    position: relative;
  }

  .step--list .item:not(:last-child)::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background-color: #707070;
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
  }
}

.form--outer h4,
.form--outer h5 {
  margin-bottom: 18px;
  font-weight: bold;
}

.form--outer h4:not(:first-child) {
  margin-top: 25px;
}

.form--outer h5 {
  padding: 5px 13px 4px;
  background-color: #ffeabb;
}

.form--outer h5:not(:first-child) {
  margin-top: 20px;
}

.form--list {
  margin-top: 26px;
}

.form--list:not(:last-child) {
  margin-bottom: 30px;
}

.form--list .item:not(:last-child) {
  margin-bottom: 25px;
}

.form--list .required > *:first-child::after {
  content: '必須';
  display: inline-block;
  margin-left: 15px;
  padding: 4px 7px 3px;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  background-color: #f00;
  border-radius: 4px;
}

.form--list .item--box {
  padding: 20px 20px 40px;
  background-color: #fff;
  border: 1px solid #989898;
}

.form--list .item--box:not(:last-child) {
  margin-bottom: 36px;
}

.form--btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 47px;
}

.form--btn .btn {
  width: 50%;
  max-width: 187px;
}

.form--btn .btn button,
.form--btn .btn input {
  width: 100%;
  height: 53px;
  color: #fff;
  font-weight: bold;
  background-color: #0017c1;
  background-repeat: no-repeat;
  background-size: 6px auto;
  border-radius: 6px;
}

.form--btn button[type="button"],
.form--btn input[type="button"] {
  background-image: url("../img/arrow_left.svg");
  background-position: center left 14px;
}

.form--btn input[type="submit"] {
  background-image: url("../img/arrow_right.svg");
  background-position: center right 14px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.checklist .wpcf7-form-control-wrap {
  display: block;
  margin-top: 1em;
}

.checklist .wpcf7-form-control-wrap:not(:last-child) {
  margin-bottom: 1em;
}

.checklist .wpcf7-radio,
.checklist .wpcf7-checkbox {
  display: grid;
  row-gap: 10px;
}

.wpcf7-form-control-wrap:has(input[type="number"]) {
  margin-inline: 8px;
}

.survey-form-start .site-main {
  padding-top: 67px;
}

.survey-form-start .form-selector-box {
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #707070;
}

.survey-form-start .form-selector-box img {
  margin-inline: auto;
}

.survey-form-start .form-selector-caution {
  margin-top: 25px;
}

.survey-form-start .form-selector-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.survey-form-start .form-selector-link .link-btn {
  width: 100%;
  max-width: 215px;
  height: 53px;
  font-weight: bold;
}

.survey-form-start .form-selector-link .link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--link-txt, #fff);
  text-decoration: none;
  background-color: var(--link-bg);
  border-radius: 6px;
}

.survey-form-start .form-selector-link .link-btn.link-1 {
  --link-txt: #fff;
  --link-bg: #0095d6;
}

.survey-form-start .form-selector-link .link-btn.link-2 {
  --link-txt: #fff;
  --link-bg: #55b843;
}

@media screen and (min-width: 768px) {
  .survey-form-start .form-selector-box {
    padding: 35px;
  }
}

.survey-form01 .form--list .item > label,
.survey-form-nt01 .form--list .item > label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.survey-form01 .form--list .item > p:not(:last-child),
.survey-form-nt01 .form--list .item > p:not(:last-child) {
  margin-bottom: 20px;
}

.survey-form02 .form--list .item:not(:first-child) label,
.survey-form-nt02 .form--list .item:not(:first-child) label {
  display: block;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {

  .survey-form02 .form--list .item:not(:first-child) label,
  .survey-form-nt02 .form--list .item:not(:first-child) label {
    display: inline-block;
    width: 13.4em;
    margin-bottom: 0;
  }
}

.survey-form03 .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-left: 32px;
}

.survey-form03 .form--list .item > p:not([class]):not(:last-child) {
  margin-bottom: 16px;
}

.survey-form03 .form--list .note {
  font-size: 14px;
}

.survey-form05 .form--list .note {
  padding-left: 2em;
  font-size: 14px;
  text-indent: -2em;
}

.survey-form05 .form--list .item > label .wpcf7-form-control-wrap {
  display: inline-block;
  margin: 15px 8px 0 0;
}

.survey-form05 .form--list .item-1 {
  display: grid;
  row-gap: 12px;
  margin-top: 12px;
  padding-left: 28px;
}

.survey-form05 .form--list .item-1:not(:last-child) {
  margin-bottom: 15px;
}

.survey-form05 .form--list .item-1 b {
  display: inline-block;
}

.survey-form05 .form--list .item-1 label {
  display: inline-block;
  width: 7.8em;
}

.survey-form05 .form--list .item-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 10px;
}

.survey-form05 .form--list .item-2 .wpcf7-form-control-wrap {
  margin: 0 8px 0 0;
}

.survey-form05 .message,
.survey-form-nt02 .message,
.thanks .message {
  margin-top: 100px;
  font-weight: bold;
}

.survey-form05 .message p:not(:last-child),
.survey-form-nt02 .message p:not(:last-child),
.thanks .message p:not(:last-child) {
  margin-bottom: 20px;
}

.thanks .message {
  margin-top: 145px;
}
}