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

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder {
  color: #D9D9D9;
}

.upbutton input {
  background: #FFFFFF;
  padding: 10px;
  text-align: left;
  border: none;
  border-radius: 10px;
}

input::-webkit-file-upload-button {
  width: 200px;
  background: transparent;
  border: none;
  text-align: left;
}

.section {
  padding: 175px 0 25px;
}

.section .wapper {
  max-width: 750px;
}

.formTable {
  display: block;
  letter-spacing: 0.05rem;
}

.formTable tbody {
  display: block;
}

.formTable tr {
  display: flex;
  margin-bottom: 50px;
}

.formTable tr th {
  width: 200px;
  margin-top: 10px;
}

.margintop10px {
  margin-top: 10px;
}

.formTable tr td {
  width: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formTable tr td span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.formTable tr .block {
  display: block;
  width: 100%;
}

.formtext {
  width: 100%;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 10px;
}

.red {
  color: #FF0000;
}

.title {
  font-size: 4.6rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 900;
}

.text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 100px;
  font-weight: 700;
}

.uptitle {
  margin-bottom: 25px;
}

.upbutton {
  margin-bottom: 50px;
}

.upbutton input {
  width: 100%;
}

.checkbox {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin-bottom: 100px;
}

.checkbox a {
  text-decoration: underline;
  transition: 0.25s;
  transform: translateY(-2px);
}

.checkbox a:hover {
  opacity: 0.5;
}

.submit {
  display: block;
  background: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 20px 100px;
  margin: 0 auto;
}

.sp {
  display: none;
}

@media (max-width: 767px) {

  .sp {
    display: block;
  }

  .section {
    padding: 150px 0 0;
  }

  .section h2 {
    font-size: 2.6rem;
  }

  .section p {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }

  .formTable tr {
    flex-direction: column;
    gap: 15px;
  }

  .formTable tr th {
    width: 100%;
  }

  .formTable tr td {
    width: 100%;
  }

  input::-webkit-file-upload-button {
    width: 140px;
  }
}

@media (max-width: 374px) {}