@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  color: #040304;
  background-color: #ffffff;
  background: #FBFBFF;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

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

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

select::-ms-expand {
  display: none;
}

summary {
  list-style: none;
  -webkit-appearance: none;
}

summary::-webkit-details-marker {
  display: none;
}

main {
  min-height: 860px;
  background: #EDEDED;
  max-width: 420px;
  margin: 0 auto;
}

.header__inner {
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #737373;
}

.header__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: normal;
  color: #ffffff;
  text-align: center;
}
.header__title--yellow {
  color: #FFD334;
  font-weight: 700;
}

.footer__inner {
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #FFFCF3;
}
.footer__privacy {
  display: flex;
  justify-content: center;
}
.footer__privacy a {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: normal;
  color: #040304;
  text-align: center;
}
.footer__copyright {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.footer__copyright--text {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: normal;
  color: #737373;
  text-align: center;
}

.inner {
  max-width: 420px;
  padding-right: 24px;
  padding-left: 24px;
}

.top-mv__inner {
  margin: 0 auto;
  max-width: 420px;
}

/* ステップ全体のラッパー */
.p-steps__wrap {
  display: none; /* 初期状態は非表示 */
  background-color: #FFFCF3;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 8px;
  justify-content: center;
}

/* ステップヘッドライン */
.c-steps__headline {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: normal;
  color: #F46D2E;
  text-align: center;
}

/* ステップアイコンのリスト */
.c-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* ステップアイコン */
.c-steps__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #D9D9D9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.c-steps__icon.is-active {
  background-color: #F46D2E;
  color: #fff;
}

/* ステップテキスト */
.c-steps__text {
  text-align: center;
  font-size: 12px;
  color: #F46D2E;
  line-height: 120%;
  letter-spacing: normal;
  font-weight: 700;
}

.top-form__inner {
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

/* フォーム全体 */
.p-form {
  margin: 0 auto;
  background: #ffffff;
}

.p-form__main {
  overflow: hidden;
  position: relative;
}

.p-form section {
  display: none;
  padding-top: 32px;
  padding-bottom: 32px;
}
.p-form section.is-active {
  display: block;
}

/* 全てのステップを非表示にする（step00以外） */
.p-form__main section:not(#step00) {
  display: none;
}

/* step01以降のステップを強制的に非表示 */
#step01,
#step02,
#step03,
#step04,
#last-step {
  display: none;
}

/* 初期状態でstep00のみ表示 */
#step00 {
  display: block;
  text-align: center;
}

/* フォームラベル */
.p-form__label {
  display: block;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  color: #F46D2E;
  background-color: #FFF5E9;
  text-align: center;
  width: 100%;
  border-radius: 100px;
  pointer-events: none;
}

.p-form__item {
  display: grid;
  gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.p-form__item br {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.p-form__radio {
  margin-top: 24px;
}
.p-form__radio .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px;
  height: 80px;
  z-index: 1;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: break-spaces;
}
.p-form__radio .wpcf7-list-item-label::before {
  box-sizing: border-box;
  content: "";
  border-radius: 16px;
  border: 2px solid #EBEBEC;
  background: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: -1;
}
.p-form__radio .wpcf7-list-item-label::after {
  content: "▶︎";
  color: #EBEBEC;
}
.p-form__radio input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.p-form__radio-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.p-form__radio-col2 .wpcf7-list-item-label {
  width: 100%;
  height: 120px;
  display: grid;
  grid-template-rows: 56px 1fr;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}
.p-form__radio-col2 .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  pointer-events: none;
  grid-row: 1/2;
  margin-inline: auto;
}

.p-form__item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #040304;
}

.p-form__input {
  background: #ffffff;
  border: 2px solid #FFD334;
  padding: 16px 16px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  display: block;
}

/* =========================
  バルーン用
========================= */
.p-form__balloon-wrap {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #fff1bd;
  background: #ffffff;
  padding: 24px;
  gap: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  max-width: 373px;
  margin: 40px auto 0;
  align-items: center;
}

.p-form__balloon-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-form__balloon-text {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
}
.p-form__balloon-text span {
  color: #F46D2E;
}
.p-form__balloon-text br {
  display: none;
}
.p-form__balloon-text .br {
  display: block;
}

