@charset "utf-8";
/* CSS Document */

.container_wrap {
  max-width: 800px;
  margin: 8em auto;
}
@media (max-width:768px) {
  .container_wrap {
  margin: 4em auto;
    width: 90%;
}
}
.contact_form .contact_form_text {
  line-height: 1.8;
  margin-bottom: 4rem;
}
.contact_form tbody tr th p {
  color: #0d4394;
  letter-spacing: .06em;
  line-height: 1;
  font-size: clamp(16px, 15.4px + 0.16vw, 18px);
	font-weight: bold;
}
.contact_form tr {
  display: flex;
  flex-direction: column;
  border-top: .2rem solid #d5ecfc;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width:768px) {
  .contact_form tr {
    padding-top: 2.5rem;
        padding-bottom: 2.5rem;
  }
}
.contact_form tr:last-child {
  border-bottom: .2rem solid #d5ecfc;
  margin-bottom: 5rem;
}
.contact_form th {
  margin-bottom: 1.5rem;
}
.form_required {
  display: inline-block;
  background-color: #ed1c24;
  border-radius: 4px;
  color: #fff;
  font-weight: 100;
  font-size: 13px;/*clamp(13px, 12.8px + 0.10vw, 14px); */
  letter-spacing: .05em;
  padding: 5px 6px 6px;/*6px 8px 8px;*/
  margin-right: 15px;
}
@media (max-width:768px) {
  .form_required {
    padding: 4px 6px 5px;
  }
}
.form_any {
  display: inline-block;
  background-color: #999999;
  border-radius: 4px;
  color: #fff;
  font-weight: 100;
  font-size: 13px;/*clamp(13px, 12.8px + 0.10vw, 14px);*/ 
  letter-spacing: .05em;
  padding: 5px 6px 6px;/*6px 8px 8px;*/
  margin-right: 15px;
}
@media (max-width:768px) {
  .form_any {
    padding: 4px 6px 5px;
    margin-right: 12px;
  }
}
.contact_form input[type] {
  width: 100%;
  border: 1px solid #0d4394;
  border-radius: .3rem;
  overflow: hidden;
  padding: 1rem 2rem;
}
.contact_form textarea {
  width: 100%;
  border: 1px solid #0d4394;
  border-radius: .3rem;
  overflow: hidden;
  padding: 1rem 2rem;
}
.action {
  max-width: 300px;
  margin: 0 auto;
}
/*@media (max-width:768px) {
  .action {
    max-width: 100%;
  }
}*/
.contact_form .action input[type="submit"] {
  background-color: #2589d0;
  color: #fff;
  border: none;
  border-radius: 90px;
  padding: 15px;
  font-size: 18px;
	cursor: pointer;
	transition: background-color .2s ease, transform .05s ease;
	font-weight: bold;
}
.contact_form .action input[type="submit"]:hover {
  background-color: #0d6fb3;
	transform: translateY(1px);
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
}

.check .wpcf7-list-item {
  display: unset;
  margin: 0;
}
.check .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
}
.consent-note a {
	color: #0d4394;
	text-decoration: underline;
}
