@charset "utf-8";

.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: 16px;
  margin-bottom: 20px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}

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

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

form .policy label {
  margin: 0;
  font-family: var(--font-notosans);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  text-align: left;
  color: #232426;
  width: 100%;
}

form .policy label br {
  display: none;
}

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

.labelText02 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #000;
  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-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #000;
}

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

.formTh {
  display: flex;
  align-items: center;
  height: 100%;
}

.formTh label {
  margin-bottom: 0;
}

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

.formRow {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 7px;
  align-items: center;
}

.labelText01 {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #000;
}

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;
}

.formBtnTd {
  background: #000000;
  max-width: 328px;
  width: 100%;

  height: 88px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 0;
  position: relative;
  transition: 0.3s;
  line-height: 1;
  border: none;
  margin: 48px auto 0;
}

.formBtnTd:hover {
  opacity: 50%;
}

button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: #000000;
  display: block;
  color: #fff;
  border: none;
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
  text-align: center;
}

.formRow.formbtn {
  display: flex;
}

.thanks .inner {
  padding: 120px 0 160px;
}

.thanks .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.thanks .tit-ja {
  font-family: var(--font-notosans);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  color: #000;
  padding-bottom: 40px;
  border-bottom: 1px solid #939393;
  text-align: center;
}

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

.thanks .desc p {
  font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
  line-height: calc(32 / 18);
  text-align: center;
  color: #000;
}

.thanks .tellink a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "text num"
    ". time";
  gap: 5px 4px;
  align-items: flex-end;
}

.thanks .tellink .f-20 {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  color: #000;
  grid-area: text;
  margin-bottom: 6px;
}

.thanks .tellink .num {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.568rem + 0.78vw, 2.5rem);
  color: #000;
  grid-area: num;
}

.thanks .tellink .time {
  font-family: var(--font-notosans);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  text-align: center;
  color: #000;
  grid-area: time;
}

@media (max-width: 960px) {
  .article-main .inner {
    width: 80%;
  }

  .form-column {
    gap: 20px;
  }

  .formRow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .formWrap .column {
    gap: 19px;
  }

  .radioArea {
    flex-direction: column;
    align-items: flex-start;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    padding: 16px;
  }

  .formTd {
    width: 100%;
  }

  .formBtnTd {
    margin: auto;
    height: 40px;
  }

  .labelText01 {
    margin-bottom: 0;
  }

  form .policy {
    gap: 12px;
    font-size: 12px;
  }
  .article-main .inner .box .box-inner .desc {
    width: 86%;
  }
}

@media (max-width: 767px) {
  .form-column {
    width: 85%;
  }

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

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

@media (max-width: 375px) {
  .article-main .inner .box .box-inner .desc {
    width: 98%;
  }
}
