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

body.active {
  height: 100vh;
  overflow: hidden;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  text-align: left;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.sec1 {
  width: 90%;
  max-width: 800px;
  padding: 150px 0;
  margin: 0 auto;
}

.sec1__small {
  font-family: var(--inter);
  font-weight: 400;
  color: #155BBE;
  display: block;
  line-height: 2;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.sec1__h2 {
  font-size: 5rem;
  line-height: 1.4;
  background: linear-gradient(160deg, #12b3cc, #5773c7 58%, #155bbe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  margin-bottom: 30px;
}

.sec1__p {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  line-height: 1.8;
  font-weight: 400;
  font-family: var(--sans);
  margin-bottom: 100px;
}

.form__table {
  width: 100%;
  margin-bottom: 50px;
}

.form__table__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: var(--sans);
}

.form__table__tr-first {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.form__table__tr {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__table__th {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.form__table__tr-first td {
  flex: 1;
}

.form__table__tr-first .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.form__table__tr-first .form__table__th {
  width: fit-content;
}

.form__table__th h3 {
  font-weight: 700;
}

.form__table__th span {
  color: #FFFFFF;
  background: #155BBE;
  display: block;
  padding: 5px 8px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 5px;
}

.form__table__td {
  width: 100%;
}

.form__table__td input {
  width: 100%;
  padding: 10px 15px;
  border: solid 1px #D9D9D9;
  border-radius: 5px;
}

.form__table__td textarea {
  text-align: left;
  width: 100%;
  height: 200px;
  padding: 10px 15px;
  border: solid 1px #D9D9D9;
  border-radius: 5px;
  resize: none;
}

.form__bottom {
  text-align: left;
  font-family: var(--sans);
  line-height: 1.8;
}

.form__bottom__title {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.form__bottom__title h3 {
  font-weight: 700;
}

.form__bottom__title span {
  color: #FFFFFF;
  background: #155BBE;
  display: block;
  padding: 5px 8px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 5px;
}

.form__bottom__p span {
  vertical-align: baseline;
  color: #155BBE;
  cursor: pointer;
}

.form__check {
  padding: 30px 0 50px;
  font-family: var(--sans);
  font-weight: 400;
}

.wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 25px;
}

.wpcf7-list-item-label::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: solid 1px #D9D9D9;
}

.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  rotate: 45deg;
  top: 5px;
  left: 3px;
  display: block;
  width: 8px;
  height: 13px;
  border-right: 2px #155BBE solid;
  border-bottom: 2px #155BBE solid;
  transition: 0.4s;
  clip-path: inset(0 100% 0 0);
}

.wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::after {
  clip-path: inset(0 0 0 0);
}

.wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  clip-path: inset(0 0 0 0);
}




.sec2 {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100lvh;
  z-index: 10000;
  top: 0;
  left: 0;
  background: rgba(161, 161, 161, 0.6);
  transition: 0.4s;
}

.sec2.active {
  visibility: initial;
  opacity: 1;
}

.sec2__contents {
  position: relative;
  width: 90%;
  max-width: 900px;
  padding: 50px 5%;
  margin: 5lvh auto;
  height: 90lvh;
  background: #FFFFFF;
  overflow-y: scroll;
}

.sec2__contents__small {
  font-family: var(--inter);
  font-weight: 400;
  color: #155BBE;
  display: block;
  line-height: 2;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.sec2__contents__h2 {
  font-size: 5rem;
  line-height: 1.4;
  background: linear-gradient(160deg, #12b3cc, #5773c7 58%, #155bbe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  padding-bottom: 30px;
  border-bottom: solid 1px #D9D9D9;
  margin-bottom: 30px;
}

.close {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.close::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #155BBE;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
  transform-origin: center;
}

.close::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #155BBE;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: center;
}

.sec2__contents ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
  font-family: var(--sans);
}

.sec2__contents ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.8;
}

.sec2__contents ul li h3 {
  font-weight: 700;
  color: #155BBE;
}

.wpcf7-spinner {
  display: none !important;
}

.submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 375px;
  height: 70px;
  gap: 20px;
  background-image: linear-gradient(90deg, #12b3cc, #5773c7 58%, #155bbe);
  border-radius: 100px;
  font-family: var(--sans);
  margin: 0 auto;
}

.submit .wpcf7-submit {
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  background: #FFFFFF;
  border-radius: 100px;
  transition: 0.4s;
  text-align: center;
  color: #155BBE;
}

.submit .wpcf7-submit:hover {
  color: #FFFFFF;
  background: transparent;
}

@media (max-width: 767px) {
  .form__table__tr-first {
    flex-direction: column;
    gap: 15px;
  }

  .form__table__tr-first td {
    width: 100%;
  }

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

@media (max-width: 1024px) {

  .sec1__h2,
  .sec2__contents__h2 {
    font-size: 3.9rem;
  }

  .sec1__p {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {

  .sec1__h2,
  .sec2__contents__h2 {
    font-size: 2.8rem;
  }

  .sec1__p {
    font-size: 1.4rem;
  }
}