@charset "UTF-8";
/******************** CONTACT ********************/

/*** --------------- Form Area --------------- ***/
.form_text {
  margin-top: 80px;
  text-align: center;
}

.form_text p:first-of-type,
.form_text p:last-of-type {
  margin-top: 0;
}

.form_text span {
  font-size: 75%;
}

.form_area {
  margin-top: 30px;
  padding: 60px 100px;
}

.form_area .form_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 30px;
  width: 100%;
  margin-bottom: 30px;
}

.form_area .form_item fieldset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
  width: 100%;
}

_::-webkit-full-page-media,
_:future,
:root .form_area .form_item fieldset {
  display: contents;
}

.form_area .form_item .form_label {
  width: 220px;
}

.form_area .form_item fieldset .form_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form_area .form_item .form_label p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.form_area .form_item legend {
  width: auto;
  margin: 0;
  font-size: 100%;
}

.form_area .form_item.message .form_label {
  align-self: flex-start;
  margin-top: 10px;
}

.form_area .form_item .form_label .choice {
  display: inline-block;
  padding: 1px 8px;
  background: #eFeFeF;
  border-radius: 2px;
  font-size: 75%;
}

.form_area .form_item .form_label .choice.required {
  background: #FF7600;
  color: #fff;
}

.form_area .form_item .form_input {
  width: calc(100% - 270px);
}

.form_area .form_item .form_input p {
  margin: 0;
}

.form_area .form_item .form_input input:not([type="radio"]):not([type="checkbox"]),
.form_area .form_item .form_input textarea {
  width: 100%;
}

@media (max-width: 1399px) {
  .form_area {
    padding: 60px 80px 120px;
  }
}

@media (max-width: 1199px) {
  .form_area {
    padding: 60px 50px 120px;
  }
}

@media screen and (max-width: 991px) {
  .form_text {
    margin-top: 60px;
  }

  .form_area {
    padding: 40px 30px 80px;
  }

  .form_area .form_item .form_label {
    width: 100%;
  }

  .form_area .form_item fieldset .form_label,
  .form_area .form_item .form_label p {
    justify-content: flex-start;
    gap: 10px;
  }

  .form_area .form_item.message .form_label {
    margin: 0;
  }

  .form_area .form_item .form_input {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .form_text {
    margin-top: 40px;
    text-align: left;
  }

  .form_area {
    padding: 25px 15px 50px;
  }

  .form_area .form_item {
    margin-bottom: 20px;
  }
}

/* ----- Form Select ----- */
.form_area .form_select {
  position: relative;
}

.form_area .form_select::after {
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/icon_pankuzu.png) center center / contain no-repeat;
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  transform: rotate(90deg);
  transition: 0.3s;
  pointer-events: none;
}

/* ----- Form Radio ----- */

.form_area .form_radio .wpcf7-list-item {
  margin: 0 30px 0 0;
}

.form_area .form_radio label {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}

.form_area .form_radio label input[type="radio"] {
  width: 1.2em;
  height: 1.2em;
  margin: 0;
  font-size: 1em;
  opacity: 0;
  position: absolute;
  top: calc(50% - 0.6em);
  left: -0.1em;
  z-index: 2;
}

.form_area .form_radio label input[type="radio"]:focus {
  opacity: 1;
}

.form_area .form_radio label span {
  display: inline-block;
}

.form_area .form_radio label span::before {
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: #FFF;
  border-radius: 50%;
  border: 1px solid #727857;
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
}

.form_area .form_radio label span::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #F3F7DE;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 5px);
  left: 4px;
}

.form_area .form_radio label input[type="radio"]:checked+span::after {
  background: #727857;
}

@media screen and (max-width: 991px) {
  .form_area .form_radio {
    margin-top: 10px;
  }
}

@media screen and (max-width: 575px) {
  .form_area .form_radio .wpcf7-list-item {
    width: 100%;
    margin: 0;
  }
}

/* ----- Form check ----- */

.form_area .form_check{
    width: calc(100% - 270px);
}

.form_area .form_check label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

