section.top-box section.box {
  margin-top: 2vw;
}

section.info {
  margin: 0 auto;
  margin-top: calc(40px + 2vw);
  padding: calc(22px + 1vw) 0;
  width: 80%;
  text-align: left;
  border-top: 1px solid var(--mono2);
  border-bottom: 1px solid var(--mono2);
}

section.form section.info {
  margin-top: calc(20px + 1vw);
  width: 100%;
}

section.info dl:not(:first-of-type) {
  margin-top: calc(12px + 0.6vw);
}

section.info dl.sub {
  margin-top: calc(10px + 0.5vw);
}

section.info dt {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.8rem;
  letter-spacing: -0.04rem;
}

section.info dl.sub dt {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6rem;
  letter-spacing: -0.04rem;
  color: var(--mono2);
}

section.info dd {
  margin-top: calc(4px + 0.2vw);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  letter-spacing: -0.04rem;
  color: var(--mono2);
}

section.info dl.sub dd {
  margin-top: calc(2px + 0.1vw);
  font-size: 1rem;
}


section.form {
  margin: 0 auto;
  width: 80%;
  text-align: left;
}

section.form h1 {
  margin: calc(22px + 1vw) 0 calc(4px + 0.4vw) 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: -0.04rem;
  color: var(--mono2);
}

section.form .selection h2 {
  margin-top: calc(12px + 0.4vw);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.8rem;
  letter-spacing: -0.04rem;
  color: var(--mono2);
}

section.form .form-header.selection ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

section.form .selection ul {
  margin-top: calc(4px + 0.1vw);
}

section.form .selection li {
  margin-top: calc(4px + 0.2vw);
  margin-right: calc(2px + 0.6vw);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  letter-spacing: -0.04rem;
  color: var(--mono2);
}

section.form .form-body ul {
  border-top: 1px solid var(--mono10);
  border-bottom: 1px solid var(--mono10);
}

section.form .form-body ul:first-child {
  margin-top: calc(12px + 0.6vw);
}

section.form .form-body li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 0;
}

section.form .form-body li:not(:first-of-type) {
  border-top: 1px solid var(--mono15);
}

section.form .form-body li h3 {
  min-width: 240px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6rem;
  letter-spacing: -0.04rem;
  color: var(--mono2);
  text-align: left;
}

section.form .form-body li h3 span {
  font-size: 0.7rem;
  color: var(--mono10);
}

section.form .form-body li input[type=text],
textarea {
  flex: 1;
  padding: 2px 8px;
  height: 30px;
  border: 1px solid var(--mono10);
  border-radius: 6px;
  font-weight: 300;
  font-size: 1rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--color-blue) !important;
}

input,
textarea {
  color: var(--mono2);
  background-color: transparent !important;
}

section.form .form-body li textarea {
  padding: 8px;
  min-height: 120px;
}

section.form .agree-wrap {
  margin-top: calc(22px + 1vw);
  text-align: left;
}

section.form .button-wrap {
  margin-top: calc(48px + 1vw);
  text-align: center;
}

section.form button.submit {
  padding: 12px 36px;
  background-color: var(--mono2);
  border-radius: 24px;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: -0.04rem;
  color: var(--mono16);
  cursor: pointer;
}

section.form button.submit:hover {
  background-color: var(--mono4);
  color: var(--mono16);
}

@media all and (max-width:1024px) {
  section.info {
    width: 90%;
  }

  section.form {
    width: 90%;
  }
}

@media all and (max-width:768px) {
  section.info {
    width: 100%;
  }

  section.form {
    width: 100%;
  }
}

@media all and (max-width:540px) {
  section.info dt {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  section.info dl.sub dt {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  section.info dd {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  section.info dl.sub dd {
    font-size: 1rem;
  }

  section.form h1 {
    font-size: 1.2rem;
    line-height: 2rem;
    letter-spacing: -0.02rem;
  }

  section.form .selection h2 {
    font-size: 1.1rem;
    letter-spacing: -0.02rem;
  }

  section.form .selection li {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: -0.04rem;
  }

  section.form .form-body ul {
    padding: calc(22px + 0.6vw) 0;
  }

  section.form .form-body li {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  section.form .form-body li:not(:first-of-type) {
    border-top: none;
  }

  section.form .form-body li input[type=text],
  textarea {
    padding: 10px 10px;
    width: calc(100% - 20px);
    border-radius: 6px;
    font-size: 1rem;
  }

  section.form .form-body li textarea {
    flex: 1;
    padding: 10px;
  }

  section.form .form-body h4 {
    font-size: 1.1rem;
    line-height: 2.8rem;
    letter-spacing: -0.04rem;
  }
}