/* # =================================================================
# Style
# ================================================================= */
.contact-heading {
  color: #004097;
}

.form__lead {
  max-width: 940px;
  font-size: 18px;
  line-height: 2;
  margin: 0 auto;
}
.form__logo {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-around;
  gap: 20px;
  margin: 80px 0 60px;
}
.form__logo-img {
  height: 46px;
  width: auto;
}
.form__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .form__logo {
    margin: 30px 0 50px;
  }
}

.form.c-section-contents {
    max-width: 940px;
    margin: 20px auto 0;
  padding-top: 0;
}
.form__heading {
  font-size: 34px;
  line-height: 2;
  color: #004097;
  text-align: center;
  margin: 0 auto;
}
.form-content {
  width: 100%;
  border-width: 0;
  border-style: solid;
  border-radius: 51px;
  overflow: hidden;
    background-color: #FFFFFF;
}
.form-content + .form-content {
  margin-top: 20px;
}
.form-content--required .form-content__heading::after {
    content: "必須";
    position: absolute;
    top: 50%;
    right: -12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 40px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    background: #da1111;
    border-radius: 14px;
    padding: 3px;
}
.form-content__heading {
    position: relative; 
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #537DC5;
    border-radius: 0 0 51px 0;
  z-index: 1;
    padding: 16px 32px 14px 22px;
}
.form-content:nth-child(1) {
  border-color: #537DC5;
}
.form-content:nth-child(1) .form-content__heading {
  background-color: #537DC5;
}
.form-content:nth-child(2) {
  border-color: #5987C4;
}
.form-content:nth-child(2) .form-content__heading {
  background-color: #5987C4;
}
.form-content:nth-child(3) {
  border-color: #5E90C4;
}
.form-content:nth-child(3) .form-content__heading {
  background-color: #5E90C4;
}
.form-content:nth-child(4) {
  border-color: #6399C3;
}
.form-content:nth-child(4) .form-content__heading {
  background-color: #6399C3;
}
.form-content:nth-child(5) {
  border-color: #68A1C3;
}
.form-content:nth-child(5) .form-content__heading {
  background-color: #68A1C3;
}
.form-content:nth-child(6) {
  border-color: #6CAAC2;
}
.form-content:nth-child(6) .form-content__heading {
  background-color: #6CAAC2;
}
.form-content:nth-child(7) {
  border-color: #74B7C1;
}
.form-content:nth-child(7) .form-content__heading {
  background-color: #74B7C1;
}
.form-content__heading-text {
  color: #ffffff;
  font-weight: 500;
}
.form-content__body:has(.form-content__input-wrap) {
  margin-top: -47px;
}
.form-content__input {
  width: 100%;
  margin-top: -1px;
}
.form-content__input::placeholder,
.form-content__textarea::placeholder {
  opacity: .4;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
  -webkit-text-fill-color: #fff !important;
}

