<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----- Form boxå…¨ä½“ ----- */
.contact_box{
  background-color: #EEE5DC;
  border-radius: 100px;
  margin: 40px 50px 0;
  padding: 15px;
  position: relative;
}

.contact_box_line{
  border: 4px dashed #D1C1B4;
  border-radius: 80px;
}

.contact_box_inner{
  background-color: #fff;
  border-radius: 60px;
  margin: 35px;
  padding: 60px 40px 70px;
}

@media (max-width: 1199px){
  .contact_box{
    margin: 40px 0 0;
  }
}

@media screen and (max-width: 767px){
  .contact_box_inner{
    padding: 60px 20px 70px;
  }
}

@media screen and (max-width: 575px){
  .contact_box{
    padding: 10px;
    border-radius: 70px;
  }

  .contact_box_inner{
    margin: 15px;
    border-radius: 40px;
  }

  .contact_box_line {
    border: 3px dashed #D1C1B4;
    border-radius: 60px;
}
}

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

.form_item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 30px;
  width: 100%;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.form_item .form_label {
  width: 240px;
  font-size: 1.8rem;
  font-weight: 700;
}

.form_item .form_label p{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form_item fieldset .form_label{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form_item .form_label .choice {
  display: inline-block;
  padding: 3px 18px;
  background: #B7B6B6;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 5px;
}

.form_item .form_label .choice.required{
  background-color: #E67C7E;
}

.form_item .form_input {
  width: calc(100% - 270px);
  font-size: 1.8rem;
  font-weight: 700;
}

.form_item .form_input input{
  font-size: 1.6rem;
}

.form_item .form_input [type="text"],
.form_item .form_input [type="tel"],
.form_item .form_input [type="email"],
.form_item .form_input textarea{
  border: 1.5px solid #6C563F;
  padding: 8px 12px;
  border-radius: 5px;
  width: 100%;
}

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

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

@media screen and (max-width: 991px) {
  .form_item .form_label {
    width: 100%;
  }
  .form_item .form_input {
    width: 100%;
  }

  .form_item fieldset{
    gap: 0;
  }

  .form_item .form_label p,
  .form_item fieldset .form_label{
    justify-content: flex-start;
  }
}
@media screen and (max-width: 575px) {
  .form_item {
    margin-bottom: 20px;
  }

  .form_item .form_label {
    font-size: 1.6rem;
    }

  .form_item .form_label .choice {
    font-size: 1.4rem;
    padding: 2px 6px;
    }
    
    .form_item .form_input {
    font-size: 1.6rem;
  }
}

/* ----- Form Checkbox ----- */

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

.form_policy{
  inline-size:fit-content;
  margin-inline:auto;
  margin-bottom: 50px;
}

.form_check label,
.form_policy label {
	padding-left: 25px;
  position: relative;
  cursor: pointer;
}

.form_check label input[type="checkbox"],
.form_policy label input[type="checkbox"] {
	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_check label input[type="checkbox"]:focus,
.form_policy label input[type="checkbox"]:focus {
	opacity: 1;
}
.form_check label span,
.form_policy label span {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
}
.form_check label span::before,
.form_policy label span::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #FFF;
  border: 1px solid #5B5046;
  border-radius: 3px;
	position: absolute;
  top: calc(50% - 9px);
  left: 0;
}
.form_check label input[type="checkbox"]:checked + span::after,
.form_policy label input[type="checkbox"]:checked + span::after {
  content: '';
  width: 7px;
  height: 12px;
  border: solid #5B5046;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 8px);
  left: 6px;
	opacity: 1;
}

@media screen and (max-width: 991px) {
  .form_check {
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .form_check .wpcf7-list-item {
    width: 100%;
    margin: 0;
  }

  .form_check label span,
  .form_policy label span {
    font-size: 1.6rem;
  }
}

/* ----- Form radio ----- */
.form_radio .wpcf7-list-item {
  margin: 0 30px 0 0;
}

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

.form_item .form_input .form_radio [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_item .form_input [type="radio"]:focus{
  opacity: 1;
}

.form_radio label span {
	display: inline-block;
}
.form_radio label span::before {
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: #FFF;
  border-radius: 50%;
  border: 1px solid #5B5046;
	position: absolute;
	top: calc(50% - 9px);
	left: 0;
}
.form_radio label span::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #D9D6D0;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 5px);
  left: 4px;
}
.form_radio label input[type="radio"]:checked + span::after {
  background: #6C563F;
}

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

/* ----- Form button ----- */

.button{
  margin-top: 50px;
  margin-bottom: 20px;
}

.button p{
  text-align: center;
}

.button a {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  background: #EDE5DC;
  text-align: center;
  border-radius: 10px;
  margin: 0 auto;
  padding: 14px 60px 14px 20px;
  transition: 0.5s;
}

.button a:hover {
  background: #DBC9BC;
}

.button a::before {
  content: "";
  background-image: url(../img/arrow_img02.png);
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 20px;
  right: 20px;
  top: calc(50% - 10px);
  transition: 0.5s;
}

.button a:hover::before {
  transform: translateX(10px);
}

@media screen and (max-width: 575px){
  .button a{
    width: 100%;
    max-width: 400px;
    padding: 14px 40px 14px 10px;
    font-size: 2rem;
  }

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

/* ----- Form Submit ----- */
.form_submit {
  margin-top: 30px;
  text-align: center;
}

.form_btn {
	display: inline-block;
	position: relative;
}

.form_btn input[type="submit"]:disabled {
	cursor: not-allowed;
  background: #E4E4E4;
}

.form_btn input[type="submit"] {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  background: #DBC9BC;
  text-align: center;
  border-radius: 10px;
  margin: 0 auto;
  padding: 14px 87px 14px 67px;
  transition: 0.5s;
}

.form_btn input[type="submit"]:not(:disabled):hover {
	background: #EEE5DC;
}

.form_btn::before {
  content: "";
  background-image: url(../img/arrow_img02.png);
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 20px;
  right: 20px;
  top: calc(50% - 10px);
  transition: 0.5s;
  z-index: 2;
}

.form_btn:has(input[type="submit"]:not(:disabled)):hover::before{
  transform: translateX(10px);
}

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

@media screen and (max-width: 575px) {
  .form_submit {
    margin-top: 20px;
  }
  .form_btn{
    max-width: 400px;
    width: 100%;
  }
  .form_btn input[type="submit"] {
    width: 100%;
    padding: 14px 40px 14px 10px;
    font-size: 2rem;
  }
}

/* ----- Form Recaptcha ----- */
.recaptcha_text {
    font-size: 1.4rem;
    text-align: center;
    margin: 15px 50px 200px;
}
.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: #3A1808;
    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;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  margin: 0;
  padding: 0;
  border-color: transparent;
  border: none;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 1199px){
  .recaptcha_text {
    margin: 15px 0 200px;
  }
}

@media screen and (max-width: 991px) {
  .recaptcha_text {
      text-align: left;
  }
}

@media screen and (max-width: 575px) {
      .recaptcha_text {
    margin-bottom: 100px;
  }
}</pre></body></html>