@charset "UTF-8";

button {
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}

section.form form.h-adr div.btn-box {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.btn-box .btn-submit {
  width: 100%;
  max-width: 250px;
  height: 60px;
  color: #fff;
  font-size: 18px;
  background: gray;
  border-radius: 10px;
  text-align: center;
}
section.form.form-confirm .btn-submit {
  background: var(--green-color);
}
.btn-box .btn-back {
  width: 100%;
  max-width: 250px;
  height: 60px;
  color: #fff;
  font-size: 18px;
  background: gray;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn-box .btn-submit,.btn-box .btn-back {
    max-width: 200px;
    height: 48px;
    font-size: 14px;
  }
}

section.form.form-confirm .btn-back {
  margin-right: 2.5%;
}
section.form.form-confirm .btn-submit {
  margin-left: 2.5%;
}

section.form.form-confirm p.form-text::after {
  display: none;
}
section.form.form-confirm form.h-adr dl.form-list {
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  section.form.form-confirm form.h-adr dl.form-list {
    padding: 20px 0;
  }
}