.form-content__checkbox-wrap .wpcf7-form-control-wrap {
    line-height: 2;
}
.form-content__checkbox .wpcf7-list-item {
    margin: 0 0 0 0.65em;
}
.form-content__checkbox .wpcf7-list-item label {
  cursor: pointer;
}
.form-content__textarea {
  width: 100%;
  line-height: 2;
}
.wpcf7-not-valid-tip {
  margin-top: 15px;
}
.form-consent-note {
  width: 100%;
  line-height: 2;
}
.form-consent-checkbox-wrap {
    text-align: center;
    margin-top: 30px!important;
}
p:has(.form-consent-checkbox) {
  width: 100%;
}
p:has(.form-consent-checkbox) .wpcf7-list-item {
  margin-left: 0
}
label:has(.form-consent-checkbox) {
  cursor: pointer;
}
.submit-button {
  width: 100%;
/*  max-width: 320px;*/
  font-size: 21px;
  border-radius: 21px;
  margin: 50px auto 0;
}
.submit-button:hover {
  opacity: 0.6;
  transition: opacty, 0.3s;
}
.submit-button:disabled {
  opacity: .4; 
}
@media screen and (min-width: 769px) {
  .form__lead {
     font-size: 18px; 
  }
  .form-content--half {
    width: 50%;
  }
  .form-content__checkbox-wrap {
        padding: 24px 0 24px 190px;
  }
  .form-content__checkbox-wrap label {
        font-size: 18px;
        font-weight: 500;
  }
  .form-content__input {
        font-size: 18px;
        padding: 24px 0 24px 210px;
  }
  .form-content__textarea {
    font-size: 18px;
    padding: 0 40px 0 210px;
    margin: 40px 0 30px;
  }
  .form-content__input-wrap .wpcf7-not-valid-tip {
    margin: -25px 0 15px 210px;
  }
  
  .form-consent-note {
		max-width: 940px;
        font-size: 17px;
        font-weight: 500;
        margin: 30px auto 0;
        line-height: 1.7;
  }
  p:has(.form-consent-checkbox) {
    max-width: 940px;
    font-size: 18px;
	  font-weight: 500;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .form__lead {
     font-size: 17px; 
  }
  .form__body {
    margin-top: 40px;
  }
  .form-content__checkbox-wrap {
    padding: 30px 10px 20px;
  }
  .form-content__checkbox-wrap label {
    font-size: 17px;
  }
  .form-content__checkbox {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .form-content__input {
    font-size: 17px;
    padding: 70px 40px 30px;
  }
  .form-content__textarea {
    font-size: 17px;
    padding: 0 40px 0 40px;
    margin: 70px 0 30px;
  }
  .form-content__checkbox-wrap .wpcf7-not-valid-tip {
    margin-left: 15px;
  }
  .form-content__input-wrap .wpcf7-not-valid-tip {
    margin: -25px 0 15px 40px;
  }

  .form-consent-note {
    font-size: 17px;
    margin: 30px auto 0;
  }
  p:has(.form-consent-checkbox) {
    font-size: 17px;
    margin: 30px auto 0;
  }
}




.privacy-policy__heading-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  text-align: center;
  background-color: #EAEEF4;
  padding: 20px 80px 30px 30px;
  margin: 0 auto;
}
.privacy-policy__heading-wrap::before {
/*
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#47B792), to(#85C1D4));
  background: linear-gradient(90deg, #47B792, #85C1D4);
  background-origin: border-box;
  background-clip: border-box;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-clip: padding-box, border-box;
          mask-clip: padding-box, border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
*/
}
.privacy-policy__heading-wrap.is-open .privacy-policy__heading::before {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}
.privacy-policy__heading-wrap.is-open .privacy-policy__heading::after {
  -webkit-transform: rotateZ(135deg);
          transform: rotateZ(135deg);
}
.privacy-policy__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
    font-weight: 500;
}
.privacy-policy__heading::before, .privacy-policy__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 5px;
  background-color: #000000;
  border-radius: 0 15px 15px 0;
}
.privacy-policy__heading::before {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  right: -48px;
}
.privacy-policy__heading::after {
  -webkit-transform: rotateZ(-135deg);
          transform: rotateZ(-135deg);
  right: -36px;
}
.privacy-policy__body {
  padding-top: 50px;
}
.privacy-policy__document {
  line-height: 2;
}
.privacy-policy__list {
  margin-top: 55px;
}
.privacy-policy__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.privacy-policy__list-item + .privacy-policy__list-item {
  border-top: 2px dotted #004097;
}
.privacy-policy__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  color: #004097;
  font-weight: 500;
	line-height: 1.5;
	width: 200px;
}
.privacy-policy__description {
	font-size: 15px;
  line-height: 1.6;
}

@media (hover: hover) {
  .privacy-policy__heading-wrap:hover .privacy-policy__heading {
    cursor: pointer;
    opacity: 0.7;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 769px) {
  .privacy-policy__heading-wrap {
    min-width: 280px;
    border-radius: 0 0 51px 51px;
  }
  .privacy-policy__heading-wrap::before {
    border-radius: 0 0 51px 51px;
  }
  .privacy-policy__heading {
    font-size: 26px;
  }
  .privacy-policy__document {
    font-size: 16px;
  }
  .privacy-policy__list-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  .privacy-policy__list-item + .privacy-policy__list-item {
    padding-top: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .privacy-policy__heading-wrap {
    min-width: 200px;
    border-radius: 0 0 34px 34px;
  }
  .privacy-policy__heading-wrap::before {
    border-radius: 0 0 34px 34px;
  }
  .privacy-policy__heading {
    font-size: 21px;
  }
  .privacy-policy__document {
    font-size: 16px;
  }
  .privacy-policy__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
  }
  .privacy-policy__list-item + .privacy-policy__list-item {
    padding-top: 35px;
    margin-top: 35px;
  }
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 1.0em 1em;
    border: 2px solid #00a0d2;
    line-height: 1.5;
    font-weight: 500;
}

