@charset "utf-8";

.sec-body .inner {
  padding: 0 0 140px;
}

.sec-body .inner .sec-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 80px;
}

.sec-body .inner .tit-ja {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
  text-align: center;
  color: #3b1802;
}

.sec-body .inner .desc p {
  font-weight: normal;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  line-height: calc(28 / 16);
  text-align: center;
  color: #603215;
}

.sec-body .inner .box {
  max-width: 1050px;
  width: 70%;
  margin: 0 auto;
  border-radius: 20px;
  background: #d9d3c7;
}

.sec-body .inner .box .box-inner {
  width: 80%;
  margin: 0 auto;
  padding: 80px 0 100px;
}

.privacyBox {
  height: 180px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 5%;
  border: 1px solid #898989;
  background-color: #ffffff;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  color: #000;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

form .policy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

form .policy input {
  width: 31px;
  height: 31px;
  appearance: auto;
}

form .policy label {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  color: #3b1802;

  width: 100%;
  text-align: left;
}

form .policy label br {
  display: none;
}

.privacyBox a {
  color: #000 !important;
  font-weight: 400;
}

.labelText02 {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin: 0;
}

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

  width: 24px;
  height: 24px;
  border: 1px solid #b2b2b2;
  border-radius: 0;
  /* 四角 */
  background-color: #fff;

  display: inline-grid;
  place-content: center;

  cursor: pointer;
  margin-right: 16px;
}

input[type="radio"]::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #333;
  transform: scale(0);
  transition: transform 0.2s ease;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.requiredText {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 1px 8px;
  border-radius: 3px;
  background-color: #3b1802;
}

.requiredText.nini {
  background-color: #adadad;
}

.formTh {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  width: 100%;
}

.formTd {
  width: 100%;
}

.formTh label {
  margin-bottom: 0;
}

.formTh.ais {
  align-items: flex-start;
  margin-top: 20px;
}

.formRow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.addArea {
  display: grid;
  grid-template-columns: 10% 1fr;
  align-items: center;
  gap: 16px;
}

.addTd {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.addArea select {
  width: 265px;
}

.labelText01 {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  color: #3b1802;
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 13px 19px;
  width: 100%;
  background: #ffffff;
  color: #000;
  -webkit-appearance: none;
  appearance: none;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  border: none;
}

textarea {
  min-height: 174px !important;
  max-height: 174px;
}

.formWrap .column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.formRow.formbtn {
  flex-direction: row;
}

.formBtnTd {
  border: 1px solid #fff;
  max-width: 244px;
  width: 100%;
  height: 85px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  background: #583f2f;
  padding: 0;
  position: relative;
  transition: 0.3s;
  line-height: 1;
  border: none;
  background: none;
  margin: 0 auto;
  border: 1px solid #fff;
}

.formBtnTd:hover {
  opacity: 50%;
}

button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  background: #583f2f;
  border: none;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.042rem + 0.17vw, 1.25rem);
  border-radius: 10px;
  text-align: center;
}

.submitbtn .formBtnTd {
  grid-column: 1/3;
}

.thanks .inner {
  padding: 0 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks .tit-ja {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
  text-align: center;
  color: #3b1802;
  margin-bottom: 30px;
}

.thanks .desc p {
  font-weight: normal;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  line-height: calc(28 / 16);
  text-align: center;
  color: #603215;
}

.thanks .link-item {
  max-width: 488px;
  width: 100%;
  margin: 40px auto 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #583f2f;
}

.thanks .link-item a {
  display: block;
  padding: 23px 0;
}

.thanks .link-item .link-wrap {
  display: grid;
  align-items: center;
  gap: 0 11px;
  grid-template-areas:
    "icon num"
    "time time";
}
.thanks .link-item .link-wrap .icon {
  grid-area: icon;
  margin-left: auto;
}

.thanks .link-item .link-wrap .num {
  grid-area: num;
  font-weight: 500;
  font-size: clamp(1.75rem, 1.251rem + 1.04vw, 2.5rem);
  color: #583f2f;
}

.thanks .link-item .link-wrap .time {
  grid-area: time;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #603215;
}

.thanks .morebtn {
  max-width: 361px;
  width: 100%;
  display: flex;
  margin: 100px auto 0;
}

.thanks .morebtn a {
  width: 100%;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.042rem + 0.17vw, 1.25rem);
  color: #fff;
}

.thanks .morebtn .icon {
  width: 42px;
  height: auto;
}

.footer .sec-title,
.footer .btnarea,
.footer .desc {
  display: none;
}

.footer .inner {
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .sec-body .inner {
    width: 80%;
    margin: 0 auto;
  }

  .sec-body .inner .box {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .sec-body .inner {
    width: 92%;
    padding: 0 0 80px;
  }

  .sec-body .inner .box {
    width: 100%;
    border-radius: 10px;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 16px;
  }

  .sec-body .inner .box .box-inner {
    padding: 40px 0 60px;
    width: 90%;
  }
  .labelText01 {
    margin-bottom: 0;
  }

  .form-column {
    gap: 20px;
  }
  .formRow {
    gap: 7px;
  }

  form .policy label br {
    display: inline-block;
  }

  .addArea {
    grid-template-columns: auto 1fr;
  }

  .addArea select {
    width: calc(218 / 400 * 100vw);
  }

  .addArea input {
    width: calc(255 / 400 * 100vw);
  }

  .thanks .inner {
    padding: 0 0 80px;
    width: 81%;
    margin: 0 auto;
  }

  .thanks .tit-ja {
    margin-bottom: 40px;
    font-feature-settings: "palt";
  }
}
