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

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

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;
}

header {
  background: #0D2A35;
}

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

.title__area {
  margin-bottom: 50px;
}

.title__area p {
  font-family: var(--en);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
}

.title__area h2 {
  font-weight: 400;
}

.sec1__text {
  line-height: 2.8rem;
  margin-bottom: 50px;
}

.sec1__text span {
  color: #00C8FF;
}

.table {
  display: block;
  text-align: left;
  margin-bottom: 50px;
}

.table tbody {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.table tr {
  display: flex;
  gap: 30px;
}

.table tr th {
  width: 150px;
  padding: 15px 0;
}

.table tr th span {
  color: #00C8FF;
}

.table tr td {
  flex: 1;
  display: flex;
  gap: 20px;
}

.table tr td p {
  width: 100%;
}

.wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}

.table tr:first-child .wpcf7-form-control-wrap {
  padding: 15px 0;
  background: #FFFFFF;
}

.table tr:first-child .wpcf7-form-control-wrap:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 17px;
  width: 12px;
  height: 12px;
  rotate: 45deg;
  border-right: solid 2px #0D2A35;
  border-bottom: solid 2px #0D2A35;
}

.half {
  width: calc(100% / 2 - 10px);
}

select {
  padding: 15px 20px;
  width: 100%;
  position: relative;
  z-index: 10;
}

input[type="text"],
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  background: #FFFFFF;
  padding: 15px 20px;
  width: 100%;
}

textarea {
  background: #FFFFFF;
  padding: 15px 20px;
  width: 100%;
  height: 240px;
  resize: none;
}

input::placeholder {
  color: #96A5AA;
}

.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
}

.wpcf7-list-item-label::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 2.5px;
  display: block;
  border: solid 1px #0D2A35;
  margin-right: 10px;
}

.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 12px;
  border-right: solid 2px #0D2A35;
  border-bottom: solid 2px #0D2A35;
  rotate: 45deg;
  transition: 0.4s;
  transition-timing-function: ease-out;
  clip-path: inset(0 100% 0 0);
}

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

.wpcf7-list-item-label a {
  color: #00C8FF;
  text-decoration: underline;
}

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

.button {
  margin-top: 50px;
}

.button input {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border: solid 1px #0D2A35;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  position: relative;
}

.button span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  background: #0D2A35;
  color: #FFFFFF;
  clip-path: inset(0 100% 0 0);
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.button span:nth-child(1)::after {
  content: "";
  width: 15px;
  height: 10px;
  background-image: url(../images/common/arrow__black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 43%;
  right: 20px;
  transform: translateY(-50%);
  rotate: -90deg;
  transform-origin: center;
}

.button span:nth-child(2)::after {
  content: "";
  width: 15px;
  height: 10px;
  background-image: url(../images/common/arrow__white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 43%;
  right: 20px;
  transform: translateY(-50%);
  rotate: -90deg;
  transform-origin: center;
}

.button:hover span:nth-child(2) {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}


.button::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 107%;
  display: block;
  background: #0D2A35;
  top: -2px;
  left: 7.5px;
  rotate: 13deg;
}

.button::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 107%;
  display: block;
  background: #0D2A35;
  top: -1px;
  right: 7.5px;
  rotate: 13deg;
}

@media (max-width: 767px) {
  .title__area p {
    font-size: 4rem;
  }

  .title__area h2 {
    font-size: 1.4rem;
  }

  .sec1 ul li {
    flex-direction: column;
    gap: 10px;
  }

  .table tr {
    flex-direction: column;
    gap: 0;
  }

}