/* =========================
  チェックが入った時のスタイル
========================= */
.p-form__radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background: #FFFCF3;
  border: 2px solid #FFD334;
}
.p-form__radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  color: #FFD334;
}

/* =========================
  ポインター
========================= */
.c-pointerImg {
  position: absolute;
  z-index: 21;
  width: 70px;
  transition: top 0.5s ease, right 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  will-change: top, right;
}
.c-pointerImg img {
  width: 100%;
  height: auto;
}

/* =========================
  フォームオーバーレイ
========================= */
.wpcf7-form {
  position: static;
  transition: position 0.3s ease;
}
.wpcf7-form.is-complete {
  position: relative;
}
.wpcf7-form.is-complete::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 860px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  pointer-events: none;
}

/* =========================
  step00用
========================= */
.p-form__radio-col1 {
  display: grid;
  gap: 16px;
}
.p-form__radio-col1 .wpcf7-list-item {
  width: 100%;
  position: relative;
}
.p-form__radio-col1 .wpcf7-list-item.first::before {
  background: url("../images/srcImg/icon-announce_a.png") no-repeat center center/cover;
}
.p-form__radio-col1 .wpcf7-list-item.last::before {
  background: url("../images/srcImg/icon-announce_b.png") no-repeat center center/cover;
}
.p-form__radio-col1 .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 8px 16px 8px 136px;
  height: 80px;
  z-index: 1;
  font-weight: 500;
  text-align: center;
}

.p-form__radio-col1 .wpcf7-list-item::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border: none;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

/* =========================
  ボタン用
========================= */
.p-form__button-wrap p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
  position: relative;
  z-index: 21;
}
.p-form__button-wrap p br {
  display: none;
}

.p-form__prev-button {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: normal;
  color: #5D5A69;
  text-align: center;
  padding: 4px 8px;
  -webkit-text-decoration: underline #5D5A69;
  text-decoration: underline #5D5A69;
}

.p-form__next-button {
  background-color: #5CBACF;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: normal;
  text-align: center;
  padding: 20px 77px;
  border-radius: 100px;
  transition: transform 0.3s ease;
}
.p-form__next-button:hover {
  transform: translateY(2px);
}

/* =========================
  step00用指
========================= */
.c-fingerImg__container {
  position: relative;
}

.c-fingerImg {
  width: 80px;
  position: absolute;
  z-index: 10;
  pointer-events: none;
  right: -24px;
  top: 0;
  --finger-duration: 2s;
  animation: fingerFloat var(--finger-duration) ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fingerFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(var(--finger-travel, 0px));
  }
}
/* =========================
  step01用
========================= */
.p-form__radio-col2.-step1 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_a.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step1 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-women_a.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step1 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_f.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step1 .wpcf7-list-item:nth-of-type(4) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-women_f.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step1 .wpcf7-list-item:nth-of-type(5) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_g.png") no-repeat center center/cover;
}

/* =========================
  step02用
========================= */
.p-form__radio-col2.-step2-1 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_b.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step2-1 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_c.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step2-1 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_d.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step2-1 .wpcf7-list-item:nth-of-type(4) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-men_e.png") no-repeat center center/cover;
}

.p-form__item2-2 {
  margin-top: 40px;
}

.p-form__radio-col2.-step2-2 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-women_b.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step2-2 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-women_c.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step2-2 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-women_d.png") no-repeat center center/cover;
}
.p-form__radio-col2.-step2-2 .wpcf7-list-item:nth-of-type(4) .wpcf7-list-item-label::after {
  background: url("../images/srcImg/icon-women_e.png") no-repeat center center/cover;
}

/* =========================
  step03用
========================= */
.p-form__item-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.2;
  color: #5D5A69;
  position: relative;
}
.p-form__item-text::before {
  content: "";
  background: url("../images/srcImg/icon-check-box.svg") no-repeat center center/cover;
  display: block;
  --check-icon-size: 16px;
  width: 16px;
  height: 16px;
}

.p-form__input-wrap {
  gap: 8px;
  grid-template-columns: auto 1fr;
}