@media screen and (max-width: 991px){
  .form_area .form_check{
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .form_area .form_check .wpcf7-list-item{
    width: 100%;
  }
}

/* ----- Form Policy ----- */
.form_area .form_policy {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

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

.form_area .form_policy a {
  display: inline-block;
  margin: 0 5px;
  padding-right: 25px;
  position: relative;
  color: #FF7600;
}

.form_area .form_policy a:hover {
  opacity: 0.8;
}

.form_area .form_policy a::after {
  content: '';
  width: 100%;
  height: 1.5px;
  background: #FF7600;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.form_area .form_policy a:hover::after {
  opacity: 0;
}

.form_area .form_policy a img {
  width: 14px;
  position: absolute;
  top: calc(50% - 7px);
  right: 5px;
}

@media screen and (max-width: 575px) {
  .form_area .form_policy {
    margin-top: 40px;
    font-size: 87.5%;
    text-align: left;
  }

  .form_area .form_policy .wpcf7-list-item-label {
    width: calc(100% - 25px);
  }
}

/* ----- Form Submit ----- */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding: 0;
}

.form_area .form_btn_box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.form_area .form_btn {
  border-radius: 8px;
  border: none;
  font-size: 112.5%;
  font-weight: 700;
  color: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(90deg, rgba(107, 165, 175, 1), rgba(112, 188, 112, 1) 50%, rgba(218, 233, 181, 1));
}

.form_area .form_btn::before {
  background: linear-gradient(270deg, rgba(107, 165, 175, 1), rgba(112, 188, 112, 1) 50%, rgba(218, 233, 181, 1));
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.form_area .form_btn:hover:has(.wpcf7-submit:not([disabled]))::before {
  opacity: 1;
}

.form_area .form_btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  background-color: #fff;
  clip-path: path("M.355,11.855,5.069,6.994.355,2.133a1.278,1.278,0,0,1,0-1.767A1.186,1.186,0,0,1,2.032.33l.036.036L7.645,6.117a1.276,1.276,0,0,1,0,1.767l-5.577,5.75a1.184,1.184,0,0,1-1.674.039l-.039-.039a1.3,1.3,0,0,1,0-1.779");
  right: 16px;
  top: calc(50% - 7px);
  transition: 0.3s;
}

.form_area .form_btn input[type="submit"] {
  padding: 12px 40px;
  width: 312px;
  display: block;
}

.form_area .form_btn:hover:has(.wpcf7-submit:not([disabled]))::after {
  transform: translateX(4px);
}

.form_area .form_btn:hover:has(.wpcf7-submit:not([disabled])) {
  box-shadow: none;
  color: #fff;
}

.form_area .form_btn .wpcf7-spinner {
  position: absolute;
  top: 0;
  right: -50px;
  margin: 0;
}

.form_area .form_btn:has(.wpcf7-submit:disabled) {
    cursor: not-allowed !important;
    background: #707070;
}

@media screen and (max-width: 575px) {
  .form_area .form_btn_box {
    margin-top: 20px;
  }

  .form_area .form_btn{
    width: 100%;
  }

  .form_area .form_btn input[type="submit"] {
    width: 100%;
  }
}

/* ----- Form Recaptcha ----- */
.recaptcha_text {
  font-size: 75%;
  text-align: right;
}

.recaptcha_text a {
  display: inline-block;
  position: relative;
}

.recaptcha_text a:hover {
  opacity: 0.8;
}

.recaptcha_text a::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #5B5046;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.recaptcha_text a:hover::after {
  opacity: 0;
}

.recaptcha_text a img {
  width: 10px;
  vertical-align: middle;
  margin: 0 3px 2px;
}


/*** --------------- Policy Area --------------- ***/
.policy_area {
  padding-top: 30px;
}

.policy_area p:first-of-type {
  margin-top: 0;
}

.policy_area p {
  margin: 16px 50px 0;
}

.policy_area h2 {
  margin: 30px 0 0;
  padding: 20px 60px;
  font-size: 125%;
  line-height: 1.5;
  position: relative;
  background-color: #F3F7DE;
  clip-path: polygon(1em 0%,
      100% 0%,
      calc(100% - 1em) 100%,
      0% 100%);
}

.policy_area ul {
  margin: 16px 50px 0;
}

.policy_area ul li {
  padding-left: 20px;
  position: relative;
}

.policy_area ul li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.policy_area .green_btn_arrow {
  margin-top: 20px;
}

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

  .policy_area h2 {
    padding: 20px 40px;
  }

  .policy_area p {
    margin: 16px 20px 0;
  }

  .policy_area ul {
    margin: 16px 20px 0;
  }
}

.cf-turnstile{
  display: flex;
  justify-content: center;
}

.thanks_wrap {
  margin-top: 40px;
  inline-size: fit-content;
  margin-inline: auto
}

.thanks_wrap p{
  margin-top: 16px;
}

.thanks_wrap p:first-child{
  margin-top: 0;
}