.form {
  background: #ffffff;
  padding: 100px 20px;
}

.form h1 {
  font-size: 2em;
  text-align: center;
  line-height: 1.3;
  color: var(--MGreen);
  margin-bottom: 45px;
}
.form h2 {
  font-size: 1.4em;
  margin-bottom: 20px;
}
.form ul {
  list-style: disc;
  margin-left: 1.5em;
}
.form ul li {
  margin-bottom: 5px;
}
.form p {
  margin-bottom: 20px;
}

.width-limit {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.form form dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px 20px;
  margin-bottom: 30px;
}
.form form dl dt {
  width: 180px !important;
  font-size: 1.1em;
  font-weight: bold;
  width: 13em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form form dl dd {
  flex: 1;
}
.form form :is(input[type="text"]),
.form form :is(input[type="tel"]),
.form form :is(input[type="email"]),
textarea {
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 1.2em;
  width: 94%;
  border: solid 1px #b7b7b7;
}
.form form :is(input[type="text"], input[type="tel"], input[type="email"], textarea):focus  {
  outline: none;
  border: solid 1px var(--Pink);
  background-color: #fff5f5;
  transition: border 0.2s
}
.not-null {
  background: var(--Pink);
  color: #fff;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 4px;
  font-size: 0.8em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.caution {
  border: solid 2px var(--Pink);
  padding: 20px;
  border-radius: 10px;
  color: var(--Pink);
}

.button {
  font-size: 1.4em;
  font-weight: bold;
  background: #c57012;
  padding: 20px;
  width: 280px;
  color: #fff;
  text-align: center;
  margin: 60px auto 0 auto;
  border: 0;
  border-radius: 4px;
  display: block;
}

.privacy-policy {
  display: block !important;
  height: 200px;
  overflow-y: scroll;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 20px;
  border: solid 1px #b7b7b7;
  background: #fff;
  border-radius: 4px;
  line-height: 1.5;
}

form dl > div:last-child,
form dl > aside.privacy-policy {
  display: block; /* flex 解除 */
}

.privacypolicy_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.privacy-policy h2 {
  font-size: 1.4em;
}
.privacy-policy h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}
.privacy-policy p {
  font-weight: normal;
}
.privacy-policy ul {
  margin-bottom: 30px;
}
.privacy-policy ul li {
  font-weight: normal;
}
.privacy-policy ol li {
  list-style: decimal;
  margin-left: 1em;
}
.privacy-policy_title {
  margin-bottom: 14px;
}
p.privacy-policy_address {
  font-weight: bold;
}

p.thanks-message {
  text-align: center;
}

@media (width <= 600px) {
  .form {
    padding: 40px 20px;
  }

  form dl > div:last-child {
    display: flex;
  }

  .form form dl div {
    flex-direction: column;
    align-items: flex-start;
  }

  .form form dl dt {
    width: initial !important;
    gap: 12px;
  }

  .form form dl :is(dt, dd) {
    width: 100%;
  }

  .privacy-policy {
    margin-top: 7px;
  }
}
}