@charset "UTF-8";
/* CSS Document */
.section-top-image {
  position: relative;
}
.section-top-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.60);
}
.section-top-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: 50% 85%;
}
.section-top-image h1 {
  color: #404B75;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: max-content;
}
.section-top-image h1::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  display: block;
  border-radius: 50px;
  background: #E1ECF4;
  width: 100px;
  height: 100px;
  z-index: -1;
}
.contact-txt {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.8;
  max-width: 960px;
  margin: 100px auto;
  padding: 30px;
  letter-spacing: 1px;
}
.contact-txt:before, .contact-txt:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  display: inline-block;
}
.contact-txt:before {
  border-left: solid 2px #404b75;
  border-top: solid 2px #404b75;
  top: 0;
  left: 0;
}
.contact-txt:after {
  border-right: solid 2px #404B75;
  border-bottom: solid 2px #404b75;
  bottom: 0;
  right: 0;
}
.section-contact {
  display: none;
}
.section-contact-list {
  color: #404B75;
  margin: 0 auto;
}
.form-container {
  max-width: 960px;
  margin: 80px auto 120px;
  background-color: #f7f7f7;
  padding: 60px 0;
}
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.input-area, .checkbox {
  width: 60%;
  text-align: left;
}
.title {
  color: #404B75;
  display: flex;
  width: 30%;
  text-align: left;
  font-weight: 500;
}
.required {
  color: #a00;
  font-size: 1.4rem;
  font-weight: 300;
  margin-left: 10px;
}
.your-input {
  width: 100%;
  padding: 15px 10px;
  border: none;
}
.wpcf7-list-item {
  margin: 0 10px 10px 0 !important;
}
.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 1.4rem !important;
}
.submit-area {
  display: inline-block;
  margin-top: 40px;
  position: relative;
}
.submit-area::after {
  content: "";
  position: absolute;
  background-color: #E1ECF4;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  z-index: 0;
  transition: 0.2s;
  border-radius: 5px;
}
.submit-area:hover::after {
  top: 0;
  left: 0;
  background-color: #404B75;
}
#submit-btn {
  color: #404B75;
  font-size: 1.8rem;
  padding: 20px;
  width: 280px;
  background-color: #ffffff00;
  cursor: pointer;
  border: 1px solid #404B75;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
#submit-btn:hover {
  color: #fff;
}
.wpcf7-spinner, .wpcf7-response-output {
  display: none !important;
}
@media screen and (max-width:1160px) {
  .section-top {
    padding-top: 108px;
  }
  .section-top-image h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width:960px) {
  .section-top-image img {
    height: 70vh;
  }
  .section-top-image h1 {
    font-size: 3.0rem;
  }
  .section-top-image h1::before {
    width: 80px;
    height: 80px;
    top: -30px;
    left: -30px;
  }
}
@media screen and (max-width:768px) {
  .section-top {
    padding-top: 103px;
  }
  .section-top-image img {
    height: 50vh;
  }
  .contact-txt {
    margin: 60px 20px;
  }
}
@media screen and (max-width:580px) {
  .section-top {
    padding-top: 78px;
  }
  .section-top-image img {
    object-position: 50% 100%;
  }
  .contact-txt {
    font-size: 1.6rem;
  }
  .form-container {
    padding: 60px 30px;
  }
  .input-area, .checkbox {
    width: 100%;
  }
  .title {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width:480px) {
  .section-top-image h1 {
    font-size: 2.6rem;
  }
  .section-top-image h1::before {
    width: 60px;
    height: 60px;
    top: -20px;
    left: -30px;
  }
  .contact-txt {
    font-size: 1.6rem;
    text-align: left;
  }
  .contact-txt br {
    display: none;
  }
}