@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #231815;
  --color-white: #ffffff;
  --color-primary: #0fff00;
  --color-subPrimary: #533fdf;
  --color-pink: #ff009d;

  --noto-sans: "Noto Sans JP", serif;
  --zen-kaku: "Zen Kaku Gothic New", serif;
  --helvetica: "Helvetica", sans-serif;
  --helvetica-b: "Helvetica-B", sans-serif;
}


/*================================================
 *  subVisual
 ================================================*/
#subVisual {
  height: 25rem;
}

#subVisual h2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#subVisual h2 span {
  display: block;
}

#subVisual h2 img {
  display: block;
  width: 28rem;
}

@media screen and (max-width:767px) {
}

/*================================================
 *  formArea
 ================================================*/
#formArea h3 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
}

.form__list {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
  font-weight: 400;
}

.form__list dt {
  width: 30%;
  font-size: 1.7rem;
  padding: 5rem 1rem 5rem 6rem;
  border-bottom: 0.05rem solid #474646;
}

.form__list dt span {
  color: #ff0000;
}

.form__list dd {
  width: 70%;
  font-size: 1.7rem;
  padding: 5rem 1rem 5rem 0;
  border-bottom: 0.05rem solid #474646;
}

#formArea input,
#entry input {
  display: block;
  width: 51rem;
  height: 4rem;
  background: #eaeaea;
  padding: 0.5rem 1rem;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  font-weight: 400;
  font-family: var(--zen-kaku);
}

.form__list dd.check {
  font-size: 1.4rem;
}

#formArea input[type=checkbox],
#entry input[type=checkbox] {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: sub;
}

.form__list dd label {
  margin-bottom: 1rem;
  display: inline-block;
}

.form__list dd textarea {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: var(--zen-kaku);
  display: block;
  width: 51rem;
  height: 21rem;
  border-radius: 0.5rem;
  background: #eaeaea;
  padding: 1rem;
}

.form_policy {
  width: 60rem;
  margin: 6rem auto 0;
}

.form_policy h4 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}


.form_policy .policy__inner {
  padding: 1rem 4rem;
  height: 23rem;
  overflow-y: scroll;
  border: 0.05rem solid #727171;
}

.form_policy p:not(:has(input)) {
  font-size: 1.6rem;
  margin-top: 2rem;
}

.policy__check {
  background: #eaebeb;
  padding: 2rem 4rem;
  text-align: center;
  font-size: 1.4rem;
  margin: 4rem 0;
}

.form__list dd.check .wpcf7-list-item {
  display: block;
}

.policy__check p {
  margin: 0 0 0.5rem;
}

.policy__check div span.hissu {
  background: var(--color-black);
  display: inline-block;
  padding: 0.1rem 1.5rem;
  color: var(--color-white);
  border-radius: 1000px;
  font-size: 1.3rem;
}

#entry input.submit,
#formArea input.submit,
.submit {
  font-size: 1.9rem;
  width: 24rem;
  height: 6rem;
  background: var(--color-primary);
  display: grid;
  place-content: center;
  margin: 0 auto 0;
  border-radius: 0.5rem;
  font-weight: 500;
  font-family: var(--zen-kaku);
  border: 0.1rem solid var(--color-primary);
  text-align: center;
}

.btnArea .submit {
  border: 0.1rem solid var(--color-black);
  color: var(--color-black);
  background: var(--color-white);
  margin: 2rem auto 0;
}

span.wpcf7-list-item-label,
span.wpcf7-list-item,
span.wpcf7-form-control-wrap,
span.wpcf7-form-control.wpcf7-acceptance.optional {
  background: transparent !important;
  color: var(--color-black);
}

.wpcf7-spinner {
  display: none !important;
}

@media screen and (max-width:767px) {
  #formArea input[type=checkbox],
  #entry input[type=checkbox] {
    display: inline-block;
    width: 1.8rem;
    height: 2.3rem;
    vertical-align: sub;
  }
  #formArea h3 {
    margin-bottom: 5rem;
    font-size: 1.8rem;
  }

  .form__list {
    width: 48rem;
    margin: 0 auto;
  }

  .form__list dt {
    padding: 3.5rem 0;
    font-size: 1.7rem;
    border: none;
  }

  .form__list dd {
    padding: 3.5rem 0;
    border: none;
    font-size: 1.7rem;
  }

  #formArea input,
  #entry input {
    width: 100%;
    height: 4rem;
    font-size: 1.7rem;
  }

  .form__list dd label {
    margin-bottom: 2rem;
  }

  .form__list dd textarea {
    font-size: 1.7rem;
    width: 100%;
  }

  .form_policy {
    width: 53rem;
    margin: 1rem auto 0;
  }

  .policy__check {
    font-size: 1.7rem;
  }
  .form_policy p:not(:has(input)) {
    font-size: 1.7rem;
}
}



/*================================================
 *  thanks
 ================================================*/
#subVisual.thanks h2 {
  font-size: 3rem;
  width: 100%;
  text-align: center;
}

#formArea.thanks h3 {
  font-size: 1.8rem;
}

#formArea.thanks .simpleArrowBtn a {
  border-color: var(--color-primary);
  padding: 1rem 6rem;
  margin: 4rem auto 0;
}

#formArea.thanks .simpleArrowBtn a::before {
  content: none;
}

@media screen and (max-width:767px) {}