.p-form__input-wrap.-col2 p {
  gap: 8px;
  grid-template-columns: auto 1fr;
  display: grid;
  align-items: center;
}
.p-form__input-wrap.-col2 p br {
  display: none;
}
.p-form__input-wrap.-col2 p .wpcf7-form-control-wrap {
  position: relative;
}
.p-form__input-wrap.-col2 p .wpcf7-form-control-wrap::before {
  content: "▼";
  color: #D9D9D9;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.p-form__input-option {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

/* =========================
  step04用
========================= */
.p-form__item.-birth {
  margin-top: 40px;
}

.p-form__birth-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.p-form__input-wrap.-birth p {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-form__input-wrap.-birth p .p-form__input {
  padding: 16px 10px;
  width: 80px;
}

.p-form__input-option.-birth {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

.p-form__item.-birth .wpcf7-form-control-wrap:has(select)::before {
  content: "▼";
  color: #D9D9D9;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

/* =========================
  step04用
========================= */
.js-inline-namae {
  color: #040304 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.l-thanks__head {
  background-color: #FFF5E9;
}

.p-thanks__head-message {
  padding: 24px;
}
.p-thanks__head-message p {
  font-weight: 700;
  line-height: 1.5;
  font-size: 16px;
}
.p-thanks__head-message p span {
  font-size: 20px;
  color: #F46D2E;
}

.p-thanks__head-label {
  padding: 8px 24px;
  background: #F46D2E;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.l-thanks__container {
  padding: 32px 24px;
  background: #ffffff;
  display: grid;
  gap: 40px;
}
.l-thanks__container .c-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.2;
  color: #737373;
  position: relative;
}
.l-thanks__container .c-announce::before {
  content: "";
  background: url("../images/srcImg/icon-check-box.svg") no-repeat center center/cover;
  display: block;
  --check-icon-size: 16px;
  width: 16px;
  height: 16px;
}

.p-cvCard {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #F46D2E;
  display: grid;
  padding: 24px;
}
.p-cvCard p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.p-cvCard p.-txt-primary {
  color: #F46D2E;
  font-weight: 700;
}
.p-cvCard p strong {
  font-size: 18px;
  font-weight: 700;
  color: #00C300;
}

.p-cvCard p:nth-of-type(n + 2) {
  margin-block-start: 8px;
}

.p-cvCard__button {
  margin-block-start: 16px;
  animation: poyopoyo 2s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.c-cvButton {
  background: #00C300;
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
}

.c-cvButton img {
  width: 32px;
  height: auto;
  vertical-align: bottom;
}

.p-thanks__section {
  display: grid;
  gap: 24px;
}

.p-form__label.-color-orange {
  background: #F46D2E;
  color: #ffffff;
}

.p-thanks__interview {
  display: grid;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #FFF5E9;
}

.p-thanks__interview-title {
  font-weight: 700;
  font-size: 16px;
  color: #F46D2E;
  line-height: 1.5;
}

.p-thanks__interview-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
}

.p-thanks__interview-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-thanks__interview__answer {
  display: grid;
  gap: 8px;
}
.p-thanks__interview__answer p {
  font-weight: 500;
  color: #737373;
  font-size: 14px;
  line-height: 1.5;
}
.p-thanks__interview__answer p strong {
  font-size: 16px;
  color: #040304;
}

.p-thanks__flow {
  display: grid;
  gap: 24px;
}

.p-thanks__flow-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #FF8700;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-thanks__flow-title span {
  font-size: 12px;
  text-transform: uppercase;
}

.p-thanks__flow-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.p-thanks__flow-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 16px;
}

.p-policy {
  background: #ffffff;
  padding: 32px 24px;
}

.p-policy__title {
  color: #F46D2E;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-policy__text {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
}

.l-policy__content {
  margin-top: 24px;
}
.l-policy__content ul {
  margin-top: 8px;
}
.l-policy__content ul li {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  margin-top: 4px;
  text-indent: -1em;
  padding-left: 1em;
}

.p-policy__content-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-policy__content-text {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (max-width: 1260px) {
  html {
    font-size: 3.8095238095vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  .inner {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: auto;
    margin-left: auto;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
