.form {
  background: #fff;
}
.form.form-confirm {
  margin: 0 auto;
  max-width: 700px;
  padding: 1rem 3rem 5rem;
}
.form .item {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .form .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.form .item:last-child {
  margin-bottom: 0;
  align-items: flex-start;
}
.form .item dt {
  width: 23.5rem;
}
@media screen and (max-width: 768px) {
  .form .item dt {
    width: 100%;
  }
}
.form .item dt .require {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  vertical-align: text-top;
}
.form .item dt .small {
  font-size: 1.4rem;
}
.form .item dd {
  width: calc(100% - 23.5rem);
}
@media screen and (max-width: 768px) {
  .form .item dd {
    width: 100%;
  }
}
.form .item dd input {
  background: #e6e7e8;
  width: 100%;
  height: 3.3rem;
  padding: 1rem;
  border: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .form .item dd input {
    height: 4rem;
  }
}
.form .item dd input::-moz-placeholder {
  color: #adadad;
  font-size: 1.4rem;
}
.form .item dd input::placeholder {
  color: #adadad;
  font-size: 1.4rem;
}
.form .item dd select {
  width: -moz-fit-content;
  width: fit-content;
  height: 3.3rem;
  border: none;
  padding: 0 1rem;
  font-size: 16px;
  background-color: #e6e7e8;
  color: #000;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .form .item dd select {
    height: 4rem;
  }
}
.form .item dd textarea {
  resize: none;
  background: #e6e7e8;
  width: 100%;
  height: 16.6rem;
  border: none;
  padding: 1rem;
  border-radius: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}
.form .item dd .checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.form .item dd .checkbox-wrap label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  word-break: keep-all;
}
.form .item dd .checkbox-wrap label input {
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
.form .privacy {
  border: 0.1rem solid #000;
  background: #fff;
  margin-top: 2rem;
  padding: 2rem;
}
.form .privacy-ttl {
  font-size: 1.4rem;
  text-align: justify;
  line-height: 180%;
}
.form .privacy-sentence {
  text-align: justify;
  background: #efefef;
  margin-top: 2rem;
  padding: 1rem;
  font-size: 1.4rem;
  height: 20rem;
  overflow-y: scroll;
}
.form .privacy-sentence p {
  line-height: 180%;
}
.form .privacy-text {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 2rem;
}
.form .privacy-input {
  text-align: center;
  margin-top: 1rem;
}
.form .privacy-input label {
  position: relative;
  font-size: 1.4rem;
}
.form .privacy-input label input {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  position: absolute;
}
.form .privacy-input label input:checked + span::before {
  opacity: 1;
}
.form .privacy-input label input:checked + span::after {
  border: 0.1rem solid #000;
  border-radius: 0;
}
.form .privacy-input label span {
  position: relative;
  padding-left: 2.5rem;
  cursor: pointer;
}
.form .privacy-input label span::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.3rem;
  height: 0.8rem;
  border-left: 0.2rem solid #fff100;
  border-bottom: 0.2rem solid #fff100;
  transform: rotate(-45deg);
  opacity: 0;
}
.form .privacy-input label span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.1rem solid #000;
}
.form .btn {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  align-items: center;
}
.btn--confirm {
  appearance: none;
  background: #fff100;
  width: 250px;
  height: 45px;
  line-height: 45px;
  border-radius: 27.5px;
  display: inline-block;
  font-size: 1.8rem;
  transition: opacity ease 0.3s;
  color: #000;
  border: none;
}
.btn--confirm:hover {
  opacity: .7;
}
.btn--back {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: #efefef;
  width: 250px;
  height: 45px;
  line-height: 45px;
  border-radius: 27.5px;
  position: relative;
  text-align: center;
  transition: opacity ease 0.3s;
  color: #000;
  border: none;
  font-size: 16px;
}
.btn--back:hover {
  opacity: 0.7;
}
.btn--back::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 26rem;
  height: 4.6rem;
  background: no-repeat url(../img/confirm-btn.png) top left/contain;
}
.btn--send {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 250px;
  height: 45px;
  line-height: 45px;
  border-radius: 27.5px;
  position: relative;
  background: #fff100;
  text-align: center;
  transition: opacity ease 0.3s;
  color: #000;
  border: none;
  font-size: 16px;
}
.btn--send:hover {
  opacity: 0.7;
}
.btn--send::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 26rem;
  height: 4.6rem;
  background: no-repeat url(../img/confirm-btn.png) top left/contain;
}
.thanks__btn {
  text-align: center;
  margin-top: 5rem;
}
.error {
  color: rgb(237, 41, 41);
  font-size: 1.4rem;
}
.confirm,
.thanks {
  padding-top: 2rem;
}
.thanks_wrap {
  padding: 1rem 3rem 5rem;
  max-width: fit-content;
  margin: 0 auto